2025-06-01T20:56:34.4337738Z Current runner version: '2.324.0' 2025-06-01T20:56:34.4344990Z Runner name: 'i-07560307e21f40fae' 2025-06-01T20:56:34.4346012Z Machine name: 'EC2AMAZ-DD9BHOF' 2025-06-01T20:56:34.4350389Z ##[group]GITHUB_TOKEN Permissions 2025-06-01T20:56:34.4352939Z Actions: read 2025-06-01T20:56:34.4353442Z Attestations: read 2025-06-01T20:56:34.4353962Z Checks: read 2025-06-01T20:56:34.4354423Z Contents: read 2025-06-01T20:56:34.4354906Z Deployments: read 2025-06-01T20:56:34.4355396Z Discussions: read 2025-06-01T20:56:34.4355851Z Issues: read 2025-06-01T20:56:34.4356299Z Metadata: read 2025-06-01T20:56:34.4356712Z Models: read 2025-06-01T20:56:34.4357214Z Packages: read 2025-06-01T20:56:34.4357644Z Pages: read 2025-06-01T20:56:34.4358131Z PullRequests: read 2025-06-01T20:56:34.4358680Z RepositoryProjects: read 2025-06-01T20:56:34.4359238Z SecurityEvents: read 2025-06-01T20:56:34.4359696Z Statuses: read 2025-06-01T20:56:34.4360217Z ##[endgroup] 2025-06-01T20:56:34.4362972Z Secret source: Actions 2025-06-01T20:56:34.4363844Z Prepare workflow directory 2025-06-01T20:56:34.4892841Z Prepare all required actions 2025-06-01T20:56:34.4935359Z Getting action download info 2025-06-01T20:56:34.7410035Z Download action repository 'pytorch/test-infra@main' (SHA:5ce5452ec51263ef97338910302a42b1f4181e7c) 2025-06-01T20:56:37.3835587Z Download action repository 'pytorch/pytorch@main' (SHA:f7c09f864a6c6467a7454f1431340d3338473fd1) 2025-06-01T20:57:06.1859624Z Download action repository 'seemethere/upload-artifact-s3@baba72d0712b404f646cebe0730933554ebce96a' (SHA:baba72d0712b404f646cebe0730933554ebce96a) 2025-06-01T20:57:06.9330349Z Getting action download info 2025-06-01T20:57:07.0323378Z Download action repository 'actions/checkout@v4' (SHA:11bd71901bbe5b1630ceea73d27597364c9af683) 2025-06-01T20:57:07.2586345Z Complete job name: win-vs2022-cuda12.6-py3 / build 2025-06-01T20:57:07.3285549Z ##[group]Run git config --global core.longpaths true 2025-06-01T20:57:07.3286218Z git config --global core.longpaths true 2025-06-01T20:57:07.3286657Z git config --global core.symlinks true 2025-06-01T20:57:07.3287003Z  2025-06-01T20:57:07.3287410Z # https://git-scm.com/docs/git-fsmonitor--daemon. The daemon could lock 2025-06-01T20:57:07.3288018Z # the directory on Windows and prevent GHA from checking out as reported 2025-06-01T20:57:07.3288550Z # in https://github.com/actions/checkout/issues/1018 2025-06-01T20:57:07.3288980Z git config --global core.fsmonitor false 2025-06-01T20:57:07.3314660Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T20:57:07.3315582Z env: 2025-06-01T20:57:07.3315840Z GIT_DEFAULT_BRANCH: main 2025-06-01T20:57:07.3316118Z ##[endgroup] 2025-06-01T20:57:07.8446851Z ##[group]Run pytorch/test-infra/.github/actions/cleanup-runner@main 2025-06-01T20:57:07.8447387Z env: 2025-06-01T20:57:07.8447612Z GIT_DEFAULT_BRANCH: main 2025-06-01T20:57:07.8447882Z ##[endgroup] 2025-06-01T20:57:07.8609494Z ##[group]Run # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-06-01T20:57:07.8610392Z # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-06-01T20:57:07.8611101Z # Below is the list of commands that could lock $GITHUB_WORKSPACE gathered from sysinternals 2025-06-01T20:57:07.8611601Z # handle tool 2025-06-01T20:57:07.8611987Z $processes = "python", "ninja", "cl", "nvcc", "cmd", "sccache", "git" 2025-06-01T20:57:07.8612436Z Foreach ($process In $processes) { 2025-06-01T20:57:07.8612761Z  Try { 2025-06-01T20:57:07.8613359Z  # https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/stop-process 2025-06-01T20:57:07.8614107Z  Get-Process -Name $process -ErrorAction Stop | Stop-Process -Force 2025-06-01T20:57:07.8614570Z  } 2025-06-01T20:57:07.8614798Z  Catch { 2025-06-01T20:57:07.8616684Z  Write-Output "No leftover $process process, continuing" 2025-06-01T20:57:07.8617110Z  Write-Output $_ 2025-06-01T20:57:07.8617365Z  } 2025-06-01T20:57:07.8617575Z } 2025-06-01T20:57:07.8617772Z  2025-06-01T20:57:07.8618296Z # Try it again https://stackoverflow.com/questions/40585754/powershell-wont-terminate-hung-process 2025-06-01T20:57:07.8618891Z # for hung processes 2025-06-01T20:57:07.8619199Z Foreach ($process In $processes) { 2025-06-01T20:57:07.8619520Z  Try { 2025-06-01T20:57:07.8619943Z  (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process}%'").terminate() 2025-06-01T20:57:07.8620451Z  } 2025-06-01T20:57:07.8620728Z  Catch { 2025-06-01T20:57:07.8620993Z  Write-Output $_ 2025-06-01T20:57:07.8621304Z  } 2025-06-01T20:57:07.8621513Z } 2025-06-01T20:57:07.8621728Z  2025-06-01T20:57:07.8621928Z Try { 2025-06-01T20:57:07.8622195Z  # Print all the processes for debugging 2025-06-01T20:57:07.8622815Z  Wmic Path Win32_Process Get Caption,Processid,Commandline | Format-List 2025-06-01T20:57:07.8623281Z } 2025-06-01T20:57:07.8623487Z Catch { 2025-06-01T20:57:07.8623918Z  # Better to write out whatever exception thrown to help debugging any potential issue 2025-06-01T20:57:07.8624437Z  Write-Output $_ 2025-06-01T20:57:07.8624693Z } 2025-06-01T20:57:07.8641003Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-06-01T20:57:07.8641533Z env: 2025-06-01T20:57:07.8641762Z GIT_DEFAULT_BRANCH: main 2025-06-01T20:57:07.8642029Z ##[endgroup] 2025-06-01T20:57:08.2471714Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-06-01T20:57:08.2532526Z Finished 2025-06-01T20:57:08.2693807Z No leftover python process, continuing 2025-06-01T20:57:08.3163122Z Get-Process : Cannot find a process with the name "python". Verify the process name and call the cmdlet again. 2025-06-01T20:57:08.3163895Z At C:\actions-runner\_work\_temp\fa1f7405-e6ae-457f-adea-80e23f6c951a.ps1:9 char:5 2025-06-01T20:57:08.3164485Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-06-01T20:57:08.3164936Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T20:57:08.3165518Z + CategoryInfo : ObjectNotFound: (python:String) [Get-Process], ProcessCommandException 2025-06-01T20:57:08.3166421Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-06-01T20:57:08.3167068Z 2025-06-01T20:57:08.3185763Z No leftover ninja process, continuing 2025-06-01T20:57:08.3195738Z Get-Process : Cannot find a process with the name "ninja". Verify the process name and call the cmdlet again. 2025-06-01T20:57:08.3196513Z At C:\actions-runner\_work\_temp\fa1f7405-e6ae-457f-adea-80e23f6c951a.ps1:9 char:5 2025-06-01T20:57:08.3197243Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-06-01T20:57:08.3197719Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T20:57:08.3198237Z + CategoryInfo : ObjectNotFound: (ninja:String) [Get-Process], ProcessCommandException 2025-06-01T20:57:08.3199134Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-06-01T20:57:08.3199744Z 2025-06-01T20:57:08.3216173Z No leftover cl process, continuing 2025-06-01T20:57:08.3227170Z Get-Process : Cannot find a process with the name "cl". Verify the process name and call the cmdlet again. 2025-06-01T20:57:08.3227907Z At C:\actions-runner\_work\_temp\fa1f7405-e6ae-457f-adea-80e23f6c951a.ps1:9 char:5 2025-06-01T20:57:08.3228519Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-06-01T20:57:08.3228948Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T20:57:08.3231863Z + CategoryInfo : ObjectNotFound: (cl:String) [Get-Process], ProcessCommandException 2025-06-01T20:57:08.3232791Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-06-01T20:57:08.3233472Z 2025-06-01T20:57:08.3255900Z No leftover nvcc process, continuing 2025-06-01T20:57:08.3266384Z Get-Process : Cannot find a process with the name "nvcc". Verify the process name and call the cmdlet again. 2025-06-01T20:57:08.3267113Z At C:\actions-runner\_work\_temp\fa1f7405-e6ae-457f-adea-80e23f6c951a.ps1:9 char:5 2025-06-01T20:57:08.3267751Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-06-01T20:57:08.3268212Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T20:57:08.3268764Z + CategoryInfo : ObjectNotFound: (nvcc:String) [Get-Process], ProcessCommandException 2025-06-01T20:57:08.3269595Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-06-01T20:57:08.3270200Z 2025-06-01T20:57:08.3304608Z No leftover sccache process, continuing 2025-06-01T20:57:08.3315512Z Get-Process : Cannot find a process with the name "sccache". Verify the process name and call the cmdlet again. 2025-06-01T20:57:08.3316264Z At C:\actions-runner\_work\_temp\fa1f7405-e6ae-457f-adea-80e23f6c951a.ps1:9 char:5 2025-06-01T20:57:08.3316945Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-06-01T20:57:08.3317398Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T20:57:08.3317975Z + CategoryInfo : ObjectNotFound: (sccache:String) [Get-Process], ProcessCommandException 2025-06-01T20:57:08.3318851Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-06-01T20:57:08.3319450Z 2025-06-01T20:57:08.3330234Z No leftover git process, continuing 2025-06-01T20:57:08.3340411Z Get-Process : Cannot find a process with the name "git". Verify the process name and call the cmdlet again. 2025-06-01T20:57:08.3341151Z At C:\actions-runner\_work\_temp\fa1f7405-e6ae-457f-adea-80e23f6c951a.ps1:9 char:5 2025-06-01T20:57:08.3341761Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-06-01T20:57:08.3342191Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T20:57:08.3342683Z + CategoryInfo : ObjectNotFound: (git:String) [Get-Process], ProcessCommandException 2025-06-01T20:57:08.3343523Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-06-01T20:57:08.3344116Z 2025-06-01T20:57:08.3704911Z Get-WmiObject : Illegal operation attempted on a registry key that has been marked for deletion. (Exception from 2025-06-01T20:57:08.3705590Z HRESULT: 0x800703FA) 2025-06-01T20:57:08.3705989Z At C:\actions-runner\_work\_temp\fa1f7405-e6ae-457f-adea-80e23f6c951a.ps1:21 char:6 2025-06-01T20:57:08.3706607Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-06-01T20:57:08.3707094Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T20:57:08.3707626Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-06-01T20:57:08.3708397Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-06-01T20:57:08.3708946Z 2025-06-01T20:57:08.3771944Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-06-01T20:57:08.3772872Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-06-01T20:57:08.3773560Z deletion. (Exception from HRESULT: 0x800703FA). 2025-06-01T20:57:08.3774083Z At C:\actions-runner\_work\_temp\fa1f7405-e6ae-457f-adea-80e23f6c951a.ps1:21 char:6 2025-06-01T20:57:08.3774682Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-06-01T20:57:08.3775420Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T20:57:08.3775960Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-06-01T20:57:08.3776896Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-06-01T20:57:08.3777476Z 2025-06-01T20:57:08.3804011Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-06-01T20:57:08.3804956Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-06-01T20:57:08.3805625Z deletion. (Exception from HRESULT: 0x800703FA). 2025-06-01T20:57:08.3806156Z At C:\actions-runner\_work\_temp\fa1f7405-e6ae-457f-adea-80e23f6c951a.ps1:21 char:6 2025-06-01T20:57:08.3806758Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-06-01T20:57:08.3807223Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T20:57:08.3807724Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-06-01T20:57:08.3808457Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-06-01T20:57:08.3809021Z 2025-06-01T20:57:08.3835186Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-06-01T20:57:08.3836144Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-06-01T20:57:08.3836763Z deletion. (Exception from HRESULT: 0x800703FA). 2025-06-01T20:57:08.3837353Z At C:\actions-runner\_work\_temp\fa1f7405-e6ae-457f-adea-80e23f6c951a.ps1:21 char:6 2025-06-01T20:57:08.3837952Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-06-01T20:57:08.3838441Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T20:57:08.3838910Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-06-01T20:57:08.3839653Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-06-01T20:57:08.3840212Z 2025-06-01T20:57:08.3865602Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-06-01T20:57:08.3866502Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-06-01T20:57:08.3867113Z deletion. (Exception from HRESULT: 0x800703FA). 2025-06-01T20:57:08.3867621Z At C:\actions-runner\_work\_temp\fa1f7405-e6ae-457f-adea-80e23f6c951a.ps1:21 char:6 2025-06-01T20:57:08.3868450Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-06-01T20:57:08.3868935Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T20:57:08.3869400Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-06-01T20:57:08.3870153Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-06-01T20:57:08.3870714Z 2025-06-01T20:57:08.3893979Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-06-01T20:57:08.3894950Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-06-01T20:57:08.3895605Z deletion. (Exception from HRESULT: 0x800703FA). 2025-06-01T20:57:08.3896110Z At C:\actions-runner\_work\_temp\fa1f7405-e6ae-457f-adea-80e23f6c951a.ps1:21 char:6 2025-06-01T20:57:08.3896756Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-06-01T20:57:08.3897226Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T20:57:08.3897695Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-06-01T20:57:08.3898683Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-06-01T20:57:08.3899248Z 2025-06-01T20:57:08.3920678Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-06-01T20:57:08.3921605Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-06-01T20:57:08.3922235Z deletion. (Exception from HRESULT: 0x800703FA). 2025-06-01T20:57:08.3922739Z At C:\actions-runner\_work\_temp\fa1f7405-e6ae-457f-adea-80e23f6c951a.ps1:21 char:6 2025-06-01T20:57:08.3923342Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-06-01T20:57:08.3923822Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T20:57:08.3924284Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-06-01T20:57:08.3925018Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-06-01T20:57:08.3925590Z 2025-06-01T20:57:08.7027069Z Caption CommandLine ProcessId 2025-06-01T20:57:08.7027643Z 2025-06-01T20:57:08.7028138Z System Idle Process 0 2025-06-01T20:57:08.7028606Z 2025-06-01T20:57:08.7029167Z System 4 2025-06-01T20:57:08.7029556Z 2025-06-01T20:57:08.7030710Z Registry 168 2025-06-01T20:57:08.7031178Z 2025-06-01T20:57:08.7032745Z smss.exe 408 2025-06-01T20:57:08.7033216Z 2025-06-01T20:57:08.7033662Z csrss.exe 528 2025-06-01T20:57:08.7034918Z 2025-06-01T20:57:08.7035353Z csrss.exe 604 2025-06-01T20:57:08.7035733Z 2025-06-01T20:57:08.7036341Z wininit.exe 656 2025-06-01T20:57:08.7036941Z 2025-06-01T20:57:08.7037483Z winlogon.exe winlogon.exe 676 2025-06-01T20:57:08.7039043Z 2025-06-01T20:57:08.7039935Z services.exe 748 2025-06-01T20:57:08.7040355Z 2025-06-01T20:57:08.7041230Z lsass.exe C:\Windows\system32\lsass.exe 772 2025-06-01T20:57:08.7042321Z 2025-06-01T20:57:08.7043099Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s PlugPlay 892 2025-06-01T20:57:08.7043766Z 2025-06-01T20:57:08.7044371Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p 916 2025-06-01T20:57:08.7044925Z 2025-06-01T20:57:08.7045440Z fontdrvhost.exe "fontdrvhost.exe" 940 2025-06-01T20:57:08.7046028Z 2025-06-01T20:57:08.7046543Z fontdrvhost.exe "fontdrvhost.exe" 948 2025-06-01T20:57:08.7047071Z 2025-06-01T20:57:08.7047703Z svchost.exe C:\Windows\system32\svchost.exe -k RPCSS -p 136 2025-06-01T20:57:08.7048247Z 2025-06-01T20:57:08.7048901Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s LSM 456 2025-06-01T20:57:08.7049522Z 2025-06-01T20:57:08.7050196Z svchost.exe C:\Windows\System32\svchost.exe -k termsvcs -s TermService 460 2025-06-01T20:57:08.7050811Z 2025-06-01T20:57:08.7051612Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService 1116 2025-06-01T20:57:08.7052366Z 2025-06-01T20:57:08.7052777Z dwm.exe "dwm.exe" 1124 2025-06-01T20:57:08.7053188Z 2025-06-01T20:57:08.7053890Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s EventLog 1252 2025-06-01T20:57:08.7054588Z 2025-06-01T20:57:08.7055205Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s nsi 1336 2025-06-01T20:57:08.7055917Z 2025-06-01T20:57:08.7056591Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s Dhcp 1364 2025-06-01T20:57:08.7057268Z 2025-06-01T20:57:08.7057835Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s gpsvc 1388 2025-06-01T20:57:08.7058410Z 2025-06-01T20:57:08.7059037Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s NlaSvc 1436 2025-06-01T20:57:08.7059659Z 2025-06-01T20:57:08.7060249Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Schedule 1468 2025-06-01T20:57:08.7060821Z 2025-06-01T20:57:08.7062895Z NVDisplay.Container.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\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_43a904fa5fe2998c\Display.NvContainer\plugins\LocalSystem -r -p 30000 -cfg NVDisplay.ContainerLocalSystem\LocalSystem /ert 1492 2025-06-01T20:57:08.7064833Z 2025-06-01T20:57:08.7065452Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s netprofm 1540 2025-06-01T20:57:08.7066050Z 2025-06-01T20:57:08.7066768Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s TimeBrokerSvc 1652 2025-06-01T20:57:08.7067627Z 2025-06-01T20:57:08.7068200Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s ProfSvc 1732 2025-06-01T20:57:08.7068793Z 2025-06-01T20:57:08.7069354Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s Themes 1740 2025-06-01T20:57:08.7069928Z 2025-06-01T20:57:08.7070636Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s EventSystem 1748 2025-06-01T20:57:08.7071257Z 2025-06-01T20:57:08.7071961Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s UmRdpService 1832 2025-06-01T20:57:08.7072699Z 2025-06-01T20:57:08.7073338Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -s CertPropSvc 1992 2025-06-01T20:57:08.7073978Z 2025-06-01T20:57:08.7074630Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s SENS 2036 2025-06-01T20:57:08.7075205Z 2025-06-01T20:57:08.7075801Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UserManager 1704 2025-06-01T20:57:08.7076401Z 2025-06-01T20:57:08.7077106Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s Dnscache 2080 2025-06-01T20:57:08.7078248Z 2025-06-01T20:57:08.7078902Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p 2072 2025-06-01T20:57:08.7079645Z 2025-06-01T20:57:08.7080310Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s LanmanWorkstation 2104 2025-06-01T20:57:08.7080978Z 2025-06-01T20:57:08.7081607Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s ShellHWDetection 2156 2025-06-01T20:57:08.7082217Z 2025-06-01T20:57:08.7082831Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s FontCache 2184 2025-06-01T20:57:08.7083434Z 2025-06-01T20:57:08.7084465Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetworkFirewall -p 2248 2025-06-01T20:57:08.7085175Z 2025-06-01T20:57:08.7085829Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s SessionEnv 2264 2025-06-01T20:57:08.7086429Z 2025-06-01T20:57:08.7087184Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s WinHttpAutoProxySvc 2380 2025-06-01T20:57:08.7087932Z 2025-06-01T20:57:08.7088431Z spoolsv.exe C:\Windows\System32\spoolsv.exe 2636 2025-06-01T20:57:08.7089022Z 2025-06-01T20:57:08.7089656Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetwork -p 2724 2025-06-01T20:57:08.7090290Z 2025-06-01T20:57:08.7090945Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s CryptSvc 2732 2025-06-01T20:57:08.7091611Z 2025-06-01T20:57:08.7092294Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s SysMain 2740 2025-06-01T20:57:08.7092974Z 2025-06-01T20:57:08.7093541Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Winmgmt 2748 2025-06-01T20:57:08.7094119Z 2025-06-01T20:57:08.7094861Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s TrkWks 2756 2025-06-01T20:57:08.7095546Z 2025-06-01T20:57:08.7096128Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s WpnService 2764 2025-06-01T20:57:08.7096746Z 2025-06-01T20:57:08.7097395Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -s W32Time 2772 2025-06-01T20:57:08.7098051Z 2025-06-01T20:57:08.7098656Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s WinRM 2788 2025-06-01T20:57:08.7099247Z 2025-06-01T20:57:08.7099744Z sshd.exe C:\Windows\System32\OpenSSH\sshd.exe 2996 2025-06-01T20:57:08.7100240Z 2025-06-01T20:57:08.7100833Z svchost.exe C:\Windows\System32\svchost.exe -k smbsvcs -s LanmanServer 2144 2025-06-01T20:57:08.7101414Z 2025-06-01T20:57:08.7101986Z svchost.exe C:\Windows\System32\svchost.exe -k NetSvcs -p -s iphlpsvc 2468 2025-06-01T20:57:08.7102620Z 2025-06-01T20:57:08.7103392Z IpOverUsbSvc.exe "C:\Program Files (x86)\Common Files\Microsoft Shared\Phone Tools\CoreCon\11.0\bin\IpOverUsbSvc.exe" 3088 2025-06-01T20:57:08.7104146Z 2025-06-01T20:57:08.7104961Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe 3096 2025-06-01T20:57:08.7105724Z 2025-06-01T20:57:08.7106417Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkServiceNetworkRestricted -p -s PolicyAgent 3532 2025-06-01T20:57:08.7107143Z 2025-06-01T20:57:08.7107809Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s lmhosts 4072 2025-06-01T20:57:08.7108607Z 2025-06-01T20:57:08.7109225Z LogonUI.exe "LogonUI.exe" /flags:0x2 /state0:0xa3a73055 /state1:0x41c64e6d 2644 2025-06-01T20:57:08.7109830Z 2025-06-01T20:57:08.7111619Z NVDisplay.Container.exe "C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\Display.NvContainer\NVDisplay.Container.exe" -f %ProgramData%\NVIDIA\DisplaySessionContainer%d.log -d C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\Display.NvContainer\plugins\Session -r -l 3 -p 30000 -cfg NVDisplay.ContainerLocalSystem\Session /ert -c 4132 2025-06-01T20:57:08.7113416Z 2025-06-01T20:57:08.7114259Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe -spawnprovider 4264 2025-06-01T20:57:08.7115121Z 2025-06-01T20:57:08.7115570Z vds.exe C:\Windows\System32\vds.exe 3112 2025-06-01T20:57:08.7116023Z 2025-06-01T20:57:08.7116688Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s PcaSvc 2856 2025-06-01T20:57:08.7117448Z 2025-06-01T20:57:08.7118142Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNoNetwork -p -s DPS 4532 2025-06-01T20:57:08.7118765Z 2025-06-01T20:57:08.7119240Z msdtc.exe C:\Windows\System32\msdtc.exe 1844 2025-06-01T20:57:08.7119725Z 2025-06-01T20:57:08.7120471Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s UALSVC 4148 2025-06-01T20:57:08.7121213Z 2025-06-01T20:57:08.7122051Z start-amazon-cloudwatch-agent.exe "C:\Program Files\Amazon\AmazonCloudWatchAgent\start-amazon-cloudwatch-agent.exe" 888 2025-06-01T20:57:08.7122850Z 2025-06-01T20:57:08.7124509Z 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 4740 2025-06-01T20:57:08.7126275Z 2025-06-01T20:57:08.7126768Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 3912 2025-06-01T20:57:08.7127281Z 2025-06-01T20:57:08.7127831Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UsoSvc 4088 2025-06-01T20:57:08.7128395Z 2025-06-01T20:57:08.7129144Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s StorSvc 4728 2025-06-01T20:57:08.7129827Z 2025-06-01T20:57:08.7130430Z svchost.exe C:\Windows\system32\svchost.exe -k appmodel -p -s StateRepository 3860 2025-06-01T20:57:08.7131055Z 2025-06-01T20:57:08.7131688Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s CDPSvc 4012 2025-06-01T20:57:08.7132324Z 2025-06-01T20:57:08.7132935Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s LicenseManager 4636 2025-06-01T20:57:08.7133630Z 2025-06-01T20:57:08.7134337Z MicrosoftEdgeUpdate.exe "C:\Program Files (x86)\Microsoft\EdgeUpdate\MicrosoftEdgeUpdate.exe" /c 4068 2025-06-01T20:57:08.7135034Z 2025-06-01T20:57:08.7135533Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 3080 2025-06-01T20:57:08.7136032Z 2025-06-01T20:57:08.7136610Z Runner.Listener.exe "C:\actions-runner\\bin\Runner.Listener.exe" run 4988 2025-06-01T20:57:08.7137229Z 2025-06-01T20:57:08.7137855Z amazon-ssm-agent.exe "C:\Program Files\Amazon\SSM\amazon-ssm-agent.exe" 1152 2025-06-01T20:57:08.7138445Z 2025-06-01T20:57:08.7139108Z ssm-agent-worker.exe "C:\Program Files\Amazon\SSM\ssm-agent-worker.exe" 5044 2025-06-01T20:57:08.7139700Z 2025-06-01T20:57:08.7140191Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4832 2025-06-01T20:57:08.7140697Z 2025-06-01T20:57:08.7141355Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s DsSvc 3276 2025-06-01T20:57:08.7142095Z 2025-06-01T20:57:08.7142696Z Runner.Worker.exe "C:\actions-runner\bin\Runner.Worker.exe" spawnclient 2948 2452 552 2025-06-01T20:57:08.7143397Z 2025-06-01T20:57:08.7143894Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4032 2025-06-01T20:57:08.7144416Z 2025-06-01T20:57:08.7145309Z powershell.exe "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE" -command ". 'C:\actions-runner\_work\_temp\fa1f7405-e6ae-457f-adea-80e23f6c951a.ps1'" 1664 2025-06-01T20:57:08.7146206Z 2025-06-01T20:57:08.7146878Z WMIC.exe "C:\Windows\System32\Wbem\WMIC.exe" Path Win32_Process Get Caption,Processid,Commandline 2200 2025-06-01T20:57:08.7147584Z 2025-06-01T20:57:08.7148084Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 4556 2025-06-01T20:57:08.7148596Z 2025-06-01T20:57:08.7148604Z 2025-06-01T20:57:08.7148647Z 2025-06-01T20:57:08.7447560Z ##[group]Run pytorch/test-infra/.github/actions/setup-ssh@main 2025-06-01T20:57:08.7447969Z with: 2025-06-01T20:57:08.7448492Z github-secret: *** 2025-06-01T20:57:08.7450531Z 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\2019\BuildTools\VC\Auxiliary\Build\vcvarsall.bat" x64 2025-06-01T20:57:08.7452605Z activate-with-label: false 2025-06-01T20:57:08.7452845Z label: with-ssh 2025-06-01T20:57:08.7453060Z remove-existing-keys: true 2025-06-01T20:57:08.7453292Z fail-silently: true 2025-06-01T20:57:08.7453501Z env: 2025-06-01T20:57:08.7453711Z GIT_DEFAULT_BRANCH: main 2025-06-01T20:57:08.7453929Z ##[endgroup] 2025-06-01T20:57:08.9037326Z Please see https://github.com/pytorch/pytorch/wiki/Debugging-using-with-ssh-for-Github-Actions for more info. 2025-06-01T20:57:08.9040184Z Not on pull request and ciflow reference could not be extracted, skipping adding ssh keys 2025-06-01T20:57:08.9316405Z ##[group]Run pytorch/pytorch/.github/actions/checkout-pytorch@main 2025-06-01T20:57:08.9316907Z with: 2025-06-01T20:57:08.9317099Z no-sudo: true 2025-06-01T20:57:08.9317297Z submodules: recursive 2025-06-01T20:57:08.9317518Z fetch-depth: 0 2025-06-01T20:57:08.9317716Z env: 2025-06-01T20:57:08.9317903Z GIT_DEFAULT_BRANCH: main 2025-06-01T20:57:08.9318126Z ##[endgroup] 2025-06-01T20:57:08.9407601Z ##[group]Run echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-06-01T20:57:08.9408539Z echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-06-01T20:57:08.9428210Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T20:57:08.9428728Z env: 2025-06-01T20:57:08.9428983Z GIT_DEFAULT_BRANCH: main 2025-06-01T20:57:08.9429247Z ##[endgroup] 2025-06-01T20:57:08.9892891Z ##[group]Run # Use all available CPUs for fetching 2025-06-01T20:57:08.9893320Z # Use all available CPUs for fetching 2025-06-01T20:57:08.9893640Z cd "${GITHUB_WORKSPACE}" 2025-06-01T20:57:08.9893947Z git config --global fetch.parallel 0 2025-06-01T20:57:08.9894305Z git config --global submodule.fetchJobs 0 2025-06-01T20:57:08.9894613Z  2025-06-01T20:57:08.9894932Z # Clean workspace. The default checkout action should also do this, but 2025-06-01T20:57:08.9895372Z # do it here as well just in case 2025-06-01T20:57:08.9895665Z if [[ -d .git ]]; then 2025-06-01T20:57:08.9895923Z  if [ -z "${NO_SUDO}" ]; then 2025-06-01T20:57:08.9896202Z  sudo git clean -ffdx 2025-06-01T20:57:08.9896446Z  else 2025-06-01T20:57:08.9896653Z  git clean -ffdx 2025-06-01T20:57:08.9896873Z  fi 2025-06-01T20:57:08.9897056Z fi 2025-06-01T20:57:08.9916383Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T20:57:08.9916947Z env: 2025-06-01T20:57:08.9917144Z GIT_DEFAULT_BRANCH: main 2025-06-01T20:57:08.9917377Z NO_SUDO: true 2025-06-01T20:57:08.9917569Z ##[endgroup] 2025-06-01T20:57:09.0877618Z ##[group]Run actions/checkout@v4 2025-06-01T20:57:09.0877905Z with: 2025-06-01T20:57:09.0878114Z ref: f7c09f864a6c6467a7454f1431340d3338473fd1 2025-06-01T20:57:09.0878423Z fetch-depth: 0 2025-06-01T20:57:09.0878625Z submodules: recursive 2025-06-01T20:57:09.0878851Z show-progress: false 2025-06-01T20:57:09.0879086Z repository: pytorch/pytorch 2025-06-01T20:57:09.0879506Z token: *** 2025-06-01T20:57:09.0879712Z ssh-strict: true 2025-06-01T20:57:09.0879906Z ssh-user: git 2025-06-01T20:57:09.0880129Z persist-credentials: true 2025-06-01T20:57:09.0880361Z clean: true 2025-06-01T20:57:09.0880587Z sparse-checkout-cone-mode: true 2025-06-01T20:57:09.0880853Z fetch-tags: false 2025-06-01T20:57:09.0881096Z lfs: false 2025-06-01T20:57:09.0881296Z set-safe-directory: true 2025-06-01T20:57:09.0881515Z env: 2025-06-01T20:57:09.0881708Z GIT_DEFAULT_BRANCH: main 2025-06-01T20:57:09.0881932Z ##[endgroup] 2025-06-01T20:57:09.2236595Z Syncing repository: pytorch/pytorch 2025-06-01T20:57:09.2238327Z ##[group]Getting Git version info 2025-06-01T20:57:09.2238772Z Working directory is 'C:\actions-runner\_work\pytorch\pytorch' 2025-06-01T20:57:09.2316253Z [command]"C:\Program Files\Git\cmd\git.exe" version 2025-06-01T20:57:09.2531649Z git version 2.47.1.windows.2 2025-06-01T20:57:09.2579205Z ##[endgroup] 2025-06-01T20:57:09.2591569Z Copying 'C:\Users\runneruser\.gitconfig' to 'C:\actions-runner\_work\_temp\7fbab08b-8a63-4b1b-b511-fa4a696263d6\.gitconfig' 2025-06-01T20:57:09.2611430Z Temporarily overriding HOME='C:\actions-runner\_work\_temp\7fbab08b-8a63-4b1b-b511-fa4a696263d6' before making global git config changes 2025-06-01T20:57:09.2613867Z Adding repository directory to the temporary git global config as a safe directory 2025-06-01T20:57:09.2621264Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add safe.directory C:\actions-runner\_work\pytorch\pytorch 2025-06-01T20:57:09.2869714Z Deleting the contents of 'C:\actions-runner\_work\pytorch\pytorch' 2025-06-01T20:57:09.2875666Z ##[group]Initializing the repository 2025-06-01T20:57:09.2885835Z [command]"C:\Program Files\Git\cmd\git.exe" init C:\actions-runner\_work\pytorch\pytorch 2025-06-01T20:57:09.3217241Z Initialized empty Git repository in C:/actions-runner/_work/pytorch/pytorch/.git/ 2025-06-01T20:57:09.3264738Z [command]"C:\Program Files\Git\cmd\git.exe" remote add origin https://github.com/pytorch/pytorch 2025-06-01T20:57:09.3563300Z ##[endgroup] 2025-06-01T20:57:09.3563736Z ##[group]Disabling automatic garbage collection 2025-06-01T20:57:09.3575201Z [command]"C:\Program Files\Git\cmd\git.exe" config --local gc.auto 0 2025-06-01T20:57:09.3823593Z ##[endgroup] 2025-06-01T20:57:09.3824032Z ##[group]Setting up auth 2025-06-01T20:57:09.3838719Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp core\.sshCommand 2025-06-01T20:57:09.4090767Z [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-06-01T20:57:09.8548852Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-06-01T20:57:09.8797086Z [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-06-01T20:57:10.2810783Z [command]"C:\Program Files\Git\cmd\git.exe" config --local http.https://github.com/.extraheader "AUTHORIZATION: basic ***" 2025-06-01T20:57:10.3075940Z ##[endgroup] 2025-06-01T20:57:10.3076479Z ##[group]Fetching the repository 2025-06-01T20:57:10.3090910Z [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-06-01T20:58:04.4099684Z From https://github.com/pytorch/pytorch 2025-06-01T20:58:04.4100199Z * [new branch] 2.6.0.dev20241004+ -> origin/2.6.0.dev20241004+ 2025-06-01T20:58:04.4100752Z * [new branch] Chillee-patch-1 -> origin/Chillee-patch-1 2025-06-01T20:58:04.4101318Z * [new branch] HDCharles-2.6.0-release-notes -> origin/HDCharles-2.6.0-release-notes 2025-06-01T20:58:04.4102010Z * [new branch] JackCaoG/dynamo_make_fx_non_core_aten_ops -> origin/JackCaoG/dynamo_make_fx_non_core_aten_ops 2025-06-01T20:58:04.4102682Z * [new branch] PR-AOTInductorNoneBug -> origin/PR-AOTInductorNoneBug 2025-06-01T20:58:04.4103283Z * [new branch] PR-AOTInductorNoneBugFix -> origin/PR-AOTInductorNoneBugFix 2025-06-01T20:58:04.4103855Z * [new branch] PR-FixConfigsIssue -> origin/PR-FixConfigsIssue 2025-06-01T20:58:04.4104381Z * [new branch] PR-NoneBugFix-viable -> origin/PR-NoneBugFix-viable 2025-06-01T20:58:04.4104876Z * [new branch] PR-ResetToZero -> origin/PR-ResetToZero 2025-06-01T20:58:04.4105396Z * [new branch] Update-Flash-Packaging -> origin/Update-Flash-Packaging 2025-06-01T20:58:04.4106129Z * [new branch] add-link-transformers-build-blocks -> origin/add-link-transformers-build-blocks 2025-06-01T20:58:04.4106796Z * [new branch] add-meta-tag-fsdp -> origin/add-meta-tag-fsdp 2025-06-01T20:58:04.4107384Z * [new branch] add-missing-args-normalization -> origin/add-missing-args-normalization 2025-06-01T20:58:04.4107936Z * [new branch] add-sitemap -> origin/add-sitemap 2025-06-01T20:58:04.4109584Z * [new branch] addUtilForLinuxBuild -> origin/addUtilForLinuxBuild 2025-06-01T20:58:04.4110225Z * [new branch] add_new_ops_in_fallback_ops -> origin/add_new_ops_in_fallback_ops 2025-06-01T20:58:04.4110776Z * [new branch] add_windows_testing_back -> origin/add_windows_testing_back 2025-06-01T20:58:04.4111295Z * [new branch] addmm-heuristic -> origin/addmm-heuristic 2025-06-01T20:58:04.4111791Z * [new branch] addsimde -> origin/addsimde 2025-06-01T20:58:04.4112276Z * [new branch] adi/gemm_bf16f32 -> origin/adi/gemm_bf16f32 2025-06-01T20:58:04.4112755Z * [new branch] adi/test -> origin/adi/test 2025-06-01T20:58:04.4113226Z * [new branch] adi/test_presve_change -> origin/adi/test_presve_change 2025-06-01T20:58:04.4113754Z * [new branch] adi/testpresve_change -> origin/adi/testpresve_change 2025-06-01T20:58:04.4114292Z * [new branch] adi/update_openblas -> origin/adi/update_openblas 2025-06-01T20:58:04.4114851Z * [new branch] aditew01/test/vec_bf16 -> origin/aditew01/test/vec_bf16 2025-06-01T20:58:04.4115393Z * [new branch] ah-globalfeedback-hook -> origin/ah-globalfeedback-hook 2025-06-01T20:58:04.4115924Z * [new branch] albanD-patch-1 -> origin/albanD-patch-1 2025-06-01T20:58:04.4116412Z * [new branch] albanD-patch-3 -> origin/albanD-patch-3 2025-06-01T20:58:04.4116861Z * [new branch] alt-disable -> origin/alt-disable 2025-06-01T20:58:04.4117315Z * [new branch] angelayi/152467 -> origin/angelayi/152467 2025-06-01T20:58:04.4117857Z * [new branch] angelayi/aoti_additional_files -> origin/angelayi/aoti_additional_files 2025-06-01T20:58:04.4118428Z * [new branch] angelayi/aoti_back -> origin/angelayi/aoti_back 2025-06-01T20:58:04.4118935Z * [new branch] angelayi/baddbmm -> origin/angelayi/baddbmm 2025-06-01T20:58:04.4119532Z * [new branch] angelayi/change_pytree_serialization -> origin/angelayi/change_pytree_serialization 2025-06-01T20:58:04.4120152Z * [new branch] angelayi/cpp_loader -> origin/angelayi/cpp_loader 2025-06-01T20:58:04.4120650Z * [new branch] angelayi/customop -> origin/angelayi/customop 2025-06-01T20:58:04.4121139Z * [new branch] angelayi/del_lib -> origin/angelayi/del_lib 2025-06-01T20:58:04.4121624Z * [new branch] angelayi/dont_malloc -> origin/angelayi/dont_malloc 2025-06-01T20:58:04.4122173Z * [new branch] angelayi/draft_export_doc -> origin/angelayi/draft_export_doc 2025-06-01T20:58:04.4122750Z * [new branch] angelayi/draft_export_public -> origin/angelayi/draft_export_public 2025-06-01T20:58:04.4123439Z * [new branch] angelayi/dynamo_fake_input -> origin/angelayi/dynamo_fake_input 2025-06-01T20:58:04.4124029Z * [new branch] angelayi/export_save -> origin/angelayi/export_save 2025-06-01T20:58:04.4124573Z * [new branch] angelayi/filter_stacktrace -> origin/angelayi/filter_stacktrace 2025-06-01T20:58:04.4125182Z * [new branch] angelayi/fix_additional_inputs -> origin/angelayi/fix_additional_inputs 2025-06-01T20:58:04.4125743Z * [new branch] angelayi/flake1 -> origin/angelayi/flake1 2025-06-01T20:58:04.4566766Z * [new branch] angelayi/logging.bak -> origin/angelayi/logging.bak 2025-06-01T20:58:04.4567403Z * [new branch] angelayi/logging2 -> origin/angelayi/logging2 2025-06-01T20:58:04.4568017Z * [new branch] angelayi/meta_kernel_yaml2 -> origin/angelayi/meta_kernel_yaml2 2025-06-01T20:58:04.4568840Z * [new branch] angelayi/no_so_weight -> origin/angelayi/no_so_weight 2025-06-01T20:58:04.4569598Z * [new branch] angelayi/repeat_interleave -> origin/angelayi/repeat_interleave 2025-06-01T20:58:04.4570235Z * [new branch] angelayi/rm_unused_const -> origin/angelayi/rm_unused_const 2025-06-01T20:58:04.4570795Z * [new branch] angelayi/scan_layers -> origin/angelayi/scan_layers 2025-06-01T20:58:04.4571381Z * [new branch] angelayi/symint_help -> origin/angelayi/symint_help 2025-06-01T20:58:04.4571940Z * [new branch] angelayi/symint_input -> origin/angelayi/symint_input 2025-06-01T20:58:04.4572541Z * [new branch] angelayi/symint_input_3 -> origin/angelayi/symint_input_3 2025-06-01T20:58:04.4573099Z * [new branch] angelayi/torch_size -> origin/angelayi/torch_size 2025-06-01T20:58:04.4573706Z * [new branch] angelayi/unflatten_empty -> origin/angelayi/unflatten_empty 2025-06-01T20:58:04.4574338Z * [new branch] angelayi/unflatten_out -> origin/angelayi/unflatten_out 2025-06-01T20:58:04.4574931Z * [new branch] angelayi/update_schema_msg -> origin/angelayi/update_schema_msg 2025-06-01T20:58:04.4575536Z * [new branch] aoti_inference_test -> origin/aoti_inference_test 2025-06-01T20:58:04.4576039Z * [new branch] async-fix -> origin/async-fix 2025-06-01T20:58:04.4576650Z * [new branch] atalman-inductor-perf-cu124 -> origin/atalman-inductor-perf-cu124 2025-06-01T20:58:04.4577351Z * [new branch] atalman-inductor-perf-cu124.1 -> origin/atalman-inductor-perf-cu124.1 2025-06-01T20:58:04.4577976Z * [new branch] atalman-patch-1 -> origin/atalman-patch-1 2025-06-01T20:58:04.4578529Z * [new branch] atalman-patch-3 -> origin/atalman-patch-3 2025-06-01T20:58:04.4579047Z * [new branch] atalman-patch-5 -> origin/atalman-patch-5 2025-06-01T20:58:04.4579592Z * [new branch] atalman-patch-7 -> origin/atalman-patch-7 2025-06-01T20:58:04.4580123Z * [new branch] atalman_inductor_2.3.0 -> origin/atalman_inductor_2.3.0 2025-06-01T20:58:04.4580712Z * [new branch] atalman_inductor_2.3.1 -> origin/atalman_inductor_2.3.1 2025-06-01T20:58:04.4581267Z * [new branch] atalman_inductor_2.4.0 -> origin/atalman_inductor_2.4.0 2025-06-01T20:58:04.4581846Z * [new branch] atalman_inductor_2.4.x -> origin/atalman_inductor_2.4.x 2025-06-01T20:58:04.4582421Z * [new branch] avoid-spammy-log-for-2.7 -> origin/avoid-spammy-log-for-2.7 2025-06-01T20:58:04.4582923Z * [new branch] base/1.5 -> origin/base/1.5 2025-06-01T20:58:04.4583460Z * [new branch] batching_sdpa_efficient_attention -> origin/batching_sdpa_efficient_attention 2025-06-01T20:58:04.4584097Z * [new branch] bcon_2.7 -> origin/bcon_2.7 2025-06-01T20:58:04.4584570Z * [new branch] benchmark-updates -> origin/benchmark-updates 2025-06-01T20:58:04.4585080Z * [new branch] benchmarking-script -> origin/benchmarking-script 2025-06-01T20:58:04.4585913Z * [new branch] benjaminglass1/aoti-inductor-clang-tidy-warnings -> origin/benjaminglass1/aoti-inductor-clang-tidy-warnings 2025-06-01T20:58:04.4586740Z * [new branch] benjaminglass1/aoti-output-code -> origin/benjaminglass1/aoti-output-code 2025-06-01T20:58:04.4587712Z * [new branch] benjaminglass1/fixup-aot-inductor-performance-benchmarks -> origin/benjaminglass1/fixup-aot-inductor-performance-benchmarks 2025-06-01T20:58:04.4588797Z * [new branch] benjaminglass1/improve_opoverload_typing -> origin/benjaminglass1/improve_opoverload_typing 2025-06-01T20:58:04.4589589Z * [new branch] bertmaher/pinbump26 -> origin/bertmaher/pinbump26 2025-06-01T20:58:04.4590291Z * [new branch] bertrand/cutlass -> origin/bertrand/cutlass 2025-06-01T20:58:04.4590777Z * [new branch] bf/cg-foreach-op -> origin/bf/cg-foreach-op 2025-06-01T20:58:04.4591274Z * [new branch] bf/cg-remove-check -> origin/bf/cg-remove-check 2025-06-01T20:58:04.4591796Z * [new branch] bf/cg-side-stream-mem -> origin/bf/cg-side-stream-mem 2025-06-01T20:58:04.4592380Z * [new branch] bf/cg-skip-unbacked-symint-msg -> origin/bf/cg-skip-unbacked-symint-msg 2025-06-01T20:58:04.4592940Z * [new branch] bf/cudagraph -> origin/bf/cudagraph 2025-06-01T20:58:04.4593541Z * [new branch] bf/cudagraph-disable-input-mutation -> origin/bf/cudagraph-disable-input-mutation 2025-06-01T20:58:04.5026903Z * [new branch] bf/cudagraph-enable-input-mutation-support-benchmark -> origin/bf/cudagraph-enable-input-mutation-support-benchmark 2025-06-01T20:58:04.5027847Z * [new branch] bf/cudagraph-partition -> origin/bf/cudagraph-partition 2025-06-01T20:58:04.5028402Z * [new branch] bf/donated-buffer-bench -> origin/bf/donated-buffer-bench 2025-06-01T20:58:04.5028956Z * [new branch] bf/fa-small-block-mask -> origin/bf/fa-small-block-mask 2025-06-01T20:58:04.5029468Z * [new branch] bf/partition-cg -> origin/bf/partition-cg 2025-06-01T20:58:04.5029973Z * [new branch] bf/partition-cpu-read -> origin/bf/partition-cpu-read 2025-06-01T20:58:04.5030555Z * [new branch] bf/partition-fa -> origin/bf/partition-fa 2025-06-01T20:58:04.5031040Z * [new branch] bf/partition-flaky -> origin/bf/partition-flaky 2025-06-01T20:58:04.5031530Z * [new branch] bf/partition-gc -> origin/bf/partition-gc 2025-06-01T20:58:04.5032038Z * [new branch] bf/partition-move-cpu -> origin/bf/partition-move-cpu 2025-06-01T20:58:04.5032672Z * [new branch] bf/partition-move-cpu-scalar -> origin/bf/partition-move-cpu-scalar 2025-06-01T20:58:04.5033338Z * [new branch] bf/partition-precomputed-sym -> origin/bf/partition-precomputed-sym 2025-06-01T20:58:04.5034050Z * [new branch] bf/partition-relative-order-invariant -> origin/bf/partition-relative-order-invariant 2025-06-01T20:58:04.5034763Z * [new branch] bf/partition-remove-weak-dep -> origin/bf/partition-remove-weak-dep 2025-06-01T20:58:04.5035356Z * [new branch] bf/partition-removed-arg -> origin/bf/partition-removed-arg 2025-06-01T20:58:04.5035994Z * [new branch] bf/partition-standalone-compile -> origin/bf/partition-standalone-compile 2025-06-01T20:58:04.5036637Z * [new branch] bf/partition-symint-input -> origin/bf/partition-symint-input 2025-06-01T20:58:04.5037192Z * [new branch] bf/partition-turn-on -> origin/bf/partition-turn-on 2025-06-01T20:58:04.5037755Z * [new branch] bf/reduce-scatter-copy-in -> origin/bf/reduce-scatter-copy-in 2025-06-01T20:58:04.5038336Z * [new branch] bf/reinplace-diagonal -> origin/bf/reinplace-diagonal 2025-06-01T20:58:04.5038957Z * [new branch] bf/remove-check-55b0c39d -> origin/bf/remove-check-55b0c39d 2025-06-01T20:58:04.5039547Z * [new branch] bf/reorder-minimal-partition -> origin/bf/reorder-minimal-partition 2025-06-01T20:58:04.5040143Z * [new branch] bf/update-torchbench-pin -> origin/bf/update-torchbench-pin 2025-06-01T20:58:04.5040734Z * [new branch] bf/update-torchvision-pin -> origin/bf/update-torchvision-pin 2025-06-01T20:58:04.5041248Z * [new branch] bf16adamw -> origin/bf16adamw 2025-06-01T20:58:04.5041742Z * [new branch] bisect_perf_hf_T5_3acc6eac492 -> origin/bisect_perf_hf_T5_3acc6eac492 2025-06-01T20:58:04.5043167Z * [new branch] bisect_perf_hf_T5_3fcf66f61fb -> origin/bisect_perf_hf_T5_3fcf66f61fb 2025-06-01T20:58:04.5043745Z * [new branch] bisect_perf_hf_T5_4009d154129 -> origin/bisect_perf_hf_T5_4009d154129 2025-06-01T20:58:04.5044360Z * [new branch] bisect_perf_hf_T5_40d0740e73d -> origin/bisect_perf_hf_T5_40d0740e73d 2025-06-01T20:58:04.5044939Z * [new branch] bisect_perf_hf_T5_5268754e -> origin/bisect_perf_hf_T5_5268754e 2025-06-01T20:58:04.5045496Z * [new branch] bisect_perf_hf_T5_7d89a8d385c -> origin/bisect_perf_hf_T5_7d89a8d385c 2025-06-01T20:58:04.5046060Z * [new branch] bisect_perf_hf_T5_b7a25c1ee7c -> origin/bisect_perf_hf_T5_b7a25c1ee7c 2025-06-01T20:58:04.5046610Z * [new branch] bisect_perf_hf_T5_c25b201583f -> origin/bisect_perf_hf_T5_c25b201583f 2025-06-01T20:58:04.5047169Z * [new branch] bisect_perf_hf_T5_c93e57efac0 -> origin/bisect_perf_hf_T5_c93e57efac0 2025-06-01T20:58:04.5047733Z * [new branch] bisect_perf_hf_T5_ca9813ea149 -> origin/bisect_perf_hf_T5_ca9813ea149 2025-06-01T20:58:04.5048280Z * [new branch] bisect_perf_hf_T5_d65f194a -> origin/bisect_perf_hf_T5_d65f194a 2025-06-01T20:58:04.5048814Z * [new branch] bisect_perf_hf_T5_da94ab0b -> origin/bisect_perf_hf_T5_da94ab0b 2025-06-01T20:58:04.5049365Z * [new branch] bisect_perf_hf_T5_da94ab0b_new -> origin/bisect_perf_hf_T5_da94ab0b_new 2025-06-01T20:58:04.5049976Z * [new branch] bisect_perf_hf_T5_db4e8a1d8a8 -> origin/bisect_perf_hf_T5_db4e8a1d8a8 2025-06-01T20:58:04.5050727Z * [new branch] bisect_perf_hf_T5_e0d97e936a2 -> origin/bisect_perf_hf_T5_e0d97e936a2 2025-06-01T20:58:04.5051329Z * [new branch] bisect_perf_hf_T5_f23621ec563 -> origin/bisect_perf_hf_T5_f23621ec563 2025-06-01T20:58:04.5051885Z * [new branch] bowbao/bench_updates_stage -> origin/bowbao/bench_updates_stage 2025-06-01T20:58:04.5052439Z * [new branch] bowbao/dort_rewriter -> origin/bowbao/dort_rewriter 2025-06-01T20:58:04.5426493Z * [new branch] bowbao/skip_decomp -> origin/bowbao/skip_decomp 2025-06-01T20:58:04.5427047Z * [new branch] bowbao/wip_prs -> origin/bowbao/wip_prs 2025-06-01T20:58:04.5427608Z * [new branch] bowenbao/docker_rocm_miniforge -> origin/bowenbao/docker_rocm_miniforge 2025-06-01T20:58:04.5428241Z * [new branch] bowenbao/partial_min_max_reduce -> origin/bowenbao/partial_min_max_reduce 2025-06-01T20:58:04.5428845Z * [new branch] brister/always_wrapper_ir -> origin/brister/always_wrapper_ir 2025-06-01T20:58:04.5429443Z * [new branch] brister/faster_grid_calc -> origin/brister/faster_grid_calc 2025-06-01T20:58:04.5429993Z * [new branch] brister/test_block_ptr_same -> origin/brister/test_block_ptr_same 2025-06-01T20:58:04.5430828Z * [new branch] brister/tiled_reduction_no_numel_check -> origin/brister/tiled_reduction_no_numel_check 2025-06-01T20:58:04.5431477Z * [new branch] brister/wrapper_call_arg -> origin/brister/wrapper_call_arg 2025-06-01T20:58:04.5432031Z * [new branch] brister/wrapper_clean_up -> origin/brister/wrapper_clean_up 2025-06-01T20:58:04.5432556Z * [new branch] brister/wrapper_ir -> origin/brister/wrapper_ir 2025-06-01T20:58:04.5433083Z * [new branch] ca_0431d47eaa -> origin/ca_0431d47eaa 2025-06-01T20:58:04.5433544Z * [new branch] ca_fix_0431d47eaa -> origin/ca_fix_0431d47eaa 2025-06-01T20:58:04.5434061Z * [new branch] camyllh/ff_linting_D72572050 -> origin/camyllh/ff_linting_D72572050 2025-06-01T20:58:04.5434579Z * [new branch] check-links -> origin/check-links 2025-06-01T20:58:04.5435396Z * [new branch] cherry-pick-147095-by-pytorch_bot_bot_ -> origin/cherry-pick-147095-by-pytorch_bot_bot_ 2025-06-01T20:58:04.5436353Z * [new branch] cherry-pick-148320-by-pytorch_bot_bot_ -> origin/cherry-pick-148320-by-pytorch_bot_bot_ 2025-06-01T20:58:04.5437112Z * [new branch] cherry-pick-148677-by-pytorch_bot_bot_ -> origin/cherry-pick-148677-by-pytorch_bot_bot_ 2025-06-01T20:58:04.5437846Z * [new branch] cherry-pick-149356-by-pytorch_bot_bot_ -> origin/cherry-pick-149356-by-pytorch_bot_bot_ 2025-06-01T20:58:04.5438594Z * [new branch] cherry-pick-149654-by-pytorch_bot_bot_ -> origin/cherry-pick-149654-by-pytorch_bot_bot_ 2025-06-01T20:58:04.5439336Z * [new branch] cherry-pick-150010-by-pytorch_bot_bot_ -> origin/cherry-pick-150010-by-pytorch_bot_bot_ 2025-06-01T20:58:04.5440066Z * [new branch] cherry-pick-150138-by-pytorch_bot_bot_ -> origin/cherry-pick-150138-by-pytorch_bot_bot_ 2025-06-01T20:58:04.5440697Z * [new branch] cherry-pick-150308 -> origin/cherry-pick-150308 2025-06-01T20:58:04.5441318Z * [new branch] cherry-pick-150560-by-pytorch_bot_bot_ -> origin/cherry-pick-150560-by-pytorch_bot_bot_ 2025-06-01T20:58:04.5442133Z * [new branch] cherry-pick-151158-by-pytorch_bot_bot_ -> origin/cherry-pick-151158-by-pytorch_bot_bot_ 2025-06-01T20:58:04.5442871Z * [new branch] cherry-pick-151277-by-pytorch_bot_bot_ -> origin/cherry-pick-151277-by-pytorch_bot_bot_ 2025-06-01T20:58:04.5443600Z * [new branch] cherry-pick-151344-by-pytorch_bot_bot_ -> origin/cherry-pick-151344-by-pytorch_bot_bot_ 2025-06-01T20:58:04.5444338Z * [new branch] cherry-pick-151826-by-pytorch_bot_bot_ -> origin/cherry-pick-151826-by-pytorch_bot_bot_ 2025-06-01T20:58:04.5445066Z * [new branch] cherry-pick-151848-by-pytorch_bot_bot_ -> origin/cherry-pick-151848-by-pytorch_bot_bot_ 2025-06-01T20:58:04.5445812Z * [new branch] cherry-pick-152075-by-pytorch_bot_bot_ -> origin/cherry-pick-152075-by-pytorch_bot_bot_ 2025-06-01T20:58:04.5446549Z * [new branch] cherry-pick-152287-by-pytorch_bot_bot_ -> origin/cherry-pick-152287-by-pytorch_bot_bot_ 2025-06-01T20:58:04.5447314Z * [new branch] cherry-pick-152396-by-pytorch_bot_bot_ -> origin/cherry-pick-152396-by-pytorch_bot_bot_ 2025-06-01T20:58:04.5448088Z * [new branch] cherry-pick-152399-by-pytorch_bot_bot_ -> origin/cherry-pick-152399-by-pytorch_bot_bot_ 2025-06-01T20:58:04.5448811Z * [new branch] cherry-pick-152641-by-pytorch_bot_bot_ -> origin/cherry-pick-152641-by-pytorch_bot_bot_ 2025-06-01T20:58:04.5449552Z * [new branch] cherry-pick-153002-by-pytorch_bot_bot_ -> origin/cherry-pick-153002-by-pytorch_bot_bot_ 2025-06-01T20:58:04.5450291Z * [new branch] cherry-pick-153067-by-pytorch_bot_bot_ -> origin/cherry-pick-153067-by-pytorch_bot_bot_ 2025-06-01T20:58:04.5451020Z * [new branch] cherry-pick-153671-by-pytorch_bot_bot_ -> origin/cherry-pick-153671-by-pytorch_bot_bot_ 2025-06-01T20:58:04.5451761Z * [new branch] cherry-pick-153848-by-pytorch_bot_bot_ -> origin/cherry-pick-153848-by-pytorch_bot_bot_ 2025-06-01T20:58:04.5860934Z * [new branch] cherry-pick-153925-by-pytorch_bot_bot_ -> origin/cherry-pick-153925-by-pytorch_bot_bot_ 2025-06-01T20:58:04.5861728Z * [new branch] cherry-pick-154041-by-pytorch_bot_bot_ -> origin/cherry-pick-154041-by-pytorch_bot_bot_ 2025-06-01T20:58:04.5862469Z * [new branch] cherry-pick-154045-by-pytorch_bot_bot_ -> origin/cherry-pick-154045-by-pytorch_bot_bot_ 2025-06-01T20:58:04.5863283Z * [new branch] cherry-pick-154055-by-pytorch_bot_bot_ -> origin/cherry-pick-154055-by-pytorch_bot_bot_ 2025-06-01T20:58:04.5864022Z * [new branch] cherry-pick-154174-by-pytorch_bot_bot_ -> origin/cherry-pick-154174-by-pytorch_bot_bot_ 2025-06-01T20:58:04.5864653Z * [new branch] cherry-pick-to-2.7 -> origin/cherry-pick-to-2.7 2025-06-01T20:58:04.5865546Z * [new branch] ckluk2-compileThread-1 -> origin/ckluk2-compileThread-1 2025-06-01T20:58:04.5866113Z * [new branch] ckluk2-compileThread-2 -> origin/ckluk2-compileThread-2 2025-06-01T20:58:04.5866667Z * [new branch] ckluk2-compileThread-64 -> origin/ckluk2-compileThread-64 2025-06-01T20:58:04.5867195Z * [new branch] ckluk2-test-1 -> origin/ckluk2-test-1 2025-06-01T20:58:04.5867653Z * [new branch] cleantest1 -> origin/cleantest1 2025-06-01T20:58:04.5868118Z * [new branch] collective_c_shim -> origin/collective_c_shim 2025-06-01T20:58:04.5868755Z * [new branch] compile_fsdp2_disable_stream_and_event -> origin/compile_fsdp2_disable_stream_and_event 2025-06-01T20:58:04.5869440Z * [new branch] comply-with-setuptools -> origin/comply-with-setuptools 2025-06-01T20:58:04.5869986Z * [new branch] consolidate-is-qat -> origin/consolidate-is-qat 2025-06-01T20:58:04.5870541Z * [new branch] context_test -> origin/context_test 2025-06-01T20:58:04.5871013Z * [new branch] context_test_2.7.1 -> origin/context_test_2.7.1 2025-06-01T20:58:04.5871465Z * [new branch] copy_graph -> origin/copy_graph 2025-06-01T20:58:04.5871945Z * [new branch] cpio/fix_new_ami_tests -> origin/cpio/fix_new_ami_tests 2025-06-01T20:58:04.5872443Z * [new branch] cpio/fix_unit_test -> origin/cpio/fix_unit_test 2025-06-01T20:58:04.5872945Z * [new branch] csl/always_produce_xml -> origin/csl/always_produce_xml 2025-06-01T20:58:04.5873536Z * [new branch] csl/autoformat_merge_exception -> origin/csl/autoformat_merge_exception 2025-06-01T20:58:04.5874140Z * [new branch] csl/autoformat_trigger -> origin/csl/autoformat_trigger 2025-06-01T20:58:04.5874700Z * [new branch] csl/binary_ios_remove -> origin/csl/binary_ios_remove 2025-06-01T20:58:04.5875226Z * [new branch] csl/build_test_more_procs -> origin/csl/build_test_more_procs 2025-06-01T20:58:04.5875760Z * [new branch] csl/build_test_more_procs2 -> origin/csl/build_test_more_procs2 2025-06-01T20:58:04.5876269Z * [new branch] csl/conda_lint -> origin/csl/conda_lint 2025-06-01T20:58:04.5876719Z * [new branch] csl/conda_rand -> origin/csl/conda_rand 2025-06-01T20:58:04.5877179Z * [new branch] csl/conda_rand_2 -> origin/csl/conda_rand_2 2025-06-01T20:58:04.5877677Z * [new branch] csl/conda_swap_some_pip -> origin/csl/conda_swap_some_pip 2025-06-01T20:58:04.5878204Z * [new branch] csl/disable_failing_test -> origin/csl/disable_failing_test 2025-06-01T20:58:04.5878737Z * [new branch] csl/docker_image_rename -> origin/csl/docker_image_rename 2025-06-01T20:58:04.5879296Z * [new branch] csl/docker_name_remove_compat -> origin/csl/docker_name_remove_compat 2025-06-01T20:58:04.5879809Z * [new branch] csl/katex -> origin/csl/katex 2025-06-01T20:58:04.5880298Z * [new branch] csl/larger_runner -> origin/csl/larger_runner 2025-06-01T20:58:04.5880805Z * [new branch] csl/mps_sharding -> origin/csl/mps_sharding 2025-06-01T20:58:04.5881299Z * [new branch] csl/multistage_docker -> origin/csl/multistage_docker 2025-06-01T20:58:04.5881806Z * [new branch] csl/no_protobuf_docker -> origin/csl/no_protobuf_docker 2025-06-01T20:58:04.5882315Z * [new branch] csl/pytest_timeout -> origin/csl/pytest_timeout 2025-06-01T20:58:04.5882785Z * [new branch] csl/reuse_old_whl -> origin/csl/reuse_old_whl 2025-06-01T20:58:04.5883459Z * [new branch] csl/reuse_old_whl_delete_old_whl -> origin/csl/reuse_old_whl_delete_old_whl 2025-06-01T20:58:04.5884186Z * [new branch] csl/reuse_old_whl_more_workflows -> origin/csl/reuse_old_whl_more_workflows 2025-06-01T20:58:04.5884763Z * [new branch] csl/reuse_old_whl_no_delete -> origin/csl/reuse_old_whl_no_delete 2025-06-01T20:58:04.5885289Z * [new branch] csl/reuse_old_whl_prs -> origin/csl/reuse_old_whl_prs 2025-06-01T20:58:04.5885899Z * [new branch] csl/reuse_old_whl_replace_version -> origin/csl/reuse_old_whl_replace_version 2025-06-01T20:58:04.6345672Z * [new branch] csl/revert_message_stacked -> origin/csl/revert_message_stacked 2025-06-01T20:58:04.6346245Z * [new branch] csl/skip_build -> origin/csl/skip_build 2025-06-01T20:58:04.6346792Z * [new branch] csl/test_cuda_build_large_runner -> origin/csl/test_cuda_build_large_runner 2025-06-01T20:58:04.6347461Z * [new branch] csl/test_cusparse_binary_docker -> origin/csl/test_cusparse_binary_docker 2025-06-01T20:58:04.6348047Z * [new branch] csl/unify_install_cuda -> origin/csl/unify_install_cuda 2025-06-01T20:58:04.6348617Z * [new branch] csl/unify_install_cusparselt -> origin/csl/unify_install_cusparselt 2025-06-01T20:58:04.6349200Z * [new branch] csl/upgrad_sccache_version -> origin/csl/upgrad_sccache_version 2025-06-01T20:58:04.6349814Z * [new branch] csl/upload_stats_linux_aarch64 -> origin/csl/upload_stats_linux_aarch64 2025-06-01T20:58:04.6350421Z * [new branch] csl/xla_sccache -> origin/csl/xla_sccache 2025-06-01T20:58:04.6350926Z * [new branch] cudnnsdparefactor -> origin/cudnnsdparefactor 2025-06-01T20:58:04.6351430Z * [new branch] custom_lowering_dict -> origin/custom_lowering_dict 2025-06-01T20:58:04.6351927Z * [new branch] d4l3k/dist_queue -> origin/d4l3k/dist_queue 2025-06-01T20:58:04.6352396Z * [new branch] d4l3k/fsdp_wait -> origin/d4l3k/fsdp_wait 2025-06-01T20:58:04.6353151Z * [new branch] dependabot/pip/dot-github/requirements/pillow-10.3.0 -> origin/dependabot/pip/dot-github/requirements/pillow-10.3.0 2025-06-01T20:58:04.6354162Z * [new branch] dependabot/pip/tools/build/bazel/setuptools-78.1.1 -> origin/dependabot/pip/tools/build/bazel/setuptools-78.1.1 2025-06-01T20:58:04.6354942Z * [new branch] desertfire/test_cpp_wrapper -> origin/desertfire/test_cpp_wrapper 2025-06-01T20:58:04.6355619Z * [new branch] desertfire/torchgen_support_default_arg -> origin/desertfire/torchgen_support_default_arg 2025-06-01T20:58:04.6356349Z * [new branch] desertfire/triton-cpu-for-aarch64 -> origin/desertfire/triton-cpu-for-aarch64 2025-06-01T20:58:04.6356980Z * [new branch] desertfire/update_hf_pin -> origin/desertfire/update_hf_pin 2025-06-01T20:58:04.6357555Z * [new branch] dev/joona/MPSNDArrayAdd -> origin/dev/joona/MPSNDArrayAdd 2025-06-01T20:58:04.6358081Z * [new branch] dev/joona/Unranked -> origin/dev/joona/Unranked 2025-06-01T20:58:04.6358591Z * [new branch] dev/joona/cachingkey -> origin/dev/joona/cachingkey 2025-06-01T20:58:04.6359076Z * [new branch] dev/joona/cat -> origin/dev/joona/cat 2025-06-01T20:58:04.6359581Z * [new branch] dev/joona/cat_remove_graph -> origin/dev/joona/cat_remove_graph 2025-06-01T20:58:04.6360155Z * [new branch] dev/joona/convtranspose3d -> origin/dev/joona/convtranspose3d 2025-06-01T20:58:04.6360705Z * [new branch] dev/joona/embeddingbag -> origin/dev/joona/embeddingbag 2025-06-01T20:58:04.6361268Z * [new branch] dev/joona/getTensorsString -> origin/dev/joona/getTensorsString 2025-06-01T20:58:04.6362636Z * [new branch] dev/joona/mps_linear -> origin/dev/joona/mps_linear 2025-06-01T20:58:04.6363365Z * [new branch] dev/joona/mps_linear_macos14 -> origin/dev/joona/mps_linear_macos14 2025-06-01T20:58:04.6363948Z * [new branch] dev/joona/sdpa -> origin/dev/joona/sdpa 2025-06-01T20:58:04.6364558Z * [new branch] dev/joona/synchronize_benchmark -> origin/dev/joona/synchronize_benchmark 2025-06-01T20:58:04.6365146Z * [new branch] dev/joona/type_inf -> origin/dev/joona/type_inf 2025-06-01T20:58:04.6365677Z * [new branch] dev/joona/upsize3d -> origin/dev/joona/upsize3d 2025-06-01T20:58:04.6366137Z * [new branch] disable -> origin/disable 2025-06-01T20:58:04.6366636Z * [new branch] disable_fp_contract_baseline -> origin/disable_fp_contract_baseline 2025-06-01T20:58:04.6367149Z * [new branch] divup -> origin/divup 2025-06-01T20:58:04.6367672Z * [new branch] divyanshk-update-codeowners -> origin/divyanshk-update-codeowners 2025-06-01T20:58:04.6368215Z * [new branch] e2e-baseline -> origin/e2e-baseline 2025-06-01T20:58:04.6368739Z * [new branch] eikanwang/eager_torch_compile -> origin/eikanwang/eager_torch_compile 2025-06-01T20:58:04.6369319Z * [new branch] embg/test_inductor_ci_128B -> origin/embg/test_inductor_ci_128B 2025-06-01T20:58:04.6369863Z * [new branch] embg/test_inductor_ci_base -> origin/embg/test_inductor_ci_base 2025-06-01T20:58:04.6370436Z * [new branch] embg/test_inductor_ci_control -> origin/embg/test_inductor_ci_control 2025-06-01T20:58:04.6371010Z * [new branch] embg/triton_l2_prefetch_128B -> origin/embg/triton_l2_prefetch_128B 2025-06-01T20:58:04.6733814Z * [new branch] embg/triton_l2_prefetch_256B -> origin/embg/triton_l2_prefetch_256B 2025-06-01T20:58:04.6734430Z * [new branch] enableMoreTests -> origin/enableMoreTests 2025-06-01T20:58:04.6734956Z * [new branch] enableMoreUtilTests -> origin/enableMoreUtilTests 2025-06-01T20:58:04.6735455Z * [new branch] eqy-patch-1 -> origin/eqy-patch-1 2025-06-01T20:58:04.6735952Z * [new branch] eqy-patch-10 -> origin/eqy-patch-10 2025-06-01T20:58:04.6736440Z * [new branch] eqy-patch-11 -> origin/eqy-patch-11 2025-06-01T20:58:04.6736884Z * [new branch] eqy-patch-12 -> origin/eqy-patch-12 2025-06-01T20:58:04.6737322Z * [new branch] eqy-patch-13 -> origin/eqy-patch-13 2025-06-01T20:58:04.6737762Z * [new branch] eqy-patch-2 -> origin/eqy-patch-2 2025-06-01T20:58:04.6738234Z * [new branch] eqy-patch-3 -> origin/eqy-patch-3 2025-06-01T20:58:04.6738677Z * [new branch] eqy-patch-4 -> origin/eqy-patch-4 2025-06-01T20:58:04.6739130Z * [new branch] eqy-patch-7 -> origin/eqy-patch-7 2025-06-01T20:58:04.6739561Z * [new branch] eqy-patch-9 -> origin/eqy-patch-9 2025-06-01T20:58:04.6740146Z * [new branch] error-when-setattr-over-cls-attr -> origin/error-when-setattr-over-cls-attr 2025-06-01T20:58:04.6740792Z * [new branch] example-convert-torch.nn -> origin/example-convert-torch.nn 2025-06-01T20:58:04.6741501Z * [new branch] exclamaforte/combo-kernels-perf-run -> origin/exclamaforte/combo-kernels-perf-run 2025-06-01T20:58:04.6742296Z * [new branch] exclamaforte/debug-autotuner-profile -> origin/exclamaforte/debug-autotuner-profile 2025-06-01T20:58:04.6743026Z * [new branch] exclamaforte/enable-mem-dep-fusion -> origin/exclamaforte/enable-mem-dep-fusion 2025-06-01T20:58:04.6743757Z * [new branch] exclamaforte/fix-trace-parsing-fx-svg -> origin/exclamaforte/fix-trace-parsing-fx-svg 2025-06-01T20:58:04.6744752Z * [new branch] exclamaforte/flag-metrics -> origin/exclamaforte/flag-metrics 2025-06-01T20:58:04.6745476Z * [new branch] exclamaforte/force-pointwise-cat-perf-run -> origin/exclamaforte/force-pointwise-cat-perf-run 2025-06-01T20:58:04.6746195Z * [new branch] exclamaforte/fusion-data -> origin/exclamaforte/fusion-data 2025-06-01T20:58:04.6746807Z * [new branch] exclamaforte/heuristic-choices -> origin/exclamaforte/heuristic-choices 2025-06-01T20:58:04.6747526Z * [new branch] exclamaforte/heuristic-choices-2 -> origin/exclamaforte/heuristic-choices-2 2025-06-01T20:58:04.6748173Z * [new branch] exclamaforte/log_mul -> origin/exclamaforte/log_mul 2025-06-01T20:58:04.6748809Z * [new branch] exclamaforte/max-autotune-dtype-test -> origin/exclamaforte/max-autotune-dtype-test 2025-06-01T20:58:04.6749493Z * [new branch] exclamaforte/memory-counter -> origin/exclamaforte/memory-counter 2025-06-01T20:58:04.6750298Z * [new branch] exclamaforte/scheduler-flops-refactor -> origin/exclamaforte/scheduler-flops-refactor 2025-06-01T20:58:04.6751032Z * [new branch] exclamaforte/scheduler-refactor -> origin/exclamaforte/scheduler-refactor 2025-06-01T20:58:04.6751712Z * [new branch] exclamaforte/test_cpp_wrapper_mode -> origin/exclamaforte/test_cpp_wrapper_mode 2025-06-01T20:58:04.6752438Z * [new branch] exclamaforte/update-autotune-configs -> origin/exclamaforte/update-autotune-configs 2025-06-01T20:58:04.6753052Z * [new branch] exec -> origin/exec 2025-06-01T20:58:04.6753551Z * [new branch] experimental-mosaic -> origin/experimental-mosaic 2025-06-01T20:58:04.6754071Z * [new branch] export-D52434604 -> origin/export-D52434604 2025-06-01T20:58:04.6754546Z * [new branch] export-D58091437 -> origin/export-D58091437 2025-06-01T20:58:04.6755023Z * [new branch] export-D61047529 -> origin/export-D61047529 2025-06-01T20:58:04.6755494Z * [new branch] export-D68245292 -> origin/export-D68245292 2025-06-01T20:58:04.6755957Z * [new branch] export-D68846308 -> origin/export-D68846308 2025-06-01T20:58:04.6756441Z * [new branch] export-D69361235 -> origin/export-D69361235 2025-06-01T20:58:04.6756907Z * [new branch] export-D70193972 -> origin/export-D70193972 2025-06-01T20:58:04.6757378Z * [new branch] export-D71412006 -> origin/export-D71412006 2025-06-01T20:58:04.6757836Z * [new branch] export-D71446522 -> origin/export-D71446522 2025-06-01T20:58:04.6758308Z * [new branch] export-D72483950 -> origin/export-D72483950 2025-06-01T20:58:04.6758832Z * [new branch] export-D72762767 -> origin/export-D72762767 2025-06-01T20:58:04.6759342Z * [new branch] export-D72978020 -> origin/export-D72978020 2025-06-01T20:58:04.7186593Z * [new branch] export-D73008663 -> origin/export-D73008663 2025-06-01T20:58:04.7187145Z * [new branch] export-D73042989 -> origin/export-D73042989 2025-06-01T20:58:04.7187617Z * [new branch] export-D73287751 -> origin/export-D73287751 2025-06-01T20:58:04.7188090Z * [new branch] export-D73399889 -> origin/export-D73399889 2025-06-01T20:58:04.7188567Z * [new branch] export-D73867797 -> origin/export-D73867797 2025-06-01T20:58:04.7189043Z * [new branch] export-D74033649 -> origin/export-D74033649 2025-06-01T20:58:04.7189511Z * [new branch] export-D74085173 -> origin/export-D74085173 2025-06-01T20:58:04.7190244Z * [new branch] export-D74398762 -> origin/export-D74398762 2025-06-01T20:58:04.7190853Z * [new branch] export-D74444990 -> origin/export-D74444990 2025-06-01T20:58:04.7191315Z * [new branch] export-D74599203 -> origin/export-D74599203 2025-06-01T20:58:04.7191792Z * [new branch] export-D74664734 -> origin/export-D74664734 2025-06-01T20:58:04.7192263Z * [new branch] export-D74911818 -> origin/export-D74911818 2025-06-01T20:58:04.7192737Z * [new branch] export-D75159672 -> origin/export-D75159672 2025-06-01T20:58:04.7193206Z * [new branch] export-D75183591 -> origin/export-D75183591 2025-06-01T20:58:04.7193670Z * [new branch] export-D75313723 -> origin/export-D75313723 2025-06-01T20:58:04.7194138Z * [new branch] export-D75360856 -> origin/export-D75360856 2025-06-01T20:58:04.7194605Z * [new branch] export-D75568693 -> origin/export-D75568693 2025-06-01T20:58:04.7195076Z * [new branch] export-D75605373 -> origin/export-D75605373 2025-06-01T20:58:04.7195557Z * [new branch] export-D75617432 -> origin/export-D75617432 2025-06-01T20:58:04.7196020Z * [new branch] export-D75617963 -> origin/export-D75617963 2025-06-01T20:58:04.7196489Z * [new branch] export-D75659965 -> origin/export-D75659965 2025-06-01T20:58:04.7197069Z * [new branch] exported-model-train-idempotent -> origin/exported-model-train-idempotent 2025-06-01T20:58:04.7197636Z * [new branch] fa_u8_brgemm -> origin/fa_u8_brgemm 2025-06-01T20:58:04.7198086Z * [new branch] fastmath_baseline -> origin/fastmath_baseline 2025-06-01T20:58:04.7198547Z * [new branch] fbcode/warm -> origin/fbcode/warm 2025-06-01T20:58:04.7198967Z * [new branch] fca -> origin/fca 2025-06-01T20:58:04.7199399Z * [new branch] fca2_ca5984c -> origin/fca2_ca5984c 2025-06-01T20:58:04.7199817Z * [new branch] fca5 -> origin/fca5 2025-06-01T20:58:04.7200424Z * [new branch] fengyuan/external-proj -> origin/fengyuan/external-proj 2025-06-01T20:58:04.7201201Z * [new branch] fengyuan/out-of-tree-xpu-ops-improve-test -> origin/fengyuan/out-of-tree-xpu-ops-improve-test 2025-06-01T20:58:04.7202125Z * [new branch] fengyuan/out-of-tree-xpu-ops-remove-dtype -> origin/fengyuan/out-of-tree-xpu-ops-remove-dtype 2025-06-01T20:58:04.7202855Z * [new branch] fengyuan/test-xpu -> origin/fengyuan/test-xpu 2025-06-01T20:58:04.7203426Z * [new branch] ffast_math_baseline -> origin/ffast_math_baseline 2025-06-01T20:58:04.7203943Z * [new branch] ffast_math_target -> origin/ffast_math_target 2025-06-01T20:58:04.7204502Z * [new branch] findhao/base_commit -> origin/findhao/base_commit 2025-06-01T20:58:04.7205040Z * [new branch] findhao/base_commit1 -> origin/findhao/base_commit1 2025-06-01T20:58:04.7205655Z * [new branch] findhao/fix-indirect-access -> origin/findhao/fix-indirect-access 2025-06-01T20:58:04.7206257Z * [new branch] findhao/multistream2 -> origin/findhao/multistream2 2025-06-01T20:58:04.7206851Z * [new branch] findhao/multistream5 -> origin/findhao/multistream5 2025-06-01T20:58:04.7207377Z * [new branch] findhao/multistream6 -> origin/findhao/multistream6 2025-06-01T20:58:04.7207909Z * [new branch] findhao/operatorbench3 -> origin/findhao/operatorbench3 2025-06-01T20:58:04.7208455Z * [new branch] findhao/operatorbench5 -> origin/findhao/operatorbench5 2025-06-01T20:58:04.7209113Z * [new branch] findhao/tritonparse -> origin/findhao/tritonparse 2025-06-01T20:58:04.7209810Z * [new branch] findhao/update_clean_triton_script -> origin/findhao/update_clean_triton_script 2025-06-01T20:58:04.7210358Z * [new branch] fix -> origin/fix 2025-06-01T20:58:04.7210778Z * [new branch] fix-149722 -> origin/fix-149722 2025-06-01T20:58:04.7211193Z * [new branch] fix-2.7 -> origin/fix-2.7 2025-06-01T20:58:04.7639196Z * [new branch] fix-ck-gemm-template-format -> origin/fix-ck-gemm-template-format 2025-06-01T20:58:04.7639814Z * [new branch] fix-config-ignore -> origin/fix-config-ignore 2025-06-01T20:58:04.7640398Z * [new branch] fix-cpu-affinity-cgroups -> origin/fix-cpu-affinity-cgroups 2025-06-01T20:58:04.7640932Z * [new branch] fix-dict-guard -> origin/fix-dict-guard 2025-06-01T20:58:04.7641465Z * [new branch] fix-for-patch-doc-build -> origin/fix-for-patch-doc-build 2025-06-01T20:58:04.7642069Z * [new branch] fix-inductor-periodic-0528 -> origin/fix-inductor-periodic-0528 2025-06-01T20:58:04.7642573Z * [new branch] fix-links -> origin/fix-links 2025-06-01T20:58:04.7642998Z * [new branch] fix-urls -> origin/fix-urls 2025-06-01T20:58:04.7643428Z * [new branch] fix-urls-2 -> origin/fix-urls-2 2025-06-01T20:58:04.7643895Z * [new branch] fix_allow_train_eval_msg -> origin/fix_allow_train_eval_msg 2025-06-01T20:58:04.7644379Z * [new branch] fix_partial -> origin/fix_partial 2025-06-01T20:58:04.7644816Z * [new branch] fixes-triage -> origin/fixes-triage 2025-06-01T20:58:04.7645358Z * [new branch] flex_attention_functorch_grad -> origin/flex_attention_functorch_grad 2025-06-01T20:58:04.7646049Z * [new branch] fmassa/fix_memeff_sharding_rule -> origin/fmassa/fix_memeff_sharding_rule 2025-06-01T20:58:04.7646827Z * [new branch] fmassa/partitioner_knapsack_checkpoint -> origin/fmassa/partitioner_knapsack_checkpoint 2025-06-01T20:58:04.7647449Z * [new branch] fsdp-qps-drop -> origin/fsdp-qps-drop 2025-06-01T20:58:04.7647917Z * [new branch] fsdp2_trace_rules -> origin/fsdp2_trace_rules 2025-06-01T20:58:04.7648374Z * [new branch] fsdpv2_3d -> origin/fsdpv2_3d 2025-06-01T20:58:04.7648807Z * [new branch] fsdpv2_3d_m1 -> origin/fsdpv2_3d_m1 2025-06-01T20:58:04.7649241Z * [new branch] fused_qkv -> origin/fused_qkv 2025-06-01T20:58:04.7649659Z * [new branch] fx_cpp -> origin/fx_cpp 2025-06-01T20:58:04.7650071Z * [new branch] fy/fix-win -> origin/fy/fix-win 2025-06-01T20:58:04.7650539Z * [new branch] gh/AlnisM/1/base -> origin/gh/AlnisM/1/base 2025-06-01T20:58:04.7651030Z * [new branch] gh/AlnisM/1/head -> origin/gh/AlnisM/1/head 2025-06-01T20:58:04.7651505Z * [new branch] gh/CaoE/1/base -> origin/gh/CaoE/1/base 2025-06-01T20:58:04.7651959Z * [new branch] gh/CaoE/1/head -> origin/gh/CaoE/1/head 2025-06-01T20:58:04.7652442Z * [new branch] gh/CaoE/1/orig -> origin/gh/CaoE/1/orig 2025-06-01T20:58:04.7652960Z * [new branch] gh/CaoE/2/base -> origin/gh/CaoE/2/base 2025-06-01T20:58:04.7653438Z * [new branch] gh/CaoE/2/head -> origin/gh/CaoE/2/head 2025-06-01T20:58:04.7653926Z * [new branch] gh/CaoE/2/orig -> origin/gh/CaoE/2/orig 2025-06-01T20:58:04.7654457Z * [new branch] gh/CaoE/3/base -> origin/gh/CaoE/3/base 2025-06-01T20:58:04.7655094Z * [new branch] gh/CaoE/3/head -> origin/gh/CaoE/3/head 2025-06-01T20:58:04.7655688Z * [new branch] gh/CaoE/3/orig -> origin/gh/CaoE/3/orig 2025-06-01T20:58:04.7656195Z * [new branch] gh/ColinPeppler/67/base -> origin/gh/ColinPeppler/67/base 2025-06-01T20:58:04.7656771Z * [new branch] gh/ColinPeppler/67/head -> origin/gh/ColinPeppler/67/head 2025-06-01T20:58:04.7657327Z * [new branch] gh/ColinPeppler/67/orig -> origin/gh/ColinPeppler/67/orig 2025-06-01T20:58:04.7657875Z * [new branch] gh/ColinPeppler/68/base -> origin/gh/ColinPeppler/68/base 2025-06-01T20:58:04.7658432Z * [new branch] gh/ColinPeppler/68/head -> origin/gh/ColinPeppler/68/head 2025-06-01T20:58:04.7658973Z * [new branch] gh/ColinPeppler/68/orig -> origin/gh/ColinPeppler/68/orig 2025-06-01T20:58:04.7659559Z * [new branch] gh/ColinPeppler/69/base -> origin/gh/ColinPeppler/69/base 2025-06-01T20:58:04.7660178Z * [new branch] gh/ColinPeppler/69/head -> origin/gh/ColinPeppler/69/head 2025-06-01T20:58:04.7660765Z * [new branch] gh/ColinPeppler/69/orig -> origin/gh/ColinPeppler/69/orig 2025-06-01T20:58:04.7661311Z * [new branch] gh/ColinPeppler/70/base -> origin/gh/ColinPeppler/70/base 2025-06-01T20:58:04.7661847Z * [new branch] gh/ColinPeppler/70/head -> origin/gh/ColinPeppler/70/head 2025-06-01T20:58:04.7662392Z * [new branch] gh/ColinPeppler/70/orig -> origin/gh/ColinPeppler/70/orig 2025-06-01T20:58:04.7662916Z * [new branch] gh/EikanWang/67/base -> origin/gh/EikanWang/67/base 2025-06-01T20:58:04.7663422Z * [new branch] gh/EikanWang/67/head -> origin/gh/EikanWang/67/head 2025-06-01T20:58:04.7663929Z * [new branch] gh/EikanWang/80/base -> origin/gh/EikanWang/80/base 2025-06-01T20:58:04.8112032Z * [new branch] gh/EikanWang/80/head -> origin/gh/EikanWang/80/head 2025-06-01T20:58:04.8112621Z * [new branch] gh/EikanWang/80/orig -> origin/gh/EikanWang/80/orig 2025-06-01T20:58:04.8113132Z * [new branch] gh/EikanWang/81/base -> origin/gh/EikanWang/81/base 2025-06-01T20:58:04.8113668Z * [new branch] gh/EikanWang/81/head -> origin/gh/EikanWang/81/head 2025-06-01T20:58:04.8114213Z * [new branch] gh/EikanWang/81/orig -> origin/gh/EikanWang/81/orig 2025-06-01T20:58:04.8114711Z * [new branch] gh/Gasoonjia/1/base -> origin/gh/Gasoonjia/1/base 2025-06-01T20:58:04.8115218Z * [new branch] gh/Gasoonjia/1/head -> origin/gh/Gasoonjia/1/head 2025-06-01T20:58:04.8115712Z * [new branch] gh/H-Huang/131/base -> origin/gh/H-Huang/131/base 2025-06-01T20:58:04.8116178Z * [new branch] gh/H-Huang/131/head -> origin/gh/H-Huang/131/head 2025-06-01T20:58:04.8116662Z * [new branch] gh/H-Huang/131/orig -> origin/gh/H-Huang/131/orig 2025-06-01T20:58:04.8117138Z * [new branch] gh/H-Huang/132/base -> origin/gh/H-Huang/132/base 2025-06-01T20:58:04.8117617Z * [new branch] gh/H-Huang/132/head -> origin/gh/H-Huang/132/head 2025-06-01T20:58:04.8118092Z * [new branch] gh/H-Huang/132/orig -> origin/gh/H-Huang/132/orig 2025-06-01T20:58:04.8118559Z * [new branch] gh/H-Huang/160/base -> origin/gh/H-Huang/160/base 2025-06-01T20:58:04.8119034Z * [new branch] gh/H-Huang/160/head -> origin/gh/H-Huang/160/head 2025-06-01T20:58:04.8119539Z * [new branch] gh/H-Huang/160/orig -> origin/gh/H-Huang/160/orig 2025-06-01T20:58:04.8120089Z * [new branch] gh/H-Huang/168/base -> origin/gh/H-Huang/168/base 2025-06-01T20:58:04.8120592Z * [new branch] gh/H-Huang/168/head -> origin/gh/H-Huang/168/head 2025-06-01T20:58:04.8121484Z * [new branch] gh/H-Huang/168/orig -> origin/gh/H-Huang/168/orig 2025-06-01T20:58:04.8121966Z * [new branch] gh/H-Huang/172/base -> origin/gh/H-Huang/172/base 2025-06-01T20:58:04.8122437Z * [new branch] gh/H-Huang/172/head -> origin/gh/H-Huang/172/head 2025-06-01T20:58:04.8122922Z * [new branch] gh/H-Huang/172/orig -> origin/gh/H-Huang/172/orig 2025-06-01T20:58:04.8123395Z * [new branch] gh/H-Huang/175/base -> origin/gh/H-Huang/175/base 2025-06-01T20:58:04.8123875Z * [new branch] gh/H-Huang/175/head -> origin/gh/H-Huang/175/head 2025-06-01T20:58:04.8124350Z * [new branch] gh/H-Huang/175/orig -> origin/gh/H-Huang/175/orig 2025-06-01T20:58:04.8124820Z * [new branch] gh/H-Huang/176/base -> origin/gh/H-Huang/176/base 2025-06-01T20:58:04.8125299Z * [new branch] gh/H-Huang/176/head -> origin/gh/H-Huang/176/head 2025-06-01T20:58:04.8125866Z * [new branch] gh/H-Huang/176/orig -> origin/gh/H-Huang/176/orig 2025-06-01T20:58:04.8126350Z * [new branch] gh/H-Huang/177/base -> origin/gh/H-Huang/177/base 2025-06-01T20:58:04.8126978Z * [new branch] gh/H-Huang/177/head -> origin/gh/H-Huang/177/head 2025-06-01T20:58:04.8127452Z * [new branch] gh/H-Huang/177/orig -> origin/gh/H-Huang/177/orig 2025-06-01T20:58:04.8127935Z * [new branch] gh/H-Huang/178/base -> origin/gh/H-Huang/178/base 2025-06-01T20:58:04.8128405Z * [new branch] gh/H-Huang/178/head -> origin/gh/H-Huang/178/head 2025-06-01T20:58:04.8128887Z * [new branch] gh/H-Huang/178/orig -> origin/gh/H-Huang/178/orig 2025-06-01T20:58:04.8129371Z * [new branch] gh/H-Huang/179/base -> origin/gh/H-Huang/179/base 2025-06-01T20:58:04.8129843Z * [new branch] gh/H-Huang/179/head -> origin/gh/H-Huang/179/head 2025-06-01T20:58:04.8130331Z * [new branch] gh/H-Huang/179/orig -> origin/gh/H-Huang/179/orig 2025-06-01T20:58:04.8130801Z * [new branch] gh/H-Huang/180/base -> origin/gh/H-Huang/180/base 2025-06-01T20:58:04.8131278Z * [new branch] gh/H-Huang/180/head -> origin/gh/H-Huang/180/head 2025-06-01T20:58:04.8131748Z * [new branch] gh/H-Huang/180/orig -> origin/gh/H-Huang/180/orig 2025-06-01T20:58:04.8132254Z * [new branch] gh/H-Huang/181/base -> origin/gh/H-Huang/181/base 2025-06-01T20:58:04.8132761Z * [new branch] gh/H-Huang/181/head -> origin/gh/H-Huang/181/head 2025-06-01T20:58:04.8133272Z * [new branch] gh/H-Huang/181/orig -> origin/gh/H-Huang/181/orig 2025-06-01T20:58:04.8133821Z * [new branch] gh/H-Huang/182/base -> origin/gh/H-Huang/182/base 2025-06-01T20:58:04.8134331Z * [new branch] gh/H-Huang/182/head -> origin/gh/H-Huang/182/head 2025-06-01T20:58:04.8134888Z * [new branch] gh/H-Huang/182/orig -> origin/gh/H-Huang/182/orig 2025-06-01T20:58:04.8557370Z * [new branch] gh/H-Huang/183/base -> origin/gh/H-Huang/183/base 2025-06-01T20:58:04.8557925Z * [new branch] gh/H-Huang/183/head -> origin/gh/H-Huang/183/head 2025-06-01T20:58:04.8558429Z * [new branch] gh/H-Huang/183/orig -> origin/gh/H-Huang/183/orig 2025-06-01T20:58:04.8558926Z * [new branch] gh/H-Huang/184/base -> origin/gh/H-Huang/184/base 2025-06-01T20:58:04.8559449Z * [new branch] gh/H-Huang/184/head -> origin/gh/H-Huang/184/head 2025-06-01T20:58:04.8559991Z * [new branch] gh/H-Huang/184/orig -> origin/gh/H-Huang/184/orig 2025-06-01T20:58:04.8560469Z * [new branch] gh/H-Huang/185/base -> origin/gh/H-Huang/185/base 2025-06-01T20:58:04.8561321Z * [new branch] gh/H-Huang/185/head -> origin/gh/H-Huang/185/head 2025-06-01T20:58:04.8561820Z * [new branch] gh/H-Huang/185/orig -> origin/gh/H-Huang/185/orig 2025-06-01T20:58:04.8562344Z * [new branch] gh/IvanKobzarev/100/base -> origin/gh/IvanKobzarev/100/base 2025-06-01T20:58:04.8562918Z * [new branch] gh/IvanKobzarev/100/head -> origin/gh/IvanKobzarev/100/head 2025-06-01T20:58:04.8563472Z * [new branch] gh/IvanKobzarev/100/orig -> origin/gh/IvanKobzarev/100/orig 2025-06-01T20:58:04.8564033Z * [new branch] gh/IvanKobzarev/106/base -> origin/gh/IvanKobzarev/106/base 2025-06-01T20:58:04.8564598Z * [new branch] gh/IvanKobzarev/106/head -> origin/gh/IvanKobzarev/106/head 2025-06-01T20:58:04.8565190Z * [new branch] gh/IvanKobzarev/106/orig -> origin/gh/IvanKobzarev/106/orig 2025-06-01T20:58:04.8565799Z * [new branch] gh/IvanKobzarev/107/base -> origin/gh/IvanKobzarev/107/base 2025-06-01T20:58:04.8566348Z * [new branch] gh/IvanKobzarev/107/head -> origin/gh/IvanKobzarev/107/head 2025-06-01T20:58:04.8566903Z * [new branch] gh/IvanKobzarev/107/orig -> origin/gh/IvanKobzarev/107/orig 2025-06-01T20:58:04.8567465Z * [new branch] gh/IvanKobzarev/109/base -> origin/gh/IvanKobzarev/109/base 2025-06-01T20:58:04.8568011Z * [new branch] gh/IvanKobzarev/109/head -> origin/gh/IvanKobzarev/109/head 2025-06-01T20:58:04.8568576Z * [new branch] gh/IvanKobzarev/109/orig -> origin/gh/IvanKobzarev/109/orig 2025-06-01T20:58:04.8569126Z * [new branch] gh/IvanKobzarev/110/base -> origin/gh/IvanKobzarev/110/base 2025-06-01T20:58:04.8569676Z * [new branch] gh/IvanKobzarev/110/head -> origin/gh/IvanKobzarev/110/head 2025-06-01T20:58:04.8570234Z * [new branch] gh/IvanKobzarev/110/orig -> origin/gh/IvanKobzarev/110/orig 2025-06-01T20:58:04.8570841Z * [new branch] gh/IvanKobzarev/111/base -> origin/gh/IvanKobzarev/111/base 2025-06-01T20:58:04.8571493Z * [new branch] gh/IvanKobzarev/111/head -> origin/gh/IvanKobzarev/111/head 2025-06-01T20:58:04.8572088Z * [new branch] gh/IvanKobzarev/111/orig -> origin/gh/IvanKobzarev/111/orig 2025-06-01T20:58:04.8572648Z * [new branch] gh/IvanKobzarev/112/base -> origin/gh/IvanKobzarev/112/base 2025-06-01T20:58:04.8573188Z * [new branch] gh/IvanKobzarev/112/head -> origin/gh/IvanKobzarev/112/head 2025-06-01T20:58:04.8573753Z * [new branch] gh/IvanKobzarev/112/orig -> origin/gh/IvanKobzarev/112/orig 2025-06-01T20:58:04.8574307Z * [new branch] gh/IvanKobzarev/64/base -> origin/gh/IvanKobzarev/64/base 2025-06-01T20:58:04.8574847Z * [new branch] gh/IvanKobzarev/64/head -> origin/gh/IvanKobzarev/64/head 2025-06-01T20:58:04.8575406Z * [new branch] gh/IvanKobzarev/64/orig -> origin/gh/IvanKobzarev/64/orig 2025-06-01T20:58:04.8575959Z * [new branch] gh/NikhilAPatel/1/base -> origin/gh/NikhilAPatel/1/base 2025-06-01T20:58:04.8576514Z * [new branch] gh/NikhilAPatel/1/head -> origin/gh/NikhilAPatel/1/head 2025-06-01T20:58:04.8577069Z * [new branch] gh/NikhilAPatel/10/base -> origin/gh/NikhilAPatel/10/base 2025-06-01T20:58:04.8577695Z * [new branch] gh/NikhilAPatel/10/head -> origin/gh/NikhilAPatel/10/head 2025-06-01T20:58:04.8578293Z * [new branch] gh/NikhilAPatel/10/orig -> origin/gh/NikhilAPatel/10/orig 2025-06-01T20:58:04.8578919Z * [new branch] gh/NikhilAPatel/11/base -> origin/gh/NikhilAPatel/11/base 2025-06-01T20:58:04.8579561Z * [new branch] gh/NikhilAPatel/11/head -> origin/gh/NikhilAPatel/11/head 2025-06-01T20:58:04.8580309Z * [new branch] gh/NikhilAPatel/11/orig -> origin/gh/NikhilAPatel/11/orig 2025-06-01T20:58:04.8581000Z * [new branch] gh/NikhilAPatel/12/base -> origin/gh/NikhilAPatel/12/base 2025-06-01T20:58:04.8581556Z * [new branch] gh/NikhilAPatel/12/head -> origin/gh/NikhilAPatel/12/head 2025-06-01T20:58:04.8582102Z * [new branch] gh/NikhilAPatel/12/orig -> origin/gh/NikhilAPatel/12/orig 2025-06-01T20:58:04.8582668Z * [new branch] gh/NikhilAPatel/2/base -> origin/gh/NikhilAPatel/2/base 2025-06-01T20:58:04.8583232Z * [new branch] gh/NikhilAPatel/2/head -> origin/gh/NikhilAPatel/2/head 2025-06-01T20:58:04.9026951Z * [new branch] gh/NikhilAPatel/3/base -> origin/gh/NikhilAPatel/3/base 2025-06-01T20:58:04.9027581Z * [new branch] gh/NikhilAPatel/3/head -> origin/gh/NikhilAPatel/3/head 2025-06-01T20:58:04.9028131Z * [new branch] gh/NikhilAPatel/3/orig -> origin/gh/NikhilAPatel/3/orig 2025-06-01T20:58:04.9028716Z * [new branch] gh/NikhilAPatel/4/base -> origin/gh/NikhilAPatel/4/base 2025-06-01T20:58:04.9029278Z * [new branch] gh/NikhilAPatel/4/head -> origin/gh/NikhilAPatel/4/head 2025-06-01T20:58:04.9029818Z * [new branch] gh/NikhilAPatel/8/base -> origin/gh/NikhilAPatel/8/base 2025-06-01T20:58:04.9030476Z * [new branch] gh/NikhilAPatel/8/head -> origin/gh/NikhilAPatel/8/head 2025-06-01T20:58:04.9031058Z * [new branch] gh/NikhilAPatel/8/orig -> origin/gh/NikhilAPatel/8/orig 2025-06-01T20:58:04.9031657Z * [new branch] gh/NikhilAPatel/9/base -> origin/gh/NikhilAPatel/9/base 2025-06-01T20:58:04.9032230Z * [new branch] gh/NikhilAPatel/9/head -> origin/gh/NikhilAPatel/9/head 2025-06-01T20:58:04.9032826Z * [new branch] gh/NikhilAPatel/9/orig -> origin/gh/NikhilAPatel/9/orig 2025-06-01T20:58:04.9033424Z * [new branch] gh/PaulZhang12/1/base -> origin/gh/PaulZhang12/1/base 2025-06-01T20:58:04.9033959Z * [new branch] gh/PaulZhang12/1/head -> origin/gh/PaulZhang12/1/head 2025-06-01T20:58:04.9034497Z * [new branch] gh/PaulZhang12/1/orig -> origin/gh/PaulZhang12/1/orig 2025-06-01T20:58:04.9035040Z * [new branch] gh/PaulZhang12/12/base -> origin/gh/PaulZhang12/12/base 2025-06-01T20:58:04.9035571Z * [new branch] gh/PaulZhang12/12/head -> origin/gh/PaulZhang12/12/head 2025-06-01T20:58:04.9036111Z * [new branch] gh/PaulZhang12/13/base -> origin/gh/PaulZhang12/13/base 2025-06-01T20:58:04.9036630Z * [new branch] gh/PaulZhang12/13/head -> origin/gh/PaulZhang12/13/head 2025-06-01T20:58:04.9037161Z * [new branch] gh/PaulZhang12/13/orig -> origin/gh/PaulZhang12/13/orig 2025-06-01T20:58:04.9037696Z * [new branch] gh/PaulZhang12/14/base -> origin/gh/PaulZhang12/14/base 2025-06-01T20:58:04.9038229Z * [new branch] gh/PaulZhang12/14/head -> origin/gh/PaulZhang12/14/head 2025-06-01T20:58:04.9038810Z * [new branch] gh/PaulZhang12/14/orig -> origin/gh/PaulZhang12/14/orig 2025-06-01T20:58:04.9039425Z * [new branch] gh/PaulZhang12/15/base -> origin/gh/PaulZhang12/15/base 2025-06-01T20:58:04.9040002Z * [new branch] gh/PaulZhang12/15/head -> origin/gh/PaulZhang12/15/head 2025-06-01T20:58:04.9040603Z * [new branch] gh/PaulZhang12/15/orig -> origin/gh/PaulZhang12/15/orig 2025-06-01T20:58:04.9041180Z * [new branch] gh/PaulZhang12/16/base -> origin/gh/PaulZhang12/16/base 2025-06-01T20:58:04.9041790Z * [new branch] gh/PaulZhang12/16/head -> origin/gh/PaulZhang12/16/head 2025-06-01T20:58:04.9042358Z * [new branch] gh/PaulZhang12/16/orig -> origin/gh/PaulZhang12/16/orig 2025-06-01T20:58:04.9042896Z * [new branch] gh/PaulZhang12/17/base -> origin/gh/PaulZhang12/17/base 2025-06-01T20:58:04.9044789Z * [new branch] gh/PaulZhang12/17/head -> origin/gh/PaulZhang12/17/head 2025-06-01T20:58:04.9045356Z * [new branch] gh/PaulZhang12/4/base -> origin/gh/PaulZhang12/4/base 2025-06-01T20:58:04.9045899Z * [new branch] gh/PaulZhang12/4/head -> origin/gh/PaulZhang12/4/head 2025-06-01T20:58:04.9046429Z * [new branch] gh/PaulZhang12/4/orig -> origin/gh/PaulZhang12/4/orig 2025-06-01T20:58:04.9046958Z * [new branch] gh/PaulZhang12/9/base -> origin/gh/PaulZhang12/9/base 2025-06-01T20:58:04.9047527Z * [new branch] gh/PaulZhang12/9/head -> origin/gh/PaulZhang12/9/head 2025-06-01T20:58:04.9048102Z * [new branch] gh/PaulZhang12/9/orig -> origin/gh/PaulZhang12/9/orig 2025-06-01T20:58:04.9048735Z * [new branch] gh/SamGinzburg/11/base -> origin/gh/SamGinzburg/11/base 2025-06-01T20:58:04.9049316Z * [new branch] gh/SamGinzburg/11/head -> origin/gh/SamGinzburg/11/head 2025-06-01T20:58:04.9049960Z * [new branch] gh/Sidharth123-cpu/1/base -> origin/gh/Sidharth123-cpu/1/base 2025-06-01T20:58:04.9050567Z * [new branch] gh/Sidharth123-cpu/1/head -> origin/gh/Sidharth123-cpu/1/head 2025-06-01T20:58:04.9051137Z * [new branch] gh/Sidharth123-cpu/1/orig -> origin/gh/Sidharth123-cpu/1/orig 2025-06-01T20:58:04.9051710Z * [new branch] gh/Sidharth123-cpu/10/base -> origin/gh/Sidharth123-cpu/10/base 2025-06-01T20:58:04.9052276Z * [new branch] gh/Sidharth123-cpu/10/head -> origin/gh/Sidharth123-cpu/10/head 2025-06-01T20:58:04.9052856Z * [new branch] gh/Sidharth123-cpu/10/orig -> origin/gh/Sidharth123-cpu/10/orig 2025-06-01T20:58:04.9053426Z * [new branch] gh/Sidharth123-cpu/11/base -> origin/gh/Sidharth123-cpu/11/base 2025-06-01T20:58:04.9460756Z * [new branch] gh/Sidharth123-cpu/11/head -> origin/gh/Sidharth123-cpu/11/head 2025-06-01T20:58:04.9461391Z * [new branch] gh/Sidharth123-cpu/11/orig -> origin/gh/Sidharth123-cpu/11/orig 2025-06-01T20:58:04.9461989Z * [new branch] gh/Sidharth123-cpu/12/base -> origin/gh/Sidharth123-cpu/12/base 2025-06-01T20:58:04.9462655Z * [new branch] gh/Sidharth123-cpu/12/head -> origin/gh/Sidharth123-cpu/12/head 2025-06-01T20:58:04.9463231Z * [new branch] gh/Sidharth123-cpu/12/orig -> origin/gh/Sidharth123-cpu/12/orig 2025-06-01T20:58:04.9463783Z * [new branch] gh/Sidharth123-cpu/13/base -> origin/gh/Sidharth123-cpu/13/base 2025-06-01T20:58:04.9464347Z * [new branch] gh/Sidharth123-cpu/13/head -> origin/gh/Sidharth123-cpu/13/head 2025-06-01T20:58:04.9464909Z * [new branch] gh/Sidharth123-cpu/14/base -> origin/gh/Sidharth123-cpu/14/base 2025-06-01T20:58:04.9465464Z * [new branch] gh/Sidharth123-cpu/14/head -> origin/gh/Sidharth123-cpu/14/head 2025-06-01T20:58:04.9466030Z * [new branch] gh/Sidharth123-cpu/14/orig -> origin/gh/Sidharth123-cpu/14/orig 2025-06-01T20:58:04.9466591Z * [new branch] gh/Sidharth123-cpu/15/base -> origin/gh/Sidharth123-cpu/15/base 2025-06-01T20:58:04.9467158Z * [new branch] gh/Sidharth123-cpu/15/head -> origin/gh/Sidharth123-cpu/15/head 2025-06-01T20:58:04.9467714Z * [new branch] gh/Sidharth123-cpu/15/orig -> origin/gh/Sidharth123-cpu/15/orig 2025-06-01T20:58:04.9468352Z * [new branch] gh/Sidharth123-cpu/16/base -> origin/gh/Sidharth123-cpu/16/base 2025-06-01T20:58:04.9468912Z * [new branch] gh/Sidharth123-cpu/16/head -> origin/gh/Sidharth123-cpu/16/head 2025-06-01T20:58:04.9469480Z * [new branch] gh/Sidharth123-cpu/16/orig -> origin/gh/Sidharth123-cpu/16/orig 2025-06-01T20:58:04.9470031Z * [new branch] gh/Sidharth123-cpu/17/base -> origin/gh/Sidharth123-cpu/17/base 2025-06-01T20:58:04.9470901Z * [new branch] gh/Sidharth123-cpu/17/head -> origin/gh/Sidharth123-cpu/17/head 2025-06-01T20:58:04.9471602Z * [new branch] gh/Sidharth123-cpu/17/orig -> origin/gh/Sidharth123-cpu/17/orig 2025-06-01T20:58:04.9472167Z * [new branch] gh/Sidharth123-cpu/18/base -> origin/gh/Sidharth123-cpu/18/base 2025-06-01T20:58:04.9472749Z * [new branch] gh/Sidharth123-cpu/18/head -> origin/gh/Sidharth123-cpu/18/head 2025-06-01T20:58:04.9473325Z * [new branch] gh/Sidharth123-cpu/18/orig -> origin/gh/Sidharth123-cpu/18/orig 2025-06-01T20:58:04.9473927Z * [new branch] gh/Sidharth123-cpu/19/base -> origin/gh/Sidharth123-cpu/19/base 2025-06-01T20:58:04.9474537Z * [new branch] gh/Sidharth123-cpu/19/head -> origin/gh/Sidharth123-cpu/19/head 2025-06-01T20:58:04.9475101Z * [new branch] gh/Sidharth123-cpu/19/orig -> origin/gh/Sidharth123-cpu/19/orig 2025-06-01T20:58:04.9504414Z * [new branch] gh/Sidharth123-cpu/2/base -> origin/gh/Sidharth123-cpu/2/base 2025-06-01T20:58:04.9505243Z * [new branch] gh/Sidharth123-cpu/2/head -> origin/gh/Sidharth123-cpu/2/head 2025-06-01T20:58:04.9505848Z * [new branch] gh/Sidharth123-cpu/2/orig -> origin/gh/Sidharth123-cpu/2/orig 2025-06-01T20:58:04.9506403Z * [new branch] gh/Sidharth123-cpu/3/base -> origin/gh/Sidharth123-cpu/3/base 2025-06-01T20:58:04.9506962Z * [new branch] gh/Sidharth123-cpu/3/head -> origin/gh/Sidharth123-cpu/3/head 2025-06-01T20:58:04.9507505Z * [new branch] gh/Sidharth123-cpu/3/orig -> origin/gh/Sidharth123-cpu/3/orig 2025-06-01T20:58:04.9508062Z * [new branch] gh/Sidharth123-cpu/4/base -> origin/gh/Sidharth123-cpu/4/base 2025-06-01T20:58:04.9508664Z * [new branch] gh/Sidharth123-cpu/4/head -> origin/gh/Sidharth123-cpu/4/head 2025-06-01T20:58:04.9509255Z * [new branch] gh/Sidharth123-cpu/4/orig -> origin/gh/Sidharth123-cpu/4/orig 2025-06-01T20:58:04.9509827Z * [new branch] gh/Sidharth123-cpu/5/base -> origin/gh/Sidharth123-cpu/5/base 2025-06-01T20:58:04.9510455Z * [new branch] gh/Sidharth123-cpu/5/head -> origin/gh/Sidharth123-cpu/5/head 2025-06-01T20:58:04.9511014Z * [new branch] gh/Sidharth123-cpu/5/orig -> origin/gh/Sidharth123-cpu/5/orig 2025-06-01T20:58:04.9511577Z * [new branch] gh/Sidharth123-cpu/6/base -> origin/gh/Sidharth123-cpu/6/base 2025-06-01T20:58:04.9512129Z * [new branch] gh/Sidharth123-cpu/6/head -> origin/gh/Sidharth123-cpu/6/head 2025-06-01T20:58:04.9512691Z * [new branch] gh/Sidharth123-cpu/6/orig -> origin/gh/Sidharth123-cpu/6/orig 2025-06-01T20:58:04.9513239Z * [new branch] gh/Sidharth123-cpu/7/base -> origin/gh/Sidharth123-cpu/7/base 2025-06-01T20:58:04.9513792Z * [new branch] gh/Sidharth123-cpu/7/head -> origin/gh/Sidharth123-cpu/7/head 2025-06-01T20:58:04.9514385Z * [new branch] gh/Sidharth123-cpu/7/orig -> origin/gh/Sidharth123-cpu/7/orig 2025-06-01T20:58:04.9514986Z * [new branch] gh/Sidharth123-cpu/8/base -> origin/gh/Sidharth123-cpu/8/base 2025-06-01T20:58:04.9899780Z * [new branch] gh/Sidharth123-cpu/8/head -> origin/gh/Sidharth123-cpu/8/head 2025-06-01T20:58:04.9900372Z * [new branch] gh/Sidharth123-cpu/8/orig -> origin/gh/Sidharth123-cpu/8/orig 2025-06-01T20:58:04.9900984Z * [new branch] gh/Sidharth123-cpu/9/base -> origin/gh/Sidharth123-cpu/9/base 2025-06-01T20:58:04.9901588Z * [new branch] gh/Sidharth123-cpu/9/head -> origin/gh/Sidharth123-cpu/9/head 2025-06-01T20:58:04.9902136Z * [new branch] gh/Sidharth123-cpu/9/orig -> origin/gh/Sidharth123-cpu/9/orig 2025-06-01T20:58:04.9902672Z * [new branch] gh/StrongerXi/1/base -> origin/gh/StrongerXi/1/base 2025-06-01T20:58:04.9903405Z * [new branch] gh/StrongerXi/1/head -> origin/gh/StrongerXi/1/head 2025-06-01T20:58:04.9904072Z * [new branch] gh/StrongerXi/103/base -> origin/gh/StrongerXi/103/base 2025-06-01T20:58:04.9904610Z * [new branch] gh/StrongerXi/103/head -> origin/gh/StrongerXi/103/head 2025-06-01T20:58:04.9905144Z * [new branch] gh/StrongerXi/103/orig -> origin/gh/StrongerXi/103/orig 2025-06-01T20:58:04.9905662Z * [new branch] gh/StrongerXi/104/base -> origin/gh/StrongerXi/104/base 2025-06-01T20:58:04.9906184Z * [new branch] gh/StrongerXi/104/head -> origin/gh/StrongerXi/104/head 2025-06-01T20:58:04.9906735Z * [new branch] gh/StrongerXi/104/orig -> origin/gh/StrongerXi/104/orig 2025-06-01T20:58:04.9907291Z * [new branch] gh/StrongerXi/105/base -> origin/gh/StrongerXi/105/base 2025-06-01T20:58:04.9907817Z * [new branch] gh/StrongerXi/105/head -> origin/gh/StrongerXi/105/head 2025-06-01T20:58:04.9908337Z * [new branch] gh/StrongerXi/105/orig -> origin/gh/StrongerXi/105/orig 2025-06-01T20:58:04.9908869Z * [new branch] gh/StrongerXi/106/base -> origin/gh/StrongerXi/106/base 2025-06-01T20:58:04.9909389Z * [new branch] gh/StrongerXi/106/head -> origin/gh/StrongerXi/106/head 2025-06-01T20:58:04.9909911Z * [new branch] gh/StrongerXi/106/orig -> origin/gh/StrongerXi/106/orig 2025-06-01T20:58:04.9910503Z * [new branch] gh/StrongerXi/107/base -> origin/gh/StrongerXi/107/base 2025-06-01T20:58:04.9911031Z * [new branch] gh/StrongerXi/107/head -> origin/gh/StrongerXi/107/head 2025-06-01T20:58:04.9911553Z * [new branch] gh/StrongerXi/107/orig -> origin/gh/StrongerXi/107/orig 2025-06-01T20:58:04.9912071Z * [new branch] gh/StrongerXi/108/base -> origin/gh/StrongerXi/108/base 2025-06-01T20:58:04.9912638Z * [new branch] gh/StrongerXi/108/head -> origin/gh/StrongerXi/108/head 2025-06-01T20:58:04.9913195Z * [new branch] gh/StrongerXi/108/orig -> origin/gh/StrongerXi/108/orig 2025-06-01T20:58:04.9913724Z * [new branch] gh/StrongerXi/109/base -> origin/gh/StrongerXi/109/base 2025-06-01T20:58:04.9914251Z * [new branch] gh/StrongerXi/109/head -> origin/gh/StrongerXi/109/head 2025-06-01T20:58:04.9914763Z * [new branch] gh/StrongerXi/109/orig -> origin/gh/StrongerXi/109/orig 2025-06-01T20:58:04.9915283Z * [new branch] gh/StrongerXi/110/base -> origin/gh/StrongerXi/110/base 2025-06-01T20:58:04.9915833Z * [new branch] gh/StrongerXi/110/head -> origin/gh/StrongerXi/110/head 2025-06-01T20:58:04.9916346Z * [new branch] gh/StrongerXi/110/orig -> origin/gh/StrongerXi/110/orig 2025-06-01T20:58:04.9916869Z * [new branch] gh/StrongerXi/111/base -> origin/gh/StrongerXi/111/base 2025-06-01T20:58:04.9917393Z * [new branch] gh/StrongerXi/111/head -> origin/gh/StrongerXi/111/head 2025-06-01T20:58:04.9917932Z * [new branch] gh/StrongerXi/111/orig -> origin/gh/StrongerXi/111/orig 2025-06-01T20:58:04.9918486Z * [new branch] gh/StrongerXi/112/base -> origin/gh/StrongerXi/112/base 2025-06-01T20:58:04.9919049Z * [new branch] gh/StrongerXi/112/head -> origin/gh/StrongerXi/112/head 2025-06-01T20:58:04.9919569Z * [new branch] gh/StrongerXi/112/orig -> origin/gh/StrongerXi/112/orig 2025-06-01T20:58:04.9920084Z * [new branch] gh/StrongerXi/113/base -> origin/gh/StrongerXi/113/base 2025-06-01T20:58:04.9920606Z * [new branch] gh/StrongerXi/113/head -> origin/gh/StrongerXi/113/head 2025-06-01T20:58:04.9921122Z * [new branch] gh/StrongerXi/113/orig -> origin/gh/StrongerXi/113/orig 2025-06-01T20:58:04.9921781Z * [new branch] gh/StrongerXi/114/base -> origin/gh/StrongerXi/114/base 2025-06-01T20:58:04.9922430Z * [new branch] gh/StrongerXi/114/head -> origin/gh/StrongerXi/114/head 2025-06-01T20:58:04.9922946Z * [new branch] gh/StrongerXi/114/orig -> origin/gh/StrongerXi/114/orig 2025-06-01T20:58:04.9923471Z * [new branch] gh/StrongerXi/115/base -> origin/gh/StrongerXi/115/base 2025-06-01T20:58:04.9924025Z * [new branch] gh/StrongerXi/115/head -> origin/gh/StrongerXi/115/head 2025-06-01T20:58:05.0334845Z * [new branch] gh/StrongerXi/115/orig -> origin/gh/StrongerXi/115/orig 2025-06-01T20:58:05.0335437Z * [new branch] gh/StrongerXi/116/base -> origin/gh/StrongerXi/116/base 2025-06-01T20:58:05.0335963Z * [new branch] gh/StrongerXi/116/head -> origin/gh/StrongerXi/116/head 2025-06-01T20:58:05.0336534Z * [new branch] gh/StrongerXi/116/orig -> origin/gh/StrongerXi/116/orig 2025-06-01T20:58:05.0337099Z * [new branch] gh/StrongerXi/117/base -> origin/gh/StrongerXi/117/base 2025-06-01T20:58:05.0337638Z * [new branch] gh/StrongerXi/117/head -> origin/gh/StrongerXi/117/head 2025-06-01T20:58:05.0338162Z * [new branch] gh/StrongerXi/117/orig -> origin/gh/StrongerXi/117/orig 2025-06-01T20:58:05.0338681Z * [new branch] gh/StrongerXi/118/base -> origin/gh/StrongerXi/118/base 2025-06-01T20:58:05.0339201Z * [new branch] gh/StrongerXi/118/head -> origin/gh/StrongerXi/118/head 2025-06-01T20:58:05.0339716Z * [new branch] gh/StrongerXi/118/orig -> origin/gh/StrongerXi/118/orig 2025-06-01T20:58:05.0340237Z * [new branch] gh/StrongerXi/119/base -> origin/gh/StrongerXi/119/base 2025-06-01T20:58:05.0340757Z * [new branch] gh/StrongerXi/119/head -> origin/gh/StrongerXi/119/head 2025-06-01T20:58:05.0341277Z * [new branch] gh/StrongerXi/119/orig -> origin/gh/StrongerXi/119/orig 2025-06-01T20:58:05.0341808Z * [new branch] gh/StrongerXi/120/base -> origin/gh/StrongerXi/120/base 2025-06-01T20:58:05.0342324Z * [new branch] gh/StrongerXi/120/head -> origin/gh/StrongerXi/120/head 2025-06-01T20:58:05.0342849Z * [new branch] gh/StrongerXi/120/orig -> origin/gh/StrongerXi/120/orig 2025-06-01T20:58:05.0343369Z * [new branch] gh/StrongerXi/121/base -> origin/gh/StrongerXi/121/base 2025-06-01T20:58:05.0343885Z * [new branch] gh/StrongerXi/121/head -> origin/gh/StrongerXi/121/head 2025-06-01T20:58:05.0344463Z * [new branch] gh/StrongerXi/121/orig -> origin/gh/StrongerXi/121/orig 2025-06-01T20:58:05.0344985Z * [new branch] gh/StrongerXi/122/base -> origin/gh/StrongerXi/122/base 2025-06-01T20:58:05.0345509Z * [new branch] gh/StrongerXi/122/head -> origin/gh/StrongerXi/122/head 2025-06-01T20:58:05.0346041Z * [new branch] gh/StrongerXi/122/orig -> origin/gh/StrongerXi/122/orig 2025-06-01T20:58:05.0346567Z * [new branch] gh/StrongerXi/71/base -> origin/gh/StrongerXi/71/base 2025-06-01T20:58:05.0347091Z * [new branch] gh/StrongerXi/71/head -> origin/gh/StrongerXi/71/head 2025-06-01T20:58:05.0347603Z * [new branch] gh/StrongerXi/72/base -> origin/gh/StrongerXi/72/base 2025-06-01T20:58:05.0348122Z * [new branch] gh/StrongerXi/72/head -> origin/gh/StrongerXi/72/head 2025-06-01T20:58:05.0348641Z * [new branch] gh/Xia-Weiwen/34/base -> origin/gh/Xia-Weiwen/34/base 2025-06-01T20:58:05.0349139Z * [new branch] gh/Xia-Weiwen/34/head -> origin/gh/Xia-Weiwen/34/head 2025-06-01T20:58:05.0349650Z * [new branch] gh/Xia-Weiwen/34/orig -> origin/gh/Xia-Weiwen/34/orig 2025-06-01T20:58:05.0350229Z * [new branch] gh/Xia-Weiwen/37/base -> origin/gh/Xia-Weiwen/37/base 2025-06-01T20:58:05.0351078Z * [new branch] gh/Xia-Weiwen/37/head -> origin/gh/Xia-Weiwen/37/head 2025-06-01T20:58:05.0351589Z * [new branch] gh/Xia-Weiwen/37/orig -> origin/gh/Xia-Weiwen/37/orig 2025-06-01T20:58:05.0352096Z * [new branch] gh/Xia-Weiwen/38/base -> origin/gh/Xia-Weiwen/38/base 2025-06-01T20:58:05.0352610Z * [new branch] gh/Xia-Weiwen/38/head -> origin/gh/Xia-Weiwen/38/head 2025-06-01T20:58:05.0353111Z * [new branch] gh/Xia-Weiwen/38/orig -> origin/gh/Xia-Weiwen/38/orig 2025-06-01T20:58:05.0353617Z * [new branch] gh/Xia-Weiwen/39/base -> origin/gh/Xia-Weiwen/39/base 2025-06-01T20:58:05.0354110Z * [new branch] gh/Xia-Weiwen/39/head -> origin/gh/Xia-Weiwen/39/head 2025-06-01T20:58:05.0354606Z * [new branch] gh/Xia-Weiwen/39/orig -> origin/gh/Xia-Weiwen/39/orig 2025-06-01T20:58:05.0355121Z * [new branch] gh/XilunWu/110/base -> origin/gh/XilunWu/110/base 2025-06-01T20:58:05.0355629Z * [new branch] gh/XilunWu/110/head -> origin/gh/XilunWu/110/head 2025-06-01T20:58:05.0356123Z * [new branch] gh/XilunWu/110/orig -> origin/gh/XilunWu/110/orig 2025-06-01T20:58:05.0356601Z * [new branch] gh/XilunWu/115/base -> origin/gh/XilunWu/115/base 2025-06-01T20:58:05.0357092Z * [new branch] gh/XilunWu/115/head -> origin/gh/XilunWu/115/head 2025-06-01T20:58:05.0357582Z * [new branch] gh/XilunWu/115/orig -> origin/gh/XilunWu/115/orig 2025-06-01T20:58:05.0358076Z * [new branch] gh/XilunWu/116/base -> origin/gh/XilunWu/116/base 2025-06-01T20:58:05.0358567Z * [new branch] gh/XilunWu/116/head -> origin/gh/XilunWu/116/head 2025-06-01T20:58:05.0790839Z * [new branch] gh/XilunWu/116/orig -> origin/gh/XilunWu/116/orig 2025-06-01T20:58:05.0791424Z * [new branch] gh/XilunWu/117/base -> origin/gh/XilunWu/117/base 2025-06-01T20:58:05.0791932Z * [new branch] gh/XilunWu/117/head -> origin/gh/XilunWu/117/head 2025-06-01T20:58:05.0792428Z * [new branch] gh/XilunWu/117/orig -> origin/gh/XilunWu/117/orig 2025-06-01T20:58:05.0792920Z * [new branch] gh/XilunWu/118/base -> origin/gh/XilunWu/118/base 2025-06-01T20:58:05.0793399Z * [new branch] gh/XilunWu/118/head -> origin/gh/XilunWu/118/head 2025-06-01T20:58:05.0793929Z * [new branch] gh/XilunWu/118/orig -> origin/gh/XilunWu/118/orig 2025-06-01T20:58:05.0794448Z * [new branch] gh/XilunWu/119/base -> origin/gh/XilunWu/119/base 2025-06-01T20:58:05.0794933Z * [new branch] gh/XilunWu/119/head -> origin/gh/XilunWu/119/head 2025-06-01T20:58:05.0795421Z * [new branch] gh/XilunWu/119/orig -> origin/gh/XilunWu/119/orig 2025-06-01T20:58:05.0795911Z * [new branch] gh/XilunWu/122/base -> origin/gh/XilunWu/122/base 2025-06-01T20:58:05.0796397Z * [new branch] gh/XilunWu/122/head -> origin/gh/XilunWu/122/head 2025-06-01T20:58:05.0796874Z * [new branch] gh/XilunWu/122/orig -> origin/gh/XilunWu/122/orig 2025-06-01T20:58:05.0797366Z * [new branch] gh/XilunWu/125/base -> origin/gh/XilunWu/125/base 2025-06-01T20:58:05.0797853Z * [new branch] gh/XilunWu/125/head -> origin/gh/XilunWu/125/head 2025-06-01T20:58:05.0798340Z * [new branch] gh/XilunWu/125/orig -> origin/gh/XilunWu/125/orig 2025-06-01T20:58:05.0798834Z * [new branch] gh/XilunWu/126/base -> origin/gh/XilunWu/126/base 2025-06-01T20:58:05.0799316Z * [new branch] gh/XilunWu/126/head -> origin/gh/XilunWu/126/head 2025-06-01T20:58:05.0800077Z * [new branch] gh/XilunWu/126/orig -> origin/gh/XilunWu/126/orig 2025-06-01T20:58:05.0800692Z * [new branch] gh/XilunWu/127/base -> origin/gh/XilunWu/127/base 2025-06-01T20:58:05.0801190Z * [new branch] gh/XilunWu/127/head -> origin/gh/XilunWu/127/head 2025-06-01T20:58:05.0801689Z * [new branch] gh/XilunWu/127/orig -> origin/gh/XilunWu/127/orig 2025-06-01T20:58:05.0802172Z * [new branch] gh/XilunWu/129/base -> origin/gh/XilunWu/129/base 2025-06-01T20:58:05.0802665Z * [new branch] gh/XilunWu/129/head -> origin/gh/XilunWu/129/head 2025-06-01T20:58:05.0803146Z * [new branch] gh/XilunWu/129/orig -> origin/gh/XilunWu/129/orig 2025-06-01T20:58:05.0803663Z * [new branch] gh/XilunWu/130/base -> origin/gh/XilunWu/130/base 2025-06-01T20:58:05.0804157Z * [new branch] gh/XilunWu/130/head -> origin/gh/XilunWu/130/head 2025-06-01T20:58:05.0804649Z * [new branch] gh/XilunWu/130/orig -> origin/gh/XilunWu/130/orig 2025-06-01T20:58:05.0805148Z * [new branch] gh/XilunWu/131/base -> origin/gh/XilunWu/131/base 2025-06-01T20:58:05.0805709Z * [new branch] gh/XilunWu/131/head -> origin/gh/XilunWu/131/head 2025-06-01T20:58:05.0806202Z * [new branch] gh/XilunWu/131/orig -> origin/gh/XilunWu/131/orig 2025-06-01T20:58:05.0806689Z * [new branch] gh/XilunWu/133/base -> origin/gh/XilunWu/133/base 2025-06-01T20:58:05.0807176Z * [new branch] gh/XilunWu/133/head -> origin/gh/XilunWu/133/head 2025-06-01T20:58:05.0807671Z * [new branch] gh/XilunWu/133/orig -> origin/gh/XilunWu/133/orig 2025-06-01T20:58:05.0808152Z * [new branch] gh/XilunWu/134/base -> origin/gh/XilunWu/134/base 2025-06-01T20:58:05.0808640Z * [new branch] gh/XilunWu/134/head -> origin/gh/XilunWu/134/head 2025-06-01T20:58:05.0809130Z * [new branch] gh/XilunWu/134/orig -> origin/gh/XilunWu/134/orig 2025-06-01T20:58:05.0809613Z * [new branch] gh/XilunWu/135/base -> origin/gh/XilunWu/135/base 2025-06-01T20:58:05.0810103Z * [new branch] gh/XilunWu/135/head -> origin/gh/XilunWu/135/head 2025-06-01T20:58:05.0810587Z * [new branch] gh/XilunWu/135/orig -> origin/gh/XilunWu/135/orig 2025-06-01T20:58:05.0811114Z * [new branch] gh/XilunWu/136/base -> origin/gh/XilunWu/136/base 2025-06-01T20:58:05.0811649Z * [new branch] gh/XilunWu/136/head -> origin/gh/XilunWu/136/head 2025-06-01T20:58:05.0812133Z * [new branch] gh/XilunWu/136/orig -> origin/gh/XilunWu/136/orig 2025-06-01T20:58:05.0812621Z * [new branch] gh/XilunWu/137/base -> origin/gh/XilunWu/137/base 2025-06-01T20:58:05.0813106Z * [new branch] gh/XilunWu/137/head -> origin/gh/XilunWu/137/head 2025-06-01T20:58:05.0813611Z * [new branch] gh/XilunWu/137/orig -> origin/gh/XilunWu/137/orig 2025-06-01T20:58:05.0814099Z * [new branch] gh/XilunWu/138/base -> origin/gh/XilunWu/138/base 2025-06-01T20:58:05.1249694Z * [new branch] gh/XilunWu/138/head -> origin/gh/XilunWu/138/head 2025-06-01T20:58:05.1250318Z * [new branch] gh/XilunWu/138/orig -> origin/gh/XilunWu/138/orig 2025-06-01T20:58:05.1250826Z * [new branch] gh/XilunWu/139/base -> origin/gh/XilunWu/139/base 2025-06-01T20:58:05.1251327Z * [new branch] gh/XilunWu/139/head -> origin/gh/XilunWu/139/head 2025-06-01T20:58:05.1251891Z * [new branch] gh/XilunWu/139/orig -> origin/gh/XilunWu/139/orig 2025-06-01T20:58:05.1252384Z * [new branch] gh/XilunWu/140/base -> origin/gh/XilunWu/140/base 2025-06-01T20:58:05.1253087Z * [new branch] gh/XilunWu/140/head -> origin/gh/XilunWu/140/head 2025-06-01T20:58:05.1253718Z * [new branch] gh/XilunWu/140/orig -> origin/gh/XilunWu/140/orig 2025-06-01T20:58:05.1254217Z * [new branch] gh/XilunWu/141/base -> origin/gh/XilunWu/141/base 2025-06-01T20:58:05.1254699Z * [new branch] gh/XilunWu/141/head -> origin/gh/XilunWu/141/head 2025-06-01T20:58:05.1255215Z * [new branch] gh/XilunWu/141/orig -> origin/gh/XilunWu/141/orig 2025-06-01T20:58:05.1255706Z * [new branch] gh/XilunWu/142/base -> origin/gh/XilunWu/142/base 2025-06-01T20:58:05.1256190Z * [new branch] gh/XilunWu/142/head -> origin/gh/XilunWu/142/head 2025-06-01T20:58:05.1256687Z * [new branch] gh/XilunWu/142/orig -> origin/gh/XilunWu/142/orig 2025-06-01T20:58:05.1257180Z * [new branch] gh/XilunWu/143/base -> origin/gh/XilunWu/143/base 2025-06-01T20:58:05.1257673Z * [new branch] gh/XilunWu/143/head -> origin/gh/XilunWu/143/head 2025-06-01T20:58:05.1258169Z * [new branch] gh/XilunWu/143/orig -> origin/gh/XilunWu/143/orig 2025-06-01T20:58:05.1258647Z * [new branch] gh/XilunWu/144/base -> origin/gh/XilunWu/144/base 2025-06-01T20:58:05.1259146Z * [new branch] gh/XilunWu/144/head -> origin/gh/XilunWu/144/head 2025-06-01T20:58:05.1259635Z * [new branch] gh/XilunWu/144/orig -> origin/gh/XilunWu/144/orig 2025-06-01T20:58:05.1260119Z * [new branch] gh/XilunWu/145/base -> origin/gh/XilunWu/145/base 2025-06-01T20:58:05.1260606Z * [new branch] gh/XilunWu/145/head -> origin/gh/XilunWu/145/head 2025-06-01T20:58:05.1261087Z * [new branch] gh/XilunWu/145/orig -> origin/gh/XilunWu/145/orig 2025-06-01T20:58:05.1261589Z * [new branch] gh/XuehaiPan/109/base -> origin/gh/XuehaiPan/109/base 2025-06-01T20:58:05.1262131Z * [new branch] gh/XuehaiPan/109/head -> origin/gh/XuehaiPan/109/head 2025-06-01T20:58:05.1262646Z * [new branch] gh/XuehaiPan/109/orig -> origin/gh/XuehaiPan/109/orig 2025-06-01T20:58:05.1263160Z * [new branch] gh/XuehaiPan/14/base -> origin/gh/XuehaiPan/14/base 2025-06-01T20:58:05.1263672Z * [new branch] gh/XuehaiPan/14/head -> origin/gh/XuehaiPan/14/head 2025-06-01T20:58:05.1264174Z * [new branch] gh/XuehaiPan/14/orig -> origin/gh/XuehaiPan/14/orig 2025-06-01T20:58:05.1264692Z * [new branch] gh/XuehaiPan/179/base -> origin/gh/XuehaiPan/179/base 2025-06-01T20:58:05.1265203Z * [new branch] gh/XuehaiPan/179/head -> origin/gh/XuehaiPan/179/head 2025-06-01T20:58:05.1265718Z * [new branch] gh/XuehaiPan/179/orig -> origin/gh/XuehaiPan/179/orig 2025-06-01T20:58:05.1266230Z * [new branch] gh/XuehaiPan/182/base -> origin/gh/XuehaiPan/182/base 2025-06-01T20:58:05.1266747Z * [new branch] gh/XuehaiPan/182/head -> origin/gh/XuehaiPan/182/head 2025-06-01T20:58:05.1267255Z * [new branch] gh/XuehaiPan/182/orig -> origin/gh/XuehaiPan/182/orig 2025-06-01T20:58:05.1267757Z * [new branch] gh/XuehaiPan/183/base -> origin/gh/XuehaiPan/183/base 2025-06-01T20:58:05.1268267Z * [new branch] gh/XuehaiPan/183/head -> origin/gh/XuehaiPan/183/head 2025-06-01T20:58:05.1268780Z * [new branch] gh/XuehaiPan/183/orig -> origin/gh/XuehaiPan/183/orig 2025-06-01T20:58:05.1269277Z * [new branch] gh/XuehaiPan/185/base -> origin/gh/XuehaiPan/185/base 2025-06-01T20:58:05.1269789Z * [new branch] gh/XuehaiPan/185/head -> origin/gh/XuehaiPan/185/head 2025-06-01T20:58:05.1270453Z * [new branch] gh/XuehaiPan/185/orig -> origin/gh/XuehaiPan/185/orig 2025-06-01T20:58:05.1271111Z * [new branch] gh/XuehaiPan/189/base -> origin/gh/XuehaiPan/189/base 2025-06-01T20:58:05.1271731Z * [new branch] gh/XuehaiPan/189/head -> origin/gh/XuehaiPan/189/head 2025-06-01T20:58:05.1272240Z * [new branch] gh/XuehaiPan/189/orig -> origin/gh/XuehaiPan/189/orig 2025-06-01T20:58:05.1272754Z * [new branch] gh/XuehaiPan/217/base -> origin/gh/XuehaiPan/217/base 2025-06-01T20:58:05.1273254Z * [new branch] gh/XuehaiPan/217/head -> origin/gh/XuehaiPan/217/head 2025-06-01T20:58:05.1273763Z * [new branch] gh/XuehaiPan/217/orig -> origin/gh/XuehaiPan/217/orig 2025-06-01T20:58:05.1680755Z * [new branch] gh/XuehaiPan/218/base -> origin/gh/XuehaiPan/218/base 2025-06-01T20:58:05.1681338Z * [new branch] gh/XuehaiPan/218/head -> origin/gh/XuehaiPan/218/head 2025-06-01T20:58:05.1681862Z * [new branch] gh/XuehaiPan/218/orig -> origin/gh/XuehaiPan/218/orig 2025-06-01T20:58:05.1682417Z * [new branch] gh/XuehaiPan/219/base -> origin/gh/XuehaiPan/219/base 2025-06-01T20:58:05.1682930Z * [new branch] gh/XuehaiPan/219/head -> origin/gh/XuehaiPan/219/head 2025-06-01T20:58:05.1683438Z * [new branch] gh/XuehaiPan/219/orig -> origin/gh/XuehaiPan/219/orig 2025-06-01T20:58:05.1683957Z * [new branch] gh/XuehaiPan/223/base -> origin/gh/XuehaiPan/223/base 2025-06-01T20:58:05.1684480Z * [new branch] gh/XuehaiPan/223/head -> origin/gh/XuehaiPan/223/head 2025-06-01T20:58:05.1684982Z * [new branch] gh/XuehaiPan/223/orig -> origin/gh/XuehaiPan/223/orig 2025-06-01T20:58:05.1685494Z * [new branch] gh/XuehaiPan/226/base -> origin/gh/XuehaiPan/226/base 2025-06-01T20:58:05.1686006Z * [new branch] gh/XuehaiPan/226/head -> origin/gh/XuehaiPan/226/head 2025-06-01T20:58:05.1686524Z * [new branch] gh/XuehaiPan/226/orig -> origin/gh/XuehaiPan/226/orig 2025-06-01T20:58:05.1687042Z * [new branch] gh/XuehaiPan/227/base -> origin/gh/XuehaiPan/227/base 2025-06-01T20:58:05.1687548Z * [new branch] gh/XuehaiPan/227/head -> origin/gh/XuehaiPan/227/head 2025-06-01T20:58:05.1688067Z * [new branch] gh/XuehaiPan/227/orig -> origin/gh/XuehaiPan/227/orig 2025-06-01T20:58:05.1688573Z * [new branch] gh/XuehaiPan/228/base -> origin/gh/XuehaiPan/228/base 2025-06-01T20:58:05.1689087Z * [new branch] gh/XuehaiPan/228/head -> origin/gh/XuehaiPan/228/head 2025-06-01T20:58:05.1689602Z * [new branch] gh/XuehaiPan/228/orig -> origin/gh/XuehaiPan/228/orig 2025-06-01T20:58:05.1690103Z * [new branch] gh/XuehaiPan/229/base -> origin/gh/XuehaiPan/229/base 2025-06-01T20:58:05.1690618Z * [new branch] gh/XuehaiPan/229/head -> origin/gh/XuehaiPan/229/head 2025-06-01T20:58:05.1691134Z * [new branch] gh/XuehaiPan/229/orig -> origin/gh/XuehaiPan/229/orig 2025-06-01T20:58:05.1691651Z * [new branch] gh/XuehaiPan/230/base -> origin/gh/XuehaiPan/230/base 2025-06-01T20:58:05.1692187Z * [new branch] gh/XuehaiPan/230/head -> origin/gh/XuehaiPan/230/head 2025-06-01T20:58:05.1692691Z * [new branch] gh/XuehaiPan/230/orig -> origin/gh/XuehaiPan/230/orig 2025-06-01T20:58:05.1693210Z * [new branch] gh/XuehaiPan/231/base -> origin/gh/XuehaiPan/231/base 2025-06-01T20:58:05.1693714Z * [new branch] gh/XuehaiPan/231/head -> origin/gh/XuehaiPan/231/head 2025-06-01T20:58:05.1694227Z * [new branch] gh/XuehaiPan/231/orig -> origin/gh/XuehaiPan/231/orig 2025-06-01T20:58:05.1694744Z * [new branch] gh/XuehaiPan/232/base -> origin/gh/XuehaiPan/232/base 2025-06-01T20:58:05.1695244Z * [new branch] gh/XuehaiPan/232/head -> origin/gh/XuehaiPan/232/head 2025-06-01T20:58:05.1696078Z * [new branch] gh/XuehaiPan/232/orig -> origin/gh/XuehaiPan/232/orig 2025-06-01T20:58:05.1696585Z * [new branch] gh/XuehaiPan/236/base -> origin/gh/XuehaiPan/236/base 2025-06-01T20:58:05.1697108Z * [new branch] gh/XuehaiPan/236/head -> origin/gh/XuehaiPan/236/head 2025-06-01T20:58:05.1697632Z * [new branch] gh/XuehaiPan/236/orig -> origin/gh/XuehaiPan/236/orig 2025-06-01T20:58:05.1698139Z * [new branch] gh/XuehaiPan/239/base -> origin/gh/XuehaiPan/239/base 2025-06-01T20:58:05.1698654Z * [new branch] gh/XuehaiPan/239/head -> origin/gh/XuehaiPan/239/head 2025-06-01T20:58:05.1699163Z * [new branch] gh/XuehaiPan/239/orig -> origin/gh/XuehaiPan/239/orig 2025-06-01T20:58:05.1699678Z * [new branch] gh/XuehaiPan/247/base -> origin/gh/XuehaiPan/247/base 2025-06-01T20:58:05.1700188Z * [new branch] gh/XuehaiPan/247/head -> origin/gh/XuehaiPan/247/head 2025-06-01T20:58:05.1700706Z * [new branch] gh/XuehaiPan/247/orig -> origin/gh/XuehaiPan/247/orig 2025-06-01T20:58:05.1701216Z * [new branch] gh/XuehaiPan/249/base -> origin/gh/XuehaiPan/249/base 2025-06-01T20:58:05.1701722Z * [new branch] gh/XuehaiPan/249/head -> origin/gh/XuehaiPan/249/head 2025-06-01T20:58:05.1702230Z * [new branch] gh/XuehaiPan/249/orig -> origin/gh/XuehaiPan/249/orig 2025-06-01T20:58:05.1702732Z * [new branch] gh/XuehaiPan/250/base -> origin/gh/XuehaiPan/250/base 2025-06-01T20:58:05.1703243Z * [new branch] gh/XuehaiPan/250/head -> origin/gh/XuehaiPan/250/head 2025-06-01T20:58:05.1703757Z * [new branch] gh/XuehaiPan/250/orig -> origin/gh/XuehaiPan/250/orig 2025-06-01T20:58:05.1704263Z * [new branch] gh/XuehaiPan/251/base -> origin/gh/XuehaiPan/251/base 2025-06-01T20:58:05.2113943Z * [new branch] gh/XuehaiPan/251/head -> origin/gh/XuehaiPan/251/head 2025-06-01T20:58:05.2114625Z * [new branch] gh/XuehaiPan/251/orig -> origin/gh/XuehaiPan/251/orig 2025-06-01T20:58:05.2115198Z * [new branch] gh/XuehaiPan/253/base -> origin/gh/XuehaiPan/253/base 2025-06-01T20:58:05.2115807Z * [new branch] gh/XuehaiPan/253/head -> origin/gh/XuehaiPan/253/head 2025-06-01T20:58:05.2116364Z * [new branch] gh/XuehaiPan/253/orig -> origin/gh/XuehaiPan/253/orig 2025-06-01T20:58:05.2117007Z * [new branch] gh/XuehaiPan/254/base -> origin/gh/XuehaiPan/254/base 2025-06-01T20:58:05.2117525Z * [new branch] gh/XuehaiPan/254/head -> origin/gh/XuehaiPan/254/head 2025-06-01T20:58:05.2118035Z * [new branch] gh/XuehaiPan/254/orig -> origin/gh/XuehaiPan/254/orig 2025-06-01T20:58:05.2118558Z * [new branch] gh/XuehaiPan/255/base -> origin/gh/XuehaiPan/255/base 2025-06-01T20:58:05.2119072Z * [new branch] gh/XuehaiPan/255/head -> origin/gh/XuehaiPan/255/head 2025-06-01T20:58:05.2119585Z * [new branch] gh/XuehaiPan/255/orig -> origin/gh/XuehaiPan/255/orig 2025-06-01T20:58:05.2120091Z * [new branch] gh/XuehaiPan/257/base -> origin/gh/XuehaiPan/257/base 2025-06-01T20:58:05.2120606Z * [new branch] gh/XuehaiPan/257/head -> origin/gh/XuehaiPan/257/head 2025-06-01T20:58:05.2121120Z * [new branch] gh/XuehaiPan/257/orig -> origin/gh/XuehaiPan/257/orig 2025-06-01T20:58:05.2121630Z * [new branch] gh/XuehaiPan/261/base -> origin/gh/XuehaiPan/261/base 2025-06-01T20:58:05.2122190Z * [new branch] gh/XuehaiPan/261/head -> origin/gh/XuehaiPan/261/head 2025-06-01T20:58:05.2122737Z * [new branch] gh/XuehaiPan/261/orig -> origin/gh/XuehaiPan/261/orig 2025-06-01T20:58:05.2123516Z * [new branch] gh/XuehaiPan/262/base -> origin/gh/XuehaiPan/262/base 2025-06-01T20:58:05.2124170Z * [new branch] gh/XuehaiPan/262/head -> origin/gh/XuehaiPan/262/head 2025-06-01T20:58:05.2124678Z * [new branch] gh/XuehaiPan/262/orig -> origin/gh/XuehaiPan/262/orig 2025-06-01T20:58:05.2125198Z * [new branch] gh/XuehaiPan/263/base -> origin/gh/XuehaiPan/263/base 2025-06-01T20:58:05.2125705Z * [new branch] gh/XuehaiPan/263/head -> origin/gh/XuehaiPan/263/head 2025-06-01T20:58:05.2126227Z * [new branch] gh/XuehaiPan/263/orig -> origin/gh/XuehaiPan/263/orig 2025-06-01T20:58:05.2126740Z * [new branch] gh/XuehaiPan/264/base -> origin/gh/XuehaiPan/264/base 2025-06-01T20:58:05.2127242Z * [new branch] gh/XuehaiPan/264/head -> origin/gh/XuehaiPan/264/head 2025-06-01T20:58:05.2127762Z * [new branch] gh/XuehaiPan/264/orig -> origin/gh/XuehaiPan/264/orig 2025-06-01T20:58:05.2128332Z * [new branch] gh/XuehaiPan/265/base -> origin/gh/XuehaiPan/265/base 2025-06-01T20:58:05.2128933Z * [new branch] gh/XuehaiPan/265/head -> origin/gh/XuehaiPan/265/head 2025-06-01T20:58:05.2129448Z * [new branch] gh/XuehaiPan/265/orig -> origin/gh/XuehaiPan/265/orig 2025-06-01T20:58:05.2129950Z * [new branch] gh/XuehaiPan/266/base -> origin/gh/XuehaiPan/266/base 2025-06-01T20:58:05.2130466Z * [new branch] gh/XuehaiPan/266/head -> origin/gh/XuehaiPan/266/head 2025-06-01T20:58:05.2130971Z * [new branch] gh/XuehaiPan/266/orig -> origin/gh/XuehaiPan/266/orig 2025-06-01T20:58:05.2131484Z * [new branch] gh/XuehaiPan/267/base -> origin/gh/XuehaiPan/267/base 2025-06-01T20:58:05.2131985Z * [new branch] gh/XuehaiPan/267/head -> origin/gh/XuehaiPan/267/head 2025-06-01T20:58:05.2132502Z * [new branch] gh/XuehaiPan/267/orig -> origin/gh/XuehaiPan/267/orig 2025-06-01T20:58:05.2133023Z * [new branch] gh/XuehaiPan/268/base -> origin/gh/XuehaiPan/268/base 2025-06-01T20:58:05.2133532Z * [new branch] gh/XuehaiPan/268/head -> origin/gh/XuehaiPan/268/head 2025-06-01T20:58:05.2134044Z * [new branch] gh/XuehaiPan/268/orig -> origin/gh/XuehaiPan/268/orig 2025-06-01T20:58:05.2134635Z * [new branch] gh/XuehaiPan/269/base -> origin/gh/XuehaiPan/269/base 2025-06-01T20:58:05.2135186Z * [new branch] gh/XuehaiPan/269/head -> origin/gh/XuehaiPan/269/head 2025-06-01T20:58:05.2135697Z * [new branch] gh/XuehaiPan/269/orig -> origin/gh/XuehaiPan/269/orig 2025-06-01T20:58:05.2136207Z * [new branch] gh/XuehaiPan/270/base -> origin/gh/XuehaiPan/270/base 2025-06-01T20:58:05.2136721Z * [new branch] gh/XuehaiPan/270/head -> origin/gh/XuehaiPan/270/head 2025-06-01T20:58:05.2137243Z * [new branch] gh/XuehaiPan/270/orig -> origin/gh/XuehaiPan/270/orig 2025-06-01T20:58:05.2137779Z * [new branch] gh/XuehaiPan/271/base -> origin/gh/XuehaiPan/271/base 2025-06-01T20:58:05.2138306Z * [new branch] gh/XuehaiPan/271/head -> origin/gh/XuehaiPan/271/head 2025-06-01T20:58:05.2581542Z * [new branch] gh/XuehaiPan/271/orig -> origin/gh/XuehaiPan/271/orig 2025-06-01T20:58:05.2582176Z * [new branch] gh/XuehaiPan/272/base -> origin/gh/XuehaiPan/272/base 2025-06-01T20:58:05.2582692Z * [new branch] gh/XuehaiPan/272/head -> origin/gh/XuehaiPan/272/head 2025-06-01T20:58:05.2583223Z * [new branch] gh/XuehaiPan/272/orig -> origin/gh/XuehaiPan/272/orig 2025-06-01T20:58:05.2583750Z * [new branch] gh/XuehaiPan/273/base -> origin/gh/XuehaiPan/273/base 2025-06-01T20:58:05.2584473Z * [new branch] gh/XuehaiPan/273/head -> origin/gh/XuehaiPan/273/head 2025-06-01T20:58:05.2585139Z * [new branch] gh/XuehaiPan/273/orig -> origin/gh/XuehaiPan/273/orig 2025-06-01T20:58:05.2585649Z * [new branch] gh/XuehaiPan/274/base -> origin/gh/XuehaiPan/274/base 2025-06-01T20:58:05.2586171Z * [new branch] gh/XuehaiPan/274/head -> origin/gh/XuehaiPan/274/head 2025-06-01T20:58:05.2586704Z * [new branch] gh/XuehaiPan/274/orig -> origin/gh/XuehaiPan/274/orig 2025-06-01T20:58:05.2587271Z * [new branch] gh/ZainRizvi/4/base -> origin/gh/ZainRizvi/4/base 2025-06-01T20:58:05.2587869Z * [new branch] gh/ZainRizvi/4/head -> origin/gh/ZainRizvi/4/head 2025-06-01T20:58:05.2588371Z * [new branch] gh/ZainRizvi/4/orig -> origin/gh/ZainRizvi/4/orig 2025-06-01T20:58:05.2588914Z * [new branch] gh/ZhiweiYan-96/38/base -> origin/gh/ZhiweiYan-96/38/base 2025-06-01T20:58:05.2589465Z * [new branch] gh/ZhiweiYan-96/38/head -> origin/gh/ZhiweiYan-96/38/head 2025-06-01T20:58:05.2589997Z * [new branch] gh/ZhiweiYan-96/38/orig -> origin/gh/ZhiweiYan-96/38/orig 2025-06-01T20:58:05.2590600Z * [new branch] gh/ZhiweiYan-96/39/base -> origin/gh/ZhiweiYan-96/39/base 2025-06-01T20:58:05.2591129Z * [new branch] gh/ZhiweiYan-96/39/head -> origin/gh/ZhiweiYan-96/39/head 2025-06-01T20:58:05.2591670Z * [new branch] gh/ZhiweiYan-96/39/orig -> origin/gh/ZhiweiYan-96/39/orig 2025-06-01T20:58:05.2592214Z * [new branch] gh/ZhiweiYan-96/44/base -> origin/gh/ZhiweiYan-96/44/base 2025-06-01T20:58:05.2592789Z * [new branch] gh/ZhiweiYan-96/44/head -> origin/gh/ZhiweiYan-96/44/head 2025-06-01T20:58:05.2593373Z * [new branch] gh/ZhiweiYan-96/45/base -> origin/gh/ZhiweiYan-96/45/base 2025-06-01T20:58:05.2593904Z * [new branch] gh/ZhiweiYan-96/45/head -> origin/gh/ZhiweiYan-96/45/head 2025-06-01T20:58:05.2594460Z * [new branch] gh/ZhiweiYan-96/49/base -> origin/gh/ZhiweiYan-96/49/base 2025-06-01T20:58:05.2595000Z * [new branch] gh/ZhiweiYan-96/49/head -> origin/gh/ZhiweiYan-96/49/head 2025-06-01T20:58:05.2595531Z * [new branch] gh/ZhiweiYan-96/56/base -> origin/gh/ZhiweiYan-96/56/base 2025-06-01T20:58:05.2596078Z * [new branch] gh/ZhiweiYan-96/56/head -> origin/gh/ZhiweiYan-96/56/head 2025-06-01T20:58:05.2596611Z * [new branch] gh/ZhiweiYan-96/56/orig -> origin/gh/ZhiweiYan-96/56/orig 2025-06-01T20:58:05.2597156Z * [new branch] gh/ZhiweiYan-96/59/base -> origin/gh/ZhiweiYan-96/59/base 2025-06-01T20:58:05.2597703Z * [new branch] gh/ZhiweiYan-96/59/head -> origin/gh/ZhiweiYan-96/59/head 2025-06-01T20:58:05.2598232Z * [new branch] gh/ZhiweiYan-96/59/orig -> origin/gh/ZhiweiYan-96/59/orig 2025-06-01T20:58:05.2598876Z * [new branch] gh/ZhiweiYan-96/60/base -> origin/gh/ZhiweiYan-96/60/base 2025-06-01T20:58:05.2599406Z * [new branch] gh/ZhiweiYan-96/60/head -> origin/gh/ZhiweiYan-96/60/head 2025-06-01T20:58:05.2599944Z * [new branch] gh/ZhiweiYan-96/60/orig -> origin/gh/ZhiweiYan-96/60/orig 2025-06-01T20:58:05.2600464Z * [new branch] gh/ZhiweiYan-96/61/base -> origin/gh/ZhiweiYan-96/61/base 2025-06-01T20:58:05.2601007Z * [new branch] gh/ZhiweiYan-96/61/head -> origin/gh/ZhiweiYan-96/61/head 2025-06-01T20:58:05.2601547Z * [new branch] gh/ZhiweiYan-96/61/orig -> origin/gh/ZhiweiYan-96/61/orig 2025-06-01T20:58:05.2602069Z * [new branch] gh/ZhiweiYan-96/62/base -> origin/gh/ZhiweiYan-96/62/base 2025-06-01T20:58:05.2602610Z * [new branch] gh/ZhiweiYan-96/62/head -> origin/gh/ZhiweiYan-96/62/head 2025-06-01T20:58:05.2603256Z * [new branch] gh/ZhiweiYan-96/63/base -> origin/gh/ZhiweiYan-96/63/base 2025-06-01T20:58:05.2603922Z * [new branch] gh/ZhiweiYan-96/63/head -> origin/gh/ZhiweiYan-96/63/head 2025-06-01T20:58:05.2604581Z * [new branch] gh/ZhiweiYan-96/63/orig -> origin/gh/ZhiweiYan-96/63/orig 2025-06-01T20:58:05.2605439Z * [new branch] gh/aakhundov/1/base -> origin/gh/aakhundov/1/base 2025-06-01T20:58:05.2606260Z * [new branch] gh/aakhundov/1/head -> origin/gh/aakhundov/1/head 2025-06-01T20:58:05.2607054Z * [new branch] gh/aakhundov/2/base -> origin/gh/aakhundov/2/base 2025-06-01T20:58:05.2607880Z * [new branch] gh/aakhundov/2/head -> origin/gh/aakhundov/2/head 2025-06-01T20:58:05.3061925Z * [new branch] gh/aditew01/openblas -> origin/gh/aditew01/openblas 2025-06-01T20:58:05.3062519Z * [new branch] gh/aditew01/sbgemm -> origin/gh/aditew01/sbgemm 2025-06-01T20:58:05.3063080Z * [new branch] gh/aditew01/vecbf16 -> origin/gh/aditew01/vecbf16 2025-06-01T20:58:05.3063617Z * [new branch] gh/albanD/3/base -> origin/gh/albanD/3/base 2025-06-01T20:58:05.3064093Z * [new branch] gh/albanD/3/head -> origin/gh/albanD/3/head 2025-06-01T20:58:05.3064578Z * [new branch] gh/albanD/3/orig -> origin/gh/albanD/3/orig 2025-06-01T20:58:05.3065294Z * [new branch] gh/alexbrauckmann/paddedtensor_faketensor_init -> origin/gh/alexbrauckmann/paddedtensor_faketensor_init 2025-06-01T20:58:05.3066147Z * [new branch] gh/alexbrauckmann/paddedtensor_init -> origin/gh/alexbrauckmann/paddedtensor_init 2025-06-01T20:58:05.3066935Z * [new branch] gh/alexbrauckmann/paddedtensor_meta_init -> origin/gh/alexbrauckmann/paddedtensor_meta_init 2025-06-01T20:58:05.3067619Z * [new branch] gh/alexsamardzic/1/base -> origin/gh/alexsamardzic/1/base 2025-06-01T20:58:05.3068191Z * [new branch] gh/alexsamardzic/1/head -> origin/gh/alexsamardzic/1/head 2025-06-01T20:58:05.3068745Z * [new branch] gh/alexsamardzic/1/orig -> origin/gh/alexsamardzic/1/orig 2025-06-01T20:58:05.3069309Z * [new branch] gh/alexsamardzic/2/base -> origin/gh/alexsamardzic/2/base 2025-06-01T20:58:05.3069866Z * [new branch] gh/alexsamardzic/2/head -> origin/gh/alexsamardzic/2/head 2025-06-01T20:58:05.3070484Z * [new branch] gh/alexsamardzic/2/orig -> origin/gh/alexsamardzic/2/orig 2025-06-01T20:58:05.3071026Z * [new branch] gh/amjames/18/base -> origin/gh/amjames/18/base 2025-06-01T20:58:05.3071522Z * [new branch] gh/amjames/18/head -> origin/gh/amjames/18/head 2025-06-01T20:58:05.3072024Z * [new branch] gh/amjames/18/orig -> origin/gh/amjames/18/orig 2025-06-01T20:58:05.3072511Z * [new branch] gh/amjames/20/base -> origin/gh/amjames/20/base 2025-06-01T20:58:05.3073022Z * [new branch] gh/amjames/20/head -> origin/gh/amjames/20/head 2025-06-01T20:58:05.3073523Z * [new branch] gh/amjames/20/orig -> origin/gh/amjames/20/orig 2025-06-01T20:58:05.3074011Z * [new branch] gh/amjames/21/base -> origin/gh/amjames/21/base 2025-06-01T20:58:05.3074511Z * [new branch] gh/amjames/21/head -> origin/gh/amjames/21/head 2025-06-01T20:58:05.3074998Z * [new branch] gh/amjames/21/orig -> origin/gh/amjames/21/orig 2025-06-01T20:58:05.3075505Z * [new branch] gh/amjames/22/base -> origin/gh/amjames/22/base 2025-06-01T20:58:05.3075998Z * [new branch] gh/amjames/22/head -> origin/gh/amjames/22/head 2025-06-01T20:58:05.3076483Z * [new branch] gh/amjames/22/orig -> origin/gh/amjames/22/orig 2025-06-01T20:58:05.3077224Z * [new branch] gh/andrewor14/35/base -> origin/gh/andrewor14/35/base 2025-06-01T20:58:05.3077867Z * [new branch] gh/andrewor14/35/head -> origin/gh/andrewor14/35/head 2025-06-01T20:58:05.3078379Z * [new branch] gh/andrewor14/35/orig -> origin/gh/andrewor14/35/orig 2025-06-01T20:58:05.3078888Z * [new branch] gh/andrewor14/50/base -> origin/gh/andrewor14/50/base 2025-06-01T20:58:05.3079387Z * [new branch] gh/andrewor14/50/head -> origin/gh/andrewor14/50/head 2025-06-01T20:58:05.3079889Z * [new branch] gh/andrewor14/50/orig -> origin/gh/andrewor14/50/orig 2025-06-01T20:58:05.3080391Z * [new branch] gh/andyanwang/1/base -> origin/gh/andyanwang/1/base 2025-06-01T20:58:05.3080901Z * [new branch] gh/andyanwang/1/head -> origin/gh/andyanwang/1/head 2025-06-01T20:58:05.3081408Z * [new branch] gh/andyanwang/1/orig -> origin/gh/andyanwang/1/orig 2025-06-01T20:58:05.3081914Z * [new branch] gh/andyanwang/10/base -> origin/gh/andyanwang/10/base 2025-06-01T20:58:05.3082443Z * [new branch] gh/andyanwang/10/head -> origin/gh/andyanwang/10/head 2025-06-01T20:58:05.3082952Z * [new branch] gh/andyanwang/10/orig -> origin/gh/andyanwang/10/orig 2025-06-01T20:58:05.3083463Z * [new branch] gh/andyanwang/11/base -> origin/gh/andyanwang/11/base 2025-06-01T20:58:05.3083971Z * [new branch] gh/andyanwang/11/head -> origin/gh/andyanwang/11/head 2025-06-01T20:58:05.3084480Z * [new branch] gh/andyanwang/11/orig -> origin/gh/andyanwang/11/orig 2025-06-01T20:58:05.3084999Z * [new branch] gh/andyanwang/12/base -> origin/gh/andyanwang/12/base 2025-06-01T20:58:05.3085506Z * [new branch] gh/andyanwang/12/head -> origin/gh/andyanwang/12/head 2025-06-01T20:58:05.3086017Z * [new branch] gh/andyanwang/12/orig -> origin/gh/andyanwang/12/orig 2025-06-01T20:58:05.4638987Z * [new branch] gh/andyanwang/2/base -> origin/gh/andyanwang/2/base 2025-06-01T20:58:05.4639603Z * [new branch] gh/andyanwang/2/head -> origin/gh/andyanwang/2/head 2025-06-01T20:58:05.4640233Z * [new branch] gh/andyanwang/2/orig -> origin/gh/andyanwang/2/orig 2025-06-01T20:58:05.4640739Z * [new branch] gh/andyanwang/3/base -> origin/gh/andyanwang/3/base 2025-06-01T20:58:05.4641239Z * [new branch] gh/andyanwang/3/head -> origin/gh/andyanwang/3/head 2025-06-01T20:58:05.4641748Z * [new branch] gh/andyanwang/3/orig -> origin/gh/andyanwang/3/orig 2025-06-01T20:58:05.4642249Z * [new branch] gh/andyanwang/4/base -> origin/gh/andyanwang/4/base 2025-06-01T20:58:05.4642744Z * [new branch] gh/andyanwang/4/head -> origin/gh/andyanwang/4/head 2025-06-01T20:58:05.4643253Z * [new branch] gh/andyanwang/4/orig -> origin/gh/andyanwang/4/orig 2025-06-01T20:58:05.4643765Z * [new branch] gh/andyanwang/5/base -> origin/gh/andyanwang/5/base 2025-06-01T20:58:05.4644263Z * [new branch] gh/andyanwang/5/head -> origin/gh/andyanwang/5/head 2025-06-01T20:58:05.4644760Z * [new branch] gh/andyanwang/5/orig -> origin/gh/andyanwang/5/orig 2025-06-01T20:58:05.4645262Z * [new branch] gh/andyanwang/6/base -> origin/gh/andyanwang/6/base 2025-06-01T20:58:05.4645859Z * [new branch] gh/andyanwang/6/head -> origin/gh/andyanwang/6/head 2025-06-01T20:58:05.4646398Z * [new branch] gh/andyanwang/6/orig -> origin/gh/andyanwang/6/orig 2025-06-01T20:58:05.4647000Z * [new branch] gh/andyanwang/7/base -> origin/gh/andyanwang/7/base 2025-06-01T20:58:05.4647539Z * [new branch] gh/andyanwang/7/head -> origin/gh/andyanwang/7/head 2025-06-01T20:58:05.4648331Z * [new branch] gh/andyanwang/7/orig -> origin/gh/andyanwang/7/orig 2025-06-01T20:58:05.4648981Z * [new branch] gh/andyanwang/8/base -> origin/gh/andyanwang/8/base 2025-06-01T20:58:05.4649479Z * [new branch] gh/andyanwang/8/head -> origin/gh/andyanwang/8/head 2025-06-01T20:58:05.4649987Z * [new branch] gh/andyanwang/8/orig -> origin/gh/andyanwang/8/orig 2025-06-01T20:58:05.4650484Z * [new branch] gh/andyanwang/9/base -> origin/gh/andyanwang/9/base 2025-06-01T20:58:05.4650998Z * [new branch] gh/andyanwang/9/head -> origin/gh/andyanwang/9/head 2025-06-01T20:58:05.4651501Z * [new branch] gh/andyanwang/9/orig -> origin/gh/andyanwang/9/orig 2025-06-01T20:58:05.4651998Z * [new branch] gh/angelayi/82/base -> origin/gh/angelayi/82/base 2025-06-01T20:58:05.4652494Z * [new branch] gh/angelayi/82/head -> origin/gh/angelayi/82/head 2025-06-01T20:58:05.4652990Z * [new branch] gh/angelayi/82/orig -> origin/gh/angelayi/82/orig 2025-06-01T20:58:05.4653539Z * [new branch] gh/angelayi/90/base -> origin/gh/angelayi/90/base 2025-06-01T20:58:05.4654128Z * [new branch] gh/angelayi/90/head -> origin/gh/angelayi/90/head 2025-06-01T20:58:05.4654659Z * [new branch] gh/angelayi/90/orig -> origin/gh/angelayi/90/orig 2025-06-01T20:58:05.4655159Z * [new branch] gh/angelayi/91/base -> origin/gh/angelayi/91/base 2025-06-01T20:58:05.4655640Z * [new branch] gh/angelayi/91/head -> origin/gh/angelayi/91/head 2025-06-01T20:58:05.4656139Z * [new branch] gh/angelayi/91/orig -> origin/gh/angelayi/91/orig 2025-06-01T20:58:05.4656623Z * [new branch] gh/angelayi/92/base -> origin/gh/angelayi/92/base 2025-06-01T20:58:05.4657113Z * [new branch] gh/angelayi/92/head -> origin/gh/angelayi/92/head 2025-06-01T20:58:05.4657617Z * [new branch] gh/angelayi/92/orig -> origin/gh/angelayi/92/orig 2025-06-01T20:58:05.4658098Z * [new branch] gh/angelayi/93/base -> origin/gh/angelayi/93/base 2025-06-01T20:58:05.4658586Z * [new branch] gh/angelayi/93/head -> origin/gh/angelayi/93/head 2025-06-01T20:58:05.4659066Z * [new branch] gh/angelayi/93/orig -> origin/gh/angelayi/93/orig 2025-06-01T20:58:05.4659549Z * [new branch] gh/ani300/1/base -> origin/gh/ani300/1/base 2025-06-01T20:58:05.4660103Z * [new branch] gh/ani300/1/head -> origin/gh/ani300/1/head 2025-06-01T20:58:05.4660561Z * [new branch] gh/ani300/1/orig -> origin/gh/ani300/1/orig 2025-06-01T20:58:05.4661073Z * [new branch] gh/anijain2305/162/base -> origin/gh/anijain2305/162/base 2025-06-01T20:58:05.4661607Z * [new branch] gh/anijain2305/162/head -> origin/gh/anijain2305/162/head 2025-06-01T20:58:05.4662147Z * [new branch] gh/anijain2305/566/base -> origin/gh/anijain2305/566/base 2025-06-01T20:58:05.4662671Z * [new branch] gh/anijain2305/566/head -> origin/gh/anijain2305/566/head 2025-06-01T20:58:05.4663190Z * [new branch] gh/anijain2305/566/orig -> origin/gh/anijain2305/566/orig 2025-06-01T20:58:05.5094480Z * [new branch] gh/anijain2305/580/base -> origin/gh/anijain2305/580/base 2025-06-01T20:58:05.5095063Z * [new branch] gh/anijain2305/580/head -> origin/gh/anijain2305/580/head 2025-06-01T20:58:05.5095586Z * [new branch] gh/anijain2305/580/orig -> origin/gh/anijain2305/580/orig 2025-06-01T20:58:05.5096165Z * [new branch] gh/anijain2305/634/base -> origin/gh/anijain2305/634/base 2025-06-01T20:58:05.5096732Z * [new branch] gh/anijain2305/634/head -> origin/gh/anijain2305/634/head 2025-06-01T20:58:05.5097625Z * [new branch] gh/anijain2305/634/orig -> origin/gh/anijain2305/634/orig 2025-06-01T20:58:05.5098143Z * [new branch] gh/anijain2305/668/base -> origin/gh/anijain2305/668/base 2025-06-01T20:58:05.5098663Z * [new branch] gh/anijain2305/668/head -> origin/gh/anijain2305/668/head 2025-06-01T20:58:05.5099181Z * [new branch] gh/anijain2305/668/orig -> origin/gh/anijain2305/668/orig 2025-06-01T20:58:05.5099692Z * [new branch] gh/anijain2305/675/base -> origin/gh/anijain2305/675/base 2025-06-01T20:58:05.5100220Z * [new branch] gh/anijain2305/675/head -> origin/gh/anijain2305/675/head 2025-06-01T20:58:05.5100738Z * [new branch] gh/anijain2305/675/orig -> origin/gh/anijain2305/675/orig 2025-06-01T20:58:05.5101258Z * [new branch] gh/anijain2305/682/base -> origin/gh/anijain2305/682/base 2025-06-01T20:58:05.5101827Z * [new branch] gh/anijain2305/682/head -> origin/gh/anijain2305/682/head 2025-06-01T20:58:05.5102393Z * [new branch] gh/anijain2305/682/orig -> origin/gh/anijain2305/682/orig 2025-06-01T20:58:05.5102919Z * [new branch] gh/anijain2305/684/base -> origin/gh/anijain2305/684/base 2025-06-01T20:58:05.5103436Z * [new branch] gh/anijain2305/684/head -> origin/gh/anijain2305/684/head 2025-06-01T20:58:05.5103959Z * [new branch] gh/anijain2305/684/orig -> origin/gh/anijain2305/684/orig 2025-06-01T20:58:05.5104486Z * [new branch] gh/anijain2305/710/base -> origin/gh/anijain2305/710/base 2025-06-01T20:58:05.5104999Z * [new branch] gh/anijain2305/710/head -> origin/gh/anijain2305/710/head 2025-06-01T20:58:05.5105518Z * [new branch] gh/anijain2305/710/orig -> origin/gh/anijain2305/710/orig 2025-06-01T20:58:05.5106026Z * [new branch] gh/anijain2305/716/base -> origin/gh/anijain2305/716/base 2025-06-01T20:58:05.5106561Z * [new branch] gh/anijain2305/716/head -> origin/gh/anijain2305/716/head 2025-06-01T20:58:05.5107082Z * [new branch] gh/anijain2305/716/orig -> origin/gh/anijain2305/716/orig 2025-06-01T20:58:05.5107647Z * [new branch] gh/anijain2305/717/base -> origin/gh/anijain2305/717/base 2025-06-01T20:58:05.5108217Z * [new branch] gh/anijain2305/717/head -> origin/gh/anijain2305/717/head 2025-06-01T20:58:05.5108743Z * [new branch] gh/anijain2305/717/orig -> origin/gh/anijain2305/717/orig 2025-06-01T20:58:05.5109272Z * [new branch] gh/anijain2305/718/base -> origin/gh/anijain2305/718/base 2025-06-01T20:58:05.5109796Z * [new branch] gh/anijain2305/718/head -> origin/gh/anijain2305/718/head 2025-06-01T20:58:05.5110392Z * [new branch] gh/anijain2305/718/orig -> origin/gh/anijain2305/718/orig 2025-06-01T20:58:05.5110928Z * [new branch] gh/anijain2305/721/base -> origin/gh/anijain2305/721/base 2025-06-01T20:58:05.5111452Z * [new branch] gh/anijain2305/721/head -> origin/gh/anijain2305/721/head 2025-06-01T20:58:05.5111979Z * [new branch] gh/anijain2305/721/orig -> origin/gh/anijain2305/721/orig 2025-06-01T20:58:05.5112496Z * [new branch] gh/anijain2305/725/base -> origin/gh/anijain2305/725/base 2025-06-01T20:58:05.5113018Z * [new branch] gh/anijain2305/725/head -> origin/gh/anijain2305/725/head 2025-06-01T20:58:05.5113618Z * [new branch] gh/anijain2305/725/orig -> origin/gh/anijain2305/725/orig 2025-06-01T20:58:05.5114189Z * [new branch] gh/anijain2305/726/base -> origin/gh/anijain2305/726/base 2025-06-01T20:58:05.5114796Z * [new branch] gh/anijain2305/726/head -> origin/gh/anijain2305/726/head 2025-06-01T20:58:05.5115354Z * [new branch] gh/anijain2305/726/orig -> origin/gh/anijain2305/726/orig 2025-06-01T20:58:05.5116274Z * [new branch] gh/anijain2305/728/base -> origin/gh/anijain2305/728/base 2025-06-01T20:58:05.5116851Z * [new branch] gh/anijain2305/728/head -> origin/gh/anijain2305/728/head 2025-06-01T20:58:05.5117454Z * [new branch] gh/anijain2305/728/orig -> origin/gh/anijain2305/728/orig 2025-06-01T20:58:05.5118057Z * [new branch] gh/anijain2305/729/base -> origin/gh/anijain2305/729/base 2025-06-01T20:58:05.5118641Z * [new branch] gh/anijain2305/729/head -> origin/gh/anijain2305/729/head 2025-06-01T20:58:05.5119255Z * [new branch] gh/anijain2305/729/orig -> origin/gh/anijain2305/729/orig 2025-06-01T20:58:05.5528613Z * [new branch] gh/anijain2305/731/base -> origin/gh/anijain2305/731/base 2025-06-01T20:58:05.5529189Z * [new branch] gh/anijain2305/731/head -> origin/gh/anijain2305/731/head 2025-06-01T20:58:05.5529770Z * [new branch] gh/anijain2305/731/orig -> origin/gh/anijain2305/731/orig 2025-06-01T20:58:05.5530316Z * [new branch] gh/anijain2305/732/base -> origin/gh/anijain2305/732/base 2025-06-01T20:58:05.5530823Z * [new branch] gh/anijain2305/732/head -> origin/gh/anijain2305/732/head 2025-06-01T20:58:05.5531348Z * [new branch] gh/anijain2305/732/orig -> origin/gh/anijain2305/732/orig 2025-06-01T20:58:05.5531859Z * [new branch] gh/anijain2305/733/base -> origin/gh/anijain2305/733/base 2025-06-01T20:58:05.5532379Z * [new branch] gh/anijain2305/733/head -> origin/gh/anijain2305/733/head 2025-06-01T20:58:05.5532899Z * [new branch] gh/anijain2305/733/orig -> origin/gh/anijain2305/733/orig 2025-06-01T20:58:05.5533467Z * [new branch] gh/anijain2305/734/base -> origin/gh/anijain2305/734/base 2025-06-01T20:58:05.5534034Z * [new branch] gh/anijain2305/734/head -> origin/gh/anijain2305/734/head 2025-06-01T20:58:05.5534559Z * [new branch] gh/anijain2305/734/orig -> origin/gh/anijain2305/734/orig 2025-06-01T20:58:05.5535077Z * [new branch] gh/anijain2305/735/base -> origin/gh/anijain2305/735/base 2025-06-01T20:58:05.5535595Z * [new branch] gh/anijain2305/735/head -> origin/gh/anijain2305/735/head 2025-06-01T20:58:05.5536109Z * [new branch] gh/anijain2305/735/orig -> origin/gh/anijain2305/735/orig 2025-06-01T20:58:05.5536630Z * [new branch] gh/anijain2305/736/base -> origin/gh/anijain2305/736/base 2025-06-01T20:58:05.5537139Z * [new branch] gh/anijain2305/736/head -> origin/gh/anijain2305/736/head 2025-06-01T20:58:05.5537658Z * [new branch] gh/anijain2305/736/orig -> origin/gh/anijain2305/736/orig 2025-06-01T20:58:05.5538182Z * [new branch] gh/anijain2305/737/base -> origin/gh/anijain2305/737/base 2025-06-01T20:58:05.5538709Z * [new branch] gh/anijain2305/737/head -> origin/gh/anijain2305/737/head 2025-06-01T20:58:05.5539326Z * [new branch] gh/anijain2305/737/orig -> origin/gh/anijain2305/737/orig 2025-06-01T20:58:05.5539844Z * [new branch] gh/anijain2305/738/base -> origin/gh/anijain2305/738/base 2025-06-01T20:58:05.5540363Z * [new branch] gh/anijain2305/738/head -> origin/gh/anijain2305/738/head 2025-06-01T20:58:05.5540875Z * [new branch] gh/anijain2305/738/orig -> origin/gh/anijain2305/738/orig 2025-06-01T20:58:05.5541396Z * [new branch] gh/anijain2305/739/base -> origin/gh/anijain2305/739/base 2025-06-01T20:58:05.5541925Z * [new branch] gh/anijain2305/739/head -> origin/gh/anijain2305/739/head 2025-06-01T20:58:05.5542441Z * [new branch] gh/anijain2305/739/orig -> origin/gh/anijain2305/739/orig 2025-06-01T20:58:05.5543735Z * [new branch] gh/anijain2305/740/base -> origin/gh/anijain2305/740/base 2025-06-01T20:58:05.5544769Z * [new branch] gh/anijain2305/740/head -> origin/gh/anijain2305/740/head 2025-06-01T20:58:05.5545347Z * [new branch] gh/anijain2305/740/orig -> origin/gh/anijain2305/740/orig 2025-06-01T20:58:05.5545879Z * [new branch] gh/anijain2305/741/base -> origin/gh/anijain2305/741/base 2025-06-01T20:58:05.5546395Z * [new branch] gh/anijain2305/741/head -> origin/gh/anijain2305/741/head 2025-06-01T20:58:05.5546910Z * [new branch] gh/anijain2305/741/orig -> origin/gh/anijain2305/741/orig 2025-06-01T20:58:05.5547427Z * [new branch] gh/anijain2305/742/base -> origin/gh/anijain2305/742/base 2025-06-01T20:58:05.5547953Z * [new branch] gh/anijain2305/742/head -> origin/gh/anijain2305/742/head 2025-06-01T20:58:05.5548481Z * [new branch] gh/anijain2305/742/orig -> origin/gh/anijain2305/742/orig 2025-06-01T20:58:05.5549004Z * [new branch] gh/anijain2305/743/base -> origin/gh/anijain2305/743/base 2025-06-01T20:58:05.5549538Z * [new branch] gh/anijain2305/743/head -> origin/gh/anijain2305/743/head 2025-06-01T20:58:05.5550125Z * [new branch] gh/anijain2305/743/orig -> origin/gh/anijain2305/743/orig 2025-06-01T20:58:05.5550702Z * [new branch] gh/anijain2305/744/base -> origin/gh/anijain2305/744/base 2025-06-01T20:58:05.5551282Z * [new branch] gh/anijain2305/744/head -> origin/gh/anijain2305/744/head 2025-06-01T20:58:05.5551793Z * [new branch] gh/anijain2305/744/orig -> origin/gh/anijain2305/744/orig 2025-06-01T20:58:05.5552316Z * [new branch] gh/anijain2305/745/base -> origin/gh/anijain2305/745/base 2025-06-01T20:58:05.5552832Z * [new branch] gh/anijain2305/745/head -> origin/gh/anijain2305/745/head 2025-06-01T20:58:05.5553361Z * [new branch] gh/anijain2305/745/orig -> origin/gh/anijain2305/745/orig 2025-06-01T20:58:05.5992830Z * [new branch] gh/anijain2305/746/base -> origin/gh/anijain2305/746/base 2025-06-01T20:58:05.5993451Z * [new branch] gh/anijain2305/746/head -> origin/gh/anijain2305/746/head 2025-06-01T20:58:05.5994008Z * [new branch] gh/anijain2305/746/orig -> origin/gh/anijain2305/746/orig 2025-06-01T20:58:05.5994537Z * [new branch] gh/anijain2305/747/base -> origin/gh/anijain2305/747/base 2025-06-01T20:58:05.5995067Z * [new branch] gh/anijain2305/747/head -> origin/gh/anijain2305/747/head 2025-06-01T20:58:05.5995600Z * [new branch] gh/anijain2305/747/orig -> origin/gh/anijain2305/747/orig 2025-06-01T20:58:05.5996125Z * [new branch] gh/anijain2305/748/base -> origin/gh/anijain2305/748/base 2025-06-01T20:58:05.5996658Z * [new branch] gh/anijain2305/748/head -> origin/gh/anijain2305/748/head 2025-06-01T20:58:05.5997204Z * [new branch] gh/anijain2305/748/orig -> origin/gh/anijain2305/748/orig 2025-06-01T20:58:05.5997747Z * [new branch] gh/anijain2305/749/base -> origin/gh/anijain2305/749/base 2025-06-01T20:58:05.5998320Z * [new branch] gh/anijain2305/749/head -> origin/gh/anijain2305/749/head 2025-06-01T20:58:05.5998899Z * [new branch] gh/anijain2305/749/orig -> origin/gh/anijain2305/749/orig 2025-06-01T20:58:05.5999431Z * [new branch] gh/anijain2305/750/base -> origin/gh/anijain2305/750/base 2025-06-01T20:58:05.5999948Z * [new branch] gh/anijain2305/750/head -> origin/gh/anijain2305/750/head 2025-06-01T20:58:05.6000476Z * [new branch] gh/anijain2305/750/orig -> origin/gh/anijain2305/750/orig 2025-06-01T20:58:05.6001009Z * [new branch] gh/anijain2305/751/base -> origin/gh/anijain2305/751/base 2025-06-01T20:58:05.6001732Z * [new branch] gh/anijain2305/751/head -> origin/gh/anijain2305/751/head 2025-06-01T20:58:05.6002409Z * [new branch] gh/anijain2305/751/orig -> origin/gh/anijain2305/751/orig 2025-06-01T20:58:05.6002930Z * [new branch] gh/anijain2305/752/base -> origin/gh/anijain2305/752/base 2025-06-01T20:58:05.6003459Z * [new branch] gh/anijain2305/752/head -> origin/gh/anijain2305/752/head 2025-06-01T20:58:05.6004043Z * [new branch] gh/anijain2305/752/orig -> origin/gh/anijain2305/752/orig 2025-06-01T20:58:05.6004607Z * [new branch] gh/anijain2305/753/base -> origin/gh/anijain2305/753/base 2025-06-01T20:58:05.6005143Z * [new branch] gh/anijain2305/753/head -> origin/gh/anijain2305/753/head 2025-06-01T20:58:05.6005661Z * [new branch] gh/anijain2305/753/orig -> origin/gh/anijain2305/753/orig 2025-06-01T20:58:05.6006203Z * [new branch] gh/anijain2305/754/base -> origin/gh/anijain2305/754/base 2025-06-01T20:58:05.6006750Z * [new branch] gh/anijain2305/754/head -> origin/gh/anijain2305/754/head 2025-06-01T20:58:05.6007281Z * [new branch] gh/anijain2305/754/orig -> origin/gh/anijain2305/754/orig 2025-06-01T20:58:05.6007800Z * [new branch] gh/anijain2305/755/base -> origin/gh/anijain2305/755/base 2025-06-01T20:58:05.6008330Z * [new branch] gh/anijain2305/755/head -> origin/gh/anijain2305/755/head 2025-06-01T20:58:05.6008844Z * [new branch] gh/anijain2305/755/orig -> origin/gh/anijain2305/755/orig 2025-06-01T20:58:05.6009366Z * [new branch] gh/anijain2305/756/base -> origin/gh/anijain2305/756/base 2025-06-01T20:58:05.6009989Z * [new branch] gh/anijain2305/756/head -> origin/gh/anijain2305/756/head 2025-06-01T20:58:05.6010510Z * [new branch] gh/anijain2305/756/orig -> origin/gh/anijain2305/756/orig 2025-06-01T20:58:05.6011048Z * [new branch] gh/anijain2305/757/base -> origin/gh/anijain2305/757/base 2025-06-01T20:58:05.6011570Z * [new branch] gh/anijain2305/757/head -> origin/gh/anijain2305/757/head 2025-06-01T20:58:05.6012094Z * [new branch] gh/anijain2305/757/orig -> origin/gh/anijain2305/757/orig 2025-06-01T20:58:05.6012618Z * [new branch] gh/anijain2305/758/base -> origin/gh/anijain2305/758/base 2025-06-01T20:58:05.6013138Z * [new branch] gh/anijain2305/758/head -> origin/gh/anijain2305/758/head 2025-06-01T20:58:05.6013665Z * [new branch] gh/anijain2305/758/orig -> origin/gh/anijain2305/758/orig 2025-06-01T20:58:05.6014183Z * [new branch] gh/anijain2305/759/base -> origin/gh/anijain2305/759/base 2025-06-01T20:58:05.6014708Z * [new branch] gh/anijain2305/759/head -> origin/gh/anijain2305/759/head 2025-06-01T20:58:05.6015273Z * [new branch] gh/anijain2305/759/orig -> origin/gh/anijain2305/759/orig 2025-06-01T20:58:05.6015852Z * [new branch] gh/anijain2305/760/base -> origin/gh/anijain2305/760/base 2025-06-01T20:58:05.6016379Z * [new branch] gh/anijain2305/760/head -> origin/gh/anijain2305/760/head 2025-06-01T20:58:05.6016898Z * [new branch] gh/anijain2305/760/orig -> origin/gh/anijain2305/760/orig 2025-06-01T20:58:05.6441085Z * [new branch] gh/anijain2305/761/base -> origin/gh/anijain2305/761/base 2025-06-01T20:58:05.6441671Z * [new branch] gh/anijain2305/761/head -> origin/gh/anijain2305/761/head 2025-06-01T20:58:05.6442202Z * [new branch] gh/anijain2305/761/orig -> origin/gh/anijain2305/761/orig 2025-06-01T20:58:05.6442791Z * [new branch] gh/anijain2305/762/base -> origin/gh/anijain2305/762/base 2025-06-01T20:58:05.6443386Z * [new branch] gh/anijain2305/762/head -> origin/gh/anijain2305/762/head 2025-06-01T20:58:05.6444129Z * [new branch] gh/anijain2305/762/orig -> origin/gh/anijain2305/762/orig 2025-06-01T20:58:05.6444795Z * [new branch] gh/anijain2305/763/base -> origin/gh/anijain2305/763/base 2025-06-01T20:58:05.6445312Z * [new branch] gh/anijain2305/763/head -> origin/gh/anijain2305/763/head 2025-06-01T20:58:05.6445833Z * [new branch] gh/anijain2305/763/orig -> origin/gh/anijain2305/763/orig 2025-06-01T20:58:05.6446349Z * [new branch] gh/anijain2305/764/base -> origin/gh/anijain2305/764/base 2025-06-01T20:58:05.6446873Z * [new branch] gh/anijain2305/764/head -> origin/gh/anijain2305/764/head 2025-06-01T20:58:05.6447397Z * [new branch] gh/anijain2305/764/orig -> origin/gh/anijain2305/764/orig 2025-06-01T20:58:05.6447908Z * [new branch] gh/anijain2305/765/base -> origin/gh/anijain2305/765/base 2025-06-01T20:58:05.6448483Z * [new branch] gh/anijain2305/765/head -> origin/gh/anijain2305/765/head 2025-06-01T20:58:05.6449062Z * [new branch] gh/anijain2305/765/orig -> origin/gh/anijain2305/765/orig 2025-06-01T20:58:05.6449586Z * [new branch] gh/anijain2305/766/base -> origin/gh/anijain2305/766/base 2025-06-01T20:58:05.6450105Z * [new branch] gh/anijain2305/766/head -> origin/gh/anijain2305/766/head 2025-06-01T20:58:05.6450623Z * [new branch] gh/anijain2305/766/orig -> origin/gh/anijain2305/766/orig 2025-06-01T20:58:05.6451143Z * [new branch] gh/anijain2305/767/base -> origin/gh/anijain2305/767/base 2025-06-01T20:58:05.6451655Z * [new branch] gh/anijain2305/767/head -> origin/gh/anijain2305/767/head 2025-06-01T20:58:05.6452176Z * [new branch] gh/anijain2305/767/orig -> origin/gh/anijain2305/767/orig 2025-06-01T20:58:05.6452697Z * [new branch] gh/anijain2305/768/base -> origin/gh/anijain2305/768/base 2025-06-01T20:58:05.6453215Z * [new branch] gh/anijain2305/768/head -> origin/gh/anijain2305/768/head 2025-06-01T20:58:05.6453734Z * [new branch] gh/anijain2305/768/orig -> origin/gh/anijain2305/768/orig 2025-06-01T20:58:05.6454298Z * [new branch] gh/anijain2305/769/base -> origin/gh/anijain2305/769/base 2025-06-01T20:58:05.6454867Z * [new branch] gh/anijain2305/769/head -> origin/gh/anijain2305/769/head 2025-06-01T20:58:05.6455384Z * [new branch] gh/anijain2305/769/orig -> origin/gh/anijain2305/769/orig 2025-06-01T20:58:05.6455899Z * [new branch] gh/anijain2305/770/base -> origin/gh/anijain2305/770/base 2025-06-01T20:58:05.6456424Z * [new branch] gh/anijain2305/770/head -> origin/gh/anijain2305/770/head 2025-06-01T20:58:05.6456936Z * [new branch] gh/anijain2305/770/orig -> origin/gh/anijain2305/770/orig 2025-06-01T20:58:05.6457457Z * [new branch] gh/anijain2305/771/base -> origin/gh/anijain2305/771/base 2025-06-01T20:58:05.6457987Z * [new branch] gh/anijain2305/771/head -> origin/gh/anijain2305/771/head 2025-06-01T20:58:05.6458501Z * [new branch] gh/anijain2305/771/orig -> origin/gh/anijain2305/771/orig 2025-06-01T20:58:05.6459024Z * [new branch] gh/anijain2305/772/base -> origin/gh/anijain2305/772/base 2025-06-01T20:58:05.6459537Z * [new branch] gh/anijain2305/772/head -> origin/gh/anijain2305/772/head 2025-06-01T20:58:05.6460158Z * [new branch] gh/anijain2305/772/orig -> origin/gh/anijain2305/772/orig 2025-06-01T20:58:05.6460676Z * [new branch] gh/anijain2305/773/base -> origin/gh/anijain2305/773/base 2025-06-01T20:58:05.6461203Z * [new branch] gh/anijain2305/773/head -> origin/gh/anijain2305/773/head 2025-06-01T20:58:05.6461727Z * [new branch] gh/anijain2305/773/orig -> origin/gh/anijain2305/773/orig 2025-06-01T20:58:05.6462359Z * [new branch] gh/anijain2305/774/base -> origin/gh/anijain2305/774/base 2025-06-01T20:58:05.6462990Z * [new branch] gh/anijain2305/774/head -> origin/gh/anijain2305/774/head 2025-06-01T20:58:05.6463514Z * [new branch] gh/anijain2305/774/orig -> origin/gh/anijain2305/774/orig 2025-06-01T20:58:05.6464039Z * [new branch] gh/anijain2305/775/base -> origin/gh/anijain2305/775/base 2025-06-01T20:58:05.6464563Z * [new branch] gh/anijain2305/775/head -> origin/gh/anijain2305/775/head 2025-06-01T20:58:05.6465079Z * [new branch] gh/anijain2305/775/orig -> origin/gh/anijain2305/775/orig 2025-06-01T20:58:05.6909273Z * [new branch] gh/anjali411/216/base -> origin/gh/anjali411/216/base 2025-06-01T20:58:05.6909839Z * [new branch] gh/anjali411/216/head -> origin/gh/anjali411/216/head 2025-06-01T20:58:05.6910439Z * [new branch] gh/anjali411/216/orig -> origin/gh/anjali411/216/orig 2025-06-01T20:58:05.6911021Z * [new branch] gh/ankitageorge/1/base -> origin/gh/ankitageorge/1/base 2025-06-01T20:58:05.6911549Z * [new branch] gh/ankitageorge/1/head -> origin/gh/ankitageorge/1/head 2025-06-01T20:58:05.6912085Z * [new branch] gh/ankitageorge/1/orig -> origin/gh/ankitageorge/1/orig 2025-06-01T20:58:05.6912610Z * [new branch] gh/ankitageorge/2/base -> origin/gh/ankitageorge/2/base 2025-06-01T20:58:05.6913133Z * [new branch] gh/ankitageorge/2/head -> origin/gh/ankitageorge/2/head 2025-06-01T20:58:05.6913658Z * [new branch] gh/ankitageorge/2/orig -> origin/gh/ankitageorge/2/orig 2025-06-01T20:58:05.6914182Z * [new branch] gh/ankitageorge/3/base -> origin/gh/ankitageorge/3/base 2025-06-01T20:58:05.6914709Z * [new branch] gh/ankitageorge/3/head -> origin/gh/ankitageorge/3/head 2025-06-01T20:58:05.6915240Z * [new branch] gh/ankitageorge/3/orig -> origin/gh/ankitageorge/3/orig 2025-06-01T20:58:05.6915772Z * [new branch] gh/ankitageorge/4/base -> origin/gh/ankitageorge/4/base 2025-06-01T20:58:05.6916304Z * [new branch] gh/ankitageorge/4/head -> origin/gh/ankitageorge/4/head 2025-06-01T20:58:05.6916821Z * [new branch] gh/ankitageorge/4/orig -> origin/gh/ankitageorge/4/orig 2025-06-01T20:58:05.6917347Z * [new branch] gh/ankitageorge/5/base -> origin/gh/ankitageorge/5/base 2025-06-01T20:58:05.6917873Z * [new branch] gh/ankitageorge/5/head -> origin/gh/ankitageorge/5/head 2025-06-01T20:58:05.6918388Z * [new branch] gh/ankitageorge/5/orig -> origin/gh/ankitageorge/5/orig 2025-06-01T20:58:05.6918911Z * [new branch] gh/aorenste/132/base -> origin/gh/aorenste/132/base 2025-06-01T20:58:05.6919414Z * [new branch] gh/aorenste/132/head -> origin/gh/aorenste/132/head 2025-06-01T20:58:05.6919938Z * [new branch] gh/aorenste/222/base -> origin/gh/aorenste/222/base 2025-06-01T20:58:05.6920427Z * [new branch] gh/aorenste/222/head -> origin/gh/aorenste/222/head 2025-06-01T20:58:05.6920924Z * [new branch] gh/aorenste/222/orig -> origin/gh/aorenste/222/orig 2025-06-01T20:58:05.6921430Z * [new branch] gh/aorenste/223/base -> origin/gh/aorenste/223/base 2025-06-01T20:58:05.6921920Z * [new branch] gh/aorenste/223/head -> origin/gh/aorenste/223/head 2025-06-01T20:58:05.6922419Z * [new branch] gh/aorenste/223/orig -> origin/gh/aorenste/223/orig 2025-06-01T20:58:05.6922912Z * [new branch] gh/aorenste/224/base -> origin/gh/aorenste/224/base 2025-06-01T20:58:05.6923421Z * [new branch] gh/aorenste/224/head -> origin/gh/aorenste/224/head 2025-06-01T20:58:05.6924129Z * [new branch] gh/aorenste/224/orig -> origin/gh/aorenste/224/orig 2025-06-01T20:58:05.6924751Z * [new branch] gh/aorenste/225/base -> origin/gh/aorenste/225/base 2025-06-01T20:58:05.6925250Z * [new branch] gh/aorenste/225/head -> origin/gh/aorenste/225/head 2025-06-01T20:58:05.6925751Z * [new branch] gh/aorenste/225/orig -> origin/gh/aorenste/225/orig 2025-06-01T20:58:05.6926257Z * [new branch] gh/aorenste/226/base -> origin/gh/aorenste/226/base 2025-06-01T20:58:05.6926758Z * [new branch] gh/aorenste/226/head -> origin/gh/aorenste/226/head 2025-06-01T20:58:05.6927253Z * [new branch] gh/aorenste/226/orig -> origin/gh/aorenste/226/orig 2025-06-01T20:58:05.6927752Z * [new branch] gh/aorenste/227/base -> origin/gh/aorenste/227/base 2025-06-01T20:58:05.6928236Z * [new branch] gh/aorenste/227/head -> origin/gh/aorenste/227/head 2025-06-01T20:58:05.6928748Z * [new branch] gh/aorenste/227/orig -> origin/gh/aorenste/227/orig 2025-06-01T20:58:05.6929238Z * [new branch] gh/aorenste/228/base -> origin/gh/aorenste/228/base 2025-06-01T20:58:05.6929734Z * [new branch] gh/aorenste/228/head -> origin/gh/aorenste/228/head 2025-06-01T20:58:05.6930230Z * [new branch] gh/aorenste/228/orig -> origin/gh/aorenste/228/orig 2025-06-01T20:58:05.6930714Z * [new branch] gh/aorenste/229/base -> origin/gh/aorenste/229/base 2025-06-01T20:58:05.6931214Z * [new branch] gh/aorenste/229/head -> origin/gh/aorenste/229/head 2025-06-01T20:58:05.6931710Z * [new branch] gh/aorenste/229/orig -> origin/gh/aorenste/229/orig 2025-06-01T20:58:05.6932207Z * [new branch] gh/aorenste/230/base -> origin/gh/aorenste/230/base 2025-06-01T20:58:05.6932713Z * [new branch] gh/aorenste/230/head -> origin/gh/aorenste/230/head 2025-06-01T20:58:05.7389952Z * [new branch] gh/aorenste/230/orig -> origin/gh/aorenste/230/orig 2025-06-01T20:58:05.7390610Z * [new branch] gh/avikchaudhuri/59/base -> origin/gh/avikchaudhuri/59/base 2025-06-01T20:58:05.7391194Z * [new branch] gh/avikchaudhuri/59/head -> origin/gh/avikchaudhuri/59/head 2025-06-01T20:58:05.7391741Z * [new branch] gh/avikchaudhuri/59/orig -> origin/gh/avikchaudhuri/59/orig 2025-06-01T20:58:05.7392272Z * [new branch] gh/bdhirsh/604/base -> origin/gh/bdhirsh/604/base 2025-06-01T20:58:05.7392762Z * [new branch] gh/bdhirsh/604/head -> origin/gh/bdhirsh/604/head 2025-06-01T20:58:05.7393251Z * [new branch] gh/bdhirsh/604/orig -> origin/gh/bdhirsh/604/orig 2025-06-01T20:58:05.7393740Z * [new branch] gh/bdhirsh/636/base -> origin/gh/bdhirsh/636/base 2025-06-01T20:58:05.7394229Z * [new branch] gh/bdhirsh/636/head -> origin/gh/bdhirsh/636/head 2025-06-01T20:58:05.7394735Z * [new branch] gh/bdhirsh/636/orig -> origin/gh/bdhirsh/636/orig 2025-06-01T20:58:05.7395210Z * [new branch] gh/bdhirsh/647/base -> origin/gh/bdhirsh/647/base 2025-06-01T20:58:05.7395708Z * [new branch] gh/bdhirsh/647/head -> origin/gh/bdhirsh/647/head 2025-06-01T20:58:05.7396197Z * [new branch] gh/bdhirsh/647/orig -> origin/gh/bdhirsh/647/orig 2025-06-01T20:58:05.7396674Z * [new branch] gh/bdhirsh/650/base -> origin/gh/bdhirsh/650/base 2025-06-01T20:58:05.7397156Z * [new branch] gh/bdhirsh/650/head -> origin/gh/bdhirsh/650/head 2025-06-01T20:58:05.7397636Z * [new branch] gh/bdhirsh/650/orig -> origin/gh/bdhirsh/650/orig 2025-06-01T20:58:05.7398123Z * [new branch] gh/bdhirsh/651/base -> origin/gh/bdhirsh/651/base 2025-06-01T20:58:05.7398787Z * [new branch] gh/bdhirsh/651/head -> origin/gh/bdhirsh/651/head 2025-06-01T20:58:05.7399407Z * [new branch] gh/bdhirsh/651/orig -> origin/gh/bdhirsh/651/orig 2025-06-01T20:58:05.7399901Z * [new branch] gh/bdhirsh/652/base -> origin/gh/bdhirsh/652/base 2025-06-01T20:58:05.7400377Z * [new branch] gh/bdhirsh/652/head -> origin/gh/bdhirsh/652/head 2025-06-01T20:58:05.7400866Z * [new branch] gh/bdhirsh/652/orig -> origin/gh/bdhirsh/652/orig 2025-06-01T20:58:05.7401348Z * [new branch] gh/bdhirsh/654/base -> origin/gh/bdhirsh/654/base 2025-06-01T20:58:05.7401844Z * [new branch] gh/bdhirsh/654/head -> origin/gh/bdhirsh/654/head 2025-06-01T20:58:05.7402340Z * [new branch] gh/bdhirsh/654/orig -> origin/gh/bdhirsh/654/orig 2025-06-01T20:58:05.7402831Z * [new branch] gh/bdhirsh/655/base -> origin/gh/bdhirsh/655/base 2025-06-01T20:58:05.7403336Z * [new branch] gh/bdhirsh/655/head -> origin/gh/bdhirsh/655/head 2025-06-01T20:58:05.7403812Z * [new branch] gh/bdhirsh/655/orig -> origin/gh/bdhirsh/655/orig 2025-06-01T20:58:05.7404302Z * [new branch] gh/bdhirsh/656/base -> origin/gh/bdhirsh/656/base 2025-06-01T20:58:05.7404816Z * [new branch] gh/bdhirsh/656/head -> origin/gh/bdhirsh/656/head 2025-06-01T20:58:05.7405303Z * [new branch] gh/bdhirsh/657/base -> origin/gh/bdhirsh/657/base 2025-06-01T20:58:05.7405790Z * [new branch] gh/bdhirsh/657/head -> origin/gh/bdhirsh/657/head 2025-06-01T20:58:05.7406269Z * [new branch] gh/bdhirsh/658/base -> origin/gh/bdhirsh/658/base 2025-06-01T20:58:05.7406761Z * [new branch] gh/bdhirsh/658/head -> origin/gh/bdhirsh/658/head 2025-06-01T20:58:05.7407240Z * [new branch] gh/bdhirsh/658/orig -> origin/gh/bdhirsh/658/orig 2025-06-01T20:58:05.7407741Z * [new branch] gh/bdhirsh/659/base -> origin/gh/bdhirsh/659/base 2025-06-01T20:58:05.7408235Z * [new branch] gh/bdhirsh/659/head -> origin/gh/bdhirsh/659/head 2025-06-01T20:58:05.7408711Z * [new branch] gh/bdhirsh/659/orig -> origin/gh/bdhirsh/659/orig 2025-06-01T20:58:05.7409200Z * [new branch] gh/bdhirsh/660/base -> origin/gh/bdhirsh/660/base 2025-06-01T20:58:05.7409683Z * [new branch] gh/bdhirsh/660/head -> origin/gh/bdhirsh/660/head 2025-06-01T20:58:05.7410175Z * [new branch] gh/bdhirsh/660/orig -> origin/gh/bdhirsh/660/orig 2025-06-01T20:58:05.7410665Z * [new branch] gh/bdhirsh/661/base -> origin/gh/bdhirsh/661/base 2025-06-01T20:58:05.7411150Z * [new branch] gh/bdhirsh/661/head -> origin/gh/bdhirsh/661/head 2025-06-01T20:58:05.7411647Z * [new branch] gh/bdhirsh/661/orig -> origin/gh/bdhirsh/661/orig 2025-06-01T20:58:05.7412128Z * [new branch] gh/bdhirsh/662/base -> origin/gh/bdhirsh/662/base 2025-06-01T20:58:05.7412614Z * [new branch] gh/bdhirsh/662/head -> origin/gh/bdhirsh/662/head 2025-06-01T20:58:05.7413103Z * [new branch] gh/bdhirsh/662/orig -> origin/gh/bdhirsh/662/orig 2025-06-01T20:58:05.7868408Z * [new branch] gh/bdhirsh/663/base -> origin/gh/bdhirsh/663/base 2025-06-01T20:58:05.7868982Z * [new branch] gh/bdhirsh/663/head -> origin/gh/bdhirsh/663/head 2025-06-01T20:58:05.7869480Z * [new branch] gh/bdhirsh/663/orig -> origin/gh/bdhirsh/663/orig 2025-06-01T20:58:05.7869969Z * [new branch] gh/bdhirsh/664/base -> origin/gh/bdhirsh/664/base 2025-06-01T20:58:05.7870535Z * [new branch] gh/bdhirsh/664/head -> origin/gh/bdhirsh/664/head 2025-06-01T20:58:05.7871230Z * [new branch] gh/bdhirsh/664/orig -> origin/gh/bdhirsh/664/orig 2025-06-01T20:58:05.7871890Z * [new branch] gh/benjaminglass1/51/base -> origin/gh/benjaminglass1/51/base 2025-06-01T20:58:05.7872466Z * [new branch] gh/benjaminglass1/51/head -> origin/gh/benjaminglass1/51/head 2025-06-01T20:58:05.7873020Z * [new branch] gh/benjaminglass1/51/orig -> origin/gh/benjaminglass1/51/orig 2025-06-01T20:58:05.7873587Z * [new branch] gh/benjaminglass1/77/base -> origin/gh/benjaminglass1/77/base 2025-06-01T20:58:05.7874138Z * [new branch] gh/benjaminglass1/77/head -> origin/gh/benjaminglass1/77/head 2025-06-01T20:58:05.7874691Z * [new branch] gh/benjaminglass1/77/orig -> origin/gh/benjaminglass1/77/orig 2025-06-01T20:58:05.7875241Z * [new branch] gh/benjaminglass1/79/base -> origin/gh/benjaminglass1/79/base 2025-06-01T20:58:05.7875802Z * [new branch] gh/benjaminglass1/79/head -> origin/gh/benjaminglass1/79/head 2025-06-01T20:58:05.7876361Z * [new branch] gh/benjaminglass1/79/orig -> origin/gh/benjaminglass1/79/orig 2025-06-01T20:58:05.7876907Z * [new branch] gh/benjaminglass1/83/base -> origin/gh/benjaminglass1/83/base 2025-06-01T20:58:05.7877466Z * [new branch] gh/benjaminglass1/83/head -> origin/gh/benjaminglass1/83/head 2025-06-01T20:58:05.7878017Z * [new branch] gh/benjaminglass1/83/orig -> origin/gh/benjaminglass1/83/orig 2025-06-01T20:58:05.7878576Z * [new branch] gh/benjaminglass1/84/base -> origin/gh/benjaminglass1/84/base 2025-06-01T20:58:05.7879136Z * [new branch] gh/benjaminglass1/84/head -> origin/gh/benjaminglass1/84/head 2025-06-01T20:58:05.7879682Z * [new branch] gh/benjaminglass1/84/orig -> origin/gh/benjaminglass1/84/orig 2025-06-01T20:58:05.7880237Z * [new branch] gh/benjaminglass1/85/base -> origin/gh/benjaminglass1/85/base 2025-06-01T20:58:05.7880795Z * [new branch] gh/benjaminglass1/85/head -> origin/gh/benjaminglass1/85/head 2025-06-01T20:58:05.7881359Z * [new branch] gh/benjaminglass1/85/orig -> origin/gh/benjaminglass1/85/orig 2025-06-01T20:58:05.7881915Z * [new branch] gh/benjaminglass1/86/base -> origin/gh/benjaminglass1/86/base 2025-06-01T20:58:05.7882461Z * [new branch] gh/benjaminglass1/86/head -> origin/gh/benjaminglass1/86/head 2025-06-01T20:58:05.7883018Z * [new branch] gh/benjaminglass1/86/orig -> origin/gh/benjaminglass1/86/orig 2025-06-01T20:58:05.7883544Z * [new branch] gh/bertmaher/1/base -> origin/gh/bertmaher/1/base 2025-06-01T20:58:05.7884058Z * [new branch] gh/bertmaher/1/head -> origin/gh/bertmaher/1/head 2025-06-01T20:58:05.7884560Z * [new branch] gh/bertmaher/1/orig -> origin/gh/bertmaher/1/orig 2025-06-01T20:58:05.7885055Z * [new branch] gh/bertmaher/3/base -> origin/gh/bertmaher/3/base 2025-06-01T20:58:05.7885559Z * [new branch] gh/bertmaher/3/head -> origin/gh/bertmaher/3/head 2025-06-01T20:58:05.7886051Z * [new branch] gh/bertmaher/3/orig -> origin/gh/bertmaher/3/orig 2025-06-01T20:58:05.7886551Z * [new branch] gh/bertmaher/5/base -> origin/gh/bertmaher/5/base 2025-06-01T20:58:05.7887050Z * [new branch] gh/bertmaher/5/head -> origin/gh/bertmaher/5/head 2025-06-01T20:58:05.7887558Z * [new branch] gh/bertmaher/5/orig -> origin/gh/bertmaher/5/orig 2025-06-01T20:58:05.7888073Z * [new branch] gh/bobrenjc93/307/base -> origin/gh/bobrenjc93/307/base 2025-06-01T20:58:05.7888584Z * [new branch] gh/bobrenjc93/307/head -> origin/gh/bobrenjc93/307/head 2025-06-01T20:58:05.7889104Z * [new branch] gh/bobrenjc93/307/orig -> origin/gh/bobrenjc93/307/orig 2025-06-01T20:58:05.7889720Z * [new branch] gh/bobrenjc93/317/base -> origin/gh/bobrenjc93/317/base 2025-06-01T20:58:05.7890345Z * [new branch] gh/bobrenjc93/317/head -> origin/gh/bobrenjc93/317/head 2025-06-01T20:58:05.7890864Z * [new branch] gh/bobrenjc93/317/orig -> origin/gh/bobrenjc93/317/orig 2025-06-01T20:58:05.7891371Z * [new branch] gh/bobrenjc93/318/base -> origin/gh/bobrenjc93/318/base 2025-06-01T20:58:05.7891885Z * [new branch] gh/bobrenjc93/318/head -> origin/gh/bobrenjc93/318/head 2025-06-01T20:58:05.7892388Z * [new branch] gh/bobrenjc93/318/orig -> origin/gh/bobrenjc93/318/orig 2025-06-01T20:58:05.8392552Z * [new branch] gh/bobrenjc93/319/base -> origin/gh/bobrenjc93/319/base 2025-06-01T20:58:05.8393132Z * [new branch] gh/bobrenjc93/319/head -> origin/gh/bobrenjc93/319/head 2025-06-01T20:58:05.8393751Z * [new branch] gh/bobrenjc93/319/orig -> origin/gh/bobrenjc93/319/orig 2025-06-01T20:58:05.8394345Z * [new branch] gh/bobrenjc93/323/base -> origin/gh/bobrenjc93/323/base 2025-06-01T20:58:05.8394870Z * [new branch] gh/bobrenjc93/323/head -> origin/gh/bobrenjc93/323/head 2025-06-01T20:58:05.8395378Z * [new branch] gh/bobrenjc93/323/orig -> origin/gh/bobrenjc93/323/orig 2025-06-01T20:58:05.8395906Z * [new branch] gh/bobrenjc93/324/base -> origin/gh/bobrenjc93/324/base 2025-06-01T20:58:05.8396412Z * [new branch] gh/bobrenjc93/324/head -> origin/gh/bobrenjc93/324/head 2025-06-01T20:58:05.8396921Z * [new branch] gh/bobrenjc93/324/orig -> origin/gh/bobrenjc93/324/orig 2025-06-01T20:58:05.8397443Z * [new branch] gh/bobrenjc93/325/base -> origin/gh/bobrenjc93/325/base 2025-06-01T20:58:05.8397946Z * [new branch] gh/bobrenjc93/325/head -> origin/gh/bobrenjc93/325/head 2025-06-01T20:58:05.8398470Z * [new branch] gh/bobrenjc93/325/orig -> origin/gh/bobrenjc93/325/orig 2025-06-01T20:58:05.8398983Z * [new branch] gh/bobrenjc93/326/base -> origin/gh/bobrenjc93/326/base 2025-06-01T20:58:05.8399575Z * [new branch] gh/bobrenjc93/326/head -> origin/gh/bobrenjc93/326/head 2025-06-01T20:58:05.8400133Z * [new branch] gh/bobrenjc93/326/orig -> origin/gh/bobrenjc93/326/orig 2025-06-01T20:58:05.8400637Z * [new branch] gh/bobrenjc93/327/base -> origin/gh/bobrenjc93/327/base 2025-06-01T20:58:05.8401144Z * [new branch] gh/bobrenjc93/327/head -> origin/gh/bobrenjc93/327/head 2025-06-01T20:58:05.8401652Z * [new branch] gh/bobrenjc93/327/orig -> origin/gh/bobrenjc93/327/orig 2025-06-01T20:58:05.8402166Z * [new branch] gh/bobrenjc93/328/base -> origin/gh/bobrenjc93/328/base 2025-06-01T20:58:05.8402675Z * [new branch] gh/bobrenjc93/328/head -> origin/gh/bobrenjc93/328/head 2025-06-01T20:58:05.8403204Z * [new branch] gh/bobrenjc93/328/orig -> origin/gh/bobrenjc93/328/orig 2025-06-01T20:58:05.8403721Z * [new branch] gh/bobrenjc93/329/base -> origin/gh/bobrenjc93/329/base 2025-06-01T20:58:05.8404225Z * [new branch] gh/bobrenjc93/329/head -> origin/gh/bobrenjc93/329/head 2025-06-01T20:58:05.8404740Z * [new branch] gh/bobrenjc93/329/orig -> origin/gh/bobrenjc93/329/orig 2025-06-01T20:58:05.8405292Z * [new branch] gh/bobrenjc93/330/base -> origin/gh/bobrenjc93/330/base 2025-06-01T20:58:05.8405854Z * [new branch] gh/bobrenjc93/330/head -> origin/gh/bobrenjc93/330/head 2025-06-01T20:58:05.8406370Z * [new branch] gh/bobrenjc93/330/orig -> origin/gh/bobrenjc93/330/orig 2025-06-01T20:58:05.8406875Z * [new branch] gh/bobrenjc93/331/base -> origin/gh/bobrenjc93/331/base 2025-06-01T20:58:05.8407605Z * [new branch] gh/bobrenjc93/331/head -> origin/gh/bobrenjc93/331/head 2025-06-01T20:58:05.8408243Z * [new branch] gh/bobrenjc93/331/orig -> origin/gh/bobrenjc93/331/orig 2025-06-01T20:58:05.8408815Z * [new branch] gh/bobrenjc93/332/base -> origin/gh/bobrenjc93/332/base 2025-06-01T20:58:05.8409331Z * [new branch] gh/bobrenjc93/332/head -> origin/gh/bobrenjc93/332/head 2025-06-01T20:58:05.8409835Z * [new branch] gh/bobrenjc93/332/orig -> origin/gh/bobrenjc93/332/orig 2025-06-01T20:58:05.8410354Z * [new branch] gh/bobrenjc93/333/base -> origin/gh/bobrenjc93/333/base 2025-06-01T20:58:05.8410932Z * [new branch] gh/bobrenjc93/333/head -> origin/gh/bobrenjc93/333/head 2025-06-01T20:58:05.8411502Z * [new branch] gh/bobrenjc93/333/orig -> origin/gh/bobrenjc93/333/orig 2025-06-01T20:58:05.8412022Z * [new branch] gh/bobrenjc93/334/base -> origin/gh/bobrenjc93/334/base 2025-06-01T20:58:05.8412535Z * [new branch] gh/bobrenjc93/334/head -> origin/gh/bobrenjc93/334/head 2025-06-01T20:58:05.8413085Z * [new branch] gh/bobrenjc93/334/orig -> origin/gh/bobrenjc93/334/orig 2025-06-01T20:58:05.8413587Z * [new branch] gh/bobrenjc93/335/base -> origin/gh/bobrenjc93/335/base 2025-06-01T20:58:05.8414102Z * [new branch] gh/bobrenjc93/335/head -> origin/gh/bobrenjc93/335/head 2025-06-01T20:58:05.8414615Z * [new branch] gh/bobrenjc93/335/orig -> origin/gh/bobrenjc93/335/orig 2025-06-01T20:58:05.8415118Z * [new branch] gh/bobrenjc93/336/base -> origin/gh/bobrenjc93/336/base 2025-06-01T20:58:05.8415628Z * [new branch] gh/bobrenjc93/336/head -> origin/gh/bobrenjc93/336/head 2025-06-01T20:58:05.8416138Z * [new branch] gh/bobrenjc93/336/orig -> origin/gh/bobrenjc93/336/orig 2025-06-01T20:58:05.8416733Z * [new branch] gh/bobrenjc93/337/base -> origin/gh/bobrenjc93/337/base 2025-06-01T20:58:05.9007811Z * [new branch] gh/bobrenjc93/337/head -> origin/gh/bobrenjc93/337/head 2025-06-01T20:58:05.9008382Z * [new branch] gh/bobrenjc93/337/orig -> origin/gh/bobrenjc93/337/orig 2025-06-01T20:58:05.9008932Z * [new branch] gh/bobrenjc93/338/base -> origin/gh/bobrenjc93/338/base 2025-06-01T20:58:05.9009498Z * [new branch] gh/bobrenjc93/338/head -> origin/gh/bobrenjc93/338/head 2025-06-01T20:58:05.9010069Z * [new branch] gh/bobrenjc93/338/orig -> origin/gh/bobrenjc93/338/orig 2025-06-01T20:58:05.9010585Z * [new branch] gh/bobrenjc93/339/base -> origin/gh/bobrenjc93/339/base 2025-06-01T20:58:05.9011088Z * [new branch] gh/bobrenjc93/339/head -> origin/gh/bobrenjc93/339/head 2025-06-01T20:58:05.9011614Z * [new branch] gh/bobrenjc93/339/orig -> origin/gh/bobrenjc93/339/orig 2025-06-01T20:58:05.9012159Z * [new branch] gh/bobrenjc93/340/base -> origin/gh/bobrenjc93/340/base 2025-06-01T20:58:05.9012673Z * [new branch] gh/bobrenjc93/340/head -> origin/gh/bobrenjc93/340/head 2025-06-01T20:58:05.9013188Z * [new branch] gh/bobrenjc93/340/orig -> origin/gh/bobrenjc93/340/orig 2025-06-01T20:58:05.9013694Z * [new branch] gh/bobrenjc93/341/base -> origin/gh/bobrenjc93/341/base 2025-06-01T20:58:05.9014201Z * [new branch] gh/bobrenjc93/341/head -> origin/gh/bobrenjc93/341/head 2025-06-01T20:58:05.9014709Z * [new branch] gh/bobrenjc93/341/orig -> origin/gh/bobrenjc93/341/orig 2025-06-01T20:58:05.9015273Z * [new branch] gh/bobrenjc93/342/base -> origin/gh/bobrenjc93/342/base 2025-06-01T20:58:05.9015832Z * [new branch] gh/bobrenjc93/342/head -> origin/gh/bobrenjc93/342/head 2025-06-01T20:58:05.9016532Z * [new branch] gh/bobrenjc93/342/orig -> origin/gh/bobrenjc93/342/orig 2025-06-01T20:58:05.9017186Z * [new branch] gh/bobrenjc93/343/base -> origin/gh/bobrenjc93/343/base 2025-06-01T20:58:05.9017689Z * [new branch] gh/bobrenjc93/343/head -> origin/gh/bobrenjc93/343/head 2025-06-01T20:58:05.9018205Z * [new branch] gh/bobrenjc93/343/orig -> origin/gh/bobrenjc93/343/orig 2025-06-01T20:58:05.9018718Z * [new branch] gh/bobrenjc93/344/base -> origin/gh/bobrenjc93/344/base 2025-06-01T20:58:05.9019231Z * [new branch] gh/bobrenjc93/344/head -> origin/gh/bobrenjc93/344/head 2025-06-01T20:58:05.9019750Z * [new branch] gh/bobrenjc93/344/orig -> origin/gh/bobrenjc93/344/orig 2025-06-01T20:58:05.9020255Z * [new branch] gh/bobrenjc93/345/base -> origin/gh/bobrenjc93/345/base 2025-06-01T20:58:05.9020816Z * [new branch] gh/bobrenjc93/345/head -> origin/gh/bobrenjc93/345/head 2025-06-01T20:58:05.9021395Z * [new branch] gh/bobrenjc93/345/orig -> origin/gh/bobrenjc93/345/orig 2025-06-01T20:58:05.9021909Z * [new branch] gh/bobrenjc93/346/base -> origin/gh/bobrenjc93/346/base 2025-06-01T20:58:05.9022424Z * [new branch] gh/bobrenjc93/346/head -> origin/gh/bobrenjc93/346/head 2025-06-01T20:58:05.9022933Z * [new branch] gh/bobrenjc93/346/orig -> origin/gh/bobrenjc93/346/orig 2025-06-01T20:58:05.9023445Z * [new branch] gh/bobrenjc93/347/base -> origin/gh/bobrenjc93/347/base 2025-06-01T20:58:05.9023952Z * [new branch] gh/bobrenjc93/347/head -> origin/gh/bobrenjc93/347/head 2025-06-01T20:58:05.9024472Z * [new branch] gh/bobrenjc93/347/orig -> origin/gh/bobrenjc93/347/orig 2025-06-01T20:58:05.9024987Z * [new branch] gh/bobrenjc93/348/base -> origin/gh/bobrenjc93/348/base 2025-06-01T20:58:05.9025498Z * [new branch] gh/bobrenjc93/348/head -> origin/gh/bobrenjc93/348/head 2025-06-01T20:58:05.9026013Z * [new branch] gh/bobrenjc93/348/orig -> origin/gh/bobrenjc93/348/orig 2025-06-01T20:58:05.9039906Z * [new branch] gh/bobrenjc93/349/base -> origin/gh/bobrenjc93/349/base 2025-06-01T20:58:05.9040638Z * [new branch] gh/bobrenjc93/349/head -> origin/gh/bobrenjc93/349/head 2025-06-01T20:58:05.9041165Z * [new branch] gh/bobrenjc93/349/orig -> origin/gh/bobrenjc93/349/orig 2025-06-01T20:58:05.9041701Z * [new branch] gh/bobrenjc93/350/base -> origin/gh/bobrenjc93/350/base 2025-06-01T20:58:05.9042223Z * [new branch] gh/bobrenjc93/350/head -> origin/gh/bobrenjc93/350/head 2025-06-01T20:58:05.9042739Z * [new branch] gh/bobrenjc93/350/orig -> origin/gh/bobrenjc93/350/orig 2025-06-01T20:58:05.9043262Z * [new branch] gh/bobrenjc93/351/base -> origin/gh/bobrenjc93/351/base 2025-06-01T20:58:05.9043857Z * [new branch] gh/bobrenjc93/351/head -> origin/gh/bobrenjc93/351/head 2025-06-01T20:58:05.9044434Z * [new branch] gh/bobrenjc93/351/orig -> origin/gh/bobrenjc93/351/orig 2025-06-01T20:58:05.9044957Z * [new branch] gh/bobrenjc93/352/base -> origin/gh/bobrenjc93/352/base 2025-06-01T20:58:06.0349355Z * [new branch] gh/bobrenjc93/352/head -> origin/gh/bobrenjc93/352/head 2025-06-01T20:58:06.0350026Z * [new branch] gh/bobrenjc93/352/orig -> origin/gh/bobrenjc93/352/orig 2025-06-01T20:58:06.0350566Z * [new branch] gh/bobrenjc93/353/base -> origin/gh/bobrenjc93/353/base 2025-06-01T20:58:06.0351089Z * [new branch] gh/bobrenjc93/353/head -> origin/gh/bobrenjc93/353/head 2025-06-01T20:58:06.0351620Z * [new branch] gh/bobrenjc93/353/orig -> origin/gh/bobrenjc93/353/orig 2025-06-01T20:58:06.0352377Z * [new branch] gh/bobrenjc93/354/base -> origin/gh/bobrenjc93/354/base 2025-06-01T20:58:06.0353053Z * [new branch] gh/bobrenjc93/354/head -> origin/gh/bobrenjc93/354/head 2025-06-01T20:58:06.0353579Z * [new branch] gh/bobrenjc93/354/orig -> origin/gh/bobrenjc93/354/orig 2025-06-01T20:58:06.0354101Z * [new branch] gh/bobrenjc93/355/base -> origin/gh/bobrenjc93/355/base 2025-06-01T20:58:06.0354616Z * [new branch] gh/bobrenjc93/355/head -> origin/gh/bobrenjc93/355/head 2025-06-01T20:58:06.0355138Z * [new branch] gh/bobrenjc93/355/orig -> origin/gh/bobrenjc93/355/orig 2025-06-01T20:58:06.0355643Z * [new branch] gh/bobrenjc93/356/base -> origin/gh/bobrenjc93/356/base 2025-06-01T20:58:06.0356157Z * [new branch] gh/bobrenjc93/356/head -> origin/gh/bobrenjc93/356/head 2025-06-01T20:58:06.0356663Z * [new branch] gh/bobrenjc93/356/orig -> origin/gh/bobrenjc93/356/orig 2025-06-01T20:58:06.0357192Z * [new branch] gh/bobrenjc93/357/base -> origin/gh/bobrenjc93/357/base 2025-06-01T20:58:06.0357707Z * [new branch] gh/bobrenjc93/357/head -> origin/gh/bobrenjc93/357/head 2025-06-01T20:58:06.0358210Z * [new branch] gh/bobrenjc93/357/orig -> origin/gh/bobrenjc93/357/orig 2025-06-01T20:58:06.0358722Z * [new branch] gh/bobrenjc93/358/base -> origin/gh/bobrenjc93/358/base 2025-06-01T20:58:06.0359224Z * [new branch] gh/bobrenjc93/358/head -> origin/gh/bobrenjc93/358/head 2025-06-01T20:58:06.0359735Z * [new branch] gh/bobrenjc93/358/orig -> origin/gh/bobrenjc93/358/orig 2025-06-01T20:58:06.0360256Z * [new branch] gh/bobrenjc93/359/base -> origin/gh/bobrenjc93/359/base 2025-06-01T20:58:06.0360763Z * [new branch] gh/bobrenjc93/359/head -> origin/gh/bobrenjc93/359/head 2025-06-01T20:58:06.0361281Z * [new branch] gh/bobrenjc93/359/orig -> origin/gh/bobrenjc93/359/orig 2025-06-01T20:58:06.0361793Z * [new branch] gh/bobrenjc93/360/base -> origin/gh/bobrenjc93/360/base 2025-06-01T20:58:06.0362308Z * [new branch] gh/bobrenjc93/360/head -> origin/gh/bobrenjc93/360/head 2025-06-01T20:58:06.0362825Z * [new branch] gh/bobrenjc93/360/orig -> origin/gh/bobrenjc93/360/orig 2025-06-01T20:58:06.0363327Z * [new branch] gh/bobrenjc93/361/base -> origin/gh/bobrenjc93/361/base 2025-06-01T20:58:06.0363844Z * [new branch] gh/bobrenjc93/361/head -> origin/gh/bobrenjc93/361/head 2025-06-01T20:58:06.0364348Z * [new branch] gh/bobrenjc93/361/orig -> origin/gh/bobrenjc93/361/orig 2025-06-01T20:58:06.0364868Z * [new branch] gh/bobrenjc93/362/base -> origin/gh/bobrenjc93/362/base 2025-06-01T20:58:06.0365382Z * [new branch] gh/bobrenjc93/362/head -> origin/gh/bobrenjc93/362/head 2025-06-01T20:58:06.0365896Z * [new branch] gh/bobrenjc93/362/orig -> origin/gh/bobrenjc93/362/orig 2025-06-01T20:58:06.0366421Z * [new branch] gh/bobrenjc93/363/base -> origin/gh/bobrenjc93/363/base 2025-06-01T20:58:06.0366922Z * [new branch] gh/bobrenjc93/363/head -> origin/gh/bobrenjc93/363/head 2025-06-01T20:58:06.0367441Z * [new branch] gh/bobrenjc93/363/orig -> origin/gh/bobrenjc93/363/orig 2025-06-01T20:58:06.0367957Z * [new branch] gh/bobrenjc93/364/base -> origin/gh/bobrenjc93/364/base 2025-06-01T20:58:06.0368465Z * [new branch] gh/bobrenjc93/364/head -> origin/gh/bobrenjc93/364/head 2025-06-01T20:58:06.0368975Z * [new branch] gh/bobrenjc93/364/orig -> origin/gh/bobrenjc93/364/orig 2025-06-01T20:58:06.0369484Z * [new branch] gh/bobrenjc93/365/base -> origin/gh/bobrenjc93/365/base 2025-06-01T20:58:06.0370101Z * [new branch] gh/bobrenjc93/365/head -> origin/gh/bobrenjc93/365/head 2025-06-01T20:58:06.0370711Z * [new branch] gh/bobrenjc93/365/orig -> origin/gh/bobrenjc93/365/orig 2025-06-01T20:58:06.0371232Z * [new branch] gh/bobrenjc93/366/base -> origin/gh/bobrenjc93/366/base 2025-06-01T20:58:06.0371753Z * [new branch] gh/bobrenjc93/366/head -> origin/gh/bobrenjc93/366/head 2025-06-01T20:58:06.0372260Z * [new branch] gh/bobrenjc93/366/orig -> origin/gh/bobrenjc93/366/orig 2025-06-01T20:58:06.0372785Z * [new branch] gh/bobrenjc93/367/base -> origin/gh/bobrenjc93/367/base 2025-06-01T20:58:06.0373294Z * [new branch] gh/bobrenjc93/367/head -> origin/gh/bobrenjc93/367/head 2025-06-01T20:58:06.0770600Z * [new branch] gh/bobrenjc93/367/orig -> origin/gh/bobrenjc93/367/orig 2025-06-01T20:58:06.0771163Z * [new branch] gh/bobrenjc93/368/base -> origin/gh/bobrenjc93/368/base 2025-06-01T20:58:06.0771721Z * [new branch] gh/bobrenjc93/368/head -> origin/gh/bobrenjc93/368/head 2025-06-01T20:58:06.0772257Z * [new branch] gh/bobrenjc93/368/orig -> origin/gh/bobrenjc93/368/orig 2025-06-01T20:58:06.0772780Z * [new branch] gh/bobrenjc93/369/base -> origin/gh/bobrenjc93/369/base 2025-06-01T20:58:06.0773293Z * [new branch] gh/bobrenjc93/369/head -> origin/gh/bobrenjc93/369/head 2025-06-01T20:58:06.0773818Z * [new branch] gh/bobrenjc93/369/orig -> origin/gh/bobrenjc93/369/orig 2025-06-01T20:58:06.0774331Z * [new branch] gh/bobrenjc93/370/base -> origin/gh/bobrenjc93/370/base 2025-06-01T20:58:06.0774845Z * [new branch] gh/bobrenjc93/370/head -> origin/gh/bobrenjc93/370/head 2025-06-01T20:58:06.0775370Z * [new branch] gh/bobrenjc93/370/orig -> origin/gh/bobrenjc93/370/orig 2025-06-01T20:58:06.0775881Z * [new branch] gh/bobrenjc93/371/base -> origin/gh/bobrenjc93/371/base 2025-06-01T20:58:06.0776401Z * [new branch] gh/bobrenjc93/371/head -> origin/gh/bobrenjc93/371/head 2025-06-01T20:58:06.0776911Z * [new branch] gh/bobrenjc93/371/orig -> origin/gh/bobrenjc93/371/orig 2025-06-01T20:58:06.0777431Z * [new branch] gh/bobrenjc93/372/base -> origin/gh/bobrenjc93/372/base 2025-06-01T20:58:06.0777945Z * [new branch] gh/bobrenjc93/372/head -> origin/gh/bobrenjc93/372/head 2025-06-01T20:58:06.0778453Z * [new branch] gh/bobrenjc93/372/orig -> origin/gh/bobrenjc93/372/orig 2025-06-01T20:58:06.0778969Z * [new branch] gh/bobrenjc93/373/base -> origin/gh/bobrenjc93/373/base 2025-06-01T20:58:06.0779477Z * [new branch] gh/bobrenjc93/373/head -> origin/gh/bobrenjc93/373/head 2025-06-01T20:58:06.0780004Z * [new branch] gh/bobrenjc93/373/orig -> origin/gh/bobrenjc93/373/orig 2025-06-01T20:58:06.0780520Z * [new branch] gh/bobrenjc93/374/base -> origin/gh/bobrenjc93/374/base 2025-06-01T20:58:06.0781051Z * [new branch] gh/bobrenjc93/374/head -> origin/gh/bobrenjc93/374/head 2025-06-01T20:58:06.0781567Z * [new branch] gh/bobrenjc93/374/orig -> origin/gh/bobrenjc93/374/orig 2025-06-01T20:58:06.0782078Z * [new branch] gh/bobrenjc93/375/base -> origin/gh/bobrenjc93/375/base 2025-06-01T20:58:06.0782589Z * [new branch] gh/bobrenjc93/375/head -> origin/gh/bobrenjc93/375/head 2025-06-01T20:58:06.0783091Z * [new branch] gh/bobrenjc93/375/orig -> origin/gh/bobrenjc93/375/orig 2025-06-01T20:58:06.0783609Z * [new branch] gh/bobrenjc93/376/base -> origin/gh/bobrenjc93/376/base 2025-06-01T20:58:06.0784133Z * [new branch] gh/bobrenjc93/376/head -> origin/gh/bobrenjc93/376/head 2025-06-01T20:58:06.0784645Z * [new branch] gh/bobrenjc93/376/orig -> origin/gh/bobrenjc93/376/orig 2025-06-01T20:58:06.0785449Z * [new branch] gh/bobrenjc93/377/base -> origin/gh/bobrenjc93/377/base 2025-06-01T20:58:06.0785959Z * [new branch] gh/bobrenjc93/377/head -> origin/gh/bobrenjc93/377/head 2025-06-01T20:58:06.0786486Z * [new branch] gh/bobrenjc93/377/orig -> origin/gh/bobrenjc93/377/orig 2025-06-01T20:58:06.0787010Z * [new branch] gh/bobrenjc93/378/base -> origin/gh/bobrenjc93/378/base 2025-06-01T20:58:06.0787518Z * [new branch] gh/bobrenjc93/378/head -> origin/gh/bobrenjc93/378/head 2025-06-01T20:58:06.0788031Z * [new branch] gh/bobrenjc93/378/orig -> origin/gh/bobrenjc93/378/orig 2025-06-01T20:58:06.0788537Z * [new branch] gh/bobrenjc93/379/base -> origin/gh/bobrenjc93/379/base 2025-06-01T20:58:06.0789045Z * [new branch] gh/bobrenjc93/379/head -> origin/gh/bobrenjc93/379/head 2025-06-01T20:58:06.0789563Z * [new branch] gh/bobrenjc93/379/orig -> origin/gh/bobrenjc93/379/orig 2025-06-01T20:58:06.0790154Z * [new branch] gh/bobrenjc93/380/base -> origin/gh/bobrenjc93/380/base 2025-06-01T20:58:06.0790679Z * [new branch] gh/bobrenjc93/380/head -> origin/gh/bobrenjc93/380/head 2025-06-01T20:58:06.0791186Z * [new branch] gh/bobrenjc93/380/orig -> origin/gh/bobrenjc93/380/orig 2025-06-01T20:58:06.0791707Z * [new branch] gh/bobrenjc93/381/base -> origin/gh/bobrenjc93/381/base 2025-06-01T20:58:06.0792217Z * [new branch] gh/bobrenjc93/381/head -> origin/gh/bobrenjc93/381/head 2025-06-01T20:58:06.0792723Z * [new branch] gh/bobrenjc93/381/orig -> origin/gh/bobrenjc93/381/orig 2025-06-01T20:58:06.0793234Z * [new branch] gh/bobrenjc93/382/base -> origin/gh/bobrenjc93/382/base 2025-06-01T20:58:06.0793744Z * [new branch] gh/bobrenjc93/382/head -> origin/gh/bobrenjc93/382/head 2025-06-01T20:58:06.1247793Z * [new branch] gh/bobrenjc93/382/orig -> origin/gh/bobrenjc93/382/orig 2025-06-01T20:58:06.1248893Z * [new branch] gh/bobrenjc93/383/base -> origin/gh/bobrenjc93/383/base 2025-06-01T20:58:06.1249929Z * [new branch] gh/bobrenjc93/383/head -> origin/gh/bobrenjc93/383/head 2025-06-01T20:58:06.1251047Z * [new branch] gh/bobrenjc93/383/orig -> origin/gh/bobrenjc93/383/orig 2025-06-01T20:58:06.1252170Z * [new branch] gh/bobrenjc93/384/base -> origin/gh/bobrenjc93/384/base 2025-06-01T20:58:06.1253188Z * [new branch] gh/bobrenjc93/384/head -> origin/gh/bobrenjc93/384/head 2025-06-01T20:58:06.1254165Z * [new branch] gh/bobrenjc93/384/orig -> origin/gh/bobrenjc93/384/orig 2025-06-01T20:58:06.1255207Z * [new branch] gh/bobrenjc93/385/base -> origin/gh/bobrenjc93/385/base 2025-06-01T20:58:06.1256221Z * [new branch] gh/bobrenjc93/385/head -> origin/gh/bobrenjc93/385/head 2025-06-01T20:58:06.1257258Z * [new branch] gh/bobrenjc93/385/orig -> origin/gh/bobrenjc93/385/orig 2025-06-01T20:58:06.1258293Z * [new branch] gh/bobrenjc93/386/base -> origin/gh/bobrenjc93/386/base 2025-06-01T20:58:06.1259297Z * [new branch] gh/bobrenjc93/386/head -> origin/gh/bobrenjc93/386/head 2025-06-01T20:58:06.1260398Z * [new branch] gh/bobrenjc93/386/orig -> origin/gh/bobrenjc93/386/orig 2025-06-01T20:58:06.1261432Z * [new branch] gh/bobrenjc93/387/base -> origin/gh/bobrenjc93/387/base 2025-06-01T20:58:06.1262456Z * [new branch] gh/bobrenjc93/387/head -> origin/gh/bobrenjc93/387/head 2025-06-01T20:58:06.1263470Z * [new branch] gh/bobrenjc93/387/orig -> origin/gh/bobrenjc93/387/orig 2025-06-01T20:58:06.1264503Z * [new branch] gh/bobrenjc93/388/base -> origin/gh/bobrenjc93/388/base 2025-06-01T20:58:06.1266067Z * [new branch] gh/bobrenjc93/388/head -> origin/gh/bobrenjc93/388/head 2025-06-01T20:58:06.1266867Z * [new branch] gh/bobrenjc93/388/orig -> origin/gh/bobrenjc93/388/orig 2025-06-01T20:58:06.1267722Z * [new branch] gh/bobrenjc93/389/base -> origin/gh/bobrenjc93/389/base 2025-06-01T20:58:06.1268671Z * [new branch] gh/bobrenjc93/389/head -> origin/gh/bobrenjc93/389/head 2025-06-01T20:58:06.1269734Z * [new branch] gh/bobrenjc93/389/orig -> origin/gh/bobrenjc93/389/orig 2025-06-01T20:58:06.1270815Z * [new branch] gh/bobrenjc93/390/base -> origin/gh/bobrenjc93/390/base 2025-06-01T20:58:06.1271851Z * [new branch] gh/bobrenjc93/390/head -> origin/gh/bobrenjc93/390/head 2025-06-01T20:58:06.1272867Z * [new branch] gh/bobrenjc93/390/orig -> origin/gh/bobrenjc93/390/orig 2025-06-01T20:58:06.1273857Z * [new branch] gh/bobrenjc93/391/base -> origin/gh/bobrenjc93/391/base 2025-06-01T20:58:06.1274934Z * [new branch] gh/bobrenjc93/391/head -> origin/gh/bobrenjc93/391/head 2025-06-01T20:58:06.1275927Z * [new branch] gh/bobrenjc93/391/orig -> origin/gh/bobrenjc93/391/orig 2025-06-01T20:58:06.1276904Z * [new branch] gh/bobrenjc93/392/base -> origin/gh/bobrenjc93/392/base 2025-06-01T20:58:06.1277932Z * [new branch] gh/bobrenjc93/392/head -> origin/gh/bobrenjc93/392/head 2025-06-01T20:58:06.1278988Z * [new branch] gh/bobrenjc93/392/orig -> origin/gh/bobrenjc93/392/orig 2025-06-01T20:58:06.1280035Z * [new branch] gh/bobrenjc93/393/base -> origin/gh/bobrenjc93/393/base 2025-06-01T20:58:06.1281042Z * [new branch] gh/bobrenjc93/393/head -> origin/gh/bobrenjc93/393/head 2025-06-01T20:58:06.1282051Z * [new branch] gh/bobrenjc93/393/orig -> origin/gh/bobrenjc93/393/orig 2025-06-01T20:58:06.1283119Z * [new branch] gh/briancoutinho/2/base -> origin/gh/briancoutinho/2/base 2025-06-01T20:58:06.1284219Z * [new branch] gh/briancoutinho/2/head -> origin/gh/briancoutinho/2/head 2025-06-01T20:58:06.1285195Z * [new branch] gh/c00w/23/base -> origin/gh/c00w/23/base 2025-06-01T20:58:06.1286055Z * [new branch] gh/c00w/23/head -> origin/gh/c00w/23/head 2025-06-01T20:58:06.1286876Z * [new branch] gh/c00w/38/base -> origin/gh/c00w/38/base 2025-06-01T20:58:06.1287746Z * [new branch] gh/c00w/38/head -> origin/gh/c00w/38/head 2025-06-01T20:58:06.1288578Z * [new branch] gh/c00w/38/orig -> origin/gh/c00w/38/orig 2025-06-01T20:58:06.1289460Z * [new branch] gh/c00w/44/base -> origin/gh/c00w/44/base 2025-06-01T20:58:06.1290312Z * [new branch] gh/c00w/44/head -> origin/gh/c00w/44/head 2025-06-01T20:58:06.1291201Z * [new branch] gh/c00w/44/orig -> origin/gh/c00w/44/orig 2025-06-01T20:58:06.1292097Z * [new branch] gh/c00w/45/base -> origin/gh/c00w/45/base 2025-06-01T20:58:06.1293007Z * [new branch] gh/c00w/45/orig -> origin/gh/c00w/45/orig 2025-06-01T20:58:06.1293872Z * [new branch] gh/c00w/46/base -> origin/gh/c00w/46/base 2025-06-01T20:58:06.1757569Z * [new branch] gh/c00w/46/head -> origin/gh/c00w/46/head 2025-06-01T20:58:06.1758151Z * [new branch] gh/c00w/46/orig -> origin/gh/c00w/46/orig 2025-06-01T20:58:06.1758606Z * [new branch] gh/c00w/47/base -> origin/gh/c00w/47/base 2025-06-01T20:58:06.1759072Z * [new branch] gh/c00w/47/head -> origin/gh/c00w/47/head 2025-06-01T20:58:06.1759516Z * [new branch] gh/c00w/47/orig -> origin/gh/c00w/47/orig 2025-06-01T20:58:06.1760318Z * [new branch] gh/c00w/48/base -> origin/gh/c00w/48/base 2025-06-01T20:58:06.1760770Z * [new branch] gh/c00w/48/head -> origin/gh/c00w/48/head 2025-06-01T20:58:06.1761213Z * [new branch] gh/c00w/48/orig -> origin/gh/c00w/48/orig 2025-06-01T20:58:06.1761683Z * [new branch] gh/chillee/377/base -> origin/gh/chillee/377/base 2025-06-01T20:58:06.1762183Z * [new branch] gh/chillee/377/head -> origin/gh/chillee/377/head 2025-06-01T20:58:06.1762671Z * [new branch] gh/chillee/377/orig -> origin/gh/chillee/377/orig 2025-06-01T20:58:06.1763232Z * [new branch] gh/chunyuan-w/1/base -> origin/gh/chunyuan-w/1/base 2025-06-01T20:58:06.1763828Z * [new branch] gh/chunyuan-w/1/head -> origin/gh/chunyuan-w/1/head 2025-06-01T20:58:06.1764335Z * [new branch] gh/chunyuan-w/1/orig -> origin/gh/chunyuan-w/1/orig 2025-06-01T20:58:06.1764835Z * [new branch] gh/clee2000/1/base -> origin/gh/clee2000/1/base 2025-06-01T20:58:06.1765305Z * [new branch] gh/clee2000/1/head -> origin/gh/clee2000/1/head 2025-06-01T20:58:06.1765781Z * [new branch] gh/clee2000/1/orig -> origin/gh/clee2000/1/orig 2025-06-01T20:58:06.1766310Z * [new branch] gh/davidberard98/335/base -> origin/gh/davidberard98/335/base 2025-06-01T20:58:06.1766865Z * [new branch] gh/davidberard98/335/head -> origin/gh/davidberard98/335/head 2025-06-01T20:58:06.1767423Z * [new branch] gh/davidberard98/335/orig -> origin/gh/davidberard98/335/orig 2025-06-01T20:58:06.1767973Z * [new branch] gh/davidberard98/343/base -> origin/gh/davidberard98/343/base 2025-06-01T20:58:06.1768543Z * [new branch] gh/davidberard98/343/head -> origin/gh/davidberard98/343/head 2025-06-01T20:58:06.1769105Z * [new branch] gh/davidberard98/343/orig -> origin/gh/davidberard98/343/orig 2025-06-01T20:58:06.1769751Z * [new branch] gh/davidberard98/347/base -> origin/gh/davidberard98/347/base 2025-06-01T20:58:06.1770346Z * [new branch] gh/davidberard98/347/head -> origin/gh/davidberard98/347/head 2025-06-01T20:58:06.1770894Z * [new branch] gh/davidberard98/347/orig -> origin/gh/davidberard98/347/orig 2025-06-01T20:58:06.1771448Z * [new branch] gh/davidberard98/351/base -> origin/gh/davidberard98/351/base 2025-06-01T20:58:06.1772002Z * [new branch] gh/davidberard98/351/head -> origin/gh/davidberard98/351/head 2025-06-01T20:58:06.1772552Z * [new branch] gh/davidberard98/351/orig -> origin/gh/davidberard98/351/orig 2025-06-01T20:58:06.1773097Z * [new branch] gh/davidberard98/352/base -> origin/gh/davidberard98/352/base 2025-06-01T20:58:06.1773650Z * [new branch] gh/davidberard98/352/head -> origin/gh/davidberard98/352/head 2025-06-01T20:58:06.1774201Z * [new branch] gh/davidberard98/352/orig -> origin/gh/davidberard98/352/orig 2025-06-01T20:58:06.1774750Z * [new branch] gh/davidberard98/353/base -> origin/gh/davidberard98/353/base 2025-06-01T20:58:06.1775297Z * [new branch] gh/davidberard98/353/head -> origin/gh/davidberard98/353/head 2025-06-01T20:58:06.1775948Z * [new branch] gh/davidberard98/353/orig -> origin/gh/davidberard98/353/orig 2025-06-01T20:58:06.1776535Z * [new branch] gh/davidberard98/354/base -> origin/gh/davidberard98/354/base 2025-06-01T20:58:06.1777090Z * [new branch] gh/davidberard98/354/head -> origin/gh/davidberard98/354/head 2025-06-01T20:58:06.1777645Z * [new branch] gh/davidberard98/354/orig -> origin/gh/davidberard98/354/orig 2025-06-01T20:58:06.1778184Z * [new branch] gh/davidberard98/355/base -> origin/gh/davidberard98/355/base 2025-06-01T20:58:06.1778973Z * [new branch] gh/davidberard98/355/head -> origin/gh/davidberard98/355/head 2025-06-01T20:58:06.1779525Z * [new branch] gh/davidberard98/355/orig -> origin/gh/davidberard98/355/orig 2025-06-01T20:58:06.1780081Z * [new branch] gh/davidberard98/356/base -> origin/gh/davidberard98/356/base 2025-06-01T20:58:06.1780622Z * [new branch] gh/davidberard98/356/head -> origin/gh/davidberard98/356/head 2025-06-01T20:58:06.1781170Z * [new branch] gh/davidberard98/356/orig -> origin/gh/davidberard98/356/orig 2025-06-01T20:58:06.1781770Z * [new branch] gh/davidberard98/357/base -> origin/gh/davidberard98/357/base 2025-06-01T20:58:06.2191155Z * [new branch] gh/davidberard98/357/head -> origin/gh/davidberard98/357/head 2025-06-01T20:58:06.2191756Z * [new branch] gh/davidberard98/357/orig -> origin/gh/davidberard98/357/orig 2025-06-01T20:58:06.2192320Z * [new branch] gh/davidberard98/358/base -> origin/gh/davidberard98/358/base 2025-06-01T20:58:06.2192875Z * [new branch] gh/davidberard98/358/head -> origin/gh/davidberard98/358/head 2025-06-01T20:58:06.2193428Z * [new branch] gh/davidberard98/358/orig -> origin/gh/davidberard98/358/orig 2025-06-01T20:58:06.2194008Z * [new branch] gh/desertfire/535/base -> origin/gh/desertfire/535/base 2025-06-01T20:58:06.2194580Z * [new branch] gh/desertfire/535/head -> origin/gh/desertfire/535/head 2025-06-01T20:58:06.2195190Z * [new branch] gh/desertfire/535/orig -> origin/gh/desertfire/535/orig 2025-06-01T20:58:06.2195772Z * [new branch] gh/desertfire/542/base -> origin/gh/desertfire/542/base 2025-06-01T20:58:06.2196314Z * [new branch] gh/desertfire/542/head -> origin/gh/desertfire/542/head 2025-06-01T20:58:06.2196828Z * [new branch] gh/desertfire/542/orig -> origin/gh/desertfire/542/orig 2025-06-01T20:58:06.2197353Z * [new branch] gh/desertfire/547/base -> origin/gh/desertfire/547/base 2025-06-01T20:58:06.2197879Z * [new branch] gh/desertfire/547/head -> origin/gh/desertfire/547/head 2025-06-01T20:58:06.2198393Z * [new branch] gh/desertfire/547/orig -> origin/gh/desertfire/547/orig 2025-06-01T20:58:06.2198919Z * [new branch] gh/desertfire/551/base -> origin/gh/desertfire/551/base 2025-06-01T20:58:06.2199429Z * [new branch] gh/desertfire/551/head -> origin/gh/desertfire/551/head 2025-06-01T20:58:06.2199951Z * [new branch] gh/desertfire/551/orig -> origin/gh/desertfire/551/orig 2025-06-01T20:58:06.2200482Z * [new branch] gh/desertfire/559/base -> origin/gh/desertfire/559/base 2025-06-01T20:58:06.2200993Z * [new branch] gh/desertfire/559/head -> origin/gh/desertfire/559/head 2025-06-01T20:58:06.2201612Z * [new branch] gh/desertfire/559/orig -> origin/gh/desertfire/559/orig 2025-06-01T20:58:06.2202179Z * [new branch] gh/desertfire/564/base -> origin/gh/desertfire/564/base 2025-06-01T20:58:06.2202783Z * [new branch] gh/desertfire/564/head -> origin/gh/desertfire/564/head 2025-06-01T20:58:06.2203386Z * [new branch] gh/desertfire/564/orig -> origin/gh/desertfire/564/orig 2025-06-01T20:58:06.2203943Z * [new branch] gh/desertfire/566/base -> origin/gh/desertfire/566/base 2025-06-01T20:58:06.2204550Z * [new branch] gh/desertfire/566/head -> origin/gh/desertfire/566/head 2025-06-01T20:58:06.2205109Z * [new branch] gh/desertfire/566/orig -> origin/gh/desertfire/566/orig 2025-06-01T20:58:06.2205722Z * [new branch] gh/desertfire/567/base -> origin/gh/desertfire/567/base 2025-06-01T20:58:06.2206278Z * [new branch] gh/desertfire/567/head -> origin/gh/desertfire/567/head 2025-06-01T20:58:06.2208091Z * [new branch] gh/desertfire/567/orig -> origin/gh/desertfire/567/orig 2025-06-01T20:58:06.2208625Z * [new branch] gh/desertfire/568/base -> origin/gh/desertfire/568/base 2025-06-01T20:58:06.2209138Z * [new branch] gh/desertfire/568/head -> origin/gh/desertfire/568/head 2025-06-01T20:58:06.2209666Z * [new branch] gh/desertfire/568/orig -> origin/gh/desertfire/568/orig 2025-06-01T20:58:06.2210175Z * [new branch] gh/desertfire/569/base -> origin/gh/desertfire/569/base 2025-06-01T20:58:06.2210703Z * [new branch] gh/desertfire/569/head -> origin/gh/desertfire/569/head 2025-06-01T20:58:06.2211338Z * [new branch] gh/desertfire/569/orig -> origin/gh/desertfire/569/orig 2025-06-01T20:58:06.2211899Z * [new branch] gh/desertfire/570/base -> origin/gh/desertfire/570/base 2025-06-01T20:58:06.2212514Z * [new branch] gh/desertfire/570/head -> origin/gh/desertfire/570/head 2025-06-01T20:58:06.2213033Z * [new branch] gh/desertfire/570/orig -> origin/gh/desertfire/570/orig 2025-06-01T20:58:06.2213555Z * [new branch] gh/desertfire/571/base -> origin/gh/desertfire/571/base 2025-06-01T20:58:06.2214077Z * [new branch] gh/desertfire/571/head -> origin/gh/desertfire/571/head 2025-06-01T20:58:06.2214586Z * [new branch] gh/desertfire/571/orig -> origin/gh/desertfire/571/orig 2025-06-01T20:58:06.2215101Z * [new branch] gh/desertfire/572/base -> origin/gh/desertfire/572/base 2025-06-01T20:58:06.2215612Z * [new branch] gh/desertfire/572/head -> origin/gh/desertfire/572/head 2025-06-01T20:58:06.2216140Z * [new branch] gh/desertfire/572/orig -> origin/gh/desertfire/572/orig 2025-06-01T20:58:06.2216653Z * [new branch] gh/desertfire/573/base -> origin/gh/desertfire/573/base 2025-06-01T20:58:06.2634845Z * [new branch] gh/desertfire/573/head -> origin/gh/desertfire/573/head 2025-06-01T20:58:06.2635395Z * [new branch] gh/desertfire/573/orig -> origin/gh/desertfire/573/orig 2025-06-01T20:58:06.2635946Z * [new branch] gh/desertfire/574/base -> origin/gh/desertfire/574/base 2025-06-01T20:58:06.2636467Z * [new branch] gh/desertfire/574/head -> origin/gh/desertfire/574/head 2025-06-01T20:58:06.2636990Z * [new branch] gh/desertfire/574/orig -> origin/gh/desertfire/574/orig 2025-06-01T20:58:06.2637498Z * [new branch] gh/desertfire/575/base -> origin/gh/desertfire/575/base 2025-06-01T20:58:06.2638020Z * [new branch] gh/desertfire/575/head -> origin/gh/desertfire/575/head 2025-06-01T20:58:06.2638533Z * [new branch] gh/desertfire/575/orig -> origin/gh/desertfire/575/orig 2025-06-01T20:58:06.2639059Z * [new branch] gh/desertfire/576/base -> origin/gh/desertfire/576/base 2025-06-01T20:58:06.2639587Z * [new branch] gh/desertfire/576/head -> origin/gh/desertfire/576/head 2025-06-01T20:58:06.2640143Z * [new branch] gh/desertfire/576/orig -> origin/gh/desertfire/576/orig 2025-06-01T20:58:06.2640706Z * [new branch] gh/desertfire/577/base -> origin/gh/desertfire/577/base 2025-06-01T20:58:06.2641220Z * [new branch] gh/desertfire/577/head -> origin/gh/desertfire/577/head 2025-06-01T20:58:06.2641743Z * [new branch] gh/desertfire/577/orig -> origin/gh/desertfire/577/orig 2025-06-01T20:58:06.2642270Z * [new branch] gh/desertfire/578/base -> origin/gh/desertfire/578/base 2025-06-01T20:58:06.2642782Z * [new branch] gh/desertfire/578/head -> origin/gh/desertfire/578/head 2025-06-01T20:58:06.2643305Z * [new branch] gh/desertfire/578/orig -> origin/gh/desertfire/578/orig 2025-06-01T20:58:06.2644099Z * [new branch] gh/desertfire/579/base -> origin/gh/desertfire/579/base 2025-06-01T20:58:06.2644628Z * [new branch] gh/desertfire/579/head -> origin/gh/desertfire/579/head 2025-06-01T20:58:06.2645149Z * [new branch] gh/desertfire/579/orig -> origin/gh/desertfire/579/orig 2025-06-01T20:58:06.2645667Z * [new branch] gh/desertfire/580/base -> origin/gh/desertfire/580/base 2025-06-01T20:58:06.2646272Z * [new branch] gh/desertfire/580/head -> origin/gh/desertfire/580/head 2025-06-01T20:58:06.2646789Z * [new branch] gh/desertfire/580/orig -> origin/gh/desertfire/580/orig 2025-06-01T20:58:06.2647313Z * [new branch] gh/desertfire/581/base -> origin/gh/desertfire/581/base 2025-06-01T20:58:06.2647830Z * [new branch] gh/desertfire/581/head -> origin/gh/desertfire/581/head 2025-06-01T20:58:06.2648344Z * [new branch] gh/desertfire/581/orig -> origin/gh/desertfire/581/orig 2025-06-01T20:58:06.2648857Z * [new branch] gh/dharakk/1/base -> origin/gh/dharakk/1/base 2025-06-01T20:58:06.2649341Z * [new branch] gh/dharakk/1/head -> origin/gh/dharakk/1/head 2025-06-01T20:58:06.2649820Z * [new branch] gh/dharakk/2/base -> origin/gh/dharakk/2/base 2025-06-01T20:58:06.2650292Z * [new branch] gh/dharakk/2/head -> origin/gh/dharakk/2/head 2025-06-01T20:58:06.2650770Z * [new branch] gh/dharakk/2/orig -> origin/gh/dharakk/2/orig 2025-06-01T20:58:06.2651246Z * [new branch] gh/dharakk/3/base -> origin/gh/dharakk/3/base 2025-06-01T20:58:06.2651760Z * [new branch] gh/dharakk/3/head -> origin/gh/dharakk/3/head 2025-06-01T20:58:06.2652275Z * [new branch] gh/dharakk/3/orig -> origin/gh/dharakk/3/orig 2025-06-01T20:58:06.2652745Z * [new branch] gh/dharakk/4/base -> origin/gh/dharakk/4/base 2025-06-01T20:58:06.2653224Z * [new branch] gh/dharakk/4/head -> origin/gh/dharakk/4/head 2025-06-01T20:58:06.2653704Z * [new branch] gh/dharakk/4/orig -> origin/gh/dharakk/4/orig 2025-06-01T20:58:06.2654165Z * [new branch] gh/dharakk/5/base -> origin/gh/dharakk/5/base 2025-06-01T20:58:06.2654634Z * [new branch] gh/dharakk/5/head -> origin/gh/dharakk/5/head 2025-06-01T20:58:06.2655098Z * [new branch] gh/dharakk/5/orig -> origin/gh/dharakk/5/orig 2025-06-01T20:58:06.2655591Z * [new branch] gh/drisspg/113/head -> origin/gh/drisspg/113/head 2025-06-01T20:58:06.2656084Z * [new branch] gh/drisspg/136/base -> origin/gh/drisspg/136/base 2025-06-01T20:58:06.2656572Z * [new branch] gh/drisspg/136/head -> origin/gh/drisspg/136/head 2025-06-01T20:58:06.2657072Z * [new branch] gh/drisspg/136/orig -> origin/gh/drisspg/136/orig 2025-06-01T20:58:06.2657608Z * [new branch] gh/drisspg/137/base -> origin/gh/drisspg/137/base 2025-06-01T20:58:06.2658143Z * [new branch] gh/drisspg/137/head -> origin/gh/drisspg/137/head 2025-06-01T20:58:06.2658621Z * [new branch] gh/drisspg/137/orig -> origin/gh/drisspg/137/orig 2025-06-01T20:58:06.5174863Z * [new branch] gh/drisspg/138/base -> origin/gh/drisspg/138/base 2025-06-01T20:58:06.5175461Z * [new branch] gh/drisspg/138/head -> origin/gh/drisspg/138/head 2025-06-01T20:58:06.5175970Z * [new branch] gh/drisspg/138/orig -> origin/gh/drisspg/138/orig 2025-06-01T20:58:06.5176456Z * [new branch] gh/drisspg/140/base -> origin/gh/drisspg/140/base 2025-06-01T20:58:06.5176944Z * [new branch] gh/drisspg/140/head -> origin/gh/drisspg/140/head 2025-06-01T20:58:06.5177792Z * [new branch] gh/drisspg/140/orig -> origin/gh/drisspg/140/orig 2025-06-01T20:58:06.5178299Z * [new branch] gh/drisspg/143/base -> origin/gh/drisspg/143/base 2025-06-01T20:58:06.5178838Z * [new branch] gh/drisspg/143/head -> origin/gh/drisspg/143/head 2025-06-01T20:58:06.5179410Z * [new branch] gh/drisspg/143/orig -> origin/gh/drisspg/143/orig 2025-06-01T20:58:06.5179955Z * [new branch] gh/drisspg/144/base -> origin/gh/drisspg/144/base 2025-06-01T20:58:06.5180441Z * [new branch] gh/drisspg/144/head -> origin/gh/drisspg/144/head 2025-06-01T20:58:06.5180932Z * [new branch] gh/drisspg/144/orig -> origin/gh/drisspg/144/orig 2025-06-01T20:58:06.5181410Z * [new branch] gh/drisspg/145/base -> origin/gh/drisspg/145/base 2025-06-01T20:58:06.5181908Z * [new branch] gh/drisspg/145/head -> origin/gh/drisspg/145/head 2025-06-01T20:58:06.5182411Z * [new branch] gh/drisspg/145/orig -> origin/gh/drisspg/145/orig 2025-06-01T20:58:06.5182893Z * [new branch] gh/drisspg/146/base -> origin/gh/drisspg/146/base 2025-06-01T20:58:06.5183382Z * [new branch] gh/drisspg/146/head -> origin/gh/drisspg/146/head 2025-06-01T20:58:06.5183866Z * [new branch] gh/drisspg/146/orig -> origin/gh/drisspg/146/orig 2025-06-01T20:58:06.5184359Z * [new branch] gh/drisspg/147/base -> origin/gh/drisspg/147/base 2025-06-01T20:58:06.5184845Z * [new branch] gh/drisspg/147/head -> origin/gh/drisspg/147/head 2025-06-01T20:58:06.5185371Z * [new branch] gh/drisspg/147/orig -> origin/gh/drisspg/147/orig 2025-06-01T20:58:06.5185904Z * [new branch] gh/drisspg/148/base -> origin/gh/drisspg/148/base 2025-06-01T20:58:06.5186401Z * [new branch] gh/drisspg/148/head -> origin/gh/drisspg/148/head 2025-06-01T20:58:06.5186893Z * [new branch] gh/drisspg/148/orig -> origin/gh/drisspg/148/orig 2025-06-01T20:58:06.5187398Z * [new branch] gh/drisspg/149/base -> origin/gh/drisspg/149/base 2025-06-01T20:58:06.5187879Z * [new branch] gh/drisspg/149/head -> origin/gh/drisspg/149/head 2025-06-01T20:58:06.5188363Z * [new branch] gh/drisspg/149/orig -> origin/gh/drisspg/149/orig 2025-06-01T20:58:06.5188852Z * [new branch] gh/drisspg/150/base -> origin/gh/drisspg/150/base 2025-06-01T20:58:06.5189349Z * [new branch] gh/drisspg/150/head -> origin/gh/drisspg/150/head 2025-06-01T20:58:06.5189829Z * [new branch] gh/drisspg/150/orig -> origin/gh/drisspg/150/orig 2025-06-01T20:58:06.5190382Z * [new branch] gh/drisspg/151/base -> origin/gh/drisspg/151/base 2025-06-01T20:58:06.5190928Z * [new branch] gh/drisspg/151/head -> origin/gh/drisspg/151/head 2025-06-01T20:58:06.5191458Z * [new branch] gh/drisspg/151/orig -> origin/gh/drisspg/151/orig 2025-06-01T20:58:06.5191949Z * [new branch] gh/drisspg/152/base -> origin/gh/drisspg/152/base 2025-06-01T20:58:06.5192434Z * [new branch] gh/drisspg/152/head -> origin/gh/drisspg/152/head 2025-06-01T20:58:06.5192920Z * [new branch] gh/drisspg/152/orig -> origin/gh/drisspg/152/orig 2025-06-01T20:58:06.5193416Z * [new branch] gh/dsjohns2/1/base -> origin/gh/dsjohns2/1/base 2025-06-01T20:58:06.5193905Z * [new branch] gh/dsjohns2/1/head -> origin/gh/dsjohns2/1/head 2025-06-01T20:58:06.5194399Z * [new branch] gh/eellison/691/base -> origin/gh/eellison/691/base 2025-06-01T20:58:06.5194895Z * [new branch] gh/eellison/691/head -> origin/gh/eellison/691/head 2025-06-01T20:58:06.5195644Z * [new branch] gh/eellison/691/orig -> origin/gh/eellison/691/orig 2025-06-01T20:58:06.5196154Z * [new branch] gh/eellison/761/base -> origin/gh/eellison/761/base 2025-06-01T20:58:06.5196689Z * [new branch] gh/eellison/761/head -> origin/gh/eellison/761/head 2025-06-01T20:58:06.5197232Z * [new branch] gh/eellison/761/orig -> origin/gh/eellison/761/orig 2025-06-01T20:58:06.5197810Z * [new branch] gh/eellison/764/base -> origin/gh/eellison/764/base 2025-06-01T20:58:06.5198314Z * [new branch] gh/eellison/764/head -> origin/gh/eellison/764/head 2025-06-01T20:58:06.5198806Z * [new branch] gh/eellison/764/orig -> origin/gh/eellison/764/orig 2025-06-01T20:58:06.5616240Z * [new branch] gh/eellison/767/base -> origin/gh/eellison/767/base 2025-06-01T20:58:06.5616841Z * [new branch] gh/eellison/767/head -> origin/gh/eellison/767/head 2025-06-01T20:58:06.5617355Z * [new branch] gh/eellison/767/orig -> origin/gh/eellison/767/orig 2025-06-01T20:58:06.5617876Z * [new branch] gh/eellison/779/base -> origin/gh/eellison/779/base 2025-06-01T20:58:06.5618383Z * [new branch] gh/eellison/779/head -> origin/gh/eellison/779/head 2025-06-01T20:58:06.5618876Z * [new branch] gh/eellison/779/orig -> origin/gh/eellison/779/orig 2025-06-01T20:58:06.5619469Z * [new branch] gh/eellison/781/base -> origin/gh/eellison/781/base 2025-06-01T20:58:06.5620007Z * [new branch] gh/eellison/781/head -> origin/gh/eellison/781/head 2025-06-01T20:58:06.5620506Z * [new branch] gh/eellison/781/orig -> origin/gh/eellison/781/orig 2025-06-01T20:58:06.5621004Z * [new branch] gh/eellison/783/base -> origin/gh/eellison/783/base 2025-06-01T20:58:06.5621502Z * [new branch] gh/eellison/783/head -> origin/gh/eellison/783/head 2025-06-01T20:58:06.5622009Z * [new branch] gh/eellison/783/orig -> origin/gh/eellison/783/orig 2025-06-01T20:58:06.5622495Z * [new branch] gh/eellison/784/base -> origin/gh/eellison/784/base 2025-06-01T20:58:06.5622993Z * [new branch] gh/eellison/784/head -> origin/gh/eellison/784/head 2025-06-01T20:58:06.5623490Z * [new branch] gh/eellison/784/orig -> origin/gh/eellison/784/orig 2025-06-01T20:58:06.5623975Z * [new branch] gh/eellison/785/base -> origin/gh/eellison/785/base 2025-06-01T20:58:06.5624475Z * [new branch] gh/eellison/785/head -> origin/gh/eellison/785/head 2025-06-01T20:58:06.5624963Z * [new branch] gh/eellison/785/orig -> origin/gh/eellison/785/orig 2025-06-01T20:58:06.5625505Z * [new branch] gh/eellison/786/base -> origin/gh/eellison/786/base 2025-06-01T20:58:06.5626062Z * [new branch] gh/eellison/786/head -> origin/gh/eellison/786/head 2025-06-01T20:58:06.5626553Z * [new branch] gh/eellison/786/orig -> origin/gh/eellison/786/orig 2025-06-01T20:58:06.5627051Z * [new branch] gh/eellison/787/base -> origin/gh/eellison/787/base 2025-06-01T20:58:06.5627539Z * [new branch] gh/eellison/787/head -> origin/gh/eellison/787/head 2025-06-01T20:58:06.5628041Z * [new branch] gh/eellison/787/orig -> origin/gh/eellison/787/orig 2025-06-01T20:58:06.5628537Z * [new branch] gh/eellison/788/base -> origin/gh/eellison/788/base 2025-06-01T20:58:06.5629041Z * [new branch] gh/eellison/788/head -> origin/gh/eellison/788/head 2025-06-01T20:58:06.5629541Z * [new branch] gh/eellison/788/orig -> origin/gh/eellison/788/orig 2025-06-01T20:58:06.5630315Z * [new branch] gh/eellison/789/base -> origin/gh/eellison/789/base 2025-06-01T20:58:06.5630949Z * [new branch] gh/eellison/789/head -> origin/gh/eellison/789/head 2025-06-01T20:58:06.5631534Z * [new branch] gh/eellison/789/orig -> origin/gh/eellison/789/orig 2025-06-01T20:58:06.5632037Z * [new branch] gh/eellison/790/base -> origin/gh/eellison/790/base 2025-06-01T20:58:06.5632554Z * [new branch] gh/eellison/790/head -> origin/gh/eellison/790/head 2025-06-01T20:58:06.5633046Z * [new branch] gh/eellison/790/orig -> origin/gh/eellison/790/orig 2025-06-01T20:58:06.5633537Z * [new branch] gh/eellison/791/base -> origin/gh/eellison/791/base 2025-06-01T20:58:06.5634024Z * [new branch] gh/eellison/791/head -> origin/gh/eellison/791/head 2025-06-01T20:58:06.5634518Z * [new branch] gh/eellison/791/orig -> origin/gh/eellison/791/orig 2025-06-01T20:58:06.5635016Z * [new branch] gh/eellison/792/base -> origin/gh/eellison/792/base 2025-06-01T20:58:06.5635509Z * [new branch] gh/eellison/792/head -> origin/gh/eellison/792/head 2025-06-01T20:58:06.5636007Z * [new branch] gh/eellison/792/orig -> origin/gh/eellison/792/orig 2025-06-01T20:58:06.5636494Z * [new branch] gh/eellison/793/base -> origin/gh/eellison/793/base 2025-06-01T20:58:06.5637030Z * [new branch] gh/eellison/793/head -> origin/gh/eellison/793/head 2025-06-01T20:58:06.5637567Z * [new branch] gh/eellison/793/orig -> origin/gh/eellison/793/orig 2025-06-01T20:58:06.5638066Z * [new branch] gh/eellison/794/base -> origin/gh/eellison/794/base 2025-06-01T20:58:06.5638565Z * [new branch] gh/eellison/794/head -> origin/gh/eellison/794/head 2025-06-01T20:58:06.5639056Z * [new branch] gh/eellison/794/orig -> origin/gh/eellison/794/orig 2025-06-01T20:58:06.5639561Z * [new branch] gh/eellison/795/base -> origin/gh/eellison/795/base 2025-06-01T20:58:06.6087681Z * [new branch] gh/eellison/795/head -> origin/gh/eellison/795/head 2025-06-01T20:58:06.6088256Z * [new branch] gh/eellison/795/orig -> origin/gh/eellison/795/orig 2025-06-01T20:58:06.6088790Z * [new branch] gh/eellison/796/base -> origin/gh/eellison/796/base 2025-06-01T20:58:06.6089284Z * [new branch] gh/eellison/796/head -> origin/gh/eellison/796/head 2025-06-01T20:58:06.6089787Z * [new branch] gh/eellison/796/orig -> origin/gh/eellison/796/orig 2025-06-01T20:58:06.6090278Z * [new branch] gh/eellison/797/base -> origin/gh/eellison/797/base 2025-06-01T20:58:06.6090782Z * [new branch] gh/eellison/797/head -> origin/gh/eellison/797/head 2025-06-01T20:58:06.6091308Z * [new branch] gh/eellison/797/orig -> origin/gh/eellison/797/orig 2025-06-01T20:58:06.6091914Z * [new branch] gh/eellison/798/base -> origin/gh/eellison/798/base 2025-06-01T20:58:06.6092420Z * [new branch] gh/eellison/798/head -> origin/gh/eellison/798/head 2025-06-01T20:58:06.6092912Z * [new branch] gh/eellison/798/orig -> origin/gh/eellison/798/orig 2025-06-01T20:58:06.6093410Z * [new branch] gh/eellison/799/base -> origin/gh/eellison/799/base 2025-06-01T20:58:06.6093901Z * [new branch] gh/eellison/799/head -> origin/gh/eellison/799/head 2025-06-01T20:58:06.6094393Z * [new branch] gh/eellison/799/orig -> origin/gh/eellison/799/orig 2025-06-01T20:58:06.6094887Z * [new branch] gh/eellison/800/base -> origin/gh/eellison/800/base 2025-06-01T20:58:06.6095373Z * [new branch] gh/eellison/800/head -> origin/gh/eellison/800/head 2025-06-01T20:58:06.6096056Z * [new branch] gh/eellison/800/orig -> origin/gh/eellison/800/orig 2025-06-01T20:58:06.6096679Z * [new branch] gh/eellison/801/base -> origin/gh/eellison/801/base 2025-06-01T20:58:06.6097252Z * [new branch] gh/eellison/801/head -> origin/gh/eellison/801/head 2025-06-01T20:58:06.6097800Z * [new branch] gh/eellison/801/orig -> origin/gh/eellison/801/orig 2025-06-01T20:58:06.6098289Z * [new branch] gh/eellison/802/base -> origin/gh/eellison/802/base 2025-06-01T20:58:06.6098787Z * [new branch] gh/eellison/802/head -> origin/gh/eellison/802/head 2025-06-01T20:58:06.6099277Z * [new branch] gh/eellison/802/orig -> origin/gh/eellison/802/orig 2025-06-01T20:58:06.6099778Z * [new branch] gh/eellison/803/base -> origin/gh/eellison/803/base 2025-06-01T20:58:06.6100264Z * [new branch] gh/eellison/803/head -> origin/gh/eellison/803/head 2025-06-01T20:58:06.6100764Z * [new branch] gh/eellison/803/orig -> origin/gh/eellison/803/orig 2025-06-01T20:58:06.6101253Z * [new branch] gh/etaf/117/base -> origin/gh/etaf/117/base 2025-06-01T20:58:06.6101707Z * [new branch] gh/etaf/117/head -> origin/gh/etaf/117/head 2025-06-01T20:58:06.6102173Z * [new branch] gh/etaf/117/orig -> origin/gh/etaf/117/orig 2025-06-01T20:58:06.6102622Z * [new branch] gh/etaf/119/base -> origin/gh/etaf/119/base 2025-06-01T20:58:06.6103132Z * [new branch] gh/etaf/119/head -> origin/gh/etaf/119/head 2025-06-01T20:58:06.6103626Z * [new branch] gh/etaf/119/orig -> origin/gh/etaf/119/orig 2025-06-01T20:58:06.6104078Z * [new branch] gh/etaf/120/base -> origin/gh/etaf/120/base 2025-06-01T20:58:06.6104534Z * [new branch] gh/etaf/120/head -> origin/gh/etaf/120/head 2025-06-01T20:58:06.6104991Z * [new branch] gh/etaf/120/orig -> origin/gh/etaf/120/orig 2025-06-01T20:58:06.6105454Z * [new branch] gh/etaf/121/base -> origin/gh/etaf/121/base 2025-06-01T20:58:06.6105918Z * [new branch] gh/etaf/121/head -> origin/gh/etaf/121/head 2025-06-01T20:58:06.6106369Z * [new branch] gh/etaf/121/orig -> origin/gh/etaf/121/orig 2025-06-01T20:58:06.6106825Z * [new branch] gh/etaf/122/base -> origin/gh/etaf/122/base 2025-06-01T20:58:06.6107271Z * [new branch] gh/etaf/122/head -> origin/gh/etaf/122/head 2025-06-01T20:58:06.6107736Z * [new branch] gh/etaf/122/orig -> origin/gh/etaf/122/orig 2025-06-01T20:58:06.6108184Z * [new branch] gh/etaf/123/base -> origin/gh/etaf/123/base 2025-06-01T20:58:06.6108686Z * [new branch] gh/etaf/123/head -> origin/gh/etaf/123/head 2025-06-01T20:58:06.6109205Z * [new branch] gh/etaf/123/orig -> origin/gh/etaf/123/orig 2025-06-01T20:58:06.6109657Z * [new branch] gh/etaf/124/base -> origin/gh/etaf/124/base 2025-06-01T20:58:06.6110202Z * [new branch] gh/etaf/124/head -> origin/gh/etaf/124/head 2025-06-01T20:58:06.6110663Z * [new branch] gh/etaf/124/orig -> origin/gh/etaf/124/orig 2025-06-01T20:58:06.6111126Z * [new branch] gh/etaf/125/base -> origin/gh/etaf/125/base 2025-06-01T20:58:06.6582644Z * [new branch] gh/etaf/125/head -> origin/gh/etaf/125/head 2025-06-01T20:58:06.6583168Z * [new branch] gh/etaf/125/orig -> origin/gh/etaf/125/orig 2025-06-01T20:58:06.6583644Z * [new branch] gh/etaf/126/base -> origin/gh/etaf/126/base 2025-06-01T20:58:06.6584116Z * [new branch] gh/etaf/126/head -> origin/gh/etaf/126/head 2025-06-01T20:58:06.6584992Z * [new branch] gh/etaf/126/orig -> origin/gh/etaf/126/orig 2025-06-01T20:58:06.6585558Z * [new branch] gh/etaf/127/base -> origin/gh/etaf/127/base 2025-06-01T20:58:06.6586018Z * [new branch] gh/etaf/127/head -> origin/gh/etaf/127/head 2025-06-01T20:58:06.6586494Z * [new branch] gh/etaf/127/orig -> origin/gh/etaf/127/orig 2025-06-01T20:58:06.6586949Z * [new branch] gh/etaf/128/base -> origin/gh/etaf/128/base 2025-06-01T20:58:06.6587418Z * [new branch] gh/etaf/128/head -> origin/gh/etaf/128/head 2025-06-01T20:58:06.6587888Z * [new branch] gh/etaf/128/orig -> origin/gh/etaf/128/orig 2025-06-01T20:58:06.6588338Z * [new branch] gh/etaf/129/base -> origin/gh/etaf/129/base 2025-06-01T20:58:06.6588796Z * [new branch] gh/etaf/129/head -> origin/gh/etaf/129/head 2025-06-01T20:58:06.6589257Z * [new branch] gh/etaf/129/orig -> origin/gh/etaf/129/orig 2025-06-01T20:58:06.6589724Z * [new branch] gh/etaf/130/base -> origin/gh/etaf/130/base 2025-06-01T20:58:06.6590349Z * [new branch] gh/etaf/130/head -> origin/gh/etaf/130/head 2025-06-01T20:58:06.6590851Z * [new branch] gh/etaf/130/orig -> origin/gh/etaf/130/orig 2025-06-01T20:58:06.6591360Z * [new branch] gh/etaf/131/base -> origin/gh/etaf/131/base 2025-06-01T20:58:06.6591821Z * [new branch] gh/etaf/131/head -> origin/gh/etaf/131/head 2025-06-01T20:58:06.6592290Z * [new branch] gh/etaf/131/orig -> origin/gh/etaf/131/orig 2025-06-01T20:58:06.6592750Z * [new branch] gh/etaf/132/base -> origin/gh/etaf/132/base 2025-06-01T20:58:06.6593224Z * [new branch] gh/etaf/132/head -> origin/gh/etaf/132/head 2025-06-01T20:58:06.6593704Z * [new branch] gh/etaf/132/orig -> origin/gh/etaf/132/orig 2025-06-01T20:58:06.6594165Z * [new branch] gh/etaf/133/base -> origin/gh/etaf/133/base 2025-06-01T20:58:06.6594630Z * [new branch] gh/etaf/133/head -> origin/gh/etaf/133/head 2025-06-01T20:58:06.6595085Z * [new branch] gh/etaf/133/orig -> origin/gh/etaf/133/orig 2025-06-01T20:58:06.6595548Z * [new branch] gh/etaf/134/base -> origin/gh/etaf/134/base 2025-06-01T20:58:06.6596030Z * [new branch] gh/etaf/134/head -> origin/gh/etaf/134/head 2025-06-01T20:58:06.6596505Z * [new branch] gh/etaf/134/orig -> origin/gh/etaf/134/orig 2025-06-01T20:58:06.6597039Z * [new branch] gh/ezyang/2374/base -> origin/gh/ezyang/2374/base 2025-06-01T20:58:06.6597537Z * [new branch] gh/ezyang/2374/head -> origin/gh/ezyang/2374/head 2025-06-01T20:58:06.6598048Z * [new branch] gh/ezyang/2374/orig -> origin/gh/ezyang/2374/orig 2025-06-01T20:58:06.6598534Z * [new branch] gh/ezyang/2479/next -> origin/gh/ezyang/2479/next 2025-06-01T20:58:06.6599015Z * [new branch] gh/ezyang/2480/next -> origin/gh/ezyang/2480/next 2025-06-01T20:58:06.6599500Z * [new branch] gh/ezyang/2973/base -> origin/gh/ezyang/2973/base 2025-06-01T20:58:06.6599970Z * [new branch] gh/ezyang/2973/head -> origin/gh/ezyang/2973/head 2025-06-01T20:58:06.6600456Z * [new branch] gh/ezyang/2973/orig -> origin/gh/ezyang/2973/orig 2025-06-01T20:58:06.6600937Z * [new branch] gh/ezyang/2974/base -> origin/gh/ezyang/2974/base 2025-06-01T20:58:06.6601409Z * [new branch] gh/ezyang/2974/head -> origin/gh/ezyang/2974/head 2025-06-01T20:58:06.6602018Z * [new branch] gh/ezyang/2974/orig -> origin/gh/ezyang/2974/orig 2025-06-01T20:58:06.6602642Z * [new branch] gh/ezyang/3031/base -> origin/gh/ezyang/3031/base 2025-06-01T20:58:06.6603179Z * [new branch] gh/ezyang/3031/head -> origin/gh/ezyang/3031/head 2025-06-01T20:58:06.6603655Z * [new branch] gh/ezyang/3031/orig -> origin/gh/ezyang/3031/orig 2025-06-01T20:58:06.6604144Z * [new branch] gh/ezyang/3068/base -> origin/gh/ezyang/3068/base 2025-06-01T20:58:06.6604629Z * [new branch] gh/ezyang/3068/head -> origin/gh/ezyang/3068/head 2025-06-01T20:58:06.6605105Z * [new branch] gh/ezyang/3068/orig -> origin/gh/ezyang/3068/orig 2025-06-01T20:58:06.6605592Z * [new branch] gh/ezyang/3069/base -> origin/gh/ezyang/3069/base 2025-06-01T20:58:06.6606072Z * [new branch] gh/ezyang/3069/head -> origin/gh/ezyang/3069/head 2025-06-01T20:58:06.7056896Z * [new branch] gh/ezyang/3069/orig -> origin/gh/ezyang/3069/orig 2025-06-01T20:58:06.7057502Z * [new branch] gh/ezyang/3070/base -> origin/gh/ezyang/3070/base 2025-06-01T20:58:06.7058052Z * [new branch] gh/ezyang/3070/head -> origin/gh/ezyang/3070/head 2025-06-01T20:58:06.7058553Z * [new branch] gh/ezyang/3070/orig -> origin/gh/ezyang/3070/orig 2025-06-01T20:58:06.7059046Z * [new branch] gh/fadara01/1/base -> origin/gh/fadara01/1/base 2025-06-01T20:58:06.7059554Z * [new branch] gh/fadara01/1/head -> origin/gh/fadara01/1/head 2025-06-01T20:58:06.7060040Z * [new branch] gh/fadara01/1/orig -> origin/gh/fadara01/1/orig 2025-06-01T20:58:06.7060529Z * [new branch] gh/fduwjj/134/base -> origin/gh/fduwjj/134/base 2025-06-01T20:58:06.7061012Z * [new branch] gh/fduwjj/134/head -> origin/gh/fduwjj/134/head 2025-06-01T20:58:06.7061500Z * [new branch] gh/fduwjj/134/orig -> origin/gh/fduwjj/134/orig 2025-06-01T20:58:06.7061990Z * [new branch] gh/fduwjj/135/base -> origin/gh/fduwjj/135/base 2025-06-01T20:58:06.7062482Z * [new branch] gh/fduwjj/135/head -> origin/gh/fduwjj/135/head 2025-06-01T20:58:06.7062959Z * [new branch] gh/fduwjj/135/orig -> origin/gh/fduwjj/135/orig 2025-06-01T20:58:06.7063481Z * [new branch] gh/fduwjj/136/base -> origin/gh/fduwjj/136/base 2025-06-01T20:58:06.7063988Z * [new branch] gh/fduwjj/136/head -> origin/gh/fduwjj/136/head 2025-06-01T20:58:06.7064468Z * [new branch] gh/fduwjj/136/orig -> origin/gh/fduwjj/136/orig 2025-06-01T20:58:06.7064938Z * [new branch] gh/fduwjj/137/base -> origin/gh/fduwjj/137/base 2025-06-01T20:58:06.7065418Z * [new branch] gh/fduwjj/137/head -> origin/gh/fduwjj/137/head 2025-06-01T20:58:06.7065916Z * [new branch] gh/fduwjj/137/orig -> origin/gh/fduwjj/137/orig 2025-06-01T20:58:06.7066389Z * [new branch] gh/fduwjj/138/base -> origin/gh/fduwjj/138/base 2025-06-01T20:58:06.7066876Z * [new branch] gh/fduwjj/138/head -> origin/gh/fduwjj/138/head 2025-06-01T20:58:06.7067350Z * [new branch] gh/fduwjj/138/orig -> origin/gh/fduwjj/138/orig 2025-06-01T20:58:06.7067828Z * [new branch] gh/fduwjj/139/base -> origin/gh/fduwjj/139/base 2025-06-01T20:58:06.7068304Z * [new branch] gh/fduwjj/139/head -> origin/gh/fduwjj/139/head 2025-06-01T20:58:06.7068778Z * [new branch] gh/fduwjj/139/orig -> origin/gh/fduwjj/139/orig 2025-06-01T20:58:06.7069297Z * [new branch] gh/fduwjj/140/base -> origin/gh/fduwjj/140/base 2025-06-01T20:58:06.7069806Z * [new branch] gh/fduwjj/140/head -> origin/gh/fduwjj/140/head 2025-06-01T20:58:06.7070686Z * [new branch] gh/fduwjj/140/orig -> origin/gh/fduwjj/140/orig 2025-06-01T20:58:06.7071181Z * [new branch] gh/fduwjj/141/base -> origin/gh/fduwjj/141/base 2025-06-01T20:58:06.7071668Z * [new branch] gh/fduwjj/141/head -> origin/gh/fduwjj/141/head 2025-06-01T20:58:06.7072152Z * [new branch] gh/fduwjj/141/orig -> origin/gh/fduwjj/141/orig 2025-06-01T20:58:06.7072632Z * [new branch] gh/fduwjj/142/base -> origin/gh/fduwjj/142/base 2025-06-01T20:58:06.7073112Z * [new branch] gh/fduwjj/142/head -> origin/gh/fduwjj/142/head 2025-06-01T20:58:06.7073587Z * [new branch] gh/fduwjj/142/orig -> origin/gh/fduwjj/142/orig 2025-06-01T20:58:06.7074083Z * [new branch] gh/fegin/297/base -> origin/gh/fegin/297/base 2025-06-01T20:58:06.7074572Z * [new branch] gh/fegin/297/head -> origin/gh/fegin/297/head 2025-06-01T20:58:06.7075125Z * [new branch] gh/fegin/297/orig -> origin/gh/fegin/297/orig 2025-06-01T20:58:06.7075614Z * [new branch] gh/fegin/299/base -> origin/gh/fegin/299/base 2025-06-01T20:58:06.7076078Z * [new branch] gh/fegin/299/head -> origin/gh/fegin/299/head 2025-06-01T20:58:06.7076552Z * [new branch] gh/fegin/299/orig -> origin/gh/fegin/299/orig 2025-06-01T20:58:06.7077025Z * [new branch] gh/fegin/300/base -> origin/gh/fegin/300/base 2025-06-01T20:58:06.7077487Z * [new branch] gh/fegin/300/head -> origin/gh/fegin/300/head 2025-06-01T20:58:06.7077969Z * [new branch] gh/fegin/300/orig -> origin/gh/fegin/300/orig 2025-06-01T20:58:06.7078433Z * [new branch] gh/fegin/301/base -> origin/gh/fegin/301/base 2025-06-01T20:58:06.7078917Z * [new branch] gh/fegin/301/head -> origin/gh/fegin/301/head 2025-06-01T20:58:06.7079400Z * [new branch] gh/fegin/301/orig -> origin/gh/fegin/301/orig 2025-06-01T20:58:06.7079869Z * [new branch] gh/fegin/302/base -> origin/gh/fegin/302/base 2025-06-01T20:58:06.7080343Z * [new branch] gh/fegin/302/head -> origin/gh/fegin/302/head 2025-06-01T20:58:06.7538579Z * [new branch] gh/fegin/302/orig -> origin/gh/fegin/302/orig 2025-06-01T20:58:06.7539123Z * [new branch] gh/fegin/303/base -> origin/gh/fegin/303/base 2025-06-01T20:58:06.7539600Z * [new branch] gh/fegin/303/head -> origin/gh/fegin/303/head 2025-06-01T20:58:06.7540076Z * [new branch] gh/fegin/303/orig -> origin/gh/fegin/303/orig 2025-06-01T20:58:06.7540575Z * [new branch] gh/fegin/304/base -> origin/gh/fegin/304/base 2025-06-01T20:58:06.7541063Z * [new branch] gh/fegin/304/head -> origin/gh/fegin/304/head 2025-06-01T20:58:06.7541581Z * [new branch] gh/fegin/304/orig -> origin/gh/fegin/304/orig 2025-06-01T20:58:06.7542059Z * [new branch] gh/fegin/305/base -> origin/gh/fegin/305/base 2025-06-01T20:58:06.7542519Z * [new branch] gh/fegin/305/head -> origin/gh/fegin/305/head 2025-06-01T20:58:06.7542992Z * [new branch] gh/fegin/305/orig -> origin/gh/fegin/305/orig 2025-06-01T20:58:06.7543455Z * [new branch] gh/fegin/306/base -> origin/gh/fegin/306/base 2025-06-01T20:58:06.7543937Z * [new branch] gh/fegin/306/head -> origin/gh/fegin/306/head 2025-06-01T20:58:06.7544417Z * [new branch] gh/fegin/306/orig -> origin/gh/fegin/306/orig 2025-06-01T20:58:06.7544881Z * [new branch] gh/fegin/307/base -> origin/gh/fegin/307/base 2025-06-01T20:58:06.7545540Z * [new branch] gh/fegin/307/head -> origin/gh/fegin/307/head 2025-06-01T20:58:06.7546142Z * [new branch] gh/fegin/307/orig -> origin/gh/fegin/307/orig 2025-06-01T20:58:06.7546620Z * [new branch] gh/fffrog/39/base -> origin/gh/fffrog/39/base 2025-06-01T20:58:06.7547089Z * [new branch] gh/fffrog/39/head -> origin/gh/fffrog/39/head 2025-06-01T20:58:06.7547578Z * [new branch] gh/fffrog/39/orig -> origin/gh/fffrog/39/orig 2025-06-01T20:58:06.7548064Z * [new branch] gh/fffrog/49/base -> origin/gh/fffrog/49/base 2025-06-01T20:58:06.7548532Z * [new branch] gh/fffrog/49/head -> origin/gh/fffrog/49/head 2025-06-01T20:58:06.7549010Z * [new branch] gh/fffrog/49/orig -> origin/gh/fffrog/49/orig 2025-06-01T20:58:06.7549476Z * [new branch] gh/fffrog/67/base -> origin/gh/fffrog/67/base 2025-06-01T20:58:06.7550042Z * [new branch] gh/fffrog/67/head -> origin/gh/fffrog/67/head 2025-06-01T20:58:06.7550531Z * [new branch] gh/fffrog/67/orig -> origin/gh/fffrog/67/orig 2025-06-01T20:58:06.7551018Z * [new branch] gh/fffrog/75/base -> origin/gh/fffrog/75/base 2025-06-01T20:58:06.7551486Z * [new branch] gh/fffrog/75/head -> origin/gh/fffrog/75/head 2025-06-01T20:58:06.7551958Z * [new branch] gh/fffrog/75/orig -> origin/gh/fffrog/75/orig 2025-06-01T20:58:06.7552420Z * [new branch] gh/fffrog/76/base -> origin/gh/fffrog/76/base 2025-06-01T20:58:06.7552890Z * [new branch] gh/fffrog/76/head -> origin/gh/fffrog/76/head 2025-06-01T20:58:06.7553353Z * [new branch] gh/fffrog/76/orig -> origin/gh/fffrog/76/orig 2025-06-01T20:58:06.7553818Z * [new branch] gh/fffrog/77/base -> origin/gh/fffrog/77/base 2025-06-01T20:58:06.7554286Z * [new branch] gh/fffrog/77/head -> origin/gh/fffrog/77/head 2025-06-01T20:58:06.7554765Z * [new branch] gh/fffrog/77/orig -> origin/gh/fffrog/77/orig 2025-06-01T20:58:06.7555231Z * [new branch] gh/fffrog/78/base -> origin/gh/fffrog/78/base 2025-06-01T20:58:06.7555689Z * [new branch] gh/fffrog/78/head -> origin/gh/fffrog/78/head 2025-06-01T20:58:06.7556156Z * [new branch] gh/fffrog/78/orig -> origin/gh/fffrog/78/orig 2025-06-01T20:58:06.7556616Z * [new branch] gh/fffrog/80/base -> origin/gh/fffrog/80/base 2025-06-01T20:58:06.7557089Z * [new branch] gh/fffrog/80/head -> origin/gh/fffrog/80/head 2025-06-01T20:58:06.7557562Z * [new branch] gh/fffrog/80/orig -> origin/gh/fffrog/80/orig 2025-06-01T20:58:06.7558019Z * [new branch] gh/fffrog/81/base -> origin/gh/fffrog/81/base 2025-06-01T20:58:06.7558489Z * [new branch] gh/fffrog/81/head -> origin/gh/fffrog/81/head 2025-06-01T20:58:06.7558953Z * [new branch] gh/fffrog/81/orig -> origin/gh/fffrog/81/orig 2025-06-01T20:58:06.7559423Z * [new branch] gh/fffrog/84/base -> origin/gh/fffrog/84/base 2025-06-01T20:58:06.7559891Z * [new branch] gh/fffrog/84/head -> origin/gh/fffrog/84/head 2025-06-01T20:58:06.7560357Z * [new branch] gh/fffrog/84/orig -> origin/gh/fffrog/84/orig 2025-06-01T20:58:06.7560825Z * [new branch] gh/fffrog/85/base -> origin/gh/fffrog/85/base 2025-06-01T20:58:06.7561289Z * [new branch] gh/fffrog/85/head -> origin/gh/fffrog/85/head 2025-06-01T20:58:06.7984099Z * [new branch] gh/fffrog/85/orig -> origin/gh/fffrog/85/orig 2025-06-01T20:58:06.7984646Z * [new branch] gh/fffrog/86/base -> origin/gh/fffrog/86/base 2025-06-01T20:58:06.7985507Z * [new branch] gh/fffrog/86/head -> origin/gh/fffrog/86/head 2025-06-01T20:58:06.7986000Z * [new branch] gh/fffrog/86/orig -> origin/gh/fffrog/86/orig 2025-06-01T20:58:06.7986472Z * [new branch] gh/fffrog/87/base -> origin/gh/fffrog/87/base 2025-06-01T20:58:06.7986950Z * [new branch] gh/fffrog/87/head -> origin/gh/fffrog/87/head 2025-06-01T20:58:06.7987433Z * [new branch] gh/fffrog/87/orig -> origin/gh/fffrog/87/orig 2025-06-01T20:58:06.7987896Z * [new branch] gh/fffrog/88/base -> origin/gh/fffrog/88/base 2025-06-01T20:58:06.7988377Z * [new branch] gh/fffrog/88/head -> origin/gh/fffrog/88/head 2025-06-01T20:58:06.7988836Z * [new branch] gh/fffrog/88/orig -> origin/gh/fffrog/88/orig 2025-06-01T20:58:06.7989306Z * [new branch] gh/fffrog/89/base -> origin/gh/fffrog/89/base 2025-06-01T20:58:06.7989787Z * [new branch] gh/fffrog/89/head -> origin/gh/fffrog/89/head 2025-06-01T20:58:06.7990325Z * [new branch] gh/fffrog/89/orig -> origin/gh/fffrog/89/orig 2025-06-01T20:58:06.7990808Z * [new branch] gh/fffrog/90/base -> origin/gh/fffrog/90/base 2025-06-01T20:58:06.7991279Z * [new branch] gh/fffrog/90/head -> origin/gh/fffrog/90/head 2025-06-01T20:58:06.7991758Z * [new branch] gh/fffrog/90/orig -> origin/gh/fffrog/90/orig 2025-06-01T20:58:06.7992234Z * [new branch] gh/fffrog/91/base -> origin/gh/fffrog/91/base 2025-06-01T20:58:06.7992705Z * [new branch] gh/fffrog/91/head -> origin/gh/fffrog/91/head 2025-06-01T20:58:06.7993174Z * [new branch] gh/fffrog/91/orig -> origin/gh/fffrog/91/orig 2025-06-01T20:58:06.7993645Z * [new branch] gh/fffrog/92/base -> origin/gh/fffrog/92/base 2025-06-01T20:58:06.7994126Z * [new branch] gh/fffrog/92/head -> origin/gh/fffrog/92/head 2025-06-01T20:58:06.7994591Z * [new branch] gh/fffrog/92/orig -> origin/gh/fffrog/92/orig 2025-06-01T20:58:06.7995062Z * [new branch] gh/fffrog/93/base -> origin/gh/fffrog/93/base 2025-06-01T20:58:06.7995537Z * [new branch] gh/fffrog/93/head -> origin/gh/fffrog/93/head 2025-06-01T20:58:06.7996008Z * [new branch] gh/fffrog/93/orig -> origin/gh/fffrog/93/orig 2025-06-01T20:58:06.7996494Z * [new branch] gh/fffrog/94/base -> origin/gh/fffrog/94/base 2025-06-01T20:58:06.7996961Z * [new branch] gh/fffrog/94/head -> origin/gh/fffrog/94/head 2025-06-01T20:58:06.7997447Z * [new branch] gh/fffrog/94/orig -> origin/gh/fffrog/94/orig 2025-06-01T20:58:06.7997942Z * [new branch] gh/fffrog/95/base -> origin/gh/fffrog/95/base 2025-06-01T20:58:06.7998423Z * [new branch] gh/fffrog/95/head -> origin/gh/fffrog/95/head 2025-06-01T20:58:06.7998919Z * [new branch] gh/fffrog/95/orig -> origin/gh/fffrog/95/orig 2025-06-01T20:58:06.7999393Z * [new branch] gh/fffrog/96/base -> origin/gh/fffrog/96/base 2025-06-01T20:58:06.7999873Z * [new branch] gh/fffrog/96/head -> origin/gh/fffrog/96/head 2025-06-01T20:58:06.8000348Z * [new branch] gh/fffrog/96/orig -> origin/gh/fffrog/96/orig 2025-06-01T20:58:06.8000820Z * [new branch] gh/fffrog/97/base -> origin/gh/fffrog/97/base 2025-06-01T20:58:06.8001292Z * [new branch] gh/fffrog/97/head -> origin/gh/fffrog/97/head 2025-06-01T20:58:06.8001763Z * [new branch] gh/fffrog/97/orig -> origin/gh/fffrog/97/orig 2025-06-01T20:58:06.8002367Z * [new branch] gh/fffrog/98/base -> origin/gh/fffrog/98/base 2025-06-01T20:58:06.8002937Z * [new branch] gh/fffrog/98/head -> origin/gh/fffrog/98/head 2025-06-01T20:58:06.8003415Z * [new branch] gh/fffrog/98/orig -> origin/gh/fffrog/98/orig 2025-06-01T20:58:06.8003915Z * [new branch] gh/guangyey/126/base -> origin/gh/guangyey/126/base 2025-06-01T20:58:06.8004411Z * [new branch] gh/guangyey/126/head -> origin/gh/guangyey/126/head 2025-06-01T20:58:06.8004915Z * [new branch] gh/guangyey/126/orig -> origin/gh/guangyey/126/orig 2025-06-01T20:58:06.8005414Z * [new branch] gh/guangyey/127/base -> origin/gh/guangyey/127/base 2025-06-01T20:58:06.8005916Z * [new branch] gh/guangyey/127/head -> origin/gh/guangyey/127/head 2025-06-01T20:58:06.8006423Z * [new branch] gh/guangyey/127/orig -> origin/gh/guangyey/127/orig 2025-06-01T20:58:06.8006922Z * [new branch] gh/guangyey/130/base -> origin/gh/guangyey/130/base 2025-06-01T20:58:06.8007427Z * [new branch] gh/guangyey/130/head -> origin/gh/guangyey/130/head 2025-06-01T20:58:06.8426421Z * [new branch] gh/guangyey/130/orig -> origin/gh/guangyey/130/orig 2025-06-01T20:58:06.8426968Z * [new branch] gh/guangyey/132/base -> origin/gh/guangyey/132/base 2025-06-01T20:58:06.8427472Z * [new branch] gh/guangyey/132/head -> origin/gh/guangyey/132/head 2025-06-01T20:58:06.8427962Z * [new branch] gh/guangyey/132/orig -> origin/gh/guangyey/132/orig 2025-06-01T20:58:06.8428460Z * [new branch] gh/guangyey/133/base -> origin/gh/guangyey/133/base 2025-06-01T20:58:06.8428952Z * [new branch] gh/guangyey/133/head -> origin/gh/guangyey/133/head 2025-06-01T20:58:06.8429451Z * [new branch] gh/guangyey/133/orig -> origin/gh/guangyey/133/orig 2025-06-01T20:58:06.8430020Z * [new branch] gh/guangyey/134/base -> origin/gh/guangyey/134/base 2025-06-01T20:58:06.8430517Z * [new branch] gh/guangyey/134/head -> origin/gh/guangyey/134/head 2025-06-01T20:58:06.8431015Z * [new branch] gh/guangyey/134/orig -> origin/gh/guangyey/134/orig 2025-06-01T20:58:06.8431508Z * [new branch] gh/guangyey/135/base -> origin/gh/guangyey/135/base 2025-06-01T20:58:06.8432007Z * [new branch] gh/guangyey/135/head -> origin/gh/guangyey/135/head 2025-06-01T20:58:06.8432507Z * [new branch] gh/guangyey/135/orig -> origin/gh/guangyey/135/orig 2025-06-01T20:58:06.8432998Z * [new branch] gh/guangyey/139/base -> origin/gh/guangyey/139/base 2025-06-01T20:58:06.8433496Z * [new branch] gh/guangyey/139/head -> origin/gh/guangyey/139/head 2025-06-01T20:58:06.8433990Z * [new branch] gh/guangyey/139/orig -> origin/gh/guangyey/139/orig 2025-06-01T20:58:06.8434498Z * [new branch] gh/guangyey/140/base -> origin/gh/guangyey/140/base 2025-06-01T20:58:06.8435007Z * [new branch] gh/guangyey/140/head -> origin/gh/guangyey/140/head 2025-06-01T20:58:06.8435502Z * [new branch] gh/guangyey/140/orig -> origin/gh/guangyey/140/orig 2025-06-01T20:58:06.8436005Z * [new branch] gh/guangyey/141/base -> origin/gh/guangyey/141/base 2025-06-01T20:58:06.8436497Z * [new branch] gh/guangyey/141/head -> origin/gh/guangyey/141/head 2025-06-01T20:58:06.8436992Z * [new branch] gh/guangyey/141/orig -> origin/gh/guangyey/141/orig 2025-06-01T20:58:06.8437492Z * [new branch] gh/guangyey/142/base -> origin/gh/guangyey/142/base 2025-06-01T20:58:06.8437987Z * [new branch] gh/guangyey/142/head -> origin/gh/guangyey/142/head 2025-06-01T20:58:06.8438663Z * [new branch] gh/guangyey/142/orig -> origin/gh/guangyey/142/orig 2025-06-01T20:58:06.8439267Z * [new branch] gh/guangyey/143/base -> origin/gh/guangyey/143/base 2025-06-01T20:58:06.8439772Z * [new branch] gh/guangyey/143/head -> origin/gh/guangyey/143/head 2025-06-01T20:58:06.8440268Z * [new branch] gh/guangyey/143/orig -> origin/gh/guangyey/143/orig 2025-06-01T20:58:06.8440777Z * [new branch] gh/guangyey/144/base -> origin/gh/guangyey/144/base 2025-06-01T20:58:06.8441279Z * [new branch] gh/guangyey/144/head -> origin/gh/guangyey/144/head 2025-06-01T20:58:06.8441770Z * [new branch] gh/guangyey/144/orig -> origin/gh/guangyey/144/orig 2025-06-01T20:58:06.8442266Z * [new branch] gh/guangyey/145/base -> origin/gh/guangyey/145/base 2025-06-01T20:58:06.8442751Z * [new branch] gh/guangyey/145/head -> origin/gh/guangyey/145/head 2025-06-01T20:58:06.8443250Z * [new branch] gh/guangyey/145/orig -> origin/gh/guangyey/145/orig 2025-06-01T20:58:06.8443749Z * [new branch] gh/guangyey/146/base -> origin/gh/guangyey/146/base 2025-06-01T20:58:06.8444235Z * [new branch] gh/guangyey/146/head -> origin/gh/guangyey/146/head 2025-06-01T20:58:06.8444733Z * [new branch] gh/guangyey/146/orig -> origin/gh/guangyey/146/orig 2025-06-01T20:58:06.8445225Z * [new branch] gh/guangyey/147/base -> origin/gh/guangyey/147/base 2025-06-01T20:58:06.8445726Z * [new branch] gh/guangyey/147/head -> origin/gh/guangyey/147/head 2025-06-01T20:58:06.8446231Z * [new branch] gh/guangyey/147/orig -> origin/gh/guangyey/147/orig 2025-06-01T20:58:06.8446718Z * [new branch] gh/guangyey/148/base -> origin/gh/guangyey/148/base 2025-06-01T20:58:06.8447217Z * [new branch] gh/guangyey/148/head -> origin/gh/guangyey/148/head 2025-06-01T20:58:06.8447714Z * [new branch] gh/guangyey/148/orig -> origin/gh/guangyey/148/orig 2025-06-01T20:58:06.8448212Z * [new branch] gh/guangyey/149/base -> origin/gh/guangyey/149/base 2025-06-01T20:58:06.8448694Z * [new branch] gh/guangyey/149/head -> origin/gh/guangyey/149/head 2025-06-01T20:58:06.8449185Z * [new branch] gh/guangyey/149/orig -> origin/gh/guangyey/149/orig 2025-06-01T20:58:06.8872359Z * [new branch] gh/guangyey/150/base -> origin/gh/guangyey/150/base 2025-06-01T20:58:06.8872919Z * [new branch] gh/guangyey/150/head -> origin/gh/guangyey/150/head 2025-06-01T20:58:06.8873444Z * [new branch] gh/guangyey/150/orig -> origin/gh/guangyey/150/orig 2025-06-01T20:58:06.8873947Z * [new branch] gh/guangyey/151/base -> origin/gh/guangyey/151/base 2025-06-01T20:58:06.8874466Z * [new branch] gh/guangyey/151/head -> origin/gh/guangyey/151/head 2025-06-01T20:58:06.8874978Z * [new branch] gh/guangyey/151/orig -> origin/gh/guangyey/151/orig 2025-06-01T20:58:06.8875464Z * [new branch] gh/guangyey/152/base -> origin/gh/guangyey/152/base 2025-06-01T20:58:06.8875967Z * [new branch] gh/guangyey/152/head -> origin/gh/guangyey/152/head 2025-06-01T20:58:06.8876468Z * [new branch] gh/guangyey/152/orig -> origin/gh/guangyey/152/orig 2025-06-01T20:58:06.8876956Z * [new branch] gh/guangyey/79/base -> origin/gh/guangyey/79/base 2025-06-01T20:58:06.8877461Z * [new branch] gh/guangyey/79/head -> origin/gh/guangyey/79/head 2025-06-01T20:58:06.8877949Z * [new branch] gh/guangyey/79/orig -> origin/gh/guangyey/79/orig 2025-06-01T20:58:06.8878450Z * [new branch] gh/guangyey/89/base -> origin/gh/guangyey/89/base 2025-06-01T20:58:06.8879129Z * [new branch] gh/guangyey/89/head -> origin/gh/guangyey/89/head 2025-06-01T20:58:06.8879744Z * [new branch] gh/guangyey/89/orig -> origin/gh/guangyey/89/orig 2025-06-01T20:58:06.8880291Z * [new branch] gh/guilhermeleobas/107/base -> origin/gh/guilhermeleobas/107/base 2025-06-01T20:58:06.8880885Z * [new branch] gh/guilhermeleobas/107/head -> origin/gh/guilhermeleobas/107/head 2025-06-01T20:58:06.8881474Z * [new branch] gh/guilhermeleobas/107/orig -> origin/gh/guilhermeleobas/107/orig 2025-06-01T20:58:06.8882063Z * [new branch] gh/guilhermeleobas/108/base -> origin/gh/guilhermeleobas/108/base 2025-06-01T20:58:06.8882638Z * [new branch] gh/guilhermeleobas/108/head -> origin/gh/guilhermeleobas/108/head 2025-06-01T20:58:06.8883226Z * [new branch] gh/guilhermeleobas/108/orig -> origin/gh/guilhermeleobas/108/orig 2025-06-01T20:58:06.8883808Z * [new branch] gh/guilhermeleobas/109/base -> origin/gh/guilhermeleobas/109/base 2025-06-01T20:58:06.8884393Z * [new branch] gh/guilhermeleobas/109/head -> origin/gh/guilhermeleobas/109/head 2025-06-01T20:58:06.8884975Z * [new branch] gh/guilhermeleobas/109/orig -> origin/gh/guilhermeleobas/109/orig 2025-06-01T20:58:06.8885547Z * [new branch] gh/guilhermeleobas/113/base -> origin/gh/guilhermeleobas/113/base 2025-06-01T20:58:06.8886134Z * [new branch] gh/guilhermeleobas/113/head -> origin/gh/guilhermeleobas/113/head 2025-06-01T20:58:06.8886707Z * [new branch] gh/guilhermeleobas/113/orig -> origin/gh/guilhermeleobas/113/orig 2025-06-01T20:58:06.8887290Z * [new branch] gh/guilhermeleobas/114/base -> origin/gh/guilhermeleobas/114/base 2025-06-01T20:58:06.8887867Z * [new branch] gh/guilhermeleobas/114/head -> origin/gh/guilhermeleobas/114/head 2025-06-01T20:58:06.8888453Z * [new branch] gh/guilhermeleobas/114/orig -> origin/gh/guilhermeleobas/114/orig 2025-06-01T20:58:06.8889045Z * [new branch] gh/guilhermeleobas/115/base -> origin/gh/guilhermeleobas/115/base 2025-06-01T20:58:06.8889620Z * [new branch] gh/guilhermeleobas/115/head -> origin/gh/guilhermeleobas/115/head 2025-06-01T20:58:06.8890205Z * [new branch] gh/guilhermeleobas/115/orig -> origin/gh/guilhermeleobas/115/orig 2025-06-01T20:58:06.8890780Z * [new branch] gh/guilhermeleobas/116/base -> origin/gh/guilhermeleobas/116/base 2025-06-01T20:58:06.8891358Z * [new branch] gh/guilhermeleobas/116/head -> origin/gh/guilhermeleobas/116/head 2025-06-01T20:58:06.8891937Z * [new branch] gh/guilhermeleobas/116/orig -> origin/gh/guilhermeleobas/116/orig 2025-06-01T20:58:06.8892506Z * [new branch] gh/guilhermeleobas/118/base -> origin/gh/guilhermeleobas/118/base 2025-06-01T20:58:06.8893137Z * [new branch] gh/guilhermeleobas/118/head -> origin/gh/guilhermeleobas/118/head 2025-06-01T20:58:06.8893718Z * [new branch] gh/guilhermeleobas/118/orig -> origin/gh/guilhermeleobas/118/orig 2025-06-01T20:58:06.8894303Z * [new branch] gh/guilhermeleobas/119/base -> origin/gh/guilhermeleobas/119/base 2025-06-01T20:58:06.8894892Z * [new branch] gh/guilhermeleobas/119/head -> origin/gh/guilhermeleobas/119/head 2025-06-01T20:58:06.8895467Z * [new branch] gh/guilhermeleobas/119/orig -> origin/gh/guilhermeleobas/119/orig 2025-06-01T20:58:06.8896056Z * [new branch] gh/guilhermeleobas/120/base -> origin/gh/guilhermeleobas/120/base 2025-06-01T20:58:06.8896631Z * [new branch] gh/guilhermeleobas/120/head -> origin/gh/guilhermeleobas/120/head 2025-06-01T20:58:06.8897215Z * [new branch] gh/guilhermeleobas/120/orig -> origin/gh/guilhermeleobas/120/orig 2025-06-01T20:58:06.9292756Z * [new branch] gh/guilhermeleobas/121/base -> origin/gh/guilhermeleobas/121/base 2025-06-01T20:58:06.9293810Z * [new branch] gh/guilhermeleobas/121/head -> origin/gh/guilhermeleobas/121/head 2025-06-01T20:58:06.9294421Z * [new branch] gh/guilhermeleobas/121/orig -> origin/gh/guilhermeleobas/121/orig 2025-06-01T20:58:06.9295014Z * [new branch] gh/guilhermeleobas/122/base -> origin/gh/guilhermeleobas/122/base 2025-06-01T20:58:06.9295600Z * [new branch] gh/guilhermeleobas/122/head -> origin/gh/guilhermeleobas/122/head 2025-06-01T20:58:06.9296183Z * [new branch] gh/guilhermeleobas/122/orig -> origin/gh/guilhermeleobas/122/orig 2025-06-01T20:58:06.9298264Z * [new branch] gh/guilhermeleobas/123/base -> origin/gh/guilhermeleobas/123/base 2025-06-01T20:58:06.9298856Z * [new branch] gh/guilhermeleobas/123/head -> origin/gh/guilhermeleobas/123/head 2025-06-01T20:58:06.9299444Z * [new branch] gh/guilhermeleobas/123/orig -> origin/gh/guilhermeleobas/123/orig 2025-06-01T20:58:06.9300029Z * [new branch] gh/guilhermeleobas/124/base -> origin/gh/guilhermeleobas/124/base 2025-06-01T20:58:06.9300617Z * [new branch] gh/guilhermeleobas/124/head -> origin/gh/guilhermeleobas/124/head 2025-06-01T20:58:06.9301193Z * [new branch] gh/guilhermeleobas/124/orig -> origin/gh/guilhermeleobas/124/orig 2025-06-01T20:58:06.9301778Z * [new branch] gh/guilhermeleobas/125/base -> origin/gh/guilhermeleobas/125/base 2025-06-01T20:58:06.9302358Z * [new branch] gh/guilhermeleobas/125/head -> origin/gh/guilhermeleobas/125/head 2025-06-01T20:58:06.9304300Z * [new branch] gh/guilhermeleobas/125/orig -> origin/gh/guilhermeleobas/125/orig 2025-06-01T20:58:06.9304894Z * [new branch] gh/guilhermeleobas/126/base -> origin/gh/guilhermeleobas/126/base 2025-06-01T20:58:06.9305473Z * [new branch] gh/guilhermeleobas/126/head -> origin/gh/guilhermeleobas/126/head 2025-06-01T20:58:06.9306077Z * [new branch] gh/guilhermeleobas/126/orig -> origin/gh/guilhermeleobas/126/orig 2025-06-01T20:58:06.9306672Z * [new branch] gh/guilhermeleobas/127/base -> origin/gh/guilhermeleobas/127/base 2025-06-01T20:58:06.9307247Z * [new branch] gh/guilhermeleobas/127/head -> origin/gh/guilhermeleobas/127/head 2025-06-01T20:58:06.9307834Z * [new branch] gh/guilhermeleobas/127/orig -> origin/gh/guilhermeleobas/127/orig 2025-06-01T20:58:06.9308408Z * [new branch] gh/guilhermeleobas/128/base -> origin/gh/guilhermeleobas/128/base 2025-06-01T20:58:06.9310371Z * [new branch] gh/guilhermeleobas/128/head -> origin/gh/guilhermeleobas/128/head 2025-06-01T20:58:06.9310964Z * [new branch] gh/guilhermeleobas/128/orig -> origin/gh/guilhermeleobas/128/orig 2025-06-01T20:58:06.9311539Z * [new branch] gh/guilhermeleobas/129/base -> origin/gh/guilhermeleobas/129/base 2025-06-01T20:58:06.9312136Z * [new branch] gh/guilhermeleobas/129/head -> origin/gh/guilhermeleobas/129/head 2025-06-01T20:58:06.9312721Z * [new branch] gh/guilhermeleobas/129/orig -> origin/gh/guilhermeleobas/129/orig 2025-06-01T20:58:06.9313306Z * [new branch] gh/guilhermeleobas/130/base -> origin/gh/guilhermeleobas/130/base 2025-06-01T20:58:06.9313889Z * [new branch] gh/guilhermeleobas/130/head -> origin/gh/guilhermeleobas/130/head 2025-06-01T20:58:06.9314463Z * [new branch] gh/guilhermeleobas/130/orig -> origin/gh/guilhermeleobas/130/orig 2025-06-01T20:58:06.9316395Z * [new branch] gh/guilhermeleobas/131/base -> origin/gh/guilhermeleobas/131/base 2025-06-01T20:58:06.9316985Z * [new branch] gh/guilhermeleobas/131/head -> origin/gh/guilhermeleobas/131/head 2025-06-01T20:58:06.9317591Z * [new branch] gh/guilhermeleobas/131/orig -> origin/gh/guilhermeleobas/131/orig 2025-06-01T20:58:06.9318173Z * [new branch] gh/guilhermeleobas/132/base -> origin/gh/guilhermeleobas/132/base 2025-06-01T20:58:06.9319041Z * [new branch] gh/guilhermeleobas/132/head -> origin/gh/guilhermeleobas/132/head 2025-06-01T20:58:06.9319630Z * [new branch] gh/guilhermeleobas/132/orig -> origin/gh/guilhermeleobas/132/orig 2025-06-01T20:58:06.9320200Z * [new branch] gh/guilhermeleobas/133/base -> origin/gh/guilhermeleobas/133/base 2025-06-01T20:58:06.9320787Z * [new branch] gh/guilhermeleobas/133/head -> origin/gh/guilhermeleobas/133/head 2025-06-01T20:58:06.9321372Z * [new branch] gh/guilhermeleobas/133/orig -> origin/gh/guilhermeleobas/133/orig 2025-06-01T20:58:06.9321948Z * [new branch] gh/guilhermeleobas/134/base -> origin/gh/guilhermeleobas/134/base 2025-06-01T20:58:06.9322544Z * [new branch] gh/guilhermeleobas/134/head -> origin/gh/guilhermeleobas/134/head 2025-06-01T20:58:06.9323121Z * [new branch] gh/guilhermeleobas/134/orig -> origin/gh/guilhermeleobas/134/orig 2025-06-01T20:58:06.9323714Z * [new branch] gh/guilhermeleobas/135/base -> origin/gh/guilhermeleobas/135/base 2025-06-01T20:58:06.9676878Z * [new branch] gh/guilhermeleobas/135/head -> origin/gh/guilhermeleobas/135/head 2025-06-01T20:58:06.9677545Z * [new branch] gh/guilhermeleobas/135/orig -> origin/gh/guilhermeleobas/135/orig 2025-06-01T20:58:06.9678192Z * [new branch] gh/guilhermeleobas/136/base -> origin/gh/guilhermeleobas/136/base 2025-06-01T20:58:06.9678815Z * [new branch] gh/guilhermeleobas/136/head -> origin/gh/guilhermeleobas/136/head 2025-06-01T20:58:06.9679407Z * [new branch] gh/guilhermeleobas/136/orig -> origin/gh/guilhermeleobas/136/orig 2025-06-01T20:58:06.9679991Z * [new branch] gh/guilhermeleobas/137/base -> origin/gh/guilhermeleobas/137/base 2025-06-01T20:58:06.9680565Z * [new branch] gh/guilhermeleobas/137/head -> origin/gh/guilhermeleobas/137/head 2025-06-01T20:58:06.9681169Z * [new branch] gh/guilhermeleobas/137/orig -> origin/gh/guilhermeleobas/137/orig 2025-06-01T20:58:06.9681755Z * [new branch] gh/guilhermeleobas/138/base -> origin/gh/guilhermeleobas/138/base 2025-06-01T20:58:06.9682336Z * [new branch] gh/guilhermeleobas/138/head -> origin/gh/guilhermeleobas/138/head 2025-06-01T20:58:06.9682924Z * [new branch] gh/guilhermeleobas/138/orig -> origin/gh/guilhermeleobas/138/orig 2025-06-01T20:58:06.9683500Z * [new branch] gh/guilhermeleobas/139/base -> origin/gh/guilhermeleobas/139/base 2025-06-01T20:58:06.9684118Z * [new branch] gh/guilhermeleobas/139/head -> origin/gh/guilhermeleobas/139/head 2025-06-01T20:58:06.9684733Z * [new branch] gh/guilhermeleobas/139/orig -> origin/gh/guilhermeleobas/139/orig 2025-06-01T20:58:06.9685312Z * [new branch] gh/guilhermeleobas/140/base -> origin/gh/guilhermeleobas/140/base 2025-06-01T20:58:06.9685897Z * [new branch] gh/guilhermeleobas/140/head -> origin/gh/guilhermeleobas/140/head 2025-06-01T20:58:06.9686476Z * [new branch] gh/guilhermeleobas/140/orig -> origin/gh/guilhermeleobas/140/orig 2025-06-01T20:58:06.9687060Z * [new branch] gh/guilhermeleobas/141/base -> origin/gh/guilhermeleobas/141/base 2025-06-01T20:58:06.9687630Z * [new branch] gh/guilhermeleobas/141/head -> origin/gh/guilhermeleobas/141/head 2025-06-01T20:58:06.9688208Z * [new branch] gh/guilhermeleobas/141/orig -> origin/gh/guilhermeleobas/141/orig 2025-06-01T20:58:06.9688782Z * [new branch] gh/guilhermeleobas/142/base -> origin/gh/guilhermeleobas/142/base 2025-06-01T20:58:06.9689355Z * [new branch] gh/guilhermeleobas/142/head -> origin/gh/guilhermeleobas/142/head 2025-06-01T20:58:06.9689974Z * [new branch] gh/guilhermeleobas/142/orig -> origin/gh/guilhermeleobas/142/orig 2025-06-01T20:58:06.9691421Z * [new branch] gh/guilhermeleobas/143/base -> origin/gh/guilhermeleobas/143/base 2025-06-01T20:58:06.9692504Z * [new branch] gh/guilhermeleobas/143/head -> origin/gh/guilhermeleobas/143/head 2025-06-01T20:58:06.9693087Z * [new branch] gh/guilhermeleobas/143/orig -> origin/gh/guilhermeleobas/143/orig 2025-06-01T20:58:06.9693664Z * [new branch] gh/guilhermeleobas/144/base -> origin/gh/guilhermeleobas/144/base 2025-06-01T20:58:06.9694246Z * [new branch] gh/guilhermeleobas/144/head -> origin/gh/guilhermeleobas/144/head 2025-06-01T20:58:06.9694824Z * [new branch] gh/guilhermeleobas/144/orig -> origin/gh/guilhermeleobas/144/orig 2025-06-01T20:58:06.9695409Z * [new branch] gh/guilhermeleobas/145/base -> origin/gh/guilhermeleobas/145/base 2025-06-01T20:58:06.9696103Z * [new branch] gh/guilhermeleobas/145/head -> origin/gh/guilhermeleobas/145/head 2025-06-01T20:58:06.9696689Z * [new branch] gh/guilhermeleobas/145/orig -> origin/gh/guilhermeleobas/145/orig 2025-06-01T20:58:06.9697284Z * [new branch] gh/guilhermeleobas/146/base -> origin/gh/guilhermeleobas/146/base 2025-06-01T20:58:06.9697855Z * [new branch] gh/guilhermeleobas/146/head -> origin/gh/guilhermeleobas/146/head 2025-06-01T20:58:06.9698443Z * [new branch] gh/guilhermeleobas/146/orig -> origin/gh/guilhermeleobas/146/orig 2025-06-01T20:58:06.9699026Z * [new branch] gh/guilhermeleobas/147/base -> origin/gh/guilhermeleobas/147/base 2025-06-01T20:58:06.9699597Z * [new branch] gh/guilhermeleobas/147/head -> origin/gh/guilhermeleobas/147/head 2025-06-01T20:58:06.9700179Z * [new branch] gh/guilhermeleobas/147/orig -> origin/gh/guilhermeleobas/147/orig 2025-06-01T20:58:06.9700748Z * [new branch] gh/guilhermeleobas/148/base -> origin/gh/guilhermeleobas/148/base 2025-06-01T20:58:06.9701329Z * [new branch] gh/guilhermeleobas/148/head -> origin/gh/guilhermeleobas/148/head 2025-06-01T20:58:06.9702013Z * [new branch] gh/guilhermeleobas/148/orig -> origin/gh/guilhermeleobas/148/orig 2025-06-01T20:58:06.9702587Z * [new branch] gh/guilhermeleobas/149/base -> origin/gh/guilhermeleobas/149/base 2025-06-01T20:58:06.9703166Z * [new branch] gh/guilhermeleobas/149/head -> origin/gh/guilhermeleobas/149/head 2025-06-01T20:58:07.0103574Z * [new branch] gh/guilhermeleobas/149/orig -> origin/gh/guilhermeleobas/149/orig 2025-06-01T20:58:07.0104271Z * [new branch] gh/guilhermeleobas/150/base -> origin/gh/guilhermeleobas/150/base 2025-06-01T20:58:07.0104889Z * [new branch] gh/guilhermeleobas/150/head -> origin/gh/guilhermeleobas/150/head 2025-06-01T20:58:07.0105465Z * [new branch] gh/guilhermeleobas/150/orig -> origin/gh/guilhermeleobas/150/orig 2025-06-01T20:58:07.0106052Z * [new branch] gh/guilhermeleobas/151/base -> origin/gh/guilhermeleobas/151/base 2025-06-01T20:58:07.0106669Z * [new branch] gh/guilhermeleobas/151/head -> origin/gh/guilhermeleobas/151/head 2025-06-01T20:58:07.0107262Z * [new branch] gh/guilhermeleobas/151/orig -> origin/gh/guilhermeleobas/151/orig 2025-06-01T20:58:07.0107852Z * [new branch] gh/guilhermeleobas/152/base -> origin/gh/guilhermeleobas/152/base 2025-06-01T20:58:07.0108428Z * [new branch] gh/guilhermeleobas/152/head -> origin/gh/guilhermeleobas/152/head 2025-06-01T20:58:07.0109053Z * [new branch] gh/guilhermeleobas/152/orig -> origin/gh/guilhermeleobas/152/orig 2025-06-01T20:58:07.0109670Z * [new branch] gh/guilhermeleobas/153/base -> origin/gh/guilhermeleobas/153/base 2025-06-01T20:58:07.0110336Z * [new branch] gh/guilhermeleobas/153/head -> origin/gh/guilhermeleobas/153/head 2025-06-01T20:58:07.0110913Z * [new branch] gh/guilhermeleobas/153/orig -> origin/gh/guilhermeleobas/153/orig 2025-06-01T20:58:07.0111678Z * [new branch] gh/guilhermeleobas/154/base -> origin/gh/guilhermeleobas/154/base 2025-06-01T20:58:07.0112399Z * [new branch] gh/guilhermeleobas/154/head -> origin/gh/guilhermeleobas/154/head 2025-06-01T20:58:07.0112979Z * [new branch] gh/guilhermeleobas/154/orig -> origin/gh/guilhermeleobas/154/orig 2025-06-01T20:58:07.0113557Z * [new branch] gh/guilhermeleobas/155/base -> origin/gh/guilhermeleobas/155/base 2025-06-01T20:58:07.0114144Z * [new branch] gh/guilhermeleobas/155/head -> origin/gh/guilhermeleobas/155/head 2025-06-01T20:58:07.0114764Z * [new branch] gh/guilhermeleobas/155/orig -> origin/gh/guilhermeleobas/155/orig 2025-06-01T20:58:07.0115392Z * [new branch] gh/guilhermeleobas/156/base -> origin/gh/guilhermeleobas/156/base 2025-06-01T20:58:07.0115965Z * [new branch] gh/guilhermeleobas/156/head -> origin/gh/guilhermeleobas/156/head 2025-06-01T20:58:07.0116556Z * [new branch] gh/guilhermeleobas/156/orig -> origin/gh/guilhermeleobas/156/orig 2025-06-01T20:58:07.0117153Z * [new branch] gh/guilhermeleobas/157/base -> origin/gh/guilhermeleobas/157/base 2025-06-01T20:58:07.0117732Z * [new branch] gh/guilhermeleobas/157/head -> origin/gh/guilhermeleobas/157/head 2025-06-01T20:58:07.0118323Z * [new branch] gh/guilhermeleobas/157/orig -> origin/gh/guilhermeleobas/157/orig 2025-06-01T20:58:07.0118897Z * [new branch] gh/guilhermeleobas/158/base -> origin/gh/guilhermeleobas/158/base 2025-06-01T20:58:07.0119473Z * [new branch] gh/guilhermeleobas/158/head -> origin/gh/guilhermeleobas/158/head 2025-06-01T20:58:07.0120052Z * [new branch] gh/guilhermeleobas/158/orig -> origin/gh/guilhermeleobas/158/orig 2025-06-01T20:58:07.0120669Z * [new branch] gh/guilhermeleobas/159/base -> origin/gh/guilhermeleobas/159/base 2025-06-01T20:58:07.0121297Z * [new branch] gh/guilhermeleobas/159/head -> origin/gh/guilhermeleobas/159/head 2025-06-01T20:58:07.0121884Z * [new branch] gh/guilhermeleobas/159/orig -> origin/gh/guilhermeleobas/159/orig 2025-06-01T20:58:07.0122472Z * [new branch] gh/guilhermeleobas/73/base -> origin/gh/guilhermeleobas/73/base 2025-06-01T20:58:07.0123055Z * [new branch] gh/guilhermeleobas/73/head -> origin/gh/guilhermeleobas/73/head 2025-06-01T20:58:07.0123627Z * [new branch] gh/guilhermeleobas/73/orig -> origin/gh/guilhermeleobas/73/orig 2025-06-01T20:58:07.0124191Z * [new branch] gh/henrylhtsang/13/base -> origin/gh/henrylhtsang/13/base 2025-06-01T20:58:07.0124721Z * [new branch] gh/henrylhtsang/13/head -> origin/gh/henrylhtsang/13/head 2025-06-01T20:58:07.0125266Z * [new branch] gh/henrylhtsang/13/orig -> origin/gh/henrylhtsang/13/orig 2025-06-01T20:58:07.0125807Z * [new branch] gh/henrylhtsang/31/base -> origin/gh/henrylhtsang/31/base 2025-06-01T20:58:07.0126389Z * [new branch] gh/henrylhtsang/31/head -> origin/gh/henrylhtsang/31/head 2025-06-01T20:58:07.0126982Z * [new branch] gh/henrylhtsang/31/orig -> origin/gh/henrylhtsang/31/orig 2025-06-01T20:58:07.0127514Z * [new branch] gh/henrylhtsang/58/base -> origin/gh/henrylhtsang/58/base 2025-06-01T20:58:07.0128050Z * [new branch] gh/henrylhtsang/58/head -> origin/gh/henrylhtsang/58/head 2025-06-01T20:58:07.0128595Z * [new branch] gh/henrylhtsang/58/orig -> origin/gh/henrylhtsang/58/orig 2025-06-01T20:58:07.0544930Z * [new branch] gh/henrylhtsang/59/base -> origin/gh/henrylhtsang/59/base 2025-06-01T20:58:07.0545542Z * [new branch] gh/henrylhtsang/59/head -> origin/gh/henrylhtsang/59/head 2025-06-01T20:58:07.0546107Z * [new branch] gh/henrylhtsang/60/base -> origin/gh/henrylhtsang/60/base 2025-06-01T20:58:07.0561046Z * [new branch] gh/henrylhtsang/60/head -> origin/gh/henrylhtsang/60/head 2025-06-01T20:58:07.0561777Z * [new branch] gh/henrylhtsang/60/orig -> origin/gh/henrylhtsang/60/orig 2025-06-01T20:58:07.0562319Z * [new branch] gh/henrylhtsang/61/base -> origin/gh/henrylhtsang/61/base 2025-06-01T20:58:07.0562863Z * [new branch] gh/henrylhtsang/61/head -> origin/gh/henrylhtsang/61/head 2025-06-01T20:58:07.0563392Z * [new branch] gh/henrylhtsang/61/orig -> origin/gh/henrylhtsang/61/orig 2025-06-01T20:58:07.0563930Z * [new branch] gh/henrylhtsang/62/base -> origin/gh/henrylhtsang/62/base 2025-06-01T20:58:07.0564468Z * [new branch] gh/henrylhtsang/62/head -> origin/gh/henrylhtsang/62/head 2025-06-01T20:58:07.0564992Z * [new branch] gh/henrylhtsang/62/orig -> origin/gh/henrylhtsang/62/orig 2025-06-01T20:58:07.0566543Z * [new branch] gh/henrylhtsang/63/base -> origin/gh/henrylhtsang/63/base 2025-06-01T20:58:07.0567091Z * [new branch] gh/henrylhtsang/63/head -> origin/gh/henrylhtsang/63/head 2025-06-01T20:58:07.0567636Z * [new branch] gh/henrylhtsang/63/orig -> origin/gh/henrylhtsang/63/orig 2025-06-01T20:58:07.0568175Z * [new branch] gh/henrylhtsang/64/base -> origin/gh/henrylhtsang/64/base 2025-06-01T20:58:07.0568700Z * [new branch] gh/henrylhtsang/64/head -> origin/gh/henrylhtsang/64/head 2025-06-01T20:58:07.0569240Z * [new branch] gh/henrylhtsang/64/orig -> origin/gh/henrylhtsang/64/orig 2025-06-01T20:58:07.0569769Z * [new branch] gh/henrylhtsang/65/base -> origin/gh/henrylhtsang/65/base 2025-06-01T20:58:07.0570303Z * [new branch] gh/henrylhtsang/65/head -> origin/gh/henrylhtsang/65/head 2025-06-01T20:58:07.0571396Z * [new branch] gh/henrylhtsang/65/orig -> origin/gh/henrylhtsang/65/orig 2025-06-01T20:58:07.0572341Z * [new branch] gh/henrylhtsang/66/base -> origin/gh/henrylhtsang/66/base 2025-06-01T20:58:07.0572888Z * [new branch] gh/henrylhtsang/66/head -> origin/gh/henrylhtsang/66/head 2025-06-01T20:58:07.0573427Z * [new branch] gh/henrylhtsang/66/orig -> origin/gh/henrylhtsang/66/orig 2025-06-01T20:58:07.0573965Z * [new branch] gh/henrylhtsang/67/base -> origin/gh/henrylhtsang/67/base 2025-06-01T20:58:07.0574498Z * [new branch] gh/henrylhtsang/67/head -> origin/gh/henrylhtsang/67/head 2025-06-01T20:58:07.0575027Z * [new branch] gh/henrylhtsang/67/orig -> origin/gh/henrylhtsang/67/orig 2025-06-01T20:58:07.0575563Z * [new branch] gh/henrylhtsang/68/base -> origin/gh/henrylhtsang/68/base 2025-06-01T20:58:07.0576094Z * [new branch] gh/henrylhtsang/68/head -> origin/gh/henrylhtsang/68/head 2025-06-01T20:58:07.0577577Z * [new branch] gh/henrylhtsang/68/orig -> origin/gh/henrylhtsang/68/orig 2025-06-01T20:58:07.0578141Z * [new branch] gh/henrylhtsang/69/base -> origin/gh/henrylhtsang/69/base 2025-06-01T20:58:07.0578679Z * [new branch] gh/henrylhtsang/69/head -> origin/gh/henrylhtsang/69/head 2025-06-01T20:58:07.0579220Z * [new branch] gh/henrylhtsang/69/orig -> origin/gh/henrylhtsang/69/orig 2025-06-01T20:58:07.0579750Z * [new branch] gh/henrylhtsang/70/base -> origin/gh/henrylhtsang/70/base 2025-06-01T20:58:07.0580281Z * [new branch] gh/henrylhtsang/70/head -> origin/gh/henrylhtsang/70/head 2025-06-01T20:58:07.0580815Z * [new branch] gh/henrylhtsang/70/orig -> origin/gh/henrylhtsang/70/orig 2025-06-01T20:58:07.0581343Z * [new branch] gh/henrylhtsang/71/base -> origin/gh/henrylhtsang/71/base 2025-06-01T20:58:07.0581880Z * [new branch] gh/henrylhtsang/71/head -> origin/gh/henrylhtsang/71/head 2025-06-01T20:58:07.0583501Z * [new branch] gh/henrylhtsang/71/orig -> origin/gh/henrylhtsang/71/orig 2025-06-01T20:58:07.0584172Z * [new branch] gh/henrylhtsang/72/base -> origin/gh/henrylhtsang/72/base 2025-06-01T20:58:07.0584699Z * [new branch] gh/henrylhtsang/72/head -> origin/gh/henrylhtsang/72/head 2025-06-01T20:58:07.0585242Z * [new branch] gh/henrylhtsang/72/orig -> origin/gh/henrylhtsang/72/orig 2025-06-01T20:58:07.0585777Z * [new branch] gh/henrylhtsang/73/base -> origin/gh/henrylhtsang/73/base 2025-06-01T20:58:07.0586307Z * [new branch] gh/henrylhtsang/73/head -> origin/gh/henrylhtsang/73/head 2025-06-01T20:58:07.0586846Z * [new branch] gh/henrylhtsang/73/orig -> origin/gh/henrylhtsang/73/orig 2025-06-01T20:58:07.0587371Z * [new branch] gh/henrylhtsang/74/base -> origin/gh/henrylhtsang/74/base 2025-06-01T20:58:07.0976029Z * [new branch] gh/henrylhtsang/74/head -> origin/gh/henrylhtsang/74/head 2025-06-01T20:58:07.0976682Z * [new branch] gh/henrylhtsang/74/orig -> origin/gh/henrylhtsang/74/orig 2025-06-01T20:58:07.0977232Z * [new branch] gh/henrylhtsang/75/base -> origin/gh/henrylhtsang/75/base 2025-06-01T20:58:07.0977763Z * [new branch] gh/henrylhtsang/75/head -> origin/gh/henrylhtsang/75/head 2025-06-01T20:58:07.0978310Z * [new branch] gh/henrylhtsang/75/orig -> origin/gh/henrylhtsang/75/orig 2025-06-01T20:58:07.0978849Z * [new branch] gh/henrylhtsang/76/base -> origin/gh/henrylhtsang/76/base 2025-06-01T20:58:07.0979379Z * [new branch] gh/henrylhtsang/76/head -> origin/gh/henrylhtsang/76/head 2025-06-01T20:58:07.0979923Z * [new branch] gh/henrylhtsang/76/orig -> origin/gh/henrylhtsang/76/orig 2025-06-01T20:58:07.0980457Z * [new branch] gh/henrylhtsang/77/base -> origin/gh/henrylhtsang/77/base 2025-06-01T20:58:07.0981006Z * [new branch] gh/henrylhtsang/77/head -> origin/gh/henrylhtsang/77/head 2025-06-01T20:58:07.0981550Z * [new branch] gh/henrylhtsang/77/orig -> origin/gh/henrylhtsang/77/orig 2025-06-01T20:58:07.0982074Z * [new branch] gh/henrylhtsang/78/base -> origin/gh/henrylhtsang/78/base 2025-06-01T20:58:07.0982606Z * [new branch] gh/henrylhtsang/78/head -> origin/gh/henrylhtsang/78/head 2025-06-01T20:58:07.0983130Z * [new branch] gh/henrylhtsang/78/orig -> origin/gh/henrylhtsang/78/orig 2025-06-01T20:58:07.0983669Z * [new branch] gh/henrylhtsang/79/base -> origin/gh/henrylhtsang/79/base 2025-06-01T20:58:07.0985178Z * [new branch] gh/henrylhtsang/79/head -> origin/gh/henrylhtsang/79/head 2025-06-01T20:58:07.0986111Z * [new branch] gh/henrylhtsang/79/orig -> origin/gh/henrylhtsang/79/orig 2025-06-01T20:58:07.0986660Z * [new branch] gh/henrylhtsang/80/base -> origin/gh/henrylhtsang/80/base 2025-06-01T20:58:07.0987212Z * [new branch] gh/henrylhtsang/80/head -> origin/gh/henrylhtsang/80/head 2025-06-01T20:58:07.0987754Z * [new branch] gh/henrylhtsang/80/orig -> origin/gh/henrylhtsang/80/orig 2025-06-01T20:58:07.0988294Z * [new branch] gh/henrylhtsang/81/base -> origin/gh/henrylhtsang/81/base 2025-06-01T20:58:07.0988819Z * [new branch] gh/henrylhtsang/81/head -> origin/gh/henrylhtsang/81/head 2025-06-01T20:58:07.0989359Z * [new branch] gh/henrylhtsang/81/orig -> origin/gh/henrylhtsang/81/orig 2025-06-01T20:58:07.0989955Z * [new branch] gh/henrylhtsang/82/base -> origin/gh/henrylhtsang/82/base 2025-06-01T20:58:07.0991481Z * [new branch] gh/henrylhtsang/82/head -> origin/gh/henrylhtsang/82/head 2025-06-01T20:58:07.0992038Z * [new branch] gh/henrylhtsang/82/orig -> origin/gh/henrylhtsang/82/orig 2025-06-01T20:58:07.0992776Z * [new branch] gh/henrylhtsang/83/base -> origin/gh/henrylhtsang/83/base 2025-06-01T20:58:07.0993447Z * [new branch] gh/henrylhtsang/83/head -> origin/gh/henrylhtsang/83/head 2025-06-01T20:58:07.0993976Z * [new branch] gh/henrylhtsang/83/orig -> origin/gh/henrylhtsang/83/orig 2025-06-01T20:58:07.0994512Z * [new branch] gh/henrylhtsang/84/base -> origin/gh/henrylhtsang/84/base 2025-06-01T20:58:07.0995044Z * [new branch] gh/henrylhtsang/84/head -> origin/gh/henrylhtsang/84/head 2025-06-01T20:58:07.0995584Z * [new branch] gh/henrylhtsang/84/orig -> origin/gh/henrylhtsang/84/orig 2025-06-01T20:58:07.0996717Z * [new branch] gh/henrylhtsang/85/base -> origin/gh/henrylhtsang/85/base 2025-06-01T20:58:07.0997699Z * [new branch] gh/henrylhtsang/85/head -> origin/gh/henrylhtsang/85/head 2025-06-01T20:58:07.0998252Z * [new branch] gh/henrylhtsang/85/orig -> origin/gh/henrylhtsang/85/orig 2025-06-01T20:58:07.0998791Z * [new branch] gh/henrylhtsang/86/base -> origin/gh/henrylhtsang/86/base 2025-06-01T20:58:07.0999335Z * [new branch] gh/henrylhtsang/86/head -> origin/gh/henrylhtsang/86/head 2025-06-01T20:58:07.0999875Z * [new branch] gh/henrylhtsang/86/orig -> origin/gh/henrylhtsang/86/orig 2025-06-01T20:58:07.1000405Z * [new branch] gh/henrylhtsang/87/base -> origin/gh/henrylhtsang/87/base 2025-06-01T20:58:07.1000948Z * [new branch] gh/henrylhtsang/87/head -> origin/gh/henrylhtsang/87/head 2025-06-01T20:58:07.1001474Z * [new branch] gh/henrylhtsang/87/orig -> origin/gh/henrylhtsang/87/orig 2025-06-01T20:58:07.1002957Z * [new branch] gh/henrylhtsang/88/base -> origin/gh/henrylhtsang/88/base 2025-06-01T20:58:07.1003513Z * [new branch] gh/henrylhtsang/88/head -> origin/gh/henrylhtsang/88/head 2025-06-01T20:58:07.1004061Z * [new branch] gh/henrylhtsang/88/orig -> origin/gh/henrylhtsang/88/orig 2025-06-01T20:58:07.1004625Z * [new branch] gh/henrylhtsang/89/base -> origin/gh/henrylhtsang/89/base 2025-06-01T20:58:07.1005157Z * [new branch] gh/henrylhtsang/89/head -> origin/gh/henrylhtsang/89/head 2025-06-01T20:58:07.1455625Z * [new branch] gh/henrylhtsang/89/orig -> origin/gh/henrylhtsang/89/orig 2025-06-01T20:58:07.1456242Z * [new branch] gh/henrylhtsang/90/base -> origin/gh/henrylhtsang/90/base 2025-06-01T20:58:07.1456795Z * [new branch] gh/henrylhtsang/90/head -> origin/gh/henrylhtsang/90/head 2025-06-01T20:58:07.1457335Z * [new branch] gh/henrylhtsang/90/orig -> origin/gh/henrylhtsang/90/orig 2025-06-01T20:58:07.1457869Z * [new branch] gh/henrylhtsang/91/base -> origin/gh/henrylhtsang/91/base 2025-06-01T20:58:07.1458442Z * [new branch] gh/henrylhtsang/91/head -> origin/gh/henrylhtsang/91/head 2025-06-01T20:58:07.1458995Z * [new branch] gh/henrylhtsang/91/orig -> origin/gh/henrylhtsang/91/orig 2025-06-01T20:58:07.1459528Z * [new branch] gh/henrylhtsang/92/base -> origin/gh/henrylhtsang/92/base 2025-06-01T20:58:07.1460060Z * [new branch] gh/henrylhtsang/92/head -> origin/gh/henrylhtsang/92/head 2025-06-01T20:58:07.1460583Z * [new branch] gh/henrylhtsang/92/orig -> origin/gh/henrylhtsang/92/orig 2025-06-01T20:58:07.1461087Z * [new branch] gh/int3/97/base -> origin/gh/int3/97/base 2025-06-01T20:58:07.1461562Z * [new branch] gh/int3/97/head -> origin/gh/int3/97/head 2025-06-01T20:58:07.1462027Z * [new branch] gh/isuruf/101/base -> origin/gh/isuruf/101/base 2025-06-01T20:58:07.1462511Z * [new branch] gh/isuruf/101/head -> origin/gh/isuruf/101/head 2025-06-01T20:58:07.1463188Z * [new branch] gh/isuruf/105/base -> origin/gh/isuruf/105/base 2025-06-01T20:58:07.1463790Z * [new branch] gh/isuruf/105/head -> origin/gh/isuruf/105/head 2025-06-01T20:58:07.1464266Z * [new branch] gh/isuruf/105/orig -> origin/gh/isuruf/105/orig 2025-06-01T20:58:07.1464733Z * [new branch] gh/isuruf/110/base -> origin/gh/isuruf/110/base 2025-06-01T20:58:07.1465211Z * [new branch] gh/isuruf/110/head -> origin/gh/isuruf/110/head 2025-06-01T20:58:07.1465678Z * [new branch] gh/isuruf/110/orig -> origin/gh/isuruf/110/orig 2025-06-01T20:58:07.1466168Z * [new branch] gh/isuruf/116/base -> origin/gh/isuruf/116/base 2025-06-01T20:58:07.1466653Z * [new branch] gh/isuruf/116/head -> origin/gh/isuruf/116/head 2025-06-01T20:58:07.1467127Z * [new branch] gh/isuruf/116/orig -> origin/gh/isuruf/116/orig 2025-06-01T20:58:07.1467609Z * [new branch] gh/isuruf/119/base -> origin/gh/isuruf/119/base 2025-06-01T20:58:07.1468084Z * [new branch] gh/isuruf/119/head -> origin/gh/isuruf/119/head 2025-06-01T20:58:07.1468575Z * [new branch] gh/isuruf/119/orig -> origin/gh/isuruf/119/orig 2025-06-01T20:58:07.1469049Z * [new branch] gh/isuruf/120/base -> origin/gh/isuruf/120/base 2025-06-01T20:58:07.1469527Z * [new branch] gh/isuruf/120/head -> origin/gh/isuruf/120/head 2025-06-01T20:58:07.1470077Z * [new branch] gh/isuruf/120/orig -> origin/gh/isuruf/120/orig 2025-06-01T20:58:07.1470612Z * [new branch] gh/isuruf/127/base -> origin/gh/isuruf/127/base 2025-06-01T20:58:07.1471149Z * [new branch] gh/isuruf/127/head -> origin/gh/isuruf/127/head 2025-06-01T20:58:07.1471636Z * [new branch] gh/isuruf/127/orig -> origin/gh/isuruf/127/orig 2025-06-01T20:58:07.1472132Z * [new branch] gh/isuruf/136/base -> origin/gh/isuruf/136/base 2025-06-01T20:58:07.1472631Z * [new branch] gh/isuruf/136/head -> origin/gh/isuruf/136/head 2025-06-01T20:58:07.1473106Z * [new branch] gh/isuruf/136/orig -> origin/gh/isuruf/136/orig 2025-06-01T20:58:07.1473593Z * [new branch] gh/isuruf/137/base -> origin/gh/isuruf/137/base 2025-06-01T20:58:07.1474075Z * [new branch] gh/isuruf/137/head -> origin/gh/isuruf/137/head 2025-06-01T20:58:07.1474547Z * [new branch] gh/isuruf/137/orig -> origin/gh/isuruf/137/orig 2025-06-01T20:58:07.1475024Z * [new branch] gh/isuruf/138/base -> origin/gh/isuruf/138/base 2025-06-01T20:58:07.1475497Z * [new branch] gh/isuruf/138/orig -> origin/gh/isuruf/138/orig 2025-06-01T20:58:07.1475987Z * [new branch] gh/isuruf/139/base -> origin/gh/isuruf/139/base 2025-06-01T20:58:07.1476515Z * [new branch] gh/isuruf/139/head -> origin/gh/isuruf/139/head 2025-06-01T20:58:07.1477043Z * [new branch] gh/isuruf/139/orig -> origin/gh/isuruf/139/orig 2025-06-01T20:58:07.1477520Z * [new branch] gh/isuruf/140/base -> origin/gh/isuruf/140/base 2025-06-01T20:58:07.1477987Z * [new branch] gh/isuruf/140/head -> origin/gh/isuruf/140/head 2025-06-01T20:58:07.1478474Z * [new branch] gh/isuruf/140/orig -> origin/gh/isuruf/140/orig 2025-06-01T20:58:07.1478947Z * [new branch] gh/isuruf/141/base -> origin/gh/isuruf/141/base 2025-06-01T20:58:07.1918052Z * [new branch] gh/isuruf/141/head -> origin/gh/isuruf/141/head 2025-06-01T20:58:07.1919609Z * [new branch] gh/isuruf/141/orig -> origin/gh/isuruf/141/orig 2025-06-01T20:58:07.1920371Z * [new branch] gh/isuruf/142/base -> origin/gh/isuruf/142/base 2025-06-01T20:58:07.1921009Z * [new branch] gh/isuruf/142/head -> origin/gh/isuruf/142/head 2025-06-01T20:58:07.1921519Z * [new branch] gh/isuruf/142/orig -> origin/gh/isuruf/142/orig 2025-06-01T20:58:07.1921998Z * [new branch] gh/isuruf/143/base -> origin/gh/isuruf/143/base 2025-06-01T20:58:07.1922474Z * [new branch] gh/isuruf/143/head -> origin/gh/isuruf/143/head 2025-06-01T20:58:07.1922952Z * [new branch] gh/isuruf/143/orig -> origin/gh/isuruf/143/orig 2025-06-01T20:58:07.1923438Z * [new branch] gh/isuruf/144/base -> origin/gh/isuruf/144/base 2025-06-01T20:58:07.1923920Z * [new branch] gh/isuruf/144/head -> origin/gh/isuruf/144/head 2025-06-01T20:58:07.1925402Z * [new branch] gh/isuruf/144/orig -> origin/gh/isuruf/144/orig 2025-06-01T20:58:07.1925918Z * [new branch] gh/isuruf/145/base -> origin/gh/isuruf/145/base 2025-06-01T20:58:07.1926402Z * [new branch] gh/isuruf/145/head -> origin/gh/isuruf/145/head 2025-06-01T20:58:07.1926880Z * [new branch] gh/isuruf/145/orig -> origin/gh/isuruf/145/orig 2025-06-01T20:58:07.1927351Z * [new branch] gh/isuruf/146/base -> origin/gh/isuruf/146/base 2025-06-01T20:58:07.1927837Z * [new branch] gh/isuruf/146/head -> origin/gh/isuruf/146/head 2025-06-01T20:58:07.1928311Z * [new branch] gh/isuruf/146/orig -> origin/gh/isuruf/146/orig 2025-06-01T20:58:07.1928779Z * [new branch] gh/isuruf/147/base -> origin/gh/isuruf/147/base 2025-06-01T20:58:07.1929260Z * [new branch] gh/isuruf/147/head -> origin/gh/isuruf/147/head 2025-06-01T20:58:07.1929738Z * [new branch] gh/isuruf/147/orig -> origin/gh/isuruf/147/orig 2025-06-01T20:58:07.1931245Z * [new branch] gh/jamesjwu/100/base -> origin/gh/jamesjwu/100/base 2025-06-01T20:58:07.1931771Z * [new branch] gh/jamesjwu/100/head -> origin/gh/jamesjwu/100/head 2025-06-01T20:58:07.1932267Z * [new branch] gh/jamesjwu/100/orig -> origin/gh/jamesjwu/100/orig 2025-06-01T20:58:07.1932776Z * [new branch] gh/jamesjwu/102/base -> origin/gh/jamesjwu/102/base 2025-06-01T20:58:07.1933272Z * [new branch] gh/jamesjwu/102/head -> origin/gh/jamesjwu/102/head 2025-06-01T20:58:07.1933776Z * [new branch] gh/jamesjwu/105/base -> origin/gh/jamesjwu/105/base 2025-06-01T20:58:07.1934287Z * [new branch] gh/jamesjwu/105/head -> origin/gh/jamesjwu/105/head 2025-06-01T20:58:07.1934778Z * [new branch] gh/jamesjwu/105/orig -> origin/gh/jamesjwu/105/orig 2025-06-01T20:58:07.1935281Z * [new branch] gh/jamesjwu/108/base -> origin/gh/jamesjwu/108/base 2025-06-01T20:58:07.1936363Z * [new branch] gh/jamesjwu/108/head -> origin/gh/jamesjwu/108/head 2025-06-01T20:58:07.1937259Z * [new branch] gh/jamesjwu/108/orig -> origin/gh/jamesjwu/108/orig 2025-06-01T20:58:07.1937779Z * [new branch] gh/jamesjwu/111/base -> origin/gh/jamesjwu/111/base 2025-06-01T20:58:07.1938275Z * [new branch] gh/jamesjwu/111/head -> origin/gh/jamesjwu/111/head 2025-06-01T20:58:07.1938779Z * [new branch] gh/jamesjwu/111/orig -> origin/gh/jamesjwu/111/orig 2025-06-01T20:58:07.1939282Z * [new branch] gh/jamesjwu/113/base -> origin/gh/jamesjwu/113/base 2025-06-01T20:58:07.1939774Z * [new branch] gh/jamesjwu/113/head -> origin/gh/jamesjwu/113/head 2025-06-01T20:58:07.1940277Z * [new branch] gh/jamesjwu/113/orig -> origin/gh/jamesjwu/113/orig 2025-06-01T20:58:07.1940931Z * [new branch] gh/jamesjwu/122/base -> origin/gh/jamesjwu/122/base 2025-06-01T20:58:07.1942169Z * [new branch] gh/jamesjwu/122/head -> origin/gh/jamesjwu/122/head 2025-06-01T20:58:07.1943071Z * [new branch] gh/jamesjwu/122/orig -> origin/gh/jamesjwu/122/orig 2025-06-01T20:58:07.1943560Z * [new branch] gh/jamesjwu/124/base -> origin/gh/jamesjwu/124/base 2025-06-01T20:58:07.1944060Z * [new branch] gh/jamesjwu/124/head -> origin/gh/jamesjwu/124/head 2025-06-01T20:58:07.1944547Z * [new branch] gh/jamesjwu/124/orig -> origin/gh/jamesjwu/124/orig 2025-06-01T20:58:07.1945048Z * [new branch] gh/jamesjwu/128/base -> origin/gh/jamesjwu/128/base 2025-06-01T20:58:07.1945538Z * [new branch] gh/jamesjwu/128/head -> origin/gh/jamesjwu/128/head 2025-06-01T20:58:07.1946037Z * [new branch] gh/jamesjwu/128/orig -> origin/gh/jamesjwu/128/orig 2025-06-01T20:58:07.1946547Z * [new branch] gh/jamesjwu/129/base -> origin/gh/jamesjwu/129/base 2025-06-01T20:58:07.2342322Z * [new branch] gh/jamesjwu/129/head -> origin/gh/jamesjwu/129/head 2025-06-01T20:58:07.2342872Z * [new branch] gh/jamesjwu/129/orig -> origin/gh/jamesjwu/129/orig 2025-06-01T20:58:07.2343367Z * [new branch] gh/jamesjwu/139/base -> origin/gh/jamesjwu/139/base 2025-06-01T20:58:07.2344945Z * [new branch] gh/jamesjwu/139/head -> origin/gh/jamesjwu/139/head 2025-06-01T20:58:07.2345467Z * [new branch] gh/jamesjwu/139/orig -> origin/gh/jamesjwu/139/orig 2025-06-01T20:58:07.2345957Z * [new branch] gh/jamesjwu/140/base -> origin/gh/jamesjwu/140/base 2025-06-01T20:58:07.2346459Z * [new branch] gh/jamesjwu/140/head -> origin/gh/jamesjwu/140/head 2025-06-01T20:58:07.2346960Z * [new branch] gh/jamesjwu/140/orig -> origin/gh/jamesjwu/140/orig 2025-06-01T20:58:07.2347484Z * [new branch] gh/jamesjwu/141/base -> origin/gh/jamesjwu/141/base 2025-06-01T20:58:07.2347983Z * [new branch] gh/jamesjwu/141/head -> origin/gh/jamesjwu/141/head 2025-06-01T20:58:07.2348469Z * [new branch] gh/jamesjwu/141/orig -> origin/gh/jamesjwu/141/orig 2025-06-01T20:58:07.2348962Z * [new branch] gh/jamesjwu/142/base -> origin/gh/jamesjwu/142/base 2025-06-01T20:58:07.2349455Z * [new branch] gh/jamesjwu/142/head -> origin/gh/jamesjwu/142/head 2025-06-01T20:58:07.2350016Z * [new branch] gh/jamesjwu/142/orig -> origin/gh/jamesjwu/142/orig 2025-06-01T20:58:07.2350527Z * [new branch] gh/jamesjwu/143/base -> origin/gh/jamesjwu/143/base 2025-06-01T20:58:07.2351017Z * [new branch] gh/jamesjwu/143/head -> origin/gh/jamesjwu/143/head 2025-06-01T20:58:07.2351521Z * [new branch] gh/jamesjwu/143/orig -> origin/gh/jamesjwu/143/orig 2025-06-01T20:58:07.2352015Z * [new branch] gh/jamesjwu/144/base -> origin/gh/jamesjwu/144/base 2025-06-01T20:58:07.2352510Z * [new branch] gh/jamesjwu/144/head -> origin/gh/jamesjwu/144/head 2025-06-01T20:58:07.2353015Z * [new branch] gh/jamesjwu/144/orig -> origin/gh/jamesjwu/144/orig 2025-06-01T20:58:07.2353513Z * [new branch] gh/jamesjwu/145/base -> origin/gh/jamesjwu/145/base 2025-06-01T20:58:07.2354007Z * [new branch] gh/jamesjwu/145/head -> origin/gh/jamesjwu/145/head 2025-06-01T20:58:07.2354496Z * [new branch] gh/jamesjwu/145/orig -> origin/gh/jamesjwu/145/orig 2025-06-01T20:58:07.2354993Z * [new branch] gh/jamesjwu/146/base -> origin/gh/jamesjwu/146/base 2025-06-01T20:58:07.2355490Z * [new branch] gh/jamesjwu/146/head -> origin/gh/jamesjwu/146/head 2025-06-01T20:58:07.2356185Z * [new branch] gh/jamesjwu/146/orig -> origin/gh/jamesjwu/146/orig 2025-06-01T20:58:07.2356801Z * [new branch] gh/jamesjwu/147/base -> origin/gh/jamesjwu/147/base 2025-06-01T20:58:07.2357289Z * [new branch] gh/jamesjwu/147/head -> origin/gh/jamesjwu/147/head 2025-06-01T20:58:07.2357788Z * [new branch] gh/jamesjwu/147/orig -> origin/gh/jamesjwu/147/orig 2025-06-01T20:58:07.2358296Z * [new branch] gh/jamesjwu/148/base -> origin/gh/jamesjwu/148/base 2025-06-01T20:58:07.2358788Z * [new branch] gh/jamesjwu/148/head -> origin/gh/jamesjwu/148/head 2025-06-01T20:58:07.2359288Z * [new branch] gh/jamesjwu/148/orig -> origin/gh/jamesjwu/148/orig 2025-06-01T20:58:07.2359777Z * [new branch] gh/jamesjwu/149/base -> origin/gh/jamesjwu/149/base 2025-06-01T20:58:07.2360276Z * [new branch] gh/jamesjwu/149/head -> origin/gh/jamesjwu/149/head 2025-06-01T20:58:07.2360787Z * [new branch] gh/jamesjwu/149/orig -> origin/gh/jamesjwu/149/orig 2025-06-01T20:58:07.2361278Z * [new branch] gh/jamesjwu/150/base -> origin/gh/jamesjwu/150/base 2025-06-01T20:58:07.2361773Z * [new branch] gh/jamesjwu/150/head -> origin/gh/jamesjwu/150/head 2025-06-01T20:58:07.2362261Z * [new branch] gh/jamesjwu/150/orig -> origin/gh/jamesjwu/150/orig 2025-06-01T20:58:07.2362757Z * [new branch] gh/jamesjwu/151/base -> origin/gh/jamesjwu/151/base 2025-06-01T20:58:07.2363251Z * [new branch] gh/jamesjwu/151/head -> origin/gh/jamesjwu/151/head 2025-06-01T20:58:07.2363744Z * [new branch] gh/jamesjwu/151/orig -> origin/gh/jamesjwu/151/orig 2025-06-01T20:58:07.2364243Z * [new branch] gh/jamesjwu/152/base -> origin/gh/jamesjwu/152/base 2025-06-01T20:58:07.2364735Z * [new branch] gh/jamesjwu/152/head -> origin/gh/jamesjwu/152/head 2025-06-01T20:58:07.2365233Z * [new branch] gh/jamesjwu/152/orig -> origin/gh/jamesjwu/152/orig 2025-06-01T20:58:07.2365719Z * [new branch] gh/jamesjwu/153/base -> origin/gh/jamesjwu/153/base 2025-06-01T20:58:07.2366216Z * [new branch] gh/jamesjwu/153/head -> origin/gh/jamesjwu/153/head 2025-06-01T20:58:07.2802809Z * [new branch] gh/jamesjwu/153/orig -> origin/gh/jamesjwu/153/orig 2025-06-01T20:58:07.2803369Z * [new branch] gh/jamesjwu/154/base -> origin/gh/jamesjwu/154/base 2025-06-01T20:58:07.2803892Z * [new branch] gh/jamesjwu/154/head -> origin/gh/jamesjwu/154/head 2025-06-01T20:58:07.2804439Z * [new branch] gh/jamesjwu/154/orig -> origin/gh/jamesjwu/154/orig 2025-06-01T20:58:07.2805029Z * [new branch] gh/jamesjwu/155/base -> origin/gh/jamesjwu/155/base 2025-06-01T20:58:07.2805607Z * [new branch] gh/jamesjwu/155/head -> origin/gh/jamesjwu/155/head 2025-06-01T20:58:07.2806225Z * [new branch] gh/jamesjwu/155/orig -> origin/gh/jamesjwu/155/orig 2025-06-01T20:58:07.2806727Z * [new branch] gh/jamesjwu/156/base -> origin/gh/jamesjwu/156/base 2025-06-01T20:58:07.2807225Z * [new branch] gh/jamesjwu/156/head -> origin/gh/jamesjwu/156/head 2025-06-01T20:58:07.2807722Z * [new branch] gh/jamesjwu/156/orig -> origin/gh/jamesjwu/156/orig 2025-06-01T20:58:07.2808223Z * [new branch] gh/jamesjwu/157/base -> origin/gh/jamesjwu/157/base 2025-06-01T20:58:07.2808720Z * [new branch] gh/jamesjwu/157/head -> origin/gh/jamesjwu/157/head 2025-06-01T20:58:07.2809212Z * [new branch] gh/jamesjwu/157/orig -> origin/gh/jamesjwu/157/orig 2025-06-01T20:58:07.2809702Z * [new branch] gh/jamesjwu/158/base -> origin/gh/jamesjwu/158/base 2025-06-01T20:58:07.2810507Z * [new branch] gh/jamesjwu/158/head -> origin/gh/jamesjwu/158/head 2025-06-01T20:58:07.2811015Z * [new branch] gh/jamesjwu/158/orig -> origin/gh/jamesjwu/158/orig 2025-06-01T20:58:07.2811555Z * [new branch] gh/jamesjwu/159/base -> origin/gh/jamesjwu/159/base 2025-06-01T20:58:07.2812149Z * [new branch] gh/jamesjwu/159/head -> origin/gh/jamesjwu/159/head 2025-06-01T20:58:07.2812700Z * [new branch] gh/jamesjwu/159/orig -> origin/gh/jamesjwu/159/orig 2025-06-01T20:58:07.2813215Z * [new branch] gh/jamesjwu/52/base -> origin/gh/jamesjwu/52/base 2025-06-01T20:58:07.2813777Z * [new branch] gh/jamesjwu/52/head -> origin/gh/jamesjwu/52/head 2025-06-01T20:58:07.2814334Z * [new branch] gh/jamesjwu/53/base -> origin/gh/jamesjwu/53/base 2025-06-01T20:58:07.2814954Z * [new branch] gh/jamesjwu/53/head -> origin/gh/jamesjwu/53/head 2025-06-01T20:58:07.2815463Z * [new branch] gh/jamesjwu/54/base -> origin/gh/jamesjwu/54/base 2025-06-01T20:58:07.2815964Z * [new branch] gh/jamesjwu/54/head -> origin/gh/jamesjwu/54/head 2025-06-01T20:58:07.2816459Z * [new branch] gh/jamesjwu/55/base -> origin/gh/jamesjwu/55/base 2025-06-01T20:58:07.2816946Z * [new branch] gh/jamesjwu/55/head -> origin/gh/jamesjwu/55/head 2025-06-01T20:58:07.2817442Z * [new branch] gh/jamesjwu/56/base -> origin/gh/jamesjwu/56/base 2025-06-01T20:58:07.2817965Z * [new branch] gh/jamesjwu/56/head -> origin/gh/jamesjwu/56/head 2025-06-01T20:58:07.2818527Z * [new branch] gh/jamesjwu/57/base -> origin/gh/jamesjwu/57/base 2025-06-01T20:58:07.2819067Z * [new branch] gh/jamesjwu/57/head -> origin/gh/jamesjwu/57/head 2025-06-01T20:58:07.2819623Z * [new branch] gh/jamesjwu/58/base -> origin/gh/jamesjwu/58/base 2025-06-01T20:58:07.2820128Z * [new branch] gh/jamesjwu/58/head -> origin/gh/jamesjwu/58/head 2025-06-01T20:58:07.2820618Z * [new branch] gh/jamesjwu/59/base -> origin/gh/jamesjwu/59/base 2025-06-01T20:58:07.2821115Z * [new branch] gh/jamesjwu/59/head -> origin/gh/jamesjwu/59/head 2025-06-01T20:58:07.2821613Z * [new branch] gh/jamesjwu/60/base -> origin/gh/jamesjwu/60/base 2025-06-01T20:58:07.2822097Z * [new branch] gh/jamesjwu/60/head -> origin/gh/jamesjwu/60/head 2025-06-01T20:58:07.2822591Z * [new branch] gh/jamesjwu/61/base -> origin/gh/jamesjwu/61/base 2025-06-01T20:58:07.2823075Z * [new branch] gh/jamesjwu/61/head -> origin/gh/jamesjwu/61/head 2025-06-01T20:58:07.2823567Z * [new branch] gh/jamesjwu/62/base -> origin/gh/jamesjwu/62/base 2025-06-01T20:58:07.2824055Z * [new branch] gh/jamesjwu/62/head -> origin/gh/jamesjwu/62/head 2025-06-01T20:58:07.2824602Z * [new branch] gh/jamesjwu/63/base -> origin/gh/jamesjwu/63/base 2025-06-01T20:58:07.2825144Z * [new branch] gh/jamesjwu/63/head -> origin/gh/jamesjwu/63/head 2025-06-01T20:58:07.2825627Z * [new branch] gh/jamesjwu/64/base -> origin/gh/jamesjwu/64/base 2025-06-01T20:58:07.2826120Z * [new branch] gh/jamesjwu/64/head -> origin/gh/jamesjwu/64/head 2025-06-01T20:58:07.2826605Z * [new branch] gh/jamesjwu/65/base -> origin/gh/jamesjwu/65/base 2025-06-01T20:58:07.2827099Z * [new branch] gh/jamesjwu/65/head -> origin/gh/jamesjwu/65/head 2025-06-01T20:58:07.3259009Z * [new branch] gh/jamesjwu/97/base -> origin/gh/jamesjwu/97/base 2025-06-01T20:58:07.3259620Z * [new branch] gh/jamesjwu/97/head -> origin/gh/jamesjwu/97/head 2025-06-01T20:58:07.3260610Z * [new branch] gh/jamesjwu/97/orig -> origin/gh/jamesjwu/97/orig 2025-06-01T20:58:07.3261319Z * [new branch] gh/janeyx99/165/base -> origin/gh/janeyx99/165/base 2025-06-01T20:58:07.3261926Z * [new branch] gh/janeyx99/165/head -> origin/gh/janeyx99/165/head 2025-06-01T20:58:07.3262582Z * [new branch] gh/janeyx99/165/orig -> origin/gh/janeyx99/165/orig 2025-06-01T20:58:07.3263209Z * [new branch] gh/janeyx99/201/base -> origin/gh/janeyx99/201/base 2025-06-01T20:58:07.3263827Z * [new branch] gh/janeyx99/201/head -> origin/gh/janeyx99/201/head 2025-06-01T20:58:07.3264445Z * [new branch] gh/janeyx99/201/orig -> origin/gh/janeyx99/201/orig 2025-06-01T20:58:07.3265080Z * [new branch] gh/janeyx99/222/base -> origin/gh/janeyx99/222/base 2025-06-01T20:58:07.3265712Z * [new branch] gh/janeyx99/222/head -> origin/gh/janeyx99/222/head 2025-06-01T20:58:07.3266298Z * [new branch] gh/janeyx99/222/orig -> origin/gh/janeyx99/222/orig 2025-06-01T20:58:07.3266925Z * [new branch] gh/janeyx99/225/base -> origin/gh/janeyx99/225/base 2025-06-01T20:58:07.3267543Z * [new branch] gh/janeyx99/225/head -> origin/gh/janeyx99/225/head 2025-06-01T20:58:07.3268155Z * [new branch] gh/janeyx99/225/orig -> origin/gh/janeyx99/225/orig 2025-06-01T20:58:07.3268789Z * [new branch] gh/janeyx99/239/base -> origin/gh/janeyx99/239/base 2025-06-01T20:58:07.3269407Z * [new branch] gh/janeyx99/239/head -> origin/gh/janeyx99/239/head 2025-06-01T20:58:07.3270039Z * [new branch] gh/janeyx99/239/orig -> origin/gh/janeyx99/239/orig 2025-06-01T20:58:07.3270672Z * [new branch] gh/janeyx99/240/base -> origin/gh/janeyx99/240/base 2025-06-01T20:58:07.3271258Z * [new branch] gh/janeyx99/240/head -> origin/gh/janeyx99/240/head 2025-06-01T20:58:07.3271897Z * [new branch] gh/janeyx99/240/orig -> origin/gh/janeyx99/240/orig 2025-06-01T20:58:07.3272492Z * [new branch] gh/janeyx99/241/base -> origin/gh/janeyx99/241/base 2025-06-01T20:58:07.3273140Z * [new branch] gh/janeyx99/241/head -> origin/gh/janeyx99/241/head 2025-06-01T20:58:07.3273756Z * [new branch] gh/janeyx99/241/orig -> origin/gh/janeyx99/241/orig 2025-06-01T20:58:07.3274343Z * [new branch] gh/janeyx99/242/base -> origin/gh/janeyx99/242/base 2025-06-01T20:58:07.3274966Z * [new branch] gh/janeyx99/242/head -> origin/gh/janeyx99/242/head 2025-06-01T20:58:07.3275594Z * [new branch] gh/janeyx99/242/orig -> origin/gh/janeyx99/242/orig 2025-06-01T20:58:07.3276175Z * [new branch] gh/janeyx99/243/base -> origin/gh/janeyx99/243/base 2025-06-01T20:58:07.3276814Z * [new branch] gh/janeyx99/243/head -> origin/gh/janeyx99/243/head 2025-06-01T20:58:07.3277460Z * [new branch] gh/janeyx99/243/orig -> origin/gh/janeyx99/243/orig 2025-06-01T20:58:07.3278036Z * [new branch] gh/janeyx99/244/base -> origin/gh/janeyx99/244/base 2025-06-01T20:58:07.3278659Z * [new branch] gh/janeyx99/244/head -> origin/gh/janeyx99/244/head 2025-06-01T20:58:07.3279247Z * [new branch] gh/janeyx99/244/orig -> origin/gh/janeyx99/244/orig 2025-06-01T20:58:07.3279888Z * [new branch] gh/janeyx99/245/base -> origin/gh/janeyx99/245/base 2025-06-01T20:58:07.3280512Z * [new branch] gh/janeyx99/245/head -> origin/gh/janeyx99/245/head 2025-06-01T20:58:07.3281094Z * [new branch] gh/janeyx99/245/orig -> origin/gh/janeyx99/245/orig 2025-06-01T20:58:07.3281911Z * [new branch] gh/janeyx99/246/base -> origin/gh/janeyx99/246/base 2025-06-01T20:58:07.3282652Z * [new branch] gh/janeyx99/246/head -> origin/gh/janeyx99/246/head 2025-06-01T20:58:07.3283265Z * [new branch] gh/janeyx99/246/orig -> origin/gh/janeyx99/246/orig 2025-06-01T20:58:07.3283896Z * [new branch] gh/janeyx99/247/base -> origin/gh/janeyx99/247/base 2025-06-01T20:58:07.3284508Z * [new branch] gh/janeyx99/247/head -> origin/gh/janeyx99/247/head 2025-06-01T20:58:07.3285101Z * [new branch] gh/janeyx99/247/orig -> origin/gh/janeyx99/247/orig 2025-06-01T20:58:07.3285723Z * [new branch] gh/janeyx99/248/base -> origin/gh/janeyx99/248/base 2025-06-01T20:58:07.3286304Z * [new branch] gh/janeyx99/248/head -> origin/gh/janeyx99/248/head 2025-06-01T20:58:07.3286936Z * [new branch] gh/janeyx99/248/orig -> origin/gh/janeyx99/248/orig 2025-06-01T20:58:07.3287565Z * [new branch] gh/janeyx99/249/base -> origin/gh/janeyx99/249/base 2025-06-01T20:58:07.3288168Z * [new branch] gh/janeyx99/249/head -> origin/gh/janeyx99/249/head 2025-06-01T20:58:07.3708009Z * [new branch] gh/janeyx99/249/orig -> origin/gh/janeyx99/249/orig 2025-06-01T20:58:07.3708582Z * [new branch] gh/janeyx99/250/base -> origin/gh/janeyx99/250/base 2025-06-01T20:58:07.3709089Z * [new branch] gh/janeyx99/250/head -> origin/gh/janeyx99/250/head 2025-06-01T20:58:07.3709584Z * [new branch] gh/janeyx99/250/orig -> origin/gh/janeyx99/250/orig 2025-06-01T20:58:07.3710127Z * [new branch] gh/janeyx99/88/base -> origin/gh/janeyx99/88/base 2025-06-01T20:58:07.3710627Z * [new branch] gh/janeyx99/88/head -> origin/gh/janeyx99/88/head 2025-06-01T20:58:07.3711119Z * [new branch] gh/janeyx99/88/orig -> origin/gh/janeyx99/88/orig 2025-06-01T20:58:07.3711739Z * [new branch] gh/jansel/360/base -> origin/gh/jansel/360/base 2025-06-01T20:58:07.3712233Z * [new branch] gh/jansel/360/head -> origin/gh/jansel/360/head 2025-06-01T20:58:07.3712717Z * [new branch] gh/jansel/451/base -> origin/gh/jansel/451/base 2025-06-01T20:58:07.3713191Z * [new branch] gh/jansel/451/head -> origin/gh/jansel/451/head 2025-06-01T20:58:07.3713672Z * [new branch] gh/jansel/451/orig -> origin/gh/jansel/451/orig 2025-06-01T20:58:07.3714155Z * [new branch] gh/jansel/462/base -> origin/gh/jansel/462/base 2025-06-01T20:58:07.3714624Z * [new branch] gh/jansel/462/head -> origin/gh/jansel/462/head 2025-06-01T20:58:07.3715099Z * [new branch] gh/jansel/462/orig -> origin/gh/jansel/462/orig 2025-06-01T20:58:07.3715570Z * [new branch] gh/jansel/513/base -> origin/gh/jansel/513/base 2025-06-01T20:58:07.3716063Z * [new branch] gh/jansel/513/head -> origin/gh/jansel/513/head 2025-06-01T20:58:07.3716543Z * [new branch] gh/jansel/513/orig -> origin/gh/jansel/513/orig 2025-06-01T20:58:07.3717059Z * [new branch] gh/jansel/514/base -> origin/gh/jansel/514/base 2025-06-01T20:58:07.3717587Z * [new branch] gh/jansel/514/head -> origin/gh/jansel/514/head 2025-06-01T20:58:07.3718063Z * [new branch] gh/jansel/514/orig -> origin/gh/jansel/514/orig 2025-06-01T20:58:07.3718537Z * [new branch] gh/jansel/515/base -> origin/gh/jansel/515/base 2025-06-01T20:58:07.3719011Z * [new branch] gh/jansel/515/head -> origin/gh/jansel/515/head 2025-06-01T20:58:07.3719496Z * [new branch] gh/jansel/515/orig -> origin/gh/jansel/515/orig 2025-06-01T20:58:07.3719975Z * [new branch] gh/jansel/516/base -> origin/gh/jansel/516/base 2025-06-01T20:58:07.3720782Z * [new branch] gh/jansel/516/head -> origin/gh/jansel/516/head 2025-06-01T20:58:07.3721267Z * [new branch] gh/jansel/516/orig -> origin/gh/jansel/516/orig 2025-06-01T20:58:07.3721742Z * [new branch] gh/jansel/517/base -> origin/gh/jansel/517/base 2025-06-01T20:58:07.3722226Z * [new branch] gh/jansel/517/head -> origin/gh/jansel/517/head 2025-06-01T20:58:07.3722762Z * [new branch] gh/jansel/517/orig -> origin/gh/jansel/517/orig 2025-06-01T20:58:07.3723285Z * [new branch] gh/jansel/518/base -> origin/gh/jansel/518/base 2025-06-01T20:58:07.3723763Z * [new branch] gh/jansel/518/head -> origin/gh/jansel/518/head 2025-06-01T20:58:07.3724232Z * [new branch] gh/jansel/518/orig -> origin/gh/jansel/518/orig 2025-06-01T20:58:07.3724759Z * [new branch] gh/jbschlosser/208/base -> origin/gh/jbschlosser/208/base 2025-06-01T20:58:07.3725327Z * [new branch] gh/jbschlosser/208/head -> origin/gh/jbschlosser/208/head 2025-06-01T20:58:07.3725861Z * [new branch] gh/jbschlosser/208/orig -> origin/gh/jbschlosser/208/orig 2025-06-01T20:58:07.3726399Z * [new branch] gh/jbschlosser/214/base -> origin/gh/jbschlosser/214/base 2025-06-01T20:58:07.3726920Z * [new branch] gh/jbschlosser/214/head -> origin/gh/jbschlosser/214/head 2025-06-01T20:58:07.3727458Z * [new branch] gh/jbschlosser/214/orig -> origin/gh/jbschlosser/214/orig 2025-06-01T20:58:07.3727999Z * [new branch] gh/jbschlosser/226/base -> origin/gh/jbschlosser/226/base 2025-06-01T20:58:07.3728575Z * [new branch] gh/jbschlosser/226/head -> origin/gh/jbschlosser/226/head 2025-06-01T20:58:07.3729158Z * [new branch] gh/jbschlosser/226/orig -> origin/gh/jbschlosser/226/orig 2025-06-01T20:58:07.3729691Z * [new branch] gh/jbschlosser/228/base -> origin/gh/jbschlosser/228/base 2025-06-01T20:58:07.3730229Z * [new branch] gh/jbschlosser/228/head -> origin/gh/jbschlosser/228/head 2025-06-01T20:58:07.3730749Z * [new branch] gh/jbschlosser/228/orig -> origin/gh/jbschlosser/228/orig 2025-06-01T20:58:07.3731284Z * [new branch] gh/jbschlosser/229/base -> origin/gh/jbschlosser/229/base 2025-06-01T20:58:07.4148005Z * [new branch] gh/jbschlosser/229/head -> origin/gh/jbschlosser/229/head 2025-06-01T20:58:07.4148592Z * [new branch] gh/jbschlosser/229/orig -> origin/gh/jbschlosser/229/orig 2025-06-01T20:58:07.4149148Z * [new branch] gh/jbschlosser/232/base -> origin/gh/jbschlosser/232/base 2025-06-01T20:58:07.4149715Z * [new branch] gh/jbschlosser/232/head -> origin/gh/jbschlosser/232/head 2025-06-01T20:58:07.4150344Z * [new branch] gh/jbschlosser/232/orig -> origin/gh/jbschlosser/232/orig 2025-06-01T20:58:07.4150913Z * [new branch] gh/jbschlosser/233/base -> origin/gh/jbschlosser/233/base 2025-06-01T20:58:07.4151445Z * [new branch] gh/jbschlosser/233/head -> origin/gh/jbschlosser/233/head 2025-06-01T20:58:07.4152035Z * [new branch] gh/jbschlosser/233/orig -> origin/gh/jbschlosser/233/orig 2025-06-01T20:58:07.4152627Z * [new branch] gh/jbschlosser/234/base -> origin/gh/jbschlosser/234/base 2025-06-01T20:58:07.4153158Z * [new branch] gh/jbschlosser/234/head -> origin/gh/jbschlosser/234/head 2025-06-01T20:58:07.4153692Z * [new branch] gh/jbschlosser/234/orig -> origin/gh/jbschlosser/234/orig 2025-06-01T20:58:07.4154219Z * [new branch] gh/jbschlosser/235/base -> origin/gh/jbschlosser/235/base 2025-06-01T20:58:07.4154753Z * [new branch] gh/jbschlosser/235/head -> origin/gh/jbschlosser/235/head 2025-06-01T20:58:07.4155614Z * [new branch] gh/jbschlosser/235/orig -> origin/gh/jbschlosser/235/orig 2025-06-01T20:58:07.4156144Z * [new branch] gh/jbschlosser/236/base -> origin/gh/jbschlosser/236/base 2025-06-01T20:58:07.4156688Z * [new branch] gh/jbschlosser/236/head -> origin/gh/jbschlosser/236/head 2025-06-01T20:58:07.4157218Z * [new branch] gh/jbschlosser/236/orig -> origin/gh/jbschlosser/236/orig 2025-06-01T20:58:07.4157844Z * [new branch] gh/jbschlosser/237/base -> origin/gh/jbschlosser/237/base 2025-06-01T20:58:07.4158402Z * [new branch] gh/jbschlosser/237/head -> origin/gh/jbschlosser/237/head 2025-06-01T20:58:07.4158931Z * [new branch] gh/jbschlosser/237/orig -> origin/gh/jbschlosser/237/orig 2025-06-01T20:58:07.4159463Z * [new branch] gh/jbschlosser/238/base -> origin/gh/jbschlosser/238/base 2025-06-01T20:58:07.4160001Z * [new branch] gh/jbschlosser/238/head -> origin/gh/jbschlosser/238/head 2025-06-01T20:58:07.4160553Z * [new branch] gh/jbschlosser/238/orig -> origin/gh/jbschlosser/238/orig 2025-06-01T20:58:07.4161086Z * [new branch] gh/jbschlosser/239/base -> origin/gh/jbschlosser/239/base 2025-06-01T20:58:07.4161609Z * [new branch] gh/jbschlosser/239/head -> origin/gh/jbschlosser/239/head 2025-06-01T20:58:07.4162149Z * [new branch] gh/jbschlosser/239/orig -> origin/gh/jbschlosser/239/orig 2025-06-01T20:58:07.4162676Z * [new branch] gh/jbschlosser/240/base -> origin/gh/jbschlosser/240/base 2025-06-01T20:58:07.4163268Z * [new branch] gh/jbschlosser/240/head -> origin/gh/jbschlosser/240/head 2025-06-01T20:58:07.4163840Z * [new branch] gh/jbschlosser/240/orig -> origin/gh/jbschlosser/240/orig 2025-06-01T20:58:07.4164379Z * [new branch] gh/jbschlosser/241/base -> origin/gh/jbschlosser/241/base 2025-06-01T20:58:07.4164917Z * [new branch] gh/jbschlosser/241/head -> origin/gh/jbschlosser/241/head 2025-06-01T20:58:07.4165446Z * [new branch] gh/jbschlosser/241/orig -> origin/gh/jbschlosser/241/orig 2025-06-01T20:58:07.4165980Z * [new branch] gh/jbschlosser/242/base -> origin/gh/jbschlosser/242/base 2025-06-01T20:58:07.4166505Z * [new branch] gh/jbschlosser/242/head -> origin/gh/jbschlosser/242/head 2025-06-01T20:58:07.4167046Z * [new branch] gh/jbschlosser/242/orig -> origin/gh/jbschlosser/242/orig 2025-06-01T20:58:07.4167584Z * [new branch] gh/jbschlosser/243/base -> origin/gh/jbschlosser/243/base 2025-06-01T20:58:07.4168105Z * [new branch] gh/jbschlosser/243/head -> origin/gh/jbschlosser/243/head 2025-06-01T20:58:07.4168641Z * [new branch] gh/jbschlosser/243/orig -> origin/gh/jbschlosser/243/orig 2025-06-01T20:58:07.4169221Z * [new branch] gh/jbschlosser/244/base -> origin/gh/jbschlosser/244/base 2025-06-01T20:58:07.4169812Z * [new branch] gh/jbschlosser/244/head -> origin/gh/jbschlosser/244/head 2025-06-01T20:58:07.4170345Z * [new branch] gh/jbschlosser/244/orig -> origin/gh/jbschlosser/244/orig 2025-06-01T20:58:07.4170870Z * [new branch] gh/jbschlosser/245/base -> origin/gh/jbschlosser/245/base 2025-06-01T20:58:07.4171400Z * [new branch] gh/jbschlosser/245/head -> origin/gh/jbschlosser/245/head 2025-06-01T20:58:07.4171929Z * [new branch] gh/jbschlosser/245/orig -> origin/gh/jbschlosser/245/orig 2025-06-01T20:58:07.4172458Z * [new branch] gh/jbschlosser/246/base -> origin/gh/jbschlosser/246/base 2025-06-01T20:58:07.4603291Z * [new branch] gh/jbschlosser/246/head -> origin/gh/jbschlosser/246/head 2025-06-01T20:58:07.4603838Z * [new branch] gh/jbschlosser/246/orig -> origin/gh/jbschlosser/246/orig 2025-06-01T20:58:07.4604691Z * [new branch] gh/jbschlosser/247/base -> origin/gh/jbschlosser/247/base 2025-06-01T20:58:07.4605237Z * [new branch] gh/jbschlosser/247/head -> origin/gh/jbschlosser/247/head 2025-06-01T20:58:07.4605762Z * [new branch] gh/jbschlosser/247/orig -> origin/gh/jbschlosser/247/orig 2025-06-01T20:58:07.4606302Z * [new branch] gh/jbschlosser/248/base -> origin/gh/jbschlosser/248/base 2025-06-01T20:58:07.4606832Z * [new branch] gh/jbschlosser/248/head -> origin/gh/jbschlosser/248/head 2025-06-01T20:58:07.4607376Z * [new branch] gh/jbschlosser/248/orig -> origin/gh/jbschlosser/248/orig 2025-06-01T20:58:07.4607913Z * [new branch] gh/jerryzh168/855/base -> origin/gh/jerryzh168/855/base 2025-06-01T20:58:07.4608476Z * [new branch] gh/jerryzh168/855/head -> origin/gh/jerryzh168/855/head 2025-06-01T20:58:07.4609042Z * [new branch] gh/jerryzh168/855/orig -> origin/gh/jerryzh168/855/orig 2025-06-01T20:58:07.4609551Z * [new branch] gh/jerryzh168/856/base -> origin/gh/jerryzh168/856/base 2025-06-01T20:58:07.4610075Z * [new branch] gh/jerryzh168/856/head -> origin/gh/jerryzh168/856/head 2025-06-01T20:58:07.4610586Z * [new branch] gh/jerryzh168/856/orig -> origin/gh/jerryzh168/856/orig 2025-06-01T20:58:07.4611096Z * [new branch] gh/jiayisunx/57/base -> origin/gh/jiayisunx/57/base 2025-06-01T20:58:07.4611605Z * [new branch] gh/jiayisunx/57/head -> origin/gh/jiayisunx/57/head 2025-06-01T20:58:07.4612103Z * [new branch] gh/jiayisunx/57/orig -> origin/gh/jiayisunx/57/orig 2025-06-01T20:58:07.4612604Z * [new branch] gh/jiayisunx/58/base -> origin/gh/jiayisunx/58/base 2025-06-01T20:58:07.4613098Z * [new branch] gh/jiayisunx/58/head -> origin/gh/jiayisunx/58/head 2025-06-01T20:58:07.4613608Z * [new branch] gh/jiayisunx/58/orig -> origin/gh/jiayisunx/58/orig 2025-06-01T20:58:07.4614159Z * [new branch] gh/jiayisunx/59/base -> origin/gh/jiayisunx/59/base 2025-06-01T20:58:07.4614700Z * [new branch] gh/jiayisunx/59/head -> origin/gh/jiayisunx/59/head 2025-06-01T20:58:07.4615204Z * [new branch] gh/jiayisunx/59/orig -> origin/gh/jiayisunx/59/orig 2025-06-01T20:58:07.4615698Z * [new branch] gh/jiayisunx/61/base -> origin/gh/jiayisunx/61/base 2025-06-01T20:58:07.4616197Z * [new branch] gh/jiayisunx/61/head -> origin/gh/jiayisunx/61/head 2025-06-01T20:58:07.4616701Z * [new branch] gh/jiayisunx/61/orig -> origin/gh/jiayisunx/61/orig 2025-06-01T20:58:07.4617198Z * [new branch] gh/jiayisunx/63/base -> origin/gh/jiayisunx/63/base 2025-06-01T20:58:07.4617705Z * [new branch] gh/jiayisunx/63/head -> origin/gh/jiayisunx/63/head 2025-06-01T20:58:07.4618202Z * [new branch] gh/jiayisunx/63/orig -> origin/gh/jiayisunx/63/orig 2025-06-01T20:58:07.4618720Z * [new branch] gh/jjwu@meta.com/1/base -> origin/gh/jjwu@meta.com/1/base 2025-06-01T20:58:07.4619242Z * [new branch] gh/jjwu@meta.com/1/head -> origin/gh/jjwu@meta.com/1/head 2025-06-01T20:58:07.4619808Z * [new branch] gh/justinchuby/111/base -> origin/gh/justinchuby/111/base 2025-06-01T20:58:07.4620396Z * [new branch] gh/justinchuby/111/head -> origin/gh/justinchuby/111/head 2025-06-01T20:58:07.4620923Z * [new branch] gh/justinchuby/111/orig -> origin/gh/justinchuby/111/orig 2025-06-01T20:58:07.4621464Z * [new branch] gh/kurtamohler/31/base -> origin/gh/kurtamohler/31/base 2025-06-01T20:58:07.4621981Z * [new branch] gh/kurtamohler/31/head -> origin/gh/kurtamohler/31/head 2025-06-01T20:58:07.4622614Z * [new branch] gh/kurtamohler/31/orig -> origin/gh/kurtamohler/31/orig 2025-06-01T20:58:07.4623246Z * [new branch] gh/kurtamohler/32/base -> origin/gh/kurtamohler/32/base 2025-06-01T20:58:07.4623770Z * [new branch] gh/kurtamohler/32/head -> origin/gh/kurtamohler/32/head 2025-06-01T20:58:07.4624302Z * [new branch] gh/kurtamohler/32/orig -> origin/gh/kurtamohler/32/orig 2025-06-01T20:58:07.4624821Z * [new branch] gh/kurtamohler/33/base -> origin/gh/kurtamohler/33/base 2025-06-01T20:58:07.4625402Z * [new branch] gh/kurtamohler/33/head -> origin/gh/kurtamohler/33/head 2025-06-01T20:58:07.4625970Z * [new branch] gh/kurtamohler/33/orig -> origin/gh/kurtamohler/33/orig 2025-06-01T20:58:07.4626485Z * [new branch] gh/kurtamohler/34/base -> origin/gh/kurtamohler/34/base 2025-06-01T20:58:07.4627011Z * [new branch] gh/kurtamohler/34/head -> origin/gh/kurtamohler/34/head 2025-06-01T20:58:07.4627528Z * [new branch] gh/kurtamohler/34/orig -> origin/gh/kurtamohler/34/orig 2025-06-01T20:58:07.5061128Z * [new branch] gh/kwen2501/1/base -> origin/gh/kwen2501/1/base 2025-06-01T20:58:07.5061656Z * [new branch] gh/kwen2501/1/head -> origin/gh/kwen2501/1/head 2025-06-01T20:58:07.5062151Z * [new branch] gh/kwen2501/128/base -> origin/gh/kwen2501/128/base 2025-06-01T20:58:07.5062647Z * [new branch] gh/kwen2501/128/head -> origin/gh/kwen2501/128/head 2025-06-01T20:58:07.5063143Z * [new branch] gh/kwen2501/128/orig -> origin/gh/kwen2501/128/orig 2025-06-01T20:58:07.5063623Z * [new branch] gh/kwen2501/130/base -> origin/gh/kwen2501/130/base 2025-06-01T20:58:07.5064111Z * [new branch] gh/kwen2501/130/head -> origin/gh/kwen2501/130/head 2025-06-01T20:58:07.5064635Z * [new branch] gh/kwen2501/130/orig -> origin/gh/kwen2501/130/orig 2025-06-01T20:58:07.5065182Z * [new branch] gh/kwen2501/131/base -> origin/gh/kwen2501/131/base 2025-06-01T20:58:07.5065666Z * [new branch] gh/kwen2501/131/head -> origin/gh/kwen2501/131/head 2025-06-01T20:58:07.5066142Z * [new branch] gh/kwen2501/131/orig -> origin/gh/kwen2501/131/orig 2025-06-01T20:58:07.5066628Z * [new branch] gh/kwen2501/132/base -> origin/gh/kwen2501/132/base 2025-06-01T20:58:07.5067103Z * [new branch] gh/kwen2501/132/head -> origin/gh/kwen2501/132/head 2025-06-01T20:58:07.5067586Z * [new branch] gh/kwen2501/132/orig -> origin/gh/kwen2501/132/orig 2025-06-01T20:58:07.5068068Z * [new branch] gh/kwen2501/134/base -> origin/gh/kwen2501/134/base 2025-06-01T20:58:07.5068554Z * [new branch] gh/kwen2501/134/head -> origin/gh/kwen2501/134/head 2025-06-01T20:58:07.5069051Z * [new branch] gh/kwen2501/134/orig -> origin/gh/kwen2501/134/orig 2025-06-01T20:58:07.5069524Z * [new branch] gh/kwen2501/135/base -> origin/gh/kwen2501/135/base 2025-06-01T20:58:07.5070090Z * [new branch] gh/kwen2501/135/head -> origin/gh/kwen2501/135/head 2025-06-01T20:58:07.5070617Z * [new branch] gh/kwen2501/135/orig -> origin/gh/kwen2501/135/orig 2025-06-01T20:58:07.5071152Z * [new branch] gh/kwen2501/136/base -> origin/gh/kwen2501/136/base 2025-06-01T20:58:07.5071637Z * [new branch] gh/kwen2501/136/head -> origin/gh/kwen2501/136/head 2025-06-01T20:58:07.5072121Z * [new branch] gh/kwen2501/136/orig -> origin/gh/kwen2501/136/orig 2025-06-01T20:58:07.5072599Z * [new branch] gh/kwen2501/137/base -> origin/gh/kwen2501/137/base 2025-06-01T20:58:07.5073835Z * [new branch] gh/kwen2501/137/head -> origin/gh/kwen2501/137/head 2025-06-01T20:58:07.5074817Z * [new branch] gh/kwen2501/137/orig -> origin/gh/kwen2501/137/orig 2025-06-01T20:58:07.5075316Z * [new branch] gh/kwen2501/138/base -> origin/gh/kwen2501/138/base 2025-06-01T20:58:07.5075803Z * [new branch] gh/kwen2501/138/head -> origin/gh/kwen2501/138/head 2025-06-01T20:58:07.5076354Z * [new branch] gh/kwen2501/138/orig -> origin/gh/kwen2501/138/orig 2025-06-01T20:58:07.5076880Z * [new branch] gh/kwen2501/141/base -> origin/gh/kwen2501/141/base 2025-06-01T20:58:07.5077373Z * [new branch] gh/kwen2501/141/head -> origin/gh/kwen2501/141/head 2025-06-01T20:58:07.5077857Z * [new branch] gh/kwen2501/141/orig -> origin/gh/kwen2501/141/orig 2025-06-01T20:58:07.5078351Z * [new branch] gh/kwen2501/142/base -> origin/gh/kwen2501/142/base 2025-06-01T20:58:07.5078856Z * [new branch] gh/kwen2501/142/head -> origin/gh/kwen2501/142/head 2025-06-01T20:58:07.5079338Z * [new branch] gh/kwen2501/142/orig -> origin/gh/kwen2501/142/orig 2025-06-01T20:58:07.5079821Z * [new branch] gh/kwen2501/143/base -> origin/gh/kwen2501/143/base 2025-06-01T20:58:07.5080299Z * [new branch] gh/kwen2501/143/head -> origin/gh/kwen2501/143/head 2025-06-01T20:58:07.5080779Z * [new branch] gh/kwen2501/143/orig -> origin/gh/kwen2501/143/orig 2025-06-01T20:58:07.5081265Z * [new branch] gh/kwen2501/144/base -> origin/gh/kwen2501/144/base 2025-06-01T20:58:07.5081740Z * [new branch] gh/kwen2501/144/head -> origin/gh/kwen2501/144/head 2025-06-01T20:58:07.5082279Z * [new branch] gh/kwen2501/144/orig -> origin/gh/kwen2501/144/orig 2025-06-01T20:58:07.5082806Z * [new branch] gh/kwen2501/145/base -> origin/gh/kwen2501/145/base 2025-06-01T20:58:07.5083300Z * [new branch] gh/kwen2501/145/head -> origin/gh/kwen2501/145/head 2025-06-01T20:58:07.5083790Z * [new branch] gh/kwen2501/145/orig -> origin/gh/kwen2501/145/orig 2025-06-01T20:58:07.5084265Z * [new branch] gh/kwen2501/146/base -> origin/gh/kwen2501/146/base 2025-06-01T20:58:07.5084758Z * [new branch] gh/kwen2501/146/head -> origin/gh/kwen2501/146/head 2025-06-01T20:58:07.5085235Z * [new branch] gh/kwen2501/146/orig -> origin/gh/kwen2501/146/orig 2025-06-01T20:58:07.5482312Z * [new branch] gh/kwen2501/147/base -> origin/gh/kwen2501/147/base 2025-06-01T20:58:07.5482829Z * [new branch] gh/kwen2501/147/head -> origin/gh/kwen2501/147/head 2025-06-01T20:58:07.5483325Z * [new branch] gh/kwen2501/147/orig -> origin/gh/kwen2501/147/orig 2025-06-01T20:58:07.5483838Z * [new branch] gh/kwen2501/148/base -> origin/gh/kwen2501/148/base 2025-06-01T20:58:07.5484343Z * [new branch] gh/kwen2501/148/head -> origin/gh/kwen2501/148/head 2025-06-01T20:58:07.5484832Z * [new branch] gh/kwen2501/148/orig -> origin/gh/kwen2501/148/orig 2025-06-01T20:58:07.5485327Z * [new branch] gh/kwen2501/149/base -> origin/gh/kwen2501/149/base 2025-06-01T20:58:07.5485814Z * [new branch] gh/kwen2501/149/head -> origin/gh/kwen2501/149/head 2025-06-01T20:58:07.5486309Z * [new branch] gh/kwen2501/149/orig -> origin/gh/kwen2501/149/orig 2025-06-01T20:58:07.5486792Z * [new branch] gh/kwen2501/15/base -> origin/gh/kwen2501/15/base 2025-06-01T20:58:07.5487290Z * [new branch] gh/kwen2501/15/head -> origin/gh/kwen2501/15/head 2025-06-01T20:58:07.5487773Z * [new branch] gh/kwen2501/150/base -> origin/gh/kwen2501/150/base 2025-06-01T20:58:07.5488458Z * [new branch] gh/kwen2501/150/head -> origin/gh/kwen2501/150/head 2025-06-01T20:58:07.5489065Z * [new branch] gh/kwen2501/150/orig -> origin/gh/kwen2501/150/orig 2025-06-01T20:58:07.5489548Z * [new branch] gh/kwen2501/151/base -> origin/gh/kwen2501/151/base 2025-06-01T20:58:07.5490041Z * [new branch] gh/kwen2501/151/head -> origin/gh/kwen2501/151/head 2025-06-01T20:58:07.5490524Z * [new branch] gh/kwen2501/151/orig -> origin/gh/kwen2501/151/orig 2025-06-01T20:58:07.5491021Z * [new branch] gh/kwen2501/152/base -> origin/gh/kwen2501/152/base 2025-06-01T20:58:07.5491514Z * [new branch] gh/kwen2501/152/head -> origin/gh/kwen2501/152/head 2025-06-01T20:58:07.5491993Z * [new branch] gh/kwen2501/152/orig -> origin/gh/kwen2501/152/orig 2025-06-01T20:58:07.5492487Z * [new branch] gh/kwen2501/153/base -> origin/gh/kwen2501/153/base 2025-06-01T20:58:07.5492970Z * [new branch] gh/kwen2501/153/head -> origin/gh/kwen2501/153/head 2025-06-01T20:58:07.5493463Z * [new branch] gh/kwen2501/153/orig -> origin/gh/kwen2501/153/orig 2025-06-01T20:58:07.5493951Z * [new branch] gh/kwen2501/154/base -> origin/gh/kwen2501/154/base 2025-06-01T20:58:07.5494432Z * [new branch] gh/kwen2501/154/head -> origin/gh/kwen2501/154/head 2025-06-01T20:58:07.5494916Z * [new branch] gh/kwen2501/154/orig -> origin/gh/kwen2501/154/orig 2025-06-01T20:58:07.5495401Z * [new branch] gh/kwen2501/155/base -> origin/gh/kwen2501/155/base 2025-06-01T20:58:07.5495890Z * [new branch] gh/kwen2501/155/head -> origin/gh/kwen2501/155/head 2025-06-01T20:58:07.5496373Z * [new branch] gh/kwen2501/155/orig -> origin/gh/kwen2501/155/orig 2025-06-01T20:58:07.5496864Z * [new branch] gh/kwen2501/156/base -> origin/gh/kwen2501/156/base 2025-06-01T20:58:07.5497367Z * [new branch] gh/kwen2501/156/head -> origin/gh/kwen2501/156/head 2025-06-01T20:58:07.5497850Z * [new branch] gh/kwen2501/156/orig -> origin/gh/kwen2501/156/orig 2025-06-01T20:58:07.5498348Z * [new branch] gh/kwen2501/157/base -> origin/gh/kwen2501/157/base 2025-06-01T20:58:07.5498825Z * [new branch] gh/kwen2501/157/head -> origin/gh/kwen2501/157/head 2025-06-01T20:58:07.5499320Z * [new branch] gh/kwen2501/157/orig -> origin/gh/kwen2501/157/orig 2025-06-01T20:58:07.5499804Z * [new branch] gh/kwen2501/158/base -> origin/gh/kwen2501/158/base 2025-06-01T20:58:07.5500283Z * [new branch] gh/kwen2501/158/head -> origin/gh/kwen2501/158/head 2025-06-01T20:58:07.5500776Z * [new branch] gh/kwen2501/158/orig -> origin/gh/kwen2501/158/orig 2025-06-01T20:58:07.5501266Z * [new branch] gh/kwen2501/159/base -> origin/gh/kwen2501/159/base 2025-06-01T20:58:07.5501764Z * [new branch] gh/kwen2501/159/head -> origin/gh/kwen2501/159/head 2025-06-01T20:58:07.5502259Z * [new branch] gh/kwen2501/159/orig -> origin/gh/kwen2501/159/orig 2025-06-01T20:58:07.5502737Z * [new branch] gh/kwen2501/160/base -> origin/gh/kwen2501/160/base 2025-06-01T20:58:07.5503227Z * [new branch] gh/kwen2501/160/head -> origin/gh/kwen2501/160/head 2025-06-01T20:58:07.5503712Z * [new branch] gh/kwen2501/160/orig -> origin/gh/kwen2501/160/orig 2025-06-01T20:58:07.5504223Z * [new branch] gh/kwen2501/161/base -> origin/gh/kwen2501/161/base 2025-06-01T20:58:07.5504855Z * [new branch] gh/kwen2501/161/head -> origin/gh/kwen2501/161/head 2025-06-01T20:58:07.5924801Z * [new branch] gh/kwen2501/162/base -> origin/gh/kwen2501/162/base 2025-06-01T20:58:07.5925513Z * [new branch] gh/kwen2501/162/head -> origin/gh/kwen2501/162/head 2025-06-01T20:58:07.5926154Z * [new branch] gh/kwen2501/162/orig -> origin/gh/kwen2501/162/orig 2025-06-01T20:58:07.5926641Z * [new branch] gh/kwen2501/163/base -> origin/gh/kwen2501/163/base 2025-06-01T20:58:07.5927145Z * [new branch] gh/kwen2501/163/head -> origin/gh/kwen2501/163/head 2025-06-01T20:58:07.5927640Z * [new branch] gh/kwen2501/163/orig -> origin/gh/kwen2501/163/orig 2025-06-01T20:58:07.5928156Z * [new branch] gh/laithsakka/113/base -> origin/gh/laithsakka/113/base 2025-06-01T20:58:07.5928695Z * [new branch] gh/laithsakka/113/head -> origin/gh/laithsakka/113/head 2025-06-01T20:58:07.5929214Z * [new branch] gh/laithsakka/113/orig -> origin/gh/laithsakka/113/orig 2025-06-01T20:58:07.5929744Z * [new branch] gh/laithsakka/114/base -> origin/gh/laithsakka/114/base 2025-06-01T20:58:07.5930297Z * [new branch] gh/laithsakka/114/head -> origin/gh/laithsakka/114/head 2025-06-01T20:58:07.5930820Z * [new branch] gh/laithsakka/114/orig -> origin/gh/laithsakka/114/orig 2025-06-01T20:58:07.5931346Z * [new branch] gh/laithsakka/117/base -> origin/gh/laithsakka/117/base 2025-06-01T20:58:07.5931860Z * [new branch] gh/laithsakka/117/head -> origin/gh/laithsakka/117/head 2025-06-01T20:58:07.5932382Z * [new branch] gh/laithsakka/117/orig -> origin/gh/laithsakka/117/orig 2025-06-01T20:58:07.5932906Z * [new branch] gh/laithsakka/118/base -> origin/gh/laithsakka/118/base 2025-06-01T20:58:07.5933423Z * [new branch] gh/laithsakka/118/head -> origin/gh/laithsakka/118/head 2025-06-01T20:58:07.5933946Z * [new branch] gh/laithsakka/118/orig -> origin/gh/laithsakka/118/orig 2025-06-01T20:58:07.5934467Z * [new branch] gh/laithsakka/119/base -> origin/gh/laithsakka/119/base 2025-06-01T20:58:07.5934996Z * [new branch] gh/laithsakka/119/head -> origin/gh/laithsakka/119/head 2025-06-01T20:58:07.5935520Z * [new branch] gh/laithsakka/119/orig -> origin/gh/laithsakka/119/orig 2025-06-01T20:58:07.5936044Z * [new branch] gh/laithsakka/120/base -> origin/gh/laithsakka/120/base 2025-06-01T20:58:07.5936563Z * [new branch] gh/laithsakka/120/head -> origin/gh/laithsakka/120/head 2025-06-01T20:58:07.5937078Z * [new branch] gh/laithsakka/120/orig -> origin/gh/laithsakka/120/orig 2025-06-01T20:58:07.5937600Z * [new branch] gh/laithsakka/122/base -> origin/gh/laithsakka/122/base 2025-06-01T20:58:07.5938124Z * [new branch] gh/laithsakka/122/head -> origin/gh/laithsakka/122/head 2025-06-01T20:58:07.5938645Z * [new branch] gh/laithsakka/122/orig -> origin/gh/laithsakka/122/orig 2025-06-01T20:58:07.5939179Z * [new branch] gh/laithsakka/124/base -> origin/gh/laithsakka/124/base 2025-06-01T20:58:07.5939698Z * [new branch] gh/laithsakka/124/head -> origin/gh/laithsakka/124/head 2025-06-01T20:58:07.5940226Z * [new branch] gh/laithsakka/124/orig -> origin/gh/laithsakka/124/orig 2025-06-01T20:58:07.5940750Z * [new branch] gh/laithsakka/127/base -> origin/gh/laithsakka/127/base 2025-06-01T20:58:07.5941268Z * [new branch] gh/laithsakka/127/head -> origin/gh/laithsakka/127/head 2025-06-01T20:58:07.5941797Z * [new branch] gh/laithsakka/127/orig -> origin/gh/laithsakka/127/orig 2025-06-01T20:58:07.5942315Z * [new branch] gh/laithsakka/132/base -> origin/gh/laithsakka/132/base 2025-06-01T20:58:07.5942843Z * [new branch] gh/laithsakka/132/head -> origin/gh/laithsakka/132/head 2025-06-01T20:58:07.5943471Z * [new branch] gh/laithsakka/132/orig -> origin/gh/laithsakka/132/orig 2025-06-01T20:58:07.5944108Z * [new branch] gh/laithsakka/137/base -> origin/gh/laithsakka/137/base 2025-06-01T20:58:07.5944637Z * [new branch] gh/laithsakka/137/head -> origin/gh/laithsakka/137/head 2025-06-01T20:58:07.5945147Z * [new branch] gh/laithsakka/137/orig -> origin/gh/laithsakka/137/orig 2025-06-01T20:58:07.5945671Z * [new branch] gh/laithsakka/138/base -> origin/gh/laithsakka/138/base 2025-06-01T20:58:07.5946189Z * [new branch] gh/laithsakka/138/head -> origin/gh/laithsakka/138/head 2025-06-01T20:58:07.5946716Z * [new branch] gh/laithsakka/138/orig -> origin/gh/laithsakka/138/orig 2025-06-01T20:58:07.5947248Z * [new branch] gh/laithsakka/140/base -> origin/gh/laithsakka/140/base 2025-06-01T20:58:07.5947764Z * [new branch] gh/laithsakka/140/head -> origin/gh/laithsakka/140/head 2025-06-01T20:58:07.5948304Z * [new branch] gh/laithsakka/140/orig -> origin/gh/laithsakka/140/orig 2025-06-01T20:58:07.5948819Z * [new branch] gh/laithsakka/141/base -> origin/gh/laithsakka/141/base 2025-06-01T20:58:07.6337746Z * [new branch] gh/laithsakka/141/head -> origin/gh/laithsakka/141/head 2025-06-01T20:58:07.6338324Z * [new branch] gh/laithsakka/141/orig -> origin/gh/laithsakka/141/orig 2025-06-01T20:58:07.6338844Z * [new branch] gh/laithsakka/143/base -> origin/gh/laithsakka/143/base 2025-06-01T20:58:07.6339370Z * [new branch] gh/laithsakka/143/head -> origin/gh/laithsakka/143/head 2025-06-01T20:58:07.6339892Z * [new branch] gh/laithsakka/143/orig -> origin/gh/laithsakka/143/orig 2025-06-01T20:58:07.6340408Z * [new branch] gh/laithsakka/144/base -> origin/gh/laithsakka/144/base 2025-06-01T20:58:07.6340950Z * [new branch] gh/laithsakka/144/head -> origin/gh/laithsakka/144/head 2025-06-01T20:58:07.6341474Z * [new branch] gh/laithsakka/144/orig -> origin/gh/laithsakka/144/orig 2025-06-01T20:58:07.6342007Z * [new branch] gh/laithsakka/145/base -> origin/gh/laithsakka/145/base 2025-06-01T20:58:07.6342546Z * [new branch] gh/laithsakka/145/head -> origin/gh/laithsakka/145/head 2025-06-01T20:58:07.6343058Z * [new branch] gh/laithsakka/145/orig -> origin/gh/laithsakka/145/orig 2025-06-01T20:58:07.6343582Z * [new branch] gh/laithsakka/152/base -> origin/gh/laithsakka/152/base 2025-06-01T20:58:07.6344093Z * [new branch] gh/laithsakka/152/head -> origin/gh/laithsakka/152/head 2025-06-01T20:58:07.6344618Z * [new branch] gh/laithsakka/152/orig -> origin/gh/laithsakka/152/orig 2025-06-01T20:58:07.6345133Z * [new branch] gh/laithsakka/154/base -> origin/gh/laithsakka/154/base 2025-06-01T20:58:07.6345671Z * [new branch] gh/laithsakka/154/head -> origin/gh/laithsakka/154/head 2025-06-01T20:58:07.6346195Z * [new branch] gh/laithsakka/154/orig -> origin/gh/laithsakka/154/orig 2025-06-01T20:58:07.6346714Z * [new branch] gh/laithsakka/155/base -> origin/gh/laithsakka/155/base 2025-06-01T20:58:07.6347234Z * [new branch] gh/laithsakka/155/head -> origin/gh/laithsakka/155/head 2025-06-01T20:58:07.6347751Z * [new branch] gh/laithsakka/155/orig -> origin/gh/laithsakka/155/orig 2025-06-01T20:58:07.6348281Z * [new branch] gh/laithsakka/156/base -> origin/gh/laithsakka/156/base 2025-06-01T20:58:07.6348802Z * [new branch] gh/laithsakka/156/head -> origin/gh/laithsakka/156/head 2025-06-01T20:58:07.6349322Z * [new branch] gh/laithsakka/156/orig -> origin/gh/laithsakka/156/orig 2025-06-01T20:58:07.6350065Z * [new branch] gh/laithsakka/157/base -> origin/gh/laithsakka/157/base 2025-06-01T20:58:07.6350694Z * [new branch] gh/laithsakka/157/head -> origin/gh/laithsakka/157/head 2025-06-01T20:58:07.6351218Z * [new branch] gh/laithsakka/157/orig -> origin/gh/laithsakka/157/orig 2025-06-01T20:58:07.6351753Z * [new branch] gh/laithsakka/158/base -> origin/gh/laithsakka/158/base 2025-06-01T20:58:07.6352266Z * [new branch] gh/laithsakka/158/head -> origin/gh/laithsakka/158/head 2025-06-01T20:58:07.6352800Z * [new branch] gh/laithsakka/158/orig -> origin/gh/laithsakka/158/orig 2025-06-01T20:58:07.6353311Z * [new branch] gh/laithsakka/159/base -> origin/gh/laithsakka/159/base 2025-06-01T20:58:07.6353838Z * [new branch] gh/laithsakka/159/head -> origin/gh/laithsakka/159/head 2025-06-01T20:58:07.6354363Z * [new branch] gh/laithsakka/159/orig -> origin/gh/laithsakka/159/orig 2025-06-01T20:58:07.6354885Z * [new branch] gh/laithsakka/160/base -> origin/gh/laithsakka/160/base 2025-06-01T20:58:07.6355406Z * [new branch] gh/laithsakka/160/head -> origin/gh/laithsakka/160/head 2025-06-01T20:58:07.6355924Z * [new branch] gh/laithsakka/160/orig -> origin/gh/laithsakka/160/orig 2025-06-01T20:58:07.6356450Z * [new branch] gh/laithsakka/161/base -> origin/gh/laithsakka/161/base 2025-06-01T20:58:07.6356975Z * [new branch] gh/laithsakka/161/head -> origin/gh/laithsakka/161/head 2025-06-01T20:58:07.6357491Z * [new branch] gh/laithsakka/161/orig -> origin/gh/laithsakka/161/orig 2025-06-01T20:58:07.6358013Z * [new branch] gh/laithsakka/162/base -> origin/gh/laithsakka/162/base 2025-06-01T20:58:07.6358522Z * [new branch] gh/laithsakka/162/head -> origin/gh/laithsakka/162/head 2025-06-01T20:58:07.6359054Z * [new branch] gh/laithsakka/162/orig -> origin/gh/laithsakka/162/orig 2025-06-01T20:58:07.6359576Z * [new branch] gh/laithsakka/163/base -> origin/gh/laithsakka/163/base 2025-06-01T20:58:07.6360100Z * [new branch] gh/laithsakka/163/head -> origin/gh/laithsakka/163/head 2025-06-01T20:58:07.6360626Z * [new branch] gh/laithsakka/163/orig -> origin/gh/laithsakka/163/orig 2025-06-01T20:58:07.6361140Z * [new branch] gh/laithsakka/164/base -> origin/gh/laithsakka/164/base 2025-06-01T20:58:07.6757718Z * [new branch] gh/laithsakka/164/head -> origin/gh/laithsakka/164/head 2025-06-01T20:58:07.6758347Z * [new branch] gh/laithsakka/164/orig -> origin/gh/laithsakka/164/orig 2025-06-01T20:58:07.6758976Z * [new branch] gh/laithsakka/165/base -> origin/gh/laithsakka/165/base 2025-06-01T20:58:07.6759545Z * [new branch] gh/laithsakka/165/head -> origin/gh/laithsakka/165/head 2025-06-01T20:58:07.6760168Z * [new branch] gh/laithsakka/165/orig -> origin/gh/laithsakka/165/orig 2025-06-01T20:58:07.6760776Z * [new branch] gh/laithsakka/166/base -> origin/gh/laithsakka/166/base 2025-06-01T20:58:07.6761391Z * [new branch] gh/laithsakka/166/head -> origin/gh/laithsakka/166/head 2025-06-01T20:58:07.6761909Z * [new branch] gh/laithsakka/166/orig -> origin/gh/laithsakka/166/orig 2025-06-01T20:58:07.6762432Z * [new branch] gh/laithsakka/167/base -> origin/gh/laithsakka/167/base 2025-06-01T20:58:07.6762945Z * [new branch] gh/laithsakka/167/head -> origin/gh/laithsakka/167/head 2025-06-01T20:58:07.6763469Z * [new branch] gh/laithsakka/167/orig -> origin/gh/laithsakka/167/orig 2025-06-01T20:58:07.6763992Z * [new branch] gh/laithsakka/168/base -> origin/gh/laithsakka/168/base 2025-06-01T20:58:07.6764700Z * [new branch] gh/laithsakka/168/head -> origin/gh/laithsakka/168/head 2025-06-01T20:58:07.6765349Z * [new branch] gh/laithsakka/168/orig -> origin/gh/laithsakka/168/orig 2025-06-01T20:58:07.6765873Z * [new branch] gh/laithsakka/169/base -> origin/gh/laithsakka/169/base 2025-06-01T20:58:07.6766408Z * [new branch] gh/laithsakka/169/head -> origin/gh/laithsakka/169/head 2025-06-01T20:58:07.6767028Z * [new branch] gh/laithsakka/169/orig -> origin/gh/laithsakka/169/orig 2025-06-01T20:58:07.6767598Z * [new branch] gh/laithsakka/170/base -> origin/gh/laithsakka/170/base 2025-06-01T20:58:07.6768161Z * [new branch] gh/laithsakka/170/head -> origin/gh/laithsakka/170/head 2025-06-01T20:58:07.6768779Z * [new branch] gh/laithsakka/170/orig -> origin/gh/laithsakka/170/orig 2025-06-01T20:58:07.6769351Z * [new branch] gh/laithsakka/171/base -> origin/gh/laithsakka/171/base 2025-06-01T20:58:07.6769966Z * [new branch] gh/laithsakka/171/head -> origin/gh/laithsakka/171/head 2025-06-01T20:58:07.6770581Z * [new branch] gh/laithsakka/171/orig -> origin/gh/laithsakka/171/orig 2025-06-01T20:58:07.6771154Z * [new branch] gh/laithsakka/172/base -> origin/gh/laithsakka/172/base 2025-06-01T20:58:07.6771678Z * [new branch] gh/laithsakka/172/head -> origin/gh/laithsakka/172/head 2025-06-01T20:58:07.6772202Z * [new branch] gh/laithsakka/172/orig -> origin/gh/laithsakka/172/orig 2025-06-01T20:58:07.6772715Z * [new branch] gh/laithsakka/173/base -> origin/gh/laithsakka/173/base 2025-06-01T20:58:07.6773243Z * [new branch] gh/laithsakka/173/head -> origin/gh/laithsakka/173/head 2025-06-01T20:58:07.6773766Z * [new branch] gh/laithsakka/173/orig -> origin/gh/laithsakka/173/orig 2025-06-01T20:58:07.6774292Z * [new branch] gh/laithsakka/174/base -> origin/gh/laithsakka/174/base 2025-06-01T20:58:07.6774816Z * [new branch] gh/laithsakka/174/head -> origin/gh/laithsakka/174/head 2025-06-01T20:58:07.6775333Z * [new branch] gh/laithsakka/174/orig -> origin/gh/laithsakka/174/orig 2025-06-01T20:58:07.6775853Z * [new branch] gh/laithsakka/175/base -> origin/gh/laithsakka/175/base 2025-06-01T20:58:07.6776424Z * [new branch] gh/laithsakka/175/head -> origin/gh/laithsakka/175/head 2025-06-01T20:58:07.6777012Z * [new branch] gh/laithsakka/175/orig -> origin/gh/laithsakka/175/orig 2025-06-01T20:58:07.6777603Z * [new branch] gh/laithsakka/176/base -> origin/gh/laithsakka/176/base 2025-06-01T20:58:07.6778185Z * [new branch] gh/laithsakka/176/head -> origin/gh/laithsakka/176/head 2025-06-01T20:58:07.6778777Z * [new branch] gh/laithsakka/176/orig -> origin/gh/laithsakka/176/orig 2025-06-01T20:58:07.6779389Z * [new branch] gh/laithsakka/177/base -> origin/gh/laithsakka/177/base 2025-06-01T20:58:07.6779960Z * [new branch] gh/laithsakka/177/head -> origin/gh/laithsakka/177/head 2025-06-01T20:58:07.6780484Z * [new branch] gh/laithsakka/177/orig -> origin/gh/laithsakka/177/orig 2025-06-01T20:58:07.6781002Z * [new branch] gh/laithsakka/178/base -> origin/gh/laithsakka/178/base 2025-06-01T20:58:07.6781524Z * [new branch] gh/laithsakka/178/head -> origin/gh/laithsakka/178/head 2025-06-01T20:58:07.6782054Z * [new branch] gh/laithsakka/178/orig -> origin/gh/laithsakka/178/orig 2025-06-01T20:58:07.6782572Z * [new branch] gh/laithsakka/179/base -> origin/gh/laithsakka/179/base 2025-06-01T20:58:07.6783094Z * [new branch] gh/laithsakka/179/head -> origin/gh/laithsakka/179/head 2025-06-01T20:58:07.7197109Z * [new branch] gh/laithsakka/179/orig -> origin/gh/laithsakka/179/orig 2025-06-01T20:58:07.7197848Z * [new branch] gh/laithsakka/180/base -> origin/gh/laithsakka/180/base 2025-06-01T20:58:07.7198448Z * [new branch] gh/laithsakka/180/head -> origin/gh/laithsakka/180/head 2025-06-01T20:58:07.7199020Z * [new branch] gh/laithsakka/180/orig -> origin/gh/laithsakka/180/orig 2025-06-01T20:58:07.7199553Z * [new branch] gh/laithsakka/181/base -> origin/gh/laithsakka/181/base 2025-06-01T20:58:07.7200069Z * [new branch] gh/laithsakka/181/head -> origin/gh/laithsakka/181/head 2025-06-01T20:58:07.7200593Z * [new branch] gh/laithsakka/181/orig -> origin/gh/laithsakka/181/orig 2025-06-01T20:58:07.7201122Z * [new branch] gh/laithsakka/182/base -> origin/gh/laithsakka/182/base 2025-06-01T20:58:07.7201643Z * [new branch] gh/laithsakka/182/head -> origin/gh/laithsakka/182/head 2025-06-01T20:58:07.7202174Z * [new branch] gh/laithsakka/182/orig -> origin/gh/laithsakka/182/orig 2025-06-01T20:58:07.7202716Z * [new branch] gh/laithsakka/183/base -> origin/gh/laithsakka/183/base 2025-06-01T20:58:07.7203239Z * [new branch] gh/laithsakka/183/head -> origin/gh/laithsakka/183/head 2025-06-01T20:58:07.7203761Z * [new branch] gh/laithsakka/183/orig -> origin/gh/laithsakka/183/orig 2025-06-01T20:58:07.7204318Z * [new branch] gh/laithsakka/184/base -> origin/gh/laithsakka/184/base 2025-06-01T20:58:07.7204882Z * [new branch] gh/laithsakka/184/head -> origin/gh/laithsakka/184/head 2025-06-01T20:58:07.7205397Z * [new branch] gh/laithsakka/184/orig -> origin/gh/laithsakka/184/orig 2025-06-01T20:58:07.7205929Z * [new branch] gh/laithsakka/185/base -> origin/gh/laithsakka/185/base 2025-06-01T20:58:07.7206455Z * [new branch] gh/laithsakka/185/head -> origin/gh/laithsakka/185/head 2025-06-01T20:58:07.7206988Z * [new branch] gh/laithsakka/185/orig -> origin/gh/laithsakka/185/orig 2025-06-01T20:58:07.7207523Z * [new branch] gh/laithsakka/186/base -> origin/gh/laithsakka/186/base 2025-06-01T20:58:07.7208039Z * [new branch] gh/laithsakka/186/head -> origin/gh/laithsakka/186/head 2025-06-01T20:58:07.7208568Z * [new branch] gh/laithsakka/186/orig -> origin/gh/laithsakka/186/orig 2025-06-01T20:58:07.7209097Z * [new branch] gh/laithsakka/187/base -> origin/gh/laithsakka/187/base 2025-06-01T20:58:07.7209611Z * [new branch] gh/laithsakka/187/head -> origin/gh/laithsakka/187/head 2025-06-01T20:58:07.7210183Z * [new branch] gh/laithsakka/187/orig -> origin/gh/laithsakka/187/orig 2025-06-01T20:58:07.7210745Z * [new branch] gh/laithsakka/188/base -> origin/gh/laithsakka/188/base 2025-06-01T20:58:07.7211278Z * [new branch] gh/laithsakka/188/head -> origin/gh/laithsakka/188/head 2025-06-01T20:58:07.7211816Z * [new branch] gh/laithsakka/188/orig -> origin/gh/laithsakka/188/orig 2025-06-01T20:58:07.7212331Z * [new branch] gh/laithsakka/189/base -> origin/gh/laithsakka/189/base 2025-06-01T20:58:07.7212859Z * [new branch] gh/laithsakka/189/head -> origin/gh/laithsakka/189/head 2025-06-01T20:58:07.7213380Z * [new branch] gh/laithsakka/189/orig -> origin/gh/laithsakka/189/orig 2025-06-01T20:58:07.7213903Z * [new branch] gh/laithsakka/190/base -> origin/gh/laithsakka/190/base 2025-06-01T20:58:07.7214422Z * [new branch] gh/laithsakka/190/head -> origin/gh/laithsakka/190/head 2025-06-01T20:58:07.7214949Z * [new branch] gh/laithsakka/190/orig -> origin/gh/laithsakka/190/orig 2025-06-01T20:58:07.7215474Z * [new branch] gh/laithsakka/191/base -> origin/gh/laithsakka/191/base 2025-06-01T20:58:07.7216256Z * [new branch] gh/laithsakka/191/head -> origin/gh/laithsakka/191/head 2025-06-01T20:58:07.7216860Z * [new branch] gh/laithsakka/191/orig -> origin/gh/laithsakka/191/orig 2025-06-01T20:58:07.7217376Z * [new branch] gh/laithsakka/192/base -> origin/gh/laithsakka/192/base 2025-06-01T20:58:07.7217905Z * [new branch] gh/laithsakka/192/head -> origin/gh/laithsakka/192/head 2025-06-01T20:58:07.7218432Z * [new branch] gh/laithsakka/192/orig -> origin/gh/laithsakka/192/orig 2025-06-01T20:58:07.7218947Z * [new branch] gh/laithsakka/193/base -> origin/gh/laithsakka/193/base 2025-06-01T20:58:07.7219466Z * [new branch] gh/laithsakka/193/head -> origin/gh/laithsakka/193/head 2025-06-01T20:58:07.7219978Z * [new branch] gh/laithsakka/193/orig -> origin/gh/laithsakka/193/orig 2025-06-01T20:58:07.7220507Z * [new branch] gh/laithsakka/194/base -> origin/gh/laithsakka/194/base 2025-06-01T20:58:07.7221026Z * [new branch] gh/laithsakka/194/head -> origin/gh/laithsakka/194/head 2025-06-01T20:58:07.7645966Z * [new branch] gh/laithsakka/194/orig -> origin/gh/laithsakka/194/orig 2025-06-01T20:58:07.7646517Z * [new branch] gh/laithsakka/195/base -> origin/gh/laithsakka/195/base 2025-06-01T20:58:07.7647053Z * [new branch] gh/laithsakka/195/head -> origin/gh/laithsakka/195/head 2025-06-01T20:58:07.7647586Z * [new branch] gh/laithsakka/195/orig -> origin/gh/laithsakka/195/orig 2025-06-01T20:58:07.7648106Z * [new branch] gh/laithsakka/196/base -> origin/gh/laithsakka/196/base 2025-06-01T20:58:07.7648621Z * [new branch] gh/laithsakka/196/head -> origin/gh/laithsakka/196/head 2025-06-01T20:58:07.7649150Z * [new branch] gh/laithsakka/196/orig -> origin/gh/laithsakka/196/orig 2025-06-01T20:58:07.7649679Z * [new branch] gh/laithsakka/197/base -> origin/gh/laithsakka/197/base 2025-06-01T20:58:07.7650201Z * [new branch] gh/laithsakka/197/head -> origin/gh/laithsakka/197/head 2025-06-01T20:58:07.7650723Z * [new branch] gh/laithsakka/197/orig -> origin/gh/laithsakka/197/orig 2025-06-01T20:58:07.7651236Z * [new branch] gh/laithsakka/198/base -> origin/gh/laithsakka/198/base 2025-06-01T20:58:07.7651755Z * [new branch] gh/laithsakka/198/head -> origin/gh/laithsakka/198/head 2025-06-01T20:58:07.7652264Z * [new branch] gh/laithsakka/198/orig -> origin/gh/laithsakka/198/orig 2025-06-01T20:58:07.7652786Z * [new branch] gh/laithsakka/199/base -> origin/gh/laithsakka/199/base 2025-06-01T20:58:07.7653309Z * [new branch] gh/laithsakka/199/head -> origin/gh/laithsakka/199/head 2025-06-01T20:58:07.7653831Z * [new branch] gh/laithsakka/199/orig -> origin/gh/laithsakka/199/orig 2025-06-01T20:58:07.7654357Z * [new branch] gh/laithsakka/200/base -> origin/gh/laithsakka/200/base 2025-06-01T20:58:07.7654874Z * [new branch] gh/laithsakka/200/head -> origin/gh/laithsakka/200/head 2025-06-01T20:58:07.7655395Z * [new branch] gh/laithsakka/200/orig -> origin/gh/laithsakka/200/orig 2025-06-01T20:58:07.7655915Z * [new branch] gh/laithsakka/28/base -> origin/gh/laithsakka/28/base 2025-06-01T20:58:07.7656427Z * [new branch] gh/laithsakka/29/base -> origin/gh/laithsakka/29/base 2025-06-01T20:58:07.7656996Z * [new branch] gh/laithsakka/30/base -> origin/gh/laithsakka/30/base 2025-06-01T20:58:07.7657545Z * [new branch] gh/laithsakka/30/head -> origin/gh/laithsakka/30/head 2025-06-01T20:58:07.7658108Z * [new branch] gh/laithsakka/31/base -> origin/gh/laithsakka/31/base 2025-06-01T20:58:07.7658901Z * [new branch] gh/laithsakka/31/head -> origin/gh/laithsakka/31/head 2025-06-01T20:58:07.7659421Z * [new branch] gh/laithsakka/32/base -> origin/gh/laithsakka/32/base 2025-06-01T20:58:07.7659936Z * [new branch] gh/laithsakka/32/head -> origin/gh/laithsakka/32/head 2025-06-01T20:58:07.7660468Z * [new branch] gh/larryliu0820/1/base -> origin/gh/larryliu0820/1/base 2025-06-01T20:58:07.7661000Z * [new branch] gh/larryliu0820/1/head -> origin/gh/larryliu0820/1/head 2025-06-01T20:58:07.7661521Z * [new branch] gh/larryliu0820/1/orig -> origin/gh/larryliu0820/1/orig 2025-06-01T20:58:07.7662051Z * [new branch] gh/larryliu0820/2/base -> origin/gh/larryliu0820/2/base 2025-06-01T20:58:07.7662575Z * [new branch] gh/larryliu0820/2/head -> origin/gh/larryliu0820/2/head 2025-06-01T20:58:07.7663092Z * [new branch] gh/larryliu0820/2/orig -> origin/gh/larryliu0820/2/orig 2025-06-01T20:58:07.7663610Z * [new branch] gh/larryliu0820/3/base -> origin/gh/larryliu0820/3/base 2025-06-01T20:58:07.7664116Z * [new branch] gh/larryliu0820/3/head -> origin/gh/larryliu0820/3/head 2025-06-01T20:58:07.7664630Z * [new branch] gh/larryliu0820/3/orig -> origin/gh/larryliu0820/3/orig 2025-06-01T20:58:07.7665145Z * [new branch] gh/larryliu0820/4/base -> origin/gh/larryliu0820/4/base 2025-06-01T20:58:07.7665650Z * [new branch] gh/larryliu0820/4/head -> origin/gh/larryliu0820/4/head 2025-06-01T20:58:07.7666175Z * [new branch] gh/larryliu0820/4/orig -> origin/gh/larryliu0820/4/orig 2025-06-01T20:58:07.7666742Z * [new branch] gh/leslie-fang-intel/190/base -> origin/gh/leslie-fang-intel/190/base 2025-06-01T20:58:07.7667354Z * [new branch] gh/leslie-fang-intel/190/head -> origin/gh/leslie-fang-intel/190/head 2025-06-01T20:58:07.7667978Z * [new branch] gh/leslie-fang-intel/190/orig -> origin/gh/leslie-fang-intel/190/orig 2025-06-01T20:58:07.7668575Z * [new branch] gh/leslie-fang-intel/192/base -> origin/gh/leslie-fang-intel/192/base 2025-06-01T20:58:07.7669180Z * [new branch] gh/leslie-fang-intel/192/head -> origin/gh/leslie-fang-intel/192/head 2025-06-01T20:58:07.7669840Z * [new branch] gh/leslie-fang-intel/192/orig -> origin/gh/leslie-fang-intel/192/orig 2025-06-01T20:58:07.8096006Z * [new branch] gh/leslie-fang-intel/193/base -> origin/gh/leslie-fang-intel/193/base 2025-06-01T20:58:07.8096703Z * [new branch] gh/leslie-fang-intel/193/head -> origin/gh/leslie-fang-intel/193/head 2025-06-01T20:58:07.8097305Z * [new branch] gh/leslie-fang-intel/193/orig -> origin/gh/leslie-fang-intel/193/orig 2025-06-01T20:58:07.8097912Z * [new branch] gh/leslie-fang-intel/194/base -> origin/gh/leslie-fang-intel/194/base 2025-06-01T20:58:07.8098565Z * [new branch] gh/leslie-fang-intel/194/head -> origin/gh/leslie-fang-intel/194/head 2025-06-01T20:58:07.8099160Z * [new branch] gh/leslie-fang-intel/194/orig -> origin/gh/leslie-fang-intel/194/orig 2025-06-01T20:58:07.8099764Z * [new branch] gh/leslie-fang-intel/195/base -> origin/gh/leslie-fang-intel/195/base 2025-06-01T20:58:07.8100359Z * [new branch] gh/leslie-fang-intel/195/head -> origin/gh/leslie-fang-intel/195/head 2025-06-01T20:58:07.8100952Z * [new branch] gh/leslie-fang-intel/195/orig -> origin/gh/leslie-fang-intel/195/orig 2025-06-01T20:58:07.8101552Z * [new branch] gh/leslie-fang-intel/196/base -> origin/gh/leslie-fang-intel/196/base 2025-06-01T20:58:07.8102146Z * [new branch] gh/leslie-fang-intel/196/head -> origin/gh/leslie-fang-intel/196/head 2025-06-01T20:58:07.8102756Z * [new branch] gh/leslie-fang-intel/196/orig -> origin/gh/leslie-fang-intel/196/orig 2025-06-01T20:58:07.8103661Z * [new branch] gh/leslie-fang-intel/197/base -> origin/gh/leslie-fang-intel/197/base 2025-06-01T20:58:07.8104281Z * [new branch] gh/leslie-fang-intel/197/head -> origin/gh/leslie-fang-intel/197/head 2025-06-01T20:58:07.8104890Z * [new branch] gh/leslie-fang-intel/197/orig -> origin/gh/leslie-fang-intel/197/orig 2025-06-01T20:58:07.8105489Z * [new branch] gh/leslie-fang-intel/198/base -> origin/gh/leslie-fang-intel/198/base 2025-06-01T20:58:07.8106093Z * [new branch] gh/leslie-fang-intel/198/head -> origin/gh/leslie-fang-intel/198/head 2025-06-01T20:58:07.8106688Z * [new branch] gh/leslie-fang-intel/198/orig -> origin/gh/leslie-fang-intel/198/orig 2025-06-01T20:58:07.8107288Z * [new branch] gh/leslie-fang-intel/199/base -> origin/gh/leslie-fang-intel/199/base 2025-06-01T20:58:07.8107896Z * [new branch] gh/leslie-fang-intel/199/head -> origin/gh/leslie-fang-intel/199/head 2025-06-01T20:58:07.8108498Z * [new branch] gh/leslie-fang-intel/199/orig -> origin/gh/leslie-fang-intel/199/orig 2025-06-01T20:58:07.8109070Z * [new branch] gh/lucaskabela/1/base -> origin/gh/lucaskabela/1/base 2025-06-01T20:58:07.8109595Z * [new branch] gh/lucaskabela/1/head -> origin/gh/lucaskabela/1/head 2025-06-01T20:58:07.8110198Z * [new branch] gh/lucaskabela/1/orig -> origin/gh/lucaskabela/1/orig 2025-06-01T20:58:07.8110736Z * [new branch] gh/lucaskabela/10/base -> origin/gh/lucaskabela/10/base 2025-06-01T20:58:07.8111268Z * [new branch] gh/lucaskabela/10/head -> origin/gh/lucaskabela/10/head 2025-06-01T20:58:07.8111806Z * [new branch] gh/lucaskabela/10/orig -> origin/gh/lucaskabela/10/orig 2025-06-01T20:58:07.8112331Z * [new branch] gh/lucaskabela/5/base -> origin/gh/lucaskabela/5/base 2025-06-01T20:58:07.8112868Z * [new branch] gh/lucaskabela/5/head -> origin/gh/lucaskabela/5/head 2025-06-01T20:58:07.8113386Z * [new branch] gh/lucaskabela/5/orig -> origin/gh/lucaskabela/5/orig 2025-06-01T20:58:07.8114035Z * [new branch] gh/lucaskabela/6/base -> origin/gh/lucaskabela/6/base 2025-06-01T20:58:07.8114565Z * [new branch] gh/lucaskabela/6/head -> origin/gh/lucaskabela/6/head 2025-06-01T20:58:07.8115079Z * [new branch] gh/lucaskabela/6/orig -> origin/gh/lucaskabela/6/orig 2025-06-01T20:58:07.8115606Z * [new branch] gh/lucaskabela/7/base -> origin/gh/lucaskabela/7/base 2025-06-01T20:58:07.8116115Z * [new branch] gh/lucaskabela/7/head -> origin/gh/lucaskabela/7/head 2025-06-01T20:58:07.8116633Z * [new branch] gh/lucaskabela/7/orig -> origin/gh/lucaskabela/7/orig 2025-06-01T20:58:07.8117149Z * [new branch] gh/lucaskabela/8/base -> origin/gh/lucaskabela/8/base 2025-06-01T20:58:07.8117674Z * [new branch] gh/lucaskabela/8/head -> origin/gh/lucaskabela/8/head 2025-06-01T20:58:07.8118191Z * [new branch] gh/lucaskabela/8/orig -> origin/gh/lucaskabela/8/orig 2025-06-01T20:58:07.8118698Z * [new branch] gh/lucaskabela/9/base -> origin/gh/lucaskabela/9/base 2025-06-01T20:58:07.8119222Z * [new branch] gh/lucaskabela/9/head -> origin/gh/lucaskabela/9/head 2025-06-01T20:58:07.8119706Z * [new branch] gh/lw/10/base -> origin/gh/lw/10/base 2025-06-01T20:58:07.8120146Z * [new branch] gh/lw/10/head -> origin/gh/lw/10/head 2025-06-01T20:58:07.8120582Z * [new branch] gh/lw/10/orig -> origin/gh/lw/10/orig 2025-06-01T20:58:07.8561450Z * [new branch] gh/lw/15/base -> origin/gh/lw/15/base 2025-06-01T20:58:07.8561962Z * [new branch] gh/lw/15/head -> origin/gh/lw/15/head 2025-06-01T20:58:07.8562728Z * [new branch] gh/lw/15/orig -> origin/gh/lw/15/orig 2025-06-01T20:58:07.8573319Z * [new branch] gh/lw/5/head -> origin/gh/lw/5/head 2025-06-01T20:58:07.8573860Z * [new branch] gh/malfet/14/base -> origin/gh/malfet/14/base 2025-06-01T20:58:07.8574370Z * [new branch] gh/malfet/155/base -> origin/gh/malfet/155/base 2025-06-01T20:58:07.8574858Z * [new branch] gh/malfet/155/head -> origin/gh/malfet/155/head 2025-06-01T20:58:07.8575357Z * [new branch] gh/malfet/155/orig -> origin/gh/malfet/155/orig 2025-06-01T20:58:07.8575834Z * [new branch] gh/malfet/159/base -> origin/gh/malfet/159/base 2025-06-01T20:58:07.8576321Z * [new branch] gh/malfet/159/head -> origin/gh/malfet/159/head 2025-06-01T20:58:07.8576802Z * [new branch] gh/malfet/159/orig -> origin/gh/malfet/159/orig 2025-06-01T20:58:07.8577310Z * [new branch] gh/malfet/169/base -> origin/gh/malfet/169/base 2025-06-01T20:58:07.8577801Z * [new branch] gh/malfet/169/head -> origin/gh/malfet/169/head 2025-06-01T20:58:07.8578277Z * [new branch] gh/malfet/169/orig -> origin/gh/malfet/169/orig 2025-06-01T20:58:07.8578808Z * [new branch] gh/malfet/197/base -> origin/gh/malfet/197/base 2025-06-01T20:58:07.8579332Z * [new branch] gh/malfet/197/head -> origin/gh/malfet/197/head 2025-06-01T20:58:07.8579834Z * [new branch] gh/malfet/197/orig -> origin/gh/malfet/197/orig 2025-06-01T20:58:07.8580319Z * [new branch] gh/malfet/259/base -> origin/gh/malfet/259/base 2025-06-01T20:58:07.8580801Z * [new branch] gh/malfet/259/head -> origin/gh/malfet/259/head 2025-06-01T20:58:07.8581289Z * [new branch] gh/malfet/259/orig -> origin/gh/malfet/259/orig 2025-06-01T20:58:07.8581766Z * [new branch] gh/malfet/268/base -> origin/gh/malfet/268/base 2025-06-01T20:58:07.8582239Z * [new branch] gh/malfet/268/head -> origin/gh/malfet/268/head 2025-06-01T20:58:07.8582719Z * [new branch] gh/malfet/268/orig -> origin/gh/malfet/268/orig 2025-06-01T20:58:07.8583188Z * [new branch] gh/malfet/292/base -> origin/gh/malfet/292/base 2025-06-01T20:58:07.8583666Z * [new branch] gh/malfet/292/head -> origin/gh/malfet/292/head 2025-06-01T20:58:07.8584147Z * [new branch] gh/malfet/292/orig -> origin/gh/malfet/292/orig 2025-06-01T20:58:07.8584664Z * [new branch] gh/malfet/293/base -> origin/gh/malfet/293/base 2025-06-01T20:58:07.8585180Z * [new branch] gh/malfet/293/head -> origin/gh/malfet/293/head 2025-06-01T20:58:07.8585670Z * [new branch] gh/malfet/293/orig -> origin/gh/malfet/293/orig 2025-06-01T20:58:07.8586144Z * [new branch] gh/malfet/294/base -> origin/gh/malfet/294/base 2025-06-01T20:58:07.8586629Z * [new branch] gh/malfet/294/head -> origin/gh/malfet/294/head 2025-06-01T20:58:07.8587096Z * [new branch] gh/malfet/294/orig -> origin/gh/malfet/294/orig 2025-06-01T20:58:07.8587572Z * [new branch] gh/malfet/295/base -> origin/gh/malfet/295/base 2025-06-01T20:58:07.8588040Z * [new branch] gh/malfet/295/head -> origin/gh/malfet/295/head 2025-06-01T20:58:07.8588515Z * [new branch] gh/malfet/295/orig -> origin/gh/malfet/295/orig 2025-06-01T20:58:07.8589002Z * [new branch] gh/malfet/296/base -> origin/gh/malfet/296/base 2025-06-01T20:58:07.8589470Z * [new branch] gh/malfet/296/head -> origin/gh/malfet/296/head 2025-06-01T20:58:07.8590285Z * [new branch] gh/malfet/296/orig -> origin/gh/malfet/296/orig 2025-06-01T20:58:07.8590912Z * [new branch] gh/malfet/297/base -> origin/gh/malfet/297/base 2025-06-01T20:58:07.8591391Z * [new branch] gh/malfet/297/head -> origin/gh/malfet/297/head 2025-06-01T20:58:07.8591870Z * [new branch] gh/malfet/297/orig -> origin/gh/malfet/297/orig 2025-06-01T20:58:07.8592346Z * [new branch] gh/malfet/298/base -> origin/gh/malfet/298/base 2025-06-01T20:58:07.8592819Z * [new branch] gh/malfet/298/head -> origin/gh/malfet/298/head 2025-06-01T20:58:07.8593289Z * [new branch] gh/malfet/298/orig -> origin/gh/malfet/298/orig 2025-06-01T20:58:07.8593767Z * [new branch] gh/malfet/299/base -> origin/gh/malfet/299/base 2025-06-01T20:58:07.8594242Z * [new branch] gh/malfet/299/head -> origin/gh/malfet/299/head 2025-06-01T20:58:07.8594717Z * [new branch] gh/malfet/299/orig -> origin/gh/malfet/299/orig 2025-06-01T20:58:07.8595198Z * [new branch] gh/malfet/300/base -> origin/gh/malfet/300/base 2025-06-01T20:58:07.9004052Z * [new branch] gh/malfet/300/head -> origin/gh/malfet/300/head 2025-06-01T20:58:07.9004601Z * [new branch] gh/malfet/300/orig -> origin/gh/malfet/300/orig 2025-06-01T20:58:07.9005094Z * [new branch] gh/malfet/301/base -> origin/gh/malfet/301/base 2025-06-01T20:58:07.9005582Z * [new branch] gh/malfet/301/head -> origin/gh/malfet/301/head 2025-06-01T20:58:07.9006071Z * [new branch] gh/malfet/301/orig -> origin/gh/malfet/301/orig 2025-06-01T20:58:07.9006561Z * [new branch] gh/malfet/302/base -> origin/gh/malfet/302/base 2025-06-01T20:58:07.9007043Z * [new branch] gh/malfet/302/head -> origin/gh/malfet/302/head 2025-06-01T20:58:07.9007569Z * [new branch] gh/malfet/302/orig -> origin/gh/malfet/302/orig 2025-06-01T20:58:07.9008061Z * [new branch] gh/malfet/303/base -> origin/gh/malfet/303/base 2025-06-01T20:58:07.9008554Z * [new branch] gh/malfet/303/head -> origin/gh/malfet/303/head 2025-06-01T20:58:07.9009028Z * [new branch] gh/malfet/303/orig -> origin/gh/malfet/303/orig 2025-06-01T20:58:07.9009534Z * [new branch] gh/malfet/304/base -> origin/gh/malfet/304/base 2025-06-01T20:58:07.9010016Z * [new branch] gh/malfet/304/head -> origin/gh/malfet/304/head 2025-06-01T20:58:07.9010492Z * [new branch] gh/malfet/304/orig -> origin/gh/malfet/304/orig 2025-06-01T20:58:07.9010988Z * [new branch] gh/malfet/305/base -> origin/gh/malfet/305/base 2025-06-01T20:58:07.9011490Z * [new branch] gh/malfet/305/head -> origin/gh/malfet/305/head 2025-06-01T20:58:07.9011986Z * [new branch] gh/malfet/305/orig -> origin/gh/malfet/305/orig 2025-06-01T20:58:07.9012477Z * [new branch] gh/malfet/306/base -> origin/gh/malfet/306/base 2025-06-01T20:58:07.9012961Z * [new branch] gh/malfet/306/head -> origin/gh/malfet/306/head 2025-06-01T20:58:07.9013456Z * [new branch] gh/malfet/306/orig -> origin/gh/malfet/306/orig 2025-06-01T20:58:07.9013953Z * [new branch] gh/malfet/307/base -> origin/gh/malfet/307/base 2025-06-01T20:58:07.9014450Z * [new branch] gh/malfet/307/head -> origin/gh/malfet/307/head 2025-06-01T20:58:07.9014942Z * [new branch] gh/malfet/307/orig -> origin/gh/malfet/307/orig 2025-06-01T20:58:07.9015431Z * [new branch] gh/malfet/308/base -> origin/gh/malfet/308/base 2025-06-01T20:58:07.9016098Z * [new branch] gh/malfet/308/head -> origin/gh/malfet/308/head 2025-06-01T20:58:07.9016699Z * [new branch] gh/malfet/308/orig -> origin/gh/malfet/308/orig 2025-06-01T20:58:07.9017195Z * [new branch] gh/malfet/309/base -> origin/gh/malfet/309/base 2025-06-01T20:58:07.9017675Z * [new branch] gh/malfet/309/head -> origin/gh/malfet/309/head 2025-06-01T20:58:07.9018176Z * [new branch] gh/malfet/309/orig -> origin/gh/malfet/309/orig 2025-06-01T20:58:07.9018668Z * [new branch] gh/malfet/310/base -> origin/gh/malfet/310/base 2025-06-01T20:58:07.9019147Z * [new branch] gh/malfet/310/head -> origin/gh/malfet/310/head 2025-06-01T20:58:07.9019626Z * [new branch] gh/malfet/310/orig -> origin/gh/malfet/310/orig 2025-06-01T20:58:07.9020105Z * [new branch] gh/malfet/311/base -> origin/gh/malfet/311/base 2025-06-01T20:58:07.9020603Z * [new branch] gh/malfet/311/head -> origin/gh/malfet/311/head 2025-06-01T20:58:07.9021097Z * [new branch] gh/malfet/311/orig -> origin/gh/malfet/311/orig 2025-06-01T20:58:07.9021570Z * [new branch] gh/malfet/312/base -> origin/gh/malfet/312/base 2025-06-01T20:58:07.9022060Z * [new branch] gh/malfet/312/head -> origin/gh/malfet/312/head 2025-06-01T20:58:07.9022553Z * [new branch] gh/malfet/313/base -> origin/gh/malfet/313/base 2025-06-01T20:58:07.9023042Z * [new branch] gh/malfet/313/head -> origin/gh/malfet/313/head 2025-06-01T20:58:07.9023534Z * [new branch] gh/malfet/313/orig -> origin/gh/malfet/313/orig 2025-06-01T20:58:07.9024015Z * [new branch] gh/malfet/314/base -> origin/gh/malfet/314/base 2025-06-01T20:58:07.9024509Z * [new branch] gh/malfet/314/head -> origin/gh/malfet/314/head 2025-06-01T20:58:07.9024994Z * [new branch] gh/malfet/314/orig -> origin/gh/malfet/314/orig 2025-06-01T20:58:07.9025486Z * [new branch] gh/malfet/315/base -> origin/gh/malfet/315/base 2025-06-01T20:58:07.9025972Z * [new branch] gh/malfet/315/head -> origin/gh/malfet/315/head 2025-06-01T20:58:07.9026446Z * [new branch] gh/malfet/315/orig -> origin/gh/malfet/315/orig 2025-06-01T20:58:07.9026932Z * [new branch] gh/malfet/316/base -> origin/gh/malfet/316/base 2025-06-01T20:58:07.9027411Z * [new branch] gh/malfet/316/head -> origin/gh/malfet/316/head 2025-06-01T20:58:07.9466285Z * [new branch] gh/malfet/316/orig -> origin/gh/malfet/316/orig 2025-06-01T20:58:07.9466872Z * [new branch] gh/malfet/317/base -> origin/gh/malfet/317/base 2025-06-01T20:58:07.9467363Z * [new branch] gh/malfet/317/head -> origin/gh/malfet/317/head 2025-06-01T20:58:07.9467899Z * [new branch] gh/malfet/317/orig -> origin/gh/malfet/317/orig 2025-06-01T20:58:07.9468372Z * [new branch] gh/malfet/318/base -> origin/gh/malfet/318/base 2025-06-01T20:58:07.9468859Z * [new branch] gh/malfet/318/head -> origin/gh/malfet/318/head 2025-06-01T20:58:07.9469331Z * [new branch] gh/malfet/318/orig -> origin/gh/malfet/318/orig 2025-06-01T20:58:07.9469864Z * [new branch] gh/malfet/319/base -> origin/gh/malfet/319/base 2025-06-01T20:58:07.9470407Z * [new branch] gh/malfet/319/head -> origin/gh/malfet/319/head 2025-06-01T20:58:07.9470921Z * [new branch] gh/malfet/319/orig -> origin/gh/malfet/319/orig 2025-06-01T20:58:07.9471399Z * [new branch] gh/malfet/320/base -> origin/gh/malfet/320/base 2025-06-01T20:58:07.9471885Z * [new branch] gh/malfet/320/head -> origin/gh/malfet/320/head 2025-06-01T20:58:07.9472675Z * [new branch] gh/malfet/320/orig -> origin/gh/malfet/320/orig 2025-06-01T20:58:07.9473169Z * [new branch] gh/malfet/321/base -> origin/gh/malfet/321/base 2025-06-01T20:58:07.9473649Z * [new branch] gh/malfet/321/head -> origin/gh/malfet/321/head 2025-06-01T20:58:07.9474140Z * [new branch] gh/malfet/321/orig -> origin/gh/malfet/321/orig 2025-06-01T20:58:07.9474627Z * [new branch] gh/malfet/322/base -> origin/gh/malfet/322/base 2025-06-01T20:58:07.9475095Z * [new branch] gh/malfet/322/head -> origin/gh/malfet/322/head 2025-06-01T20:58:07.9475575Z * [new branch] gh/malfet/322/orig -> origin/gh/malfet/322/orig 2025-06-01T20:58:07.9476094Z * [new branch] gh/malfet/323/base -> origin/gh/malfet/323/base 2025-06-01T20:58:07.9476623Z * [new branch] gh/malfet/323/head -> origin/gh/malfet/323/head 2025-06-01T20:58:07.9477107Z * [new branch] gh/malfet/323/orig -> origin/gh/malfet/323/orig 2025-06-01T20:58:07.9477598Z * [new branch] gh/malfet/324/base -> origin/gh/malfet/324/base 2025-06-01T20:58:07.9478070Z * [new branch] gh/malfet/324/head -> origin/gh/malfet/324/head 2025-06-01T20:58:07.9478542Z * [new branch] gh/malfet/324/orig -> origin/gh/malfet/324/orig 2025-06-01T20:58:07.9479025Z * [new branch] gh/malfet/325/base -> origin/gh/malfet/325/base 2025-06-01T20:58:07.9479501Z * [new branch] gh/malfet/325/head -> origin/gh/malfet/325/head 2025-06-01T20:58:07.9479984Z * [new branch] gh/malfet/325/orig -> origin/gh/malfet/325/orig 2025-06-01T20:58:07.9480461Z * [new branch] gh/malfet/326/base -> origin/gh/malfet/326/base 2025-06-01T20:58:07.9480936Z * [new branch] gh/malfet/326/head -> origin/gh/malfet/326/head 2025-06-01T20:58:07.9481420Z * [new branch] gh/malfet/326/orig -> origin/gh/malfet/326/orig 2025-06-01T20:58:07.9481973Z * [new branch] gh/malfet/327/base -> origin/gh/malfet/327/base 2025-06-01T20:58:07.9482468Z * [new branch] gh/malfet/327/head -> origin/gh/malfet/327/head 2025-06-01T20:58:07.9482944Z * [new branch] gh/malfet/327/orig -> origin/gh/malfet/327/orig 2025-06-01T20:58:07.9483415Z * [new branch] gh/malfet/328/base -> origin/gh/malfet/328/base 2025-06-01T20:58:07.9483896Z * [new branch] gh/malfet/328/head -> origin/gh/malfet/328/head 2025-06-01T20:58:07.9484363Z * [new branch] gh/malfet/328/orig -> origin/gh/malfet/328/orig 2025-06-01T20:58:07.9484844Z * [new branch] gh/malfet/329/base -> origin/gh/malfet/329/base 2025-06-01T20:58:07.9485314Z * [new branch] gh/malfet/329/head -> origin/gh/malfet/329/head 2025-06-01T20:58:07.9485802Z * [new branch] gh/malfet/329/orig -> origin/gh/malfet/329/orig 2025-06-01T20:58:07.9486273Z * [new branch] gh/malfet/330/base -> origin/gh/malfet/330/base 2025-06-01T20:58:07.9486745Z * [new branch] gh/malfet/330/head -> origin/gh/malfet/330/head 2025-06-01T20:58:07.9487291Z * [new branch] gh/malfet/330/orig -> origin/gh/malfet/330/orig 2025-06-01T20:58:07.9487818Z * [new branch] gh/malfet/331/base -> origin/gh/malfet/331/base 2025-06-01T20:58:07.9488302Z * [new branch] gh/malfet/331/head -> origin/gh/malfet/331/head 2025-06-01T20:58:07.9488784Z * [new branch] gh/malfet/331/orig -> origin/gh/malfet/331/orig 2025-06-01T20:58:07.9489256Z * [new branch] gh/malfet/332/base -> origin/gh/malfet/332/base 2025-06-01T20:58:07.9904846Z * [new branch] gh/malfet/332/head -> origin/gh/malfet/332/head 2025-06-01T20:58:07.9905581Z * [new branch] gh/malfet/332/orig -> origin/gh/malfet/332/orig 2025-06-01T20:58:07.9906078Z * [new branch] gh/malfet/333/base -> origin/gh/malfet/333/base 2025-06-01T20:58:07.9906560Z * [new branch] gh/malfet/333/head -> origin/gh/malfet/333/head 2025-06-01T20:58:07.9907041Z * [new branch] gh/malfet/333/orig -> origin/gh/malfet/333/orig 2025-06-01T20:58:07.9907527Z * [new branch] gh/malfet/334/base -> origin/gh/malfet/334/base 2025-06-01T20:58:07.9908000Z * [new branch] gh/malfet/334/head -> origin/gh/malfet/334/head 2025-06-01T20:58:07.9908469Z * [new branch] gh/malfet/334/orig -> origin/gh/malfet/334/orig 2025-06-01T20:58:07.9908943Z * [new branch] gh/malfet/335/base -> origin/gh/malfet/335/base 2025-06-01T20:58:07.9909420Z * [new branch] gh/malfet/335/head -> origin/gh/malfet/335/head 2025-06-01T20:58:07.9909997Z * [new branch] gh/malfet/335/orig -> origin/gh/malfet/335/orig 2025-06-01T20:58:07.9910591Z * [new branch] gh/malfet/336/base -> origin/gh/malfet/336/base 2025-06-01T20:58:07.9911121Z * [new branch] gh/malfet/336/head -> origin/gh/malfet/336/head 2025-06-01T20:58:07.9911603Z * [new branch] gh/malfet/336/orig -> origin/gh/malfet/336/orig 2025-06-01T20:58:07.9912081Z * [new branch] gh/malfet/337/base -> origin/gh/malfet/337/base 2025-06-01T20:58:07.9912561Z * [new branch] gh/malfet/337/head -> origin/gh/malfet/337/head 2025-06-01T20:58:07.9913030Z * [new branch] gh/malfet/337/orig -> origin/gh/malfet/337/orig 2025-06-01T20:58:07.9913508Z * [new branch] gh/malfet/338/base -> origin/gh/malfet/338/base 2025-06-01T20:58:07.9914002Z * [new branch] gh/malfet/338/head -> origin/gh/malfet/338/head 2025-06-01T20:58:07.9914473Z * [new branch] gh/malfet/338/orig -> origin/gh/malfet/338/orig 2025-06-01T20:58:07.9914952Z * [new branch] gh/malfet/339/base -> origin/gh/malfet/339/base 2025-06-01T20:58:07.9915417Z * [new branch] gh/malfet/339/head -> origin/gh/malfet/339/head 2025-06-01T20:58:07.9915896Z * [new branch] gh/malfet/339/orig -> origin/gh/malfet/339/orig 2025-06-01T20:58:07.9916375Z * [new branch] gh/malfet/340/base -> origin/gh/malfet/340/base 2025-06-01T20:58:07.9916856Z * [new branch] gh/malfet/340/head -> origin/gh/malfet/340/head 2025-06-01T20:58:07.9917333Z * [new branch] gh/malfet/340/orig -> origin/gh/malfet/340/orig 2025-06-01T20:58:07.9917814Z * [new branch] gh/malfet/341/base -> origin/gh/malfet/341/base 2025-06-01T20:58:07.9918310Z * [new branch] gh/malfet/341/head -> origin/gh/malfet/341/head 2025-06-01T20:58:07.9918779Z * [new branch] gh/malfet/341/orig -> origin/gh/malfet/341/orig 2025-06-01T20:58:07.9919259Z * [new branch] gh/malfet/342/base -> origin/gh/malfet/342/base 2025-06-01T20:58:07.9919733Z * [new branch] gh/malfet/342/head -> origin/gh/malfet/342/head 2025-06-01T20:58:07.9920210Z * [new branch] gh/malfet/342/orig -> origin/gh/malfet/342/orig 2025-06-01T20:58:07.9920695Z * [new branch] gh/malfet/343/base -> origin/gh/malfet/343/base 2025-06-01T20:58:07.9921169Z * [new branch] gh/malfet/343/head -> origin/gh/malfet/343/head 2025-06-01T20:58:07.9921647Z * [new branch] gh/malfet/343/orig -> origin/gh/malfet/343/orig 2025-06-01T20:58:07.9922256Z * [new branch] gh/malfet/344/base -> origin/gh/malfet/344/base 2025-06-01T20:58:07.9922842Z * [new branch] gh/malfet/344/head -> origin/gh/malfet/344/head 2025-06-01T20:58:07.9923329Z * [new branch] gh/malfet/344/orig -> origin/gh/malfet/344/orig 2025-06-01T20:58:07.9923806Z * [new branch] gh/malfet/345/base -> origin/gh/malfet/345/base 2025-06-01T20:58:07.9924289Z * [new branch] gh/malfet/345/head -> origin/gh/malfet/345/head 2025-06-01T20:58:07.9924771Z * [new branch] gh/malfet/345/orig -> origin/gh/malfet/345/orig 2025-06-01T20:58:07.9925241Z * [new branch] gh/malfet/346/base -> origin/gh/malfet/346/base 2025-06-01T20:58:07.9925720Z * [new branch] gh/malfet/346/head -> origin/gh/malfet/346/head 2025-06-01T20:58:07.9926273Z * [new branch] gh/malfet/346/orig -> origin/gh/malfet/346/orig 2025-06-01T20:58:07.9926755Z * [new branch] gh/malfet/347/base -> origin/gh/malfet/347/base 2025-06-01T20:58:07.9927240Z * [new branch] gh/malfet/347/head -> origin/gh/malfet/347/head 2025-06-01T20:58:07.9927730Z * [new branch] gh/malfet/347/orig -> origin/gh/malfet/347/orig 2025-06-01T20:58:07.9928200Z * [new branch] gh/malfet/348/base -> origin/gh/malfet/348/base 2025-06-01T20:58:08.0362307Z * [new branch] gh/malfet/348/head -> origin/gh/malfet/348/head 2025-06-01T20:58:08.0362929Z * [new branch] gh/malfet/348/orig -> origin/gh/malfet/348/orig 2025-06-01T20:58:08.0363430Z * [new branch] gh/malfet/349/base -> origin/gh/malfet/349/base 2025-06-01T20:58:08.0363942Z * [new branch] gh/malfet/349/head -> origin/gh/malfet/349/head 2025-06-01T20:58:08.0364419Z * [new branch] gh/malfet/349/orig -> origin/gh/malfet/349/orig 2025-06-01T20:58:08.0364923Z * [new branch] gh/malfet/350/base -> origin/gh/malfet/350/base 2025-06-01T20:58:08.0365410Z * [new branch] gh/malfet/350/head -> origin/gh/malfet/350/head 2025-06-01T20:58:08.0365878Z * [new branch] gh/malfet/350/orig -> origin/gh/malfet/350/orig 2025-06-01T20:58:08.0366354Z * [new branch] gh/malfet/351/base -> origin/gh/malfet/351/base 2025-06-01T20:58:08.0366826Z * [new branch] gh/malfet/351/head -> origin/gh/malfet/351/head 2025-06-01T20:58:08.0367300Z * [new branch] gh/malfet/351/orig -> origin/gh/malfet/351/orig 2025-06-01T20:58:08.0367781Z * [new branch] gh/malfet/352/base -> origin/gh/malfet/352/base 2025-06-01T20:58:08.0368252Z * [new branch] gh/malfet/352/head -> origin/gh/malfet/352/head 2025-06-01T20:58:08.0368728Z * [new branch] gh/malfet/352/orig -> origin/gh/malfet/352/orig 2025-06-01T20:58:08.0369212Z * [new branch] gh/malfet/353/base -> origin/gh/malfet/353/base 2025-06-01T20:58:08.0369696Z * [new branch] gh/malfet/353/head -> origin/gh/malfet/353/head 2025-06-01T20:58:08.0370163Z * [new branch] gh/malfet/353/orig -> origin/gh/malfet/353/orig 2025-06-01T20:58:08.0370642Z * [new branch] gh/malfet/354/base -> origin/gh/malfet/354/base 2025-06-01T20:58:08.0371125Z * [new branch] gh/malfet/354/head -> origin/gh/malfet/354/head 2025-06-01T20:58:08.0371596Z * [new branch] gh/malfet/354/orig -> origin/gh/malfet/354/orig 2025-06-01T20:58:08.0372075Z * [new branch] gh/malfet/355/base -> origin/gh/malfet/355/base 2025-06-01T20:58:08.0372545Z * [new branch] gh/malfet/355/head -> origin/gh/malfet/355/head 2025-06-01T20:58:08.0373020Z * [new branch] gh/malfet/355/orig -> origin/gh/malfet/355/orig 2025-06-01T20:58:08.0374717Z * [new branch] gh/malfet/356/base -> origin/gh/malfet/356/base 2025-06-01T20:58:08.0375203Z * [new branch] gh/malfet/356/head -> origin/gh/malfet/356/head 2025-06-01T20:58:08.0375689Z * [new branch] gh/malfet/356/orig -> origin/gh/malfet/356/orig 2025-06-01T20:58:08.0376164Z * [new branch] gh/malfet/357/base -> origin/gh/malfet/357/base 2025-06-01T20:58:08.0376656Z * [new branch] gh/malfet/357/head -> origin/gh/malfet/357/head 2025-06-01T20:58:08.0377147Z * [new branch] gh/malfet/357/orig -> origin/gh/malfet/357/orig 2025-06-01T20:58:08.0377618Z * [new branch] gh/malfet/358/base -> origin/gh/malfet/358/base 2025-06-01T20:58:08.0378105Z * [new branch] gh/malfet/358/head -> origin/gh/malfet/358/head 2025-06-01T20:58:08.0378586Z * [new branch] gh/malfet/358/orig -> origin/gh/malfet/358/orig 2025-06-01T20:58:08.0379067Z * [new branch] gh/malfet/359/base -> origin/gh/malfet/359/base 2025-06-01T20:58:08.0379533Z * [new branch] gh/malfet/359/head -> origin/gh/malfet/359/head 2025-06-01T20:58:08.0380011Z * [new branch] gh/malfet/359/orig -> origin/gh/malfet/359/orig 2025-06-01T20:58:08.0380486Z * [new branch] gh/malfet/360/base -> origin/gh/malfet/360/base 2025-06-01T20:58:08.0380953Z * [new branch] gh/malfet/360/head -> origin/gh/malfet/360/head 2025-06-01T20:58:08.0381425Z * [new branch] gh/malfet/360/orig -> origin/gh/malfet/360/orig 2025-06-01T20:58:08.0381898Z * [new branch] gh/malfet/361/base -> origin/gh/malfet/361/base 2025-06-01T20:58:08.0382378Z * [new branch] gh/malfet/361/head -> origin/gh/malfet/361/head 2025-06-01T20:58:08.0382867Z * [new branch] gh/malfet/361/orig -> origin/gh/malfet/361/orig 2025-06-01T20:58:08.0383337Z * [new branch] gh/malfet/362/base -> origin/gh/malfet/362/base 2025-06-01T20:58:08.0383810Z * [new branch] gh/malfet/362/head -> origin/gh/malfet/362/head 2025-06-01T20:58:08.0384277Z * [new branch] gh/malfet/362/orig -> origin/gh/malfet/362/orig 2025-06-01T20:58:08.0384762Z * [new branch] gh/malfet/363/base -> origin/gh/malfet/363/base 2025-06-01T20:58:08.0385237Z * [new branch] gh/malfet/363/head -> origin/gh/malfet/363/head 2025-06-01T20:58:08.0385710Z * [new branch] gh/malfet/363/orig -> origin/gh/malfet/363/orig 2025-06-01T20:58:08.0386183Z * [new branch] gh/malfet/364/base -> origin/gh/malfet/364/base 2025-06-01T20:58:08.0851751Z * [new branch] gh/malfet/364/head -> origin/gh/malfet/364/head 2025-06-01T20:58:08.0852323Z * [new branch] gh/malfet/364/orig -> origin/gh/malfet/364/orig 2025-06-01T20:58:08.0852835Z * [new branch] gh/malfet/365/base -> origin/gh/malfet/365/base 2025-06-01T20:58:08.0853332Z * [new branch] gh/malfet/365/head -> origin/gh/malfet/365/head 2025-06-01T20:58:08.0853813Z * [new branch] gh/malfet/365/orig -> origin/gh/malfet/365/orig 2025-06-01T20:58:08.0854279Z * [new branch] gh/malfet/366/base -> origin/gh/malfet/366/base 2025-06-01T20:58:08.0854762Z * [new branch] gh/malfet/366/head -> origin/gh/malfet/366/head 2025-06-01T20:58:08.0855241Z * [new branch] gh/malfet/366/orig -> origin/gh/malfet/366/orig 2025-06-01T20:58:08.0855709Z * [new branch] gh/malfet/367/base -> origin/gh/malfet/367/base 2025-06-01T20:58:08.0856188Z * [new branch] gh/malfet/367/head -> origin/gh/malfet/367/head 2025-06-01T20:58:08.0856852Z * [new branch] gh/malfet/367/orig -> origin/gh/malfet/367/orig 2025-06-01T20:58:08.0857851Z * [new branch] gh/malfet/368/base -> origin/gh/malfet/368/base 2025-06-01T20:58:08.0858344Z * [new branch] gh/malfet/368/head -> origin/gh/malfet/368/head 2025-06-01T20:58:08.0858889Z * [new branch] gh/malfet/368/orig -> origin/gh/malfet/368/orig 2025-06-01T20:58:08.0859408Z * [new branch] gh/malfet/369/base -> origin/gh/malfet/369/base 2025-06-01T20:58:08.0859928Z * [new branch] gh/malfet/369/head -> origin/gh/malfet/369/head 2025-06-01T20:58:08.0860404Z * [new branch] gh/malfet/369/orig -> origin/gh/malfet/369/orig 2025-06-01T20:58:08.0860883Z * [new branch] gh/malfet/370/base -> origin/gh/malfet/370/base 2025-06-01T20:58:08.0861353Z * [new branch] gh/malfet/370/head -> origin/gh/malfet/370/head 2025-06-01T20:58:08.0861850Z * [new branch] gh/malfet/370/orig -> origin/gh/malfet/370/orig 2025-06-01T20:58:08.0862329Z * [new branch] gh/malfet/371/base -> origin/gh/malfet/371/base 2025-06-01T20:58:08.0862806Z * [new branch] gh/malfet/371/head -> origin/gh/malfet/371/head 2025-06-01T20:58:08.0863270Z * [new branch] gh/malfet/371/orig -> origin/gh/malfet/371/orig 2025-06-01T20:58:08.0863755Z * [new branch] gh/malfet/64/base -> origin/gh/malfet/64/base 2025-06-01T20:58:08.0864232Z * [new branch] gh/malfet/64/head -> origin/gh/malfet/64/head 2025-06-01T20:58:08.0864708Z * [new branch] gh/markkm/1/base -> origin/gh/markkm/1/base 2025-06-01T20:58:08.0865211Z * [new branch] gh/masnesral/195/base -> origin/gh/masnesral/195/base 2025-06-01T20:58:08.0865732Z * [new branch] gh/masnesral/195/head -> origin/gh/masnesral/195/head 2025-06-01T20:58:08.0866259Z * [new branch] gh/masnesral/195/orig -> origin/gh/masnesral/195/orig 2025-06-01T20:58:08.0866774Z * [new branch] gh/masnesral/196/base -> origin/gh/masnesral/196/base 2025-06-01T20:58:08.0867280Z * [new branch] gh/masnesral/196/head -> origin/gh/masnesral/196/head 2025-06-01T20:58:08.0867793Z * [new branch] gh/masnesral/196/orig -> origin/gh/masnesral/196/orig 2025-06-01T20:58:08.0868299Z * [new branch] gh/masnesral/197/base -> origin/gh/masnesral/197/base 2025-06-01T20:58:08.0868812Z * [new branch] gh/masnesral/197/head -> origin/gh/masnesral/197/head 2025-06-01T20:58:08.0869329Z * [new branch] gh/masnesral/197/orig -> origin/gh/masnesral/197/orig 2025-06-01T20:58:08.0869906Z * [new branch] gh/masnesral/198/base -> origin/gh/masnesral/198/base 2025-06-01T20:58:08.0870439Z * [new branch] gh/masnesral/198/head -> origin/gh/masnesral/198/head 2025-06-01T20:58:08.0870956Z * [new branch] gh/masnesral/198/orig -> origin/gh/masnesral/198/orig 2025-06-01T20:58:08.0871473Z * [new branch] gh/masnesral/199/base -> origin/gh/masnesral/199/base 2025-06-01T20:58:08.0871994Z * [new branch] gh/masnesral/199/head -> origin/gh/masnesral/199/head 2025-06-01T20:58:08.0872498Z * [new branch] gh/masnesral/199/orig -> origin/gh/masnesral/199/orig 2025-06-01T20:58:08.0873010Z * [new branch] gh/masnesral/200/base -> origin/gh/masnesral/200/base 2025-06-01T20:58:08.0873512Z * [new branch] gh/masnesral/200/head -> origin/gh/masnesral/200/head 2025-06-01T20:58:08.0874021Z * [new branch] gh/masnesral/200/orig -> origin/gh/masnesral/200/orig 2025-06-01T20:58:08.0874523Z * [new branch] gh/masnesral/201/base -> origin/gh/masnesral/201/base 2025-06-01T20:58:08.0875772Z * [new branch] gh/masnesral/201/head -> origin/gh/masnesral/201/head 2025-06-01T20:58:08.0876297Z * [new branch] gh/masnesral/201/orig -> origin/gh/masnesral/201/orig 2025-06-01T20:58:08.2274715Z * [new branch] gh/masnesral/202/base -> origin/gh/masnesral/202/base 2025-06-01T20:58:08.2275300Z * [new branch] gh/masnesral/202/head -> origin/gh/masnesral/202/head 2025-06-01T20:58:08.2275874Z * [new branch] gh/masnesral/202/orig -> origin/gh/masnesral/202/orig 2025-06-01T20:58:08.2276424Z * [new branch] gh/masnesral/203/base -> origin/gh/masnesral/203/base 2025-06-01T20:58:08.2276957Z * [new branch] gh/masnesral/203/head -> origin/gh/masnesral/203/head 2025-06-01T20:58:08.2277464Z * [new branch] gh/masnesral/203/orig -> origin/gh/masnesral/203/orig 2025-06-01T20:58:08.2277991Z * [new branch] gh/masnesral/204/base -> origin/gh/masnesral/204/base 2025-06-01T20:58:08.2278511Z * [new branch] gh/masnesral/204/head -> origin/gh/masnesral/204/head 2025-06-01T20:58:08.2279006Z * [new branch] gh/masnesral/204/orig -> origin/gh/masnesral/204/orig 2025-06-01T20:58:08.2279525Z * [new branch] gh/masnesral/205/base -> origin/gh/masnesral/205/base 2025-06-01T20:58:08.2280035Z * [new branch] gh/masnesral/205/head -> origin/gh/masnesral/205/head 2025-06-01T20:58:08.2280548Z * [new branch] gh/masnesral/205/orig -> origin/gh/masnesral/205/orig 2025-06-01T20:58:08.2281057Z * [new branch] gh/masnesral/206/base -> origin/gh/masnesral/206/base 2025-06-01T20:58:08.2281601Z * [new branch] gh/masnesral/206/head -> origin/gh/masnesral/206/head 2025-06-01T20:58:08.2282152Z * [new branch] gh/masnesral/206/orig -> origin/gh/masnesral/206/orig 2025-06-01T20:58:08.2282666Z * [new branch] gh/masnesral/207/base -> origin/gh/masnesral/207/base 2025-06-01T20:58:08.2283172Z * [new branch] gh/masnesral/207/head -> origin/gh/masnesral/207/head 2025-06-01T20:58:08.2283680Z * [new branch] gh/masnesral/207/orig -> origin/gh/masnesral/207/orig 2025-06-01T20:58:08.2284175Z * [new branch] gh/masnesral/34/base -> origin/gh/masnesral/34/base 2025-06-01T20:58:08.2284687Z * [new branch] gh/mhorowitz/0/base -> origin/gh/mhorowitz/0/base 2025-06-01T20:58:08.2285196Z * [new branch] gh/mhorowitz/0/head -> origin/gh/mhorowitz/0/head 2025-06-01T20:58:08.2285691Z * [new branch] gh/mhorowitz/1/base -> origin/gh/mhorowitz/1/base 2025-06-01T20:58:08.2286192Z * [new branch] gh/mhorowitz/1/head -> origin/gh/mhorowitz/1/head 2025-06-01T20:58:08.2286678Z * [new branch] gh/mhorowitz/2/base -> origin/gh/mhorowitz/2/base 2025-06-01T20:58:08.2287232Z * [new branch] gh/mhorowitz/2/head -> origin/gh/mhorowitz/2/head 2025-06-01T20:58:08.2287755Z * [new branch] gh/mhorowitz/3/base -> origin/gh/mhorowitz/3/base 2025-06-01T20:58:08.2288339Z * [new branch] gh/mhorowitz/3/head -> origin/gh/mhorowitz/3/head 2025-06-01T20:58:08.2288875Z * [new branch] gh/mhorowitz/4/base -> origin/gh/mhorowitz/4/base 2025-06-01T20:58:08.2289441Z * [new branch] gh/mhorowitz/4/head -> origin/gh/mhorowitz/4/head 2025-06-01T20:58:08.2289971Z * [new branch] gh/mhorowitz/5/base -> origin/gh/mhorowitz/5/base 2025-06-01T20:58:08.2290535Z * [new branch] gh/mhorowitz/5/head -> origin/gh/mhorowitz/5/head 2025-06-01T20:58:08.2291071Z * [new branch] gh/mhorowitz/6/base -> origin/gh/mhorowitz/6/base 2025-06-01T20:58:08.2291838Z * [new branch] gh/mhorowitz/6/head -> origin/gh/mhorowitz/6/head 2025-06-01T20:58:08.2293018Z * [new branch] gh/mikaylagawarecki/234/base -> origin/gh/mikaylagawarecki/234/base 2025-06-01T20:58:08.2293721Z * [new branch] gh/mikaylagawarecki/234/head -> origin/gh/mikaylagawarecki/234/head 2025-06-01T20:58:08.2294402Z * [new branch] gh/mikaylagawarecki/235/base -> origin/gh/mikaylagawarecki/235/base 2025-06-01T20:58:08.2295003Z * [new branch] gh/mikaylagawarecki/235/head -> origin/gh/mikaylagawarecki/235/head 2025-06-01T20:58:08.2295605Z * [new branch] gh/mikaylagawarecki/236/base -> origin/gh/mikaylagawarecki/236/base 2025-06-01T20:58:08.2296198Z * [new branch] gh/mikaylagawarecki/236/head -> origin/gh/mikaylagawarecki/236/head 2025-06-01T20:58:08.2296801Z * [new branch] gh/mikaylagawarecki/237/base -> origin/gh/mikaylagawarecki/237/base 2025-06-01T20:58:08.2297395Z * [new branch] gh/mikaylagawarecki/237/head -> origin/gh/mikaylagawarecki/237/head 2025-06-01T20:58:08.2298006Z * [new branch] gh/mikaylagawarecki/238/base -> origin/gh/mikaylagawarecki/238/base 2025-06-01T20:58:08.2298616Z * [new branch] gh/mikaylagawarecki/238/head -> origin/gh/mikaylagawarecki/238/head 2025-06-01T20:58:08.2299205Z * [new branch] gh/mikaylagawarecki/311/base -> origin/gh/mikaylagawarecki/311/base 2025-06-01T20:58:08.2299851Z * [new branch] gh/mikaylagawarecki/311/head -> origin/gh/mikaylagawarecki/311/head 2025-06-01T20:58:08.2964534Z * [new branch] gh/mikaylagawarecki/311/orig -> origin/gh/mikaylagawarecki/311/orig 2025-06-01T20:58:08.2965206Z * [new branch] gh/mikaylagawarecki/312/base -> origin/gh/mikaylagawarecki/312/base 2025-06-01T20:58:08.2965830Z * [new branch] gh/mikaylagawarecki/312/head -> origin/gh/mikaylagawarecki/312/head 2025-06-01T20:58:08.2966464Z * [new branch] gh/mikaylagawarecki/312/orig -> origin/gh/mikaylagawarecki/312/orig 2025-06-01T20:58:08.2967128Z * [new branch] gh/mikaylagawarecki/313/base -> origin/gh/mikaylagawarecki/313/base 2025-06-01T20:58:08.2967733Z * [new branch] gh/mikaylagawarecki/313/head -> origin/gh/mikaylagawarecki/313/head 2025-06-01T20:58:08.2968325Z * [new branch] gh/mikaylagawarecki/313/orig -> origin/gh/mikaylagawarecki/313/orig 2025-06-01T20:58:08.2968878Z * [new branch] gh/mlazos/22/base -> origin/gh/mlazos/22/base 2025-06-01T20:58:08.2969350Z * [new branch] gh/mlazos/22/head -> origin/gh/mlazos/22/head 2025-06-01T20:58:08.2969825Z * [new branch] gh/mlazos/22/orig -> origin/gh/mlazos/22/orig 2025-06-01T20:58:08.2970291Z * [new branch] gh/mlazos/23/base -> origin/gh/mlazos/23/base 2025-06-01T20:58:08.2970763Z * [new branch] gh/mlazos/23/head -> origin/gh/mlazos/23/head 2025-06-01T20:58:08.2971240Z * [new branch] gh/mlazos/23/orig -> origin/gh/mlazos/23/orig 2025-06-01T20:58:08.2971707Z * [new branch] gh/mlazos/24/base -> origin/gh/mlazos/24/base 2025-06-01T20:58:08.2972184Z * [new branch] gh/mlazos/24/head -> origin/gh/mlazos/24/head 2025-06-01T20:58:08.2972654Z * [new branch] gh/mlazos/24/orig -> origin/gh/mlazos/24/orig 2025-06-01T20:58:08.2973139Z * [new branch] gh/mlazos/25/base -> origin/gh/mlazos/25/base 2025-06-01T20:58:08.2973617Z * [new branch] gh/mlazos/25/head -> origin/gh/mlazos/25/head 2025-06-01T20:58:08.2974082Z * [new branch] gh/mlazos/25/orig -> origin/gh/mlazos/25/orig 2025-06-01T20:58:08.2974556Z * [new branch] gh/mlazos/26/base -> origin/gh/mlazos/26/base 2025-06-01T20:58:08.2975022Z * [new branch] gh/mlazos/26/head -> origin/gh/mlazos/26/head 2025-06-01T20:58:08.2975714Z * [new branch] gh/mlazos/26/orig -> origin/gh/mlazos/26/orig 2025-06-01T20:58:08.2976727Z * [new branch] gh/mlazos/27/base -> origin/gh/mlazos/27/base 2025-06-01T20:58:08.2977195Z * [new branch] gh/mlazos/27/head -> origin/gh/mlazos/27/head 2025-06-01T20:58:08.2977675Z * [new branch] gh/mlazos/27/orig -> origin/gh/mlazos/27/orig 2025-06-01T20:58:08.2978145Z * [new branch] gh/mlazos/28/base -> origin/gh/mlazos/28/base 2025-06-01T20:58:08.2978613Z * [new branch] gh/mlazos/28/head -> origin/gh/mlazos/28/head 2025-06-01T20:58:08.2979077Z * [new branch] gh/mlazos/28/orig -> origin/gh/mlazos/28/orig 2025-06-01T20:58:08.2979551Z * [new branch] gh/mlazos/32/base -> origin/gh/mlazos/32/base 2025-06-01T20:58:08.2980027Z * [new branch] gh/mlazos/32/head -> origin/gh/mlazos/32/head 2025-06-01T20:58:08.2980531Z * [new branch] gh/mlazos/32/orig -> origin/gh/mlazos/32/orig 2025-06-01T20:58:08.2981011Z * [new branch] gh/mlazos/33/base -> origin/gh/mlazos/33/base 2025-06-01T20:58:08.2981486Z * [new branch] gh/mlazos/33/head -> origin/gh/mlazos/33/head 2025-06-01T20:58:08.2981944Z * [new branch] gh/mlazos/33/orig -> origin/gh/mlazos/33/orig 2025-06-01T20:58:08.2982414Z * [new branch] gh/mlazos/34/base -> origin/gh/mlazos/34/base 2025-06-01T20:58:08.2982880Z * [new branch] gh/mlazos/34/head -> origin/gh/mlazos/34/head 2025-06-01T20:58:08.2983349Z * [new branch] gh/mlazos/34/orig -> origin/gh/mlazos/34/orig 2025-06-01T20:58:08.2983821Z * [new branch] gh/mlazos/35/base -> origin/gh/mlazos/35/base 2025-06-01T20:58:08.2984280Z * [new branch] gh/mlazos/35/head -> origin/gh/mlazos/35/head 2025-06-01T20:58:08.2984761Z * [new branch] gh/mlazos/35/orig -> origin/gh/mlazos/35/orig 2025-06-01T20:58:08.2985224Z * [new branch] gh/mlazos/36/base -> origin/gh/mlazos/36/base 2025-06-01T20:58:08.2985693Z * [new branch] gh/mlazos/36/head -> origin/gh/mlazos/36/head 2025-06-01T20:58:08.2986154Z * [new branch] gh/mlazos/36/orig -> origin/gh/mlazos/36/orig 2025-06-01T20:58:08.2986624Z * [new branch] gh/mlazos/37/base -> origin/gh/mlazos/37/base 2025-06-01T20:58:08.2987098Z * [new branch] gh/mlazos/37/head -> origin/gh/mlazos/37/head 2025-06-01T20:58:08.2987644Z * [new branch] gh/mlazos/37/orig -> origin/gh/mlazos/37/orig 2025-06-01T20:58:08.2988118Z * [new branch] gh/mlazos/38/base -> origin/gh/mlazos/38/base 2025-06-01T20:58:08.3402167Z * [new branch] gh/mlazos/38/head -> origin/gh/mlazos/38/head 2025-06-01T20:58:08.3402745Z * [new branch] gh/mlazos/38/orig -> origin/gh/mlazos/38/orig 2025-06-01T20:58:08.3403210Z * [new branch] gh/mlazos/39/base -> origin/gh/mlazos/39/base 2025-06-01T20:58:08.3403682Z * [new branch] gh/mlazos/39/head -> origin/gh/mlazos/39/head 2025-06-01T20:58:08.3404154Z * [new branch] gh/mlazos/39/orig -> origin/gh/mlazos/39/orig 2025-06-01T20:58:08.3404624Z * [new branch] gh/mlazos/40/base -> origin/gh/mlazos/40/base 2025-06-01T20:58:08.3405088Z * [new branch] gh/mlazos/40/head -> origin/gh/mlazos/40/head 2025-06-01T20:58:08.3405553Z * [new branch] gh/mlazos/40/orig -> origin/gh/mlazos/40/orig 2025-06-01T20:58:08.3406020Z * [new branch] gh/mlazos/41/base -> origin/gh/mlazos/41/base 2025-06-01T20:58:08.3406489Z * [new branch] gh/mlazos/41/head -> origin/gh/mlazos/41/head 2025-06-01T20:58:08.3407708Z * [new branch] gh/mlazos/41/orig -> origin/gh/mlazos/41/orig 2025-06-01T20:58:08.3408199Z * [new branch] gh/mlazos/42/base -> origin/gh/mlazos/42/base 2025-06-01T20:58:08.3408680Z * [new branch] gh/mlazos/42/head -> origin/gh/mlazos/42/head 2025-06-01T20:58:08.3409146Z * [new branch] gh/mlazos/42/orig -> origin/gh/mlazos/42/orig 2025-06-01T20:58:08.3409623Z * [new branch] gh/mlazos/43/base -> origin/gh/mlazos/43/base 2025-06-01T20:58:08.3410083Z * [new branch] gh/mlazos/43/head -> origin/gh/mlazos/43/head 2025-06-01T20:58:08.3410555Z * [new branch] gh/mlazos/43/orig -> origin/gh/mlazos/43/orig 2025-06-01T20:58:08.3411030Z * [new branch] gh/mlazos/44/base -> origin/gh/mlazos/44/base 2025-06-01T20:58:08.3411493Z * [new branch] gh/mlazos/44/head -> origin/gh/mlazos/44/head 2025-06-01T20:58:08.3411984Z * [new branch] gh/mlazos/44/orig -> origin/gh/mlazos/44/orig 2025-06-01T20:58:08.3412448Z * [new branch] gh/mlazos/45/base -> origin/gh/mlazos/45/base 2025-06-01T20:58:08.3412921Z * [new branch] gh/mlazos/45/head -> origin/gh/mlazos/45/head 2025-06-01T20:58:08.3413391Z * [new branch] gh/mlazos/45/orig -> origin/gh/mlazos/45/orig 2025-06-01T20:58:08.3413851Z * [new branch] gh/mlazos/46/base -> origin/gh/mlazos/46/base 2025-06-01T20:58:08.3414323Z * [new branch] gh/mlazos/46/head -> origin/gh/mlazos/46/head 2025-06-01T20:58:08.3414788Z * [new branch] gh/mlazos/46/orig -> origin/gh/mlazos/46/orig 2025-06-01T20:58:08.3415262Z * [new branch] gh/mlazos/47/base -> origin/gh/mlazos/47/base 2025-06-01T20:58:08.3415724Z * [new branch] gh/mlazos/47/head -> origin/gh/mlazos/47/head 2025-06-01T20:58:08.3416202Z * [new branch] gh/mlazos/47/orig -> origin/gh/mlazos/47/orig 2025-06-01T20:58:08.3416675Z * [new branch] gh/mlazos/48/base -> origin/gh/mlazos/48/base 2025-06-01T20:58:08.3417135Z * [new branch] gh/mlazos/48/head -> origin/gh/mlazos/48/head 2025-06-01T20:58:08.3417610Z * [new branch] gh/mlazos/48/orig -> origin/gh/mlazos/48/orig 2025-06-01T20:58:08.3418069Z * [new branch] gh/mlazos/49/base -> origin/gh/mlazos/49/base 2025-06-01T20:58:08.3418544Z * [new branch] gh/mlazos/49/head -> origin/gh/mlazos/49/head 2025-06-01T20:58:08.3419018Z * [new branch] gh/mlazos/49/orig -> origin/gh/mlazos/49/orig 2025-06-01T20:58:08.3419480Z * [new branch] gh/mlazos/50/base -> origin/gh/mlazos/50/base 2025-06-01T20:58:08.3419954Z * [new branch] gh/mlazos/50/head -> origin/gh/mlazos/50/head 2025-06-01T20:58:08.3420421Z * [new branch] gh/mlazos/50/orig -> origin/gh/mlazos/50/orig 2025-06-01T20:58:08.3420894Z * [new branch] gh/mlazos/51/base -> origin/gh/mlazos/51/base 2025-06-01T20:58:08.3421355Z * [new branch] gh/mlazos/51/head -> origin/gh/mlazos/51/head 2025-06-01T20:58:08.3421827Z * [new branch] gh/mlazos/51/orig -> origin/gh/mlazos/51/orig 2025-06-01T20:58:08.3422295Z * [new branch] gh/mlazos/52/base -> origin/gh/mlazos/52/base 2025-06-01T20:58:08.3422760Z * [new branch] gh/mlazos/52/head -> origin/gh/mlazos/52/head 2025-06-01T20:58:08.3423233Z * [new branch] gh/mlazos/52/orig -> origin/gh/mlazos/52/orig 2025-06-01T20:58:08.3423703Z * [new branch] gh/mlazos/53/base -> origin/gh/mlazos/53/base 2025-06-01T20:58:08.3424291Z * [new branch] gh/mlazos/53/head -> origin/gh/mlazos/53/head 2025-06-01T20:58:08.3425174Z * [new branch] gh/mlazos/53/orig -> origin/gh/mlazos/53/orig 2025-06-01T20:58:08.3425642Z * [new branch] gh/mlazos/54/base -> origin/gh/mlazos/54/base 2025-06-01T20:58:08.3857175Z * [new branch] gh/mlazos/54/head -> origin/gh/mlazos/54/head 2025-06-01T20:58:08.3857738Z * [new branch] gh/mlazos/54/orig -> origin/gh/mlazos/54/orig 2025-06-01T20:58:08.3858218Z * [new branch] gh/mrmiywj/1/base -> origin/gh/mrmiywj/1/base 2025-06-01T20:58:08.3858707Z * [new branch] gh/mrmiywj/1/head -> origin/gh/mrmiywj/1/head 2025-06-01T20:58:08.3859224Z * [new branch] gh/muchulee8/57/base -> origin/gh/muchulee8/57/base 2025-06-01T20:58:08.3859725Z * [new branch] gh/muchulee8/57/head -> origin/gh/muchulee8/57/head 2025-06-01T20:58:08.3860261Z * [new branch] gh/muchulee8/57/orig -> origin/gh/muchulee8/57/orig 2025-06-01T20:58:08.3860776Z * [new branch] gh/muchulee8/58/base -> origin/gh/muchulee8/58/base 2025-06-01T20:58:08.3861273Z * [new branch] gh/muchulee8/58/head -> origin/gh/muchulee8/58/head 2025-06-01T20:58:08.3863110Z * [new branch] gh/muchulee8/58/orig -> origin/gh/muchulee8/58/orig 2025-06-01T20:58:08.3863611Z * [new branch] gh/muchulee8/59/base -> origin/gh/muchulee8/59/base 2025-06-01T20:58:08.3864119Z * [new branch] gh/muchulee8/59/head -> origin/gh/muchulee8/59/head 2025-06-01T20:58:08.3864630Z * [new branch] gh/muchulee8/59/orig -> origin/gh/muchulee8/59/orig 2025-06-01T20:58:08.3865124Z * [new branch] gh/muchulee8/60/base -> origin/gh/muchulee8/60/base 2025-06-01T20:58:08.3865622Z * [new branch] gh/muchulee8/60/head -> origin/gh/muchulee8/60/head 2025-06-01T20:58:08.3866131Z * [new branch] gh/muchulee8/60/orig -> origin/gh/muchulee8/60/orig 2025-06-01T20:58:08.3866631Z * [new branch] gh/muchulee8/61/base -> origin/gh/muchulee8/61/base 2025-06-01T20:58:08.3867121Z * [new branch] gh/muchulee8/61/head -> origin/gh/muchulee8/61/head 2025-06-01T20:58:08.3867626Z * [new branch] gh/muchulee8/61/orig -> origin/gh/muchulee8/61/orig 2025-06-01T20:58:08.3868140Z * [new branch] gh/nmacchioni/12/base -> origin/gh/nmacchioni/12/base 2025-06-01T20:58:08.3868651Z * [new branch] gh/nmacchioni/12/head -> origin/gh/nmacchioni/12/head 2025-06-01T20:58:08.3869172Z * [new branch] gh/nmacchioni/12/orig -> origin/gh/nmacchioni/12/orig 2025-06-01T20:58:08.3869733Z * [new branch] gh/nmacchioni/31/base -> origin/gh/nmacchioni/31/base 2025-06-01T20:58:08.3870259Z * [new branch] gh/nmacchioni/31/head -> origin/gh/nmacchioni/31/head 2025-06-01T20:58:08.3870777Z * [new branch] gh/nmacchioni/31/orig -> origin/gh/nmacchioni/31/orig 2025-06-01T20:58:08.3871289Z * [new branch] gh/nmacchioni/32/base -> origin/gh/nmacchioni/32/base 2025-06-01T20:58:08.3871812Z * [new branch] gh/nmacchioni/32/head -> origin/gh/nmacchioni/32/head 2025-06-01T20:58:08.3872315Z * [new branch] gh/nmacchioni/32/orig -> origin/gh/nmacchioni/32/orig 2025-06-01T20:58:08.3874219Z * [new branch] gh/nmacchioni/33/base -> origin/gh/nmacchioni/33/base 2025-06-01T20:58:08.3874741Z * [new branch] gh/nmacchioni/33/head -> origin/gh/nmacchioni/33/head 2025-06-01T20:58:08.3875255Z * [new branch] gh/nmacchioni/33/orig -> origin/gh/nmacchioni/33/orig 2025-06-01T20:58:08.3875773Z * [new branch] gh/nmacchioni/35/base -> origin/gh/nmacchioni/35/base 2025-06-01T20:58:08.3876509Z * [new branch] gh/nmacchioni/35/head -> origin/gh/nmacchioni/35/head 2025-06-01T20:58:08.3877560Z * [new branch] gh/nmacchioni/35/orig -> origin/gh/nmacchioni/35/orig 2025-06-01T20:58:08.3878076Z * [new branch] gh/nmacchioni/36/base -> origin/gh/nmacchioni/36/base 2025-06-01T20:58:08.3878585Z * [new branch] gh/nmacchioni/36/head -> origin/gh/nmacchioni/36/head 2025-06-01T20:58:08.3879098Z * [new branch] gh/nmacchioni/36/orig -> origin/gh/nmacchioni/36/orig 2025-06-01T20:58:08.3879601Z * [new branch] gh/nmacchioni/37/base -> origin/gh/nmacchioni/37/base 2025-06-01T20:58:08.3880112Z * [new branch] gh/nmacchioni/37/head -> origin/gh/nmacchioni/37/head 2025-06-01T20:58:08.3880615Z * [new branch] gh/nmacchioni/37/orig -> origin/gh/nmacchioni/37/orig 2025-06-01T20:58:08.3881128Z * [new branch] gh/nmacchioni/39/base -> origin/gh/nmacchioni/39/base 2025-06-01T20:58:08.3881647Z * [new branch] gh/nmacchioni/39/head -> origin/gh/nmacchioni/39/head 2025-06-01T20:58:08.3882150Z * [new branch] gh/nmacchioni/39/orig -> origin/gh/nmacchioni/39/orig 2025-06-01T20:58:08.3882657Z * [new branch] gh/nmacchioni/40/base -> origin/gh/nmacchioni/40/base 2025-06-01T20:58:08.3883156Z * [new branch] gh/nmacchioni/40/head -> origin/gh/nmacchioni/40/head 2025-06-01T20:58:08.3883678Z * [new branch] gh/nmacchioni/40/orig -> origin/gh/nmacchioni/40/orig 2025-06-01T20:58:08.3884190Z * [new branch] gh/nmacchioni/8/base -> origin/gh/nmacchioni/8/base 2025-06-01T20:58:08.4310531Z * [new branch] gh/nmacchioni/8/head -> origin/gh/nmacchioni/8/head 2025-06-01T20:58:08.4311194Z * [new branch] gh/nmacchioni/8/orig -> origin/gh/nmacchioni/8/orig 2025-06-01T20:58:08.4311803Z * [new branch] gh/oulgen/25/base -> origin/gh/oulgen/25/base 2025-06-01T20:58:08.4312397Z * [new branch] gh/oulgen/25/head -> origin/gh/oulgen/25/head 2025-06-01T20:58:08.4312914Z * [new branch] gh/oulgen/25/orig -> origin/gh/oulgen/25/orig 2025-06-01T20:58:08.4313423Z * [new branch] gh/oulgen/32/base -> origin/gh/oulgen/32/base 2025-06-01T20:58:08.4313990Z * [new branch] gh/oulgen/32/head -> origin/gh/oulgen/32/head 2025-06-01T20:58:08.4314503Z * [new branch] gh/oulgen/32/orig -> origin/gh/oulgen/32/orig 2025-06-01T20:58:08.4315071Z * [new branch] gh/oulgen/33/base -> origin/gh/oulgen/33/base 2025-06-01T20:58:08.4315592Z * [new branch] gh/oulgen/33/head -> origin/gh/oulgen/33/head 2025-06-01T20:58:08.4316151Z * [new branch] gh/oulgen/33/orig -> origin/gh/oulgen/33/orig 2025-06-01T20:58:08.4316678Z * [new branch] gh/oulgen/34/base -> origin/gh/oulgen/34/base 2025-06-01T20:58:08.4317233Z * [new branch] gh/oulgen/34/head -> origin/gh/oulgen/34/head 2025-06-01T20:58:08.4317761Z * [new branch] gh/oulgen/34/orig -> origin/gh/oulgen/34/orig 2025-06-01T20:58:08.4318273Z * [new branch] gh/oulgen/35/base -> origin/gh/oulgen/35/base 2025-06-01T20:58:08.4318822Z * [new branch] gh/oulgen/35/head -> origin/gh/oulgen/35/head 2025-06-01T20:58:08.4319338Z * [new branch] gh/oulgen/35/orig -> origin/gh/oulgen/35/orig 2025-06-01T20:58:08.4319879Z * [new branch] gh/oulgen/36/base -> origin/gh/oulgen/36/base 2025-06-01T20:58:08.4320403Z * [new branch] gh/oulgen/36/head -> origin/gh/oulgen/36/head 2025-06-01T20:58:08.4320917Z * [new branch] gh/oulgen/36/orig -> origin/gh/oulgen/36/orig 2025-06-01T20:58:08.4321693Z * [new branch] gh/oulgen/37/base -> origin/gh/oulgen/37/base 2025-06-01T20:58:08.4322723Z * [new branch] gh/oulgen/37/head -> origin/gh/oulgen/37/head 2025-06-01T20:58:08.4323193Z * [new branch] gh/oulgen/37/orig -> origin/gh/oulgen/37/orig 2025-06-01T20:58:08.4323681Z * [new branch] gh/pearu/108/base -> origin/gh/pearu/108/base 2025-06-01T20:58:08.4324151Z * [new branch] gh/pearu/108/head -> origin/gh/pearu/108/head 2025-06-01T20:58:08.4324628Z * [new branch] gh/pearu/108/orig -> origin/gh/pearu/108/orig 2025-06-01T20:58:08.4325103Z * [new branch] gh/pearu/109/base -> origin/gh/pearu/109/base 2025-06-01T20:58:08.4325566Z * [new branch] gh/pearu/109/head -> origin/gh/pearu/109/head 2025-06-01T20:58:08.4326040Z * [new branch] gh/pearu/109/orig -> origin/gh/pearu/109/orig 2025-06-01T20:58:08.4326517Z * [new branch] gh/pearu/110/base -> origin/gh/pearu/110/base 2025-06-01T20:58:08.4327002Z * [new branch] gh/pearu/110/head -> origin/gh/pearu/110/head 2025-06-01T20:58:08.4327581Z * [new branch] gh/pearu/110/orig -> origin/gh/pearu/110/orig 2025-06-01T20:58:08.4328090Z * [new branch] gh/pearu/111/base -> origin/gh/pearu/111/base 2025-06-01T20:58:08.4328559Z * [new branch] gh/pearu/111/head -> origin/gh/pearu/111/head 2025-06-01T20:58:08.4329019Z * [new branch] gh/pearu/111/orig -> origin/gh/pearu/111/orig 2025-06-01T20:58:08.4329508Z * [new branch] gh/pearu/112/base -> origin/gh/pearu/112/base 2025-06-01T20:58:08.4329983Z * [new branch] gh/pearu/112/head -> origin/gh/pearu/112/head 2025-06-01T20:58:08.4330447Z * [new branch] gh/pearu/112/orig -> origin/gh/pearu/112/orig 2025-06-01T20:58:08.4330937Z * [new branch] gh/pearu/113/base -> origin/gh/pearu/113/base 2025-06-01T20:58:08.4331412Z * [new branch] gh/pearu/113/head -> origin/gh/pearu/113/head 2025-06-01T20:58:08.4331882Z * [new branch] gh/pearu/113/orig -> origin/gh/pearu/113/orig 2025-06-01T20:58:08.4332361Z * [new branch] gh/pearu/114/base -> origin/gh/pearu/114/base 2025-06-01T20:58:08.4332838Z * [new branch] gh/pearu/114/head -> origin/gh/pearu/114/head 2025-06-01T20:58:08.4333356Z * [new branch] gh/pearu/114/orig -> origin/gh/pearu/114/orig 2025-06-01T20:58:08.4333911Z * [new branch] gh/pearu/115/base -> origin/gh/pearu/115/base 2025-06-01T20:58:08.4334382Z * [new branch] gh/pearu/115/head -> origin/gh/pearu/115/head 2025-06-01T20:58:08.4334843Z * [new branch] gh/pearu/115/orig -> origin/gh/pearu/115/orig 2025-06-01T20:58:08.4335331Z * [new branch] gh/pearu/56/base -> origin/gh/pearu/56/base 2025-06-01T20:58:08.4771087Z * [new branch] gh/pearu/56/head -> origin/gh/pearu/56/head 2025-06-01T20:58:08.4771583Z * [new branch] gh/pearu/56/orig -> origin/gh/pearu/56/orig 2025-06-01T20:58:08.4772050Z * [new branch] gh/pearu/97/base -> origin/gh/pearu/97/base 2025-06-01T20:58:08.4772529Z * [new branch] gh/pearu/97/head -> origin/gh/pearu/97/head 2025-06-01T20:58:08.4772983Z * [new branch] gh/pearu/97/orig -> origin/gh/pearu/97/orig 2025-06-01T20:58:08.4773492Z * [new branch] gh/peterbell10/635/base -> origin/gh/peterbell10/635/base 2025-06-01T20:58:08.4774080Z * [new branch] gh/peterbell10/635/head -> origin/gh/peterbell10/635/head 2025-06-01T20:58:08.4774666Z * [new branch] gh/peterbell10/635/orig -> origin/gh/peterbell10/635/orig 2025-06-01T20:58:08.4775902Z * [new branch] gh/peterbell10/636/base -> origin/gh/peterbell10/636/base 2025-06-01T20:58:08.4776442Z * [new branch] gh/peterbell10/636/head -> origin/gh/peterbell10/636/head 2025-06-01T20:58:08.4776995Z * [new branch] gh/peterbell10/636/orig -> origin/gh/peterbell10/636/orig 2025-06-01T20:58:08.4777506Z * [new branch] gh/qqaatw/29/base -> origin/gh/qqaatw/29/base 2025-06-01T20:58:08.4777989Z * [new branch] gh/qqaatw/29/head -> origin/gh/qqaatw/29/head 2025-06-01T20:58:08.4778460Z * [new branch] gh/qqaatw/29/orig -> origin/gh/qqaatw/29/orig 2025-06-01T20:58:08.4778939Z * [new branch] gh/qqaatw/30/base -> origin/gh/qqaatw/30/base 2025-06-01T20:58:08.4779458Z * [new branch] gh/qqaatw/30/head -> origin/gh/qqaatw/30/head 2025-06-01T20:58:08.4779974Z * [new branch] gh/qqaatw/30/orig -> origin/gh/qqaatw/30/orig 2025-06-01T20:58:08.4780642Z * [new branch] gh/raymo/catch-unserialisable-nn-modules -> origin/gh/raymo/catch-unserialisable-nn-modules 2025-06-01T20:58:08.4781392Z * [new branch] gh/raymo/cleanup-dynamo-logging -> origin/gh/raymo/cleanup-dynamo-logging 2025-06-01T20:58:08.4781961Z * [new branch] gh/rec/133/base -> origin/gh/rec/133/base 2025-06-01T20:58:08.4782426Z * [new branch] gh/rec/133/head -> origin/gh/rec/133/head 2025-06-01T20:58:08.4782875Z * [new branch] gh/rec/133/orig -> origin/gh/rec/133/orig 2025-06-01T20:58:08.4783336Z * [new branch] gh/rec/134/base -> origin/gh/rec/134/base 2025-06-01T20:58:08.4783785Z * [new branch] gh/rec/134/head -> origin/gh/rec/134/head 2025-06-01T20:58:08.4784233Z * [new branch] gh/rec/134/orig -> origin/gh/rec/134/orig 2025-06-01T20:58:08.4784692Z * [new branch] gh/rec/137/base -> origin/gh/rec/137/base 2025-06-01T20:58:08.4785186Z * [new branch] gh/rec/137/head -> origin/gh/rec/137/head 2025-06-01T20:58:08.4785685Z * [new branch] gh/rec/137/orig -> origin/gh/rec/137/orig 2025-06-01T20:58:08.4786126Z * [new branch] gh/rec/141/base -> origin/gh/rec/141/base 2025-06-01T20:58:08.4786577Z * [new branch] gh/rec/141/head -> origin/gh/rec/141/head 2025-06-01T20:58:08.4787019Z * [new branch] gh/rec/142/base -> origin/gh/rec/142/base 2025-06-01T20:58:08.4787479Z * [new branch] gh/rec/142/head -> origin/gh/rec/142/head 2025-06-01T20:58:08.4787931Z * [new branch] gh/rec/142/orig -> origin/gh/rec/142/orig 2025-06-01T20:58:08.4788373Z * [new branch] gh/rec/143/base -> origin/gh/rec/143/base 2025-06-01T20:58:08.4788848Z * [new branch] gh/rec/143/head -> origin/gh/rec/143/head 2025-06-01T20:58:08.4789296Z * [new branch] gh/rec/143/orig -> origin/gh/rec/143/orig 2025-06-01T20:58:08.4789829Z * [new branch] gh/rec/144/base -> origin/gh/rec/144/base 2025-06-01T20:58:08.4790280Z * [new branch] gh/rec/144/head -> origin/gh/rec/144/head 2025-06-01T20:58:08.4790723Z * [new branch] gh/rec/144/orig -> origin/gh/rec/144/orig 2025-06-01T20:58:08.4791227Z * [new branch] gh/rec/145/base -> origin/gh/rec/145/base 2025-06-01T20:58:08.4791717Z * [new branch] gh/rec/145/head -> origin/gh/rec/145/head 2025-06-01T20:58:08.4792166Z * [new branch] gh/rec/145/orig -> origin/gh/rec/145/orig 2025-06-01T20:58:08.4792612Z * [new branch] gh/rec/146/base -> origin/gh/rec/146/base 2025-06-01T20:58:08.4793181Z * [new branch] gh/rec/146/head -> origin/gh/rec/146/head 2025-06-01T20:58:08.4794017Z * [new branch] gh/rec/146/orig -> origin/gh/rec/146/orig 2025-06-01T20:58:08.4794460Z * [new branch] gh/rec/147/base -> origin/gh/rec/147/base 2025-06-01T20:58:08.4794910Z * [new branch] gh/rec/147/head -> origin/gh/rec/147/head 2025-06-01T20:58:08.4795358Z * [new branch] gh/rec/147/orig -> origin/gh/rec/147/orig 2025-06-01T20:58:08.5219866Z * [new branch] gh/rec/148/base -> origin/gh/rec/148/base 2025-06-01T20:58:08.5220401Z * [new branch] gh/rec/148/head -> origin/gh/rec/148/head 2025-06-01T20:58:08.5220865Z * [new branch] gh/rec/148/orig -> origin/gh/rec/148/orig 2025-06-01T20:58:08.5221323Z * [new branch] gh/rec/149/base -> origin/gh/rec/149/base 2025-06-01T20:58:08.5221793Z * [new branch] gh/rec/149/head -> origin/gh/rec/149/head 2025-06-01T20:58:08.5222269Z * [new branch] gh/rec/149/orig -> origin/gh/rec/149/orig 2025-06-01T20:58:08.5222739Z * [new branch] gh/rec/150/base -> origin/gh/rec/150/base 2025-06-01T20:58:08.5223179Z * [new branch] gh/rec/150/head -> origin/gh/rec/150/head 2025-06-01T20:58:08.5223632Z * [new branch] gh/rec/150/orig -> origin/gh/rec/150/orig 2025-06-01T20:58:08.5224085Z * [new branch] gh/rec/151/base -> origin/gh/rec/151/base 2025-06-01T20:58:08.5224576Z * [new branch] gh/rec/151/head -> origin/gh/rec/151/head 2025-06-01T20:58:08.5225080Z * [new branch] gh/rec/152/base -> origin/gh/rec/152/base 2025-06-01T20:58:08.5225524Z * [new branch] gh/rec/152/head -> origin/gh/rec/152/head 2025-06-01T20:58:08.5225979Z * [new branch] gh/rec/152/orig -> origin/gh/rec/152/orig 2025-06-01T20:58:08.5226448Z * [new branch] gh/sarckk/1/base -> origin/gh/sarckk/1/base 2025-06-01T20:58:08.5226917Z * [new branch] gh/sarckk/1/head -> origin/gh/sarckk/1/head 2025-06-01T20:58:08.5227391Z * [new branch] gh/sarckk/1/orig -> origin/gh/sarckk/1/orig 2025-06-01T20:58:08.5227849Z * [new branch] gh/sarckk/2/base -> origin/gh/sarckk/2/base 2025-06-01T20:58:08.5228311Z * [new branch] gh/sarckk/2/head -> origin/gh/sarckk/2/head 2025-06-01T20:58:08.5228769Z * [new branch] gh/sarckk/2/orig -> origin/gh/sarckk/2/orig 2025-06-01T20:58:08.5229265Z * [new branch] gh/seemethere/14/base -> origin/gh/seemethere/14/base 2025-06-01T20:58:08.5229872Z * [new branch] gh/seemethere/14/head -> origin/gh/seemethere/14/head 2025-06-01T20:58:08.5230449Z * [new branch] gh/seemethere/14/orig -> origin/gh/seemethere/14/orig 2025-06-01T20:58:08.5231024Z * [new branch] gh/seemethere/23/base -> origin/gh/seemethere/23/base 2025-06-01T20:58:08.5231549Z * [new branch] gh/seemethere/23/head -> origin/gh/seemethere/23/head 2025-06-01T20:58:08.5232066Z * [new branch] gh/seemethere/23/orig -> origin/gh/seemethere/23/orig 2025-06-01T20:58:08.5232590Z * [new branch] gh/seemethere/24/base -> origin/gh/seemethere/24/base 2025-06-01T20:58:08.5233094Z * [new branch] gh/seemethere/24/head -> origin/gh/seemethere/24/head 2025-06-01T20:58:08.5233613Z * [new branch] gh/seemethere/24/orig -> origin/gh/seemethere/24/orig 2025-06-01T20:58:08.5234125Z * [new branch] gh/seemethere/30/base -> origin/gh/seemethere/30/base 2025-06-01T20:58:08.5234628Z * [new branch] gh/seemethere/30/head -> origin/gh/seemethere/30/head 2025-06-01T20:58:08.5235829Z * [new branch] gh/seemethere/30/orig -> origin/gh/seemethere/30/orig 2025-06-01T20:58:08.5236446Z * [new branch] gh/seemethere/32/base -> origin/gh/seemethere/32/base 2025-06-01T20:58:08.5236974Z * [new branch] gh/seemethere/32/head -> origin/gh/seemethere/32/head 2025-06-01T20:58:08.5237482Z * [new branch] gh/seemethere/32/orig -> origin/gh/seemethere/32/orig 2025-06-01T20:58:08.5238002Z * [new branch] gh/seemethere/33/base -> origin/gh/seemethere/33/base 2025-06-01T20:58:08.5238517Z * [new branch] gh/seemethere/33/head -> origin/gh/seemethere/33/head 2025-06-01T20:58:08.5239029Z * [new branch] gh/seemethere/33/orig -> origin/gh/seemethere/33/orig 2025-06-01T20:58:08.5239544Z * [new branch] gh/seemethere/34/base -> origin/gh/seemethere/34/base 2025-06-01T20:58:08.5240054Z * [new branch] gh/seemethere/34/head -> origin/gh/seemethere/34/head 2025-06-01T20:58:08.5240576Z * [new branch] gh/seemethere/34/orig -> origin/gh/seemethere/34/orig 2025-06-01T20:58:08.5241087Z * [new branch] gh/seemethere/7/base -> origin/gh/seemethere/7/base 2025-06-01T20:58:08.5241622Z * [new branch] gh/seemethere/7/head -> origin/gh/seemethere/7/head 2025-06-01T20:58:08.5242188Z * [new branch] gh/seemethere/7/orig -> origin/gh/seemethere/7/orig 2025-06-01T20:58:08.5242707Z * [new branch] gh/shunting314/145/base -> origin/gh/shunting314/145/base 2025-06-01T20:58:08.5243241Z * [new branch] gh/shunting314/145/head -> origin/gh/shunting314/145/head 2025-06-01T20:58:08.5243768Z * [new branch] gh/shunting314/145/orig -> origin/gh/shunting314/145/orig 2025-06-01T20:58:08.5673937Z * [new branch] gh/shunting314/176/base -> origin/gh/shunting314/176/base 2025-06-01T20:58:08.5674585Z * [new branch] gh/shunting314/176/head -> origin/gh/shunting314/176/head 2025-06-01T20:58:08.5675125Z * [new branch] gh/shunting314/176/orig -> origin/gh/shunting314/176/orig 2025-06-01T20:58:08.5675681Z * [new branch] gh/shunting314/207/base -> origin/gh/shunting314/207/base 2025-06-01T20:58:08.5676210Z * [new branch] gh/shunting314/207/head -> origin/gh/shunting314/207/head 2025-06-01T20:58:08.5676740Z * [new branch] gh/shunting314/207/orig -> origin/gh/shunting314/207/orig 2025-06-01T20:58:08.5677264Z * [new branch] gh/shunting314/208/base -> origin/gh/shunting314/208/base 2025-06-01T20:58:08.5677784Z * [new branch] gh/shunting314/208/head -> origin/gh/shunting314/208/head 2025-06-01T20:58:08.5678307Z * [new branch] gh/shunting314/208/orig -> origin/gh/shunting314/208/orig 2025-06-01T20:58:08.5678833Z * [new branch] gh/silverguo/1/base -> origin/gh/silverguo/1/base 2025-06-01T20:58:08.5679341Z * [new branch] gh/silverguo/1/head -> origin/gh/silverguo/1/head 2025-06-01T20:58:08.5679859Z * [new branch] gh/silverguo/2/base -> origin/gh/silverguo/2/base 2025-06-01T20:58:08.5680356Z * [new branch] gh/silverguo/2/head -> origin/gh/silverguo/2/head 2025-06-01T20:58:08.5680854Z * [new branch] gh/silverguo/3/base -> origin/gh/silverguo/3/base 2025-06-01T20:58:08.5681352Z * [new branch] gh/silverguo/3/head -> origin/gh/silverguo/3/head 2025-06-01T20:58:08.5681841Z * [new branch] gh/silverguo/4/base -> origin/gh/silverguo/4/base 2025-06-01T20:58:08.5682344Z * [new branch] gh/silverguo/4/head -> origin/gh/silverguo/4/head 2025-06-01T20:58:08.5682846Z * [new branch] gh/sinhaanhsul/1/base -> origin/gh/sinhaanhsul/1/base 2025-06-01T20:58:08.5683544Z * [new branch] gh/sinhaanhsul/1/head -> origin/gh/sinhaanhsul/1/head 2025-06-01T20:58:08.5684582Z * [new branch] gh/soulitzer/269/base -> origin/gh/soulitzer/269/base 2025-06-01T20:58:08.5685113Z * [new branch] gh/soulitzer/269/head -> origin/gh/soulitzer/269/head 2025-06-01T20:58:08.5685632Z * [new branch] gh/soulitzer/269/orig -> origin/gh/soulitzer/269/orig 2025-06-01T20:58:08.5686137Z * [new branch] gh/soulitzer/276/base -> origin/gh/soulitzer/276/base 2025-06-01T20:58:08.5686654Z * [new branch] gh/soulitzer/276/head -> origin/gh/soulitzer/276/head 2025-06-01T20:58:08.5687153Z * [new branch] gh/soulitzer/276/orig -> origin/gh/soulitzer/276/orig 2025-06-01T20:58:08.5687663Z * [new branch] gh/soulitzer/287/base -> origin/gh/soulitzer/287/base 2025-06-01T20:58:08.5688177Z * [new branch] gh/soulitzer/287/head -> origin/gh/soulitzer/287/head 2025-06-01T20:58:08.5688689Z * [new branch] gh/soulitzer/287/orig -> origin/gh/soulitzer/287/orig 2025-06-01T20:58:08.5689202Z * [new branch] gh/soulitzer/296/base -> origin/gh/soulitzer/296/base 2025-06-01T20:58:08.5689702Z * [new branch] gh/soulitzer/296/head -> origin/gh/soulitzer/296/head 2025-06-01T20:58:08.5690208Z * [new branch] gh/soulitzer/296/orig -> origin/gh/soulitzer/296/orig 2025-06-01T20:58:08.5690715Z * [new branch] gh/soulitzer/299/base -> origin/gh/soulitzer/299/base 2025-06-01T20:58:08.5691219Z * [new branch] gh/soulitzer/299/head -> origin/gh/soulitzer/299/head 2025-06-01T20:58:08.5691724Z * [new branch] gh/soulitzer/299/orig -> origin/gh/soulitzer/299/orig 2025-06-01T20:58:08.5692223Z * [new branch] gh/soulitzer/300/base -> origin/gh/soulitzer/300/base 2025-06-01T20:58:08.5692736Z * [new branch] gh/soulitzer/300/head -> origin/gh/soulitzer/300/head 2025-06-01T20:58:08.5693245Z * [new branch] gh/soulitzer/300/orig -> origin/gh/soulitzer/300/orig 2025-06-01T20:58:08.5693757Z * [new branch] gh/soulitzer/301/base -> origin/gh/soulitzer/301/base 2025-06-01T20:58:08.5694262Z * [new branch] gh/soulitzer/301/head -> origin/gh/soulitzer/301/head 2025-06-01T20:58:08.5694767Z * [new branch] gh/soulitzer/301/orig -> origin/gh/soulitzer/301/orig 2025-06-01T20:58:08.5695270Z * [new branch] gh/soulitzer/313/base -> origin/gh/soulitzer/313/base 2025-06-01T20:58:08.5695764Z * [new branch] gh/soulitzer/313/head -> origin/gh/soulitzer/313/head 2025-06-01T20:58:08.5696269Z * [new branch] gh/soulitzer/313/orig -> origin/gh/soulitzer/313/orig 2025-06-01T20:58:08.5696770Z * [new branch] gh/soulitzer/319/base -> origin/gh/soulitzer/319/base 2025-06-01T20:58:08.5697281Z * [new branch] gh/soulitzer/319/head -> origin/gh/soulitzer/319/head 2025-06-01T20:58:08.5697788Z * [new branch] gh/soulitzer/319/orig -> origin/gh/soulitzer/319/orig 2025-06-01T20:58:08.6996831Z * [new branch] gh/soulitzer/320/base -> origin/gh/soulitzer/320/base 2025-06-01T20:58:08.6997430Z * [new branch] gh/soulitzer/320/head -> origin/gh/soulitzer/320/head 2025-06-01T20:58:08.6997953Z * [new branch] gh/soulitzer/320/orig -> origin/gh/soulitzer/320/orig 2025-06-01T20:58:08.6998467Z * [new branch] gh/soulitzer/335/base -> origin/gh/soulitzer/335/base 2025-06-01T20:58:08.6998978Z * [new branch] gh/soulitzer/335/head -> origin/gh/soulitzer/335/head 2025-06-01T20:58:08.6999485Z * [new branch] gh/soulitzer/335/orig -> origin/gh/soulitzer/335/orig 2025-06-01T20:58:08.7000189Z * [new branch] gh/soulitzer/336/base -> origin/gh/soulitzer/336/base 2025-06-01T20:58:08.7001297Z * [new branch] gh/soulitzer/336/head -> origin/gh/soulitzer/336/head 2025-06-01T20:58:08.7001808Z * [new branch] gh/soulitzer/336/orig -> origin/gh/soulitzer/336/orig 2025-06-01T20:58:08.7002311Z * [new branch] gh/soulitzer/347/base -> origin/gh/soulitzer/347/base 2025-06-01T20:58:08.7002827Z * [new branch] gh/soulitzer/347/head -> origin/gh/soulitzer/347/head 2025-06-01T20:58:08.7003325Z * [new branch] gh/soulitzer/347/orig -> origin/gh/soulitzer/347/orig 2025-06-01T20:58:08.7003833Z * [new branch] gh/soulitzer/349/base -> origin/gh/soulitzer/349/base 2025-06-01T20:58:08.7004346Z * [new branch] gh/soulitzer/349/head -> origin/gh/soulitzer/349/head 2025-06-01T20:58:08.7004848Z * [new branch] gh/soulitzer/349/orig -> origin/gh/soulitzer/349/orig 2025-06-01T20:58:08.7005368Z * [new branch] gh/soulitzer/350/base -> origin/gh/soulitzer/350/base 2025-06-01T20:58:08.7005874Z * [new branch] gh/soulitzer/350/head -> origin/gh/soulitzer/350/head 2025-06-01T20:58:08.7006392Z * [new branch] gh/soulitzer/350/orig -> origin/gh/soulitzer/350/orig 2025-06-01T20:58:08.7006900Z * [new branch] gh/soulitzer/351/base -> origin/gh/soulitzer/351/base 2025-06-01T20:58:08.7007405Z * [new branch] gh/soulitzer/351/head -> origin/gh/soulitzer/351/head 2025-06-01T20:58:08.7007919Z * [new branch] gh/soulitzer/351/orig -> origin/gh/soulitzer/351/orig 2025-06-01T20:58:08.7008419Z * [new branch] gh/soulitzer/353/base -> origin/gh/soulitzer/353/base 2025-06-01T20:58:08.7008924Z * [new branch] gh/soulitzer/353/head -> origin/gh/soulitzer/353/head 2025-06-01T20:58:08.7009421Z * [new branch] gh/soulitzer/353/orig -> origin/gh/soulitzer/353/orig 2025-06-01T20:58:08.7009944Z * [new branch] gh/soulitzer/357/base -> origin/gh/soulitzer/357/base 2025-06-01T20:58:08.7010453Z * [new branch] gh/soulitzer/357/head -> origin/gh/soulitzer/357/head 2025-06-01T20:58:08.7010953Z * [new branch] gh/soulitzer/357/orig -> origin/gh/soulitzer/357/orig 2025-06-01T20:58:08.7011466Z * [new branch] gh/soulitzer/358/base -> origin/gh/soulitzer/358/base 2025-06-01T20:58:08.7011978Z * [new branch] gh/soulitzer/358/head -> origin/gh/soulitzer/358/head 2025-06-01T20:58:08.7012490Z * [new branch] gh/soulitzer/358/orig -> origin/gh/soulitzer/358/orig 2025-06-01T20:58:08.7013005Z * [new branch] gh/soulitzer/359/base -> origin/gh/soulitzer/359/base 2025-06-01T20:58:08.7013506Z * [new branch] gh/soulitzer/359/head -> origin/gh/soulitzer/359/head 2025-06-01T20:58:08.7014019Z * [new branch] gh/soulitzer/359/orig -> origin/gh/soulitzer/359/orig 2025-06-01T20:58:08.7014526Z * [new branch] gh/soulitzer/360/base -> origin/gh/soulitzer/360/base 2025-06-01T20:58:08.7015032Z * [new branch] gh/soulitzer/360/head -> origin/gh/soulitzer/360/head 2025-06-01T20:58:08.7015536Z * [new branch] gh/soulitzer/360/orig -> origin/gh/soulitzer/360/orig 2025-06-01T20:58:08.7016038Z * [new branch] gh/soulitzer/361/base -> origin/gh/soulitzer/361/base 2025-06-01T20:58:08.7016544Z * [new branch] gh/soulitzer/361/head -> origin/gh/soulitzer/361/head 2025-06-01T20:58:08.7017048Z * [new branch] gh/soulitzer/361/orig -> origin/gh/soulitzer/361/orig 2025-06-01T20:58:08.7017553Z * [new branch] gh/soulitzer/362/base -> origin/gh/soulitzer/362/base 2025-06-01T20:58:08.7018070Z * [new branch] gh/soulitzer/362/head -> origin/gh/soulitzer/362/head 2025-06-01T20:58:08.7018697Z * [new branch] gh/soulitzer/362/orig -> origin/gh/soulitzer/362/orig 2025-06-01T20:58:08.7019585Z * [new branch] gh/soulitzer/363/base -> origin/gh/soulitzer/363/base 2025-06-01T20:58:08.7020096Z * [new branch] gh/soulitzer/363/head -> origin/gh/soulitzer/363/head 2025-06-01T20:58:08.7020615Z * [new branch] gh/soulitzer/363/orig -> origin/gh/soulitzer/363/orig 2025-06-01T20:58:08.7021116Z * [new branch] gh/soulitzer/364/base -> origin/gh/soulitzer/364/base 2025-06-01T20:58:08.7482249Z * [new branch] gh/soulitzer/364/head -> origin/gh/soulitzer/364/head 2025-06-01T20:58:08.7482841Z * [new branch] gh/soulitzer/364/orig -> origin/gh/soulitzer/364/orig 2025-06-01T20:58:08.7483358Z * [new branch] gh/soulitzer/365/base -> origin/gh/soulitzer/365/base 2025-06-01T20:58:08.7483907Z * [new branch] gh/soulitzer/365/head -> origin/gh/soulitzer/365/head 2025-06-01T20:58:08.7484438Z * [new branch] gh/soulitzer/365/orig -> origin/gh/soulitzer/365/orig 2025-06-01T20:58:08.7484949Z * [new branch] gh/soulitzer/366/base -> origin/gh/soulitzer/366/base 2025-06-01T20:58:08.7485463Z * [new branch] gh/soulitzer/366/head -> origin/gh/soulitzer/366/head 2025-06-01T20:58:08.7485971Z * [new branch] gh/soulitzer/366/orig -> origin/gh/soulitzer/366/orig 2025-06-01T20:58:08.7486488Z * [new branch] gh/soulitzer/367/base -> origin/gh/soulitzer/367/base 2025-06-01T20:58:08.7486994Z * [new branch] gh/soulitzer/367/head -> origin/gh/soulitzer/367/head 2025-06-01T20:58:08.7487508Z * [new branch] gh/soulitzer/367/orig -> origin/gh/soulitzer/367/orig 2025-06-01T20:58:08.7487992Z * [new branch] gh/suo/619/base -> origin/gh/suo/619/base 2025-06-01T20:58:08.7488514Z * [new branch] gh/swolchok/728/next -> origin/gh/swolchok/728/next 2025-06-01T20:58:08.7489081Z * [new branch] gh/swolchok/732/base -> origin/gh/swolchok/732/base 2025-06-01T20:58:08.7489586Z * [new branch] gh/swolchok/732/head -> origin/gh/swolchok/732/head 2025-06-01T20:58:08.7490096Z * [new branch] gh/swolchok/732/orig -> origin/gh/swolchok/732/orig 2025-06-01T20:58:08.7490604Z * [new branch] gh/swolchok/738/base -> origin/gh/swolchok/738/base 2025-06-01T20:58:08.7491095Z * [new branch] gh/swolchok/738/head -> origin/gh/swolchok/738/head 2025-06-01T20:58:08.7491596Z * [new branch] gh/swolchok/738/orig -> origin/gh/swolchok/738/orig 2025-06-01T20:58:08.7492082Z * [new branch] gh/swolchok/739/base -> origin/gh/swolchok/739/base 2025-06-01T20:58:08.7492584Z * [new branch] gh/swolchok/739/head -> origin/gh/swolchok/739/head 2025-06-01T20:58:08.7493096Z * [new branch] gh/swolchok/739/orig -> origin/gh/swolchok/739/orig 2025-06-01T20:58:08.7493582Z * [new branch] gh/swolchok/740/base -> origin/gh/swolchok/740/base 2025-06-01T20:58:08.7494080Z * [new branch] gh/swolchok/740/head -> origin/gh/swolchok/740/head 2025-06-01T20:58:08.7494608Z * [new branch] gh/swolchok/740/orig -> origin/gh/swolchok/740/orig 2025-06-01T20:58:08.7495166Z * [new branch] gh/swolchok/741/base -> origin/gh/swolchok/741/base 2025-06-01T20:58:08.7495663Z * [new branch] gh/swolchok/741/head -> origin/gh/swolchok/741/head 2025-06-01T20:58:08.7496156Z * [new branch] gh/swolchok/741/orig -> origin/gh/swolchok/741/orig 2025-06-01T20:58:08.7496653Z * [new branch] gh/swolchok/742/base -> origin/gh/swolchok/742/base 2025-06-01T20:58:08.7497347Z * [new branch] gh/swolchok/742/head -> origin/gh/swolchok/742/head 2025-06-01T20:58:08.7498328Z * [new branch] gh/swolchok/742/orig -> origin/gh/swolchok/742/orig 2025-06-01T20:58:08.7498842Z * [new branch] gh/swolchok/743/base -> origin/gh/swolchok/743/base 2025-06-01T20:58:08.7499331Z * [new branch] gh/swolchok/743/head -> origin/gh/swolchok/743/head 2025-06-01T20:58:08.7499829Z * [new branch] gh/swolchok/743/orig -> origin/gh/swolchok/743/orig 2025-06-01T20:58:08.7500388Z * [new branch] gh/swolchok/744/base -> origin/gh/swolchok/744/base 2025-06-01T20:58:08.7500926Z * [new branch] gh/swolchok/744/head -> origin/gh/swolchok/744/head 2025-06-01T20:58:08.7501431Z * [new branch] gh/swolchok/744/orig -> origin/gh/swolchok/744/orig 2025-06-01T20:58:08.7501919Z * [new branch] gh/swolchok/745/base -> origin/gh/swolchok/745/base 2025-06-01T20:58:08.7502427Z * [new branch] gh/swolchok/745/head -> origin/gh/swolchok/745/head 2025-06-01T20:58:08.7502925Z * [new branch] gh/swolchok/745/orig -> origin/gh/swolchok/745/orig 2025-06-01T20:58:08.7503412Z * [new branch] gh/swolchok/746/base -> origin/gh/swolchok/746/base 2025-06-01T20:58:08.7503903Z * [new branch] gh/swolchok/746/head -> origin/gh/swolchok/746/head 2025-06-01T20:58:08.7504388Z * [new branch] gh/swolchok/746/orig -> origin/gh/swolchok/746/orig 2025-06-01T20:58:08.7504884Z * [new branch] gh/swolchok/747/base -> origin/gh/swolchok/747/base 2025-06-01T20:58:08.7505379Z * [new branch] gh/swolchok/747/head -> origin/gh/swolchok/747/head 2025-06-01T20:58:08.7505864Z * [new branch] gh/swolchok/747/orig -> origin/gh/swolchok/747/orig 2025-06-01T20:58:08.7920172Z * [new branch] gh/swolchok/748/base -> origin/gh/swolchok/748/base 2025-06-01T20:58:08.7920804Z * [new branch] gh/swolchok/748/head -> origin/gh/swolchok/748/head 2025-06-01T20:58:08.7921313Z * [new branch] gh/swolchok/748/orig -> origin/gh/swolchok/748/orig 2025-06-01T20:58:08.7921815Z * [new branch] gh/swolchok/749/base -> origin/gh/swolchok/749/base 2025-06-01T20:58:08.7922308Z * [new branch] gh/swolchok/749/head -> origin/gh/swolchok/749/head 2025-06-01T20:58:08.7922809Z * [new branch] gh/swolchok/749/orig -> origin/gh/swolchok/749/orig 2025-06-01T20:58:08.7923304Z * [new branch] gh/swolchok/750/base -> origin/gh/swolchok/750/base 2025-06-01T20:58:08.7923804Z * [new branch] gh/swolchok/750/head -> origin/gh/swolchok/750/head 2025-06-01T20:58:08.7924298Z * [new branch] gh/swolchok/750/orig -> origin/gh/swolchok/750/orig 2025-06-01T20:58:08.7924792Z * [new branch] gh/swolchok/751/base -> origin/gh/swolchok/751/base 2025-06-01T20:58:08.7925297Z * [new branch] gh/swolchok/751/head -> origin/gh/swolchok/751/head 2025-06-01T20:58:08.7925797Z * [new branch] gh/swolchok/751/orig -> origin/gh/swolchok/751/orig 2025-06-01T20:58:08.7926299Z * [new branch] gh/swolchok/752/base -> origin/gh/swolchok/752/base 2025-06-01T20:58:08.7926796Z * [new branch] gh/swolchok/752/head -> origin/gh/swolchok/752/head 2025-06-01T20:58:08.7927287Z * [new branch] gh/swolchok/752/orig -> origin/gh/swolchok/752/orig 2025-06-01T20:58:08.7927789Z * [new branch] gh/swolchok/753/base -> origin/gh/swolchok/753/base 2025-06-01T20:58:08.7928286Z * [new branch] gh/swolchok/753/head -> origin/gh/swolchok/753/head 2025-06-01T20:58:08.7928874Z * [new branch] gh/swolchok/753/orig -> origin/gh/swolchok/753/orig 2025-06-01T20:58:08.7930332Z * [new branch] gh/swolchok/754/base -> origin/gh/swolchok/754/base 2025-06-01T20:58:08.7931335Z * [new branch] gh/swolchok/754/head -> origin/gh/swolchok/754/head 2025-06-01T20:58:08.7931877Z * [new branch] gh/swolchok/754/orig -> origin/gh/swolchok/754/orig 2025-06-01T20:58:08.7932453Z * [new branch] gh/swolchok/755/base -> origin/gh/swolchok/755/base 2025-06-01T20:58:08.7932994Z * [new branch] gh/swolchok/755/head -> origin/gh/swolchok/755/head 2025-06-01T20:58:08.7933566Z * [new branch] gh/swolchok/755/orig -> origin/gh/swolchok/755/orig 2025-06-01T20:58:08.7934105Z * [new branch] gh/swolchok/756/base -> origin/gh/swolchok/756/base 2025-06-01T20:58:08.7934652Z * [new branch] gh/swolchok/756/head -> origin/gh/swolchok/756/head 2025-06-01T20:58:08.7935139Z * [new branch] gh/swolchok/756/orig -> origin/gh/swolchok/756/orig 2025-06-01T20:58:08.7935635Z * [new branch] gh/swolchok/757/base -> origin/gh/swolchok/757/base 2025-06-01T20:58:08.7936129Z * [new branch] gh/swolchok/757/head -> origin/gh/swolchok/757/head 2025-06-01T20:58:08.7936622Z * [new branch] gh/swolchok/757/orig -> origin/gh/swolchok/757/orig 2025-06-01T20:58:08.7937124Z * [new branch] gh/swolchok/758/base -> origin/gh/swolchok/758/base 2025-06-01T20:58:08.7937610Z * [new branch] gh/swolchok/758/head -> origin/gh/swolchok/758/head 2025-06-01T20:58:08.7938106Z * [new branch] gh/swolchok/758/orig -> origin/gh/swolchok/758/orig 2025-06-01T20:58:08.7938592Z * [new branch] gh/swolchok/759/base -> origin/gh/swolchok/759/base 2025-06-01T20:58:08.7939092Z * [new branch] gh/swolchok/759/head -> origin/gh/swolchok/759/head 2025-06-01T20:58:08.7939625Z * [new branch] gh/swolchok/759/orig -> origin/gh/swolchok/759/orig 2025-06-01T20:58:08.7940164Z * [new branch] gh/swolchok/760/base -> origin/gh/swolchok/760/base 2025-06-01T20:58:08.7940744Z * [new branch] gh/swolchok/760/head -> origin/gh/swolchok/760/head 2025-06-01T20:58:08.7941273Z * [new branch] gh/swolchok/760/orig -> origin/gh/swolchok/760/orig 2025-06-01T20:58:08.7941847Z * [new branch] gh/swolchok/761/base -> origin/gh/swolchok/761/base 2025-06-01T20:58:08.7942403Z * [new branch] gh/swolchok/761/head -> origin/gh/swolchok/761/head 2025-06-01T20:58:08.7942949Z * [new branch] gh/swolchok/761/orig -> origin/gh/swolchok/761/orig 2025-06-01T20:58:08.7943535Z * [new branch] gh/swolchok/762/base -> origin/gh/swolchok/762/base 2025-06-01T20:58:08.7944027Z * [new branch] gh/swolchok/762/head -> origin/gh/swolchok/762/head 2025-06-01T20:58:08.7944535Z * [new branch] gh/swolchok/762/orig -> origin/gh/swolchok/762/orig 2025-06-01T20:58:08.7945030Z * [new branch] gh/swolchok/763/base -> origin/gh/swolchok/763/base 2025-06-01T20:58:08.7945536Z * [new branch] gh/swolchok/763/head -> origin/gh/swolchok/763/head 2025-06-01T20:58:08.8359905Z * [new branch] gh/swolchok/764/base -> origin/gh/swolchok/764/base 2025-06-01T20:58:08.8360495Z * [new branch] gh/swolchok/764/head -> origin/gh/swolchok/764/head 2025-06-01T20:58:08.8361015Z * [new branch] gh/swolchok/764/orig -> origin/gh/swolchok/764/orig 2025-06-01T20:58:08.8361520Z * [new branch] gh/swolchok/765/base -> origin/gh/swolchok/765/base 2025-06-01T20:58:08.8362017Z * [new branch] gh/swolchok/765/head -> origin/gh/swolchok/765/head 2025-06-01T20:58:08.8362516Z * [new branch] gh/swolchok/765/orig -> origin/gh/swolchok/765/orig 2025-06-01T20:58:08.8363229Z * [new branch] gh/swolchok/766/base -> origin/gh/swolchok/766/base 2025-06-01T20:58:08.8363877Z * [new branch] gh/swolchok/766/head -> origin/gh/swolchok/766/head 2025-06-01T20:58:08.8364380Z * [new branch] gh/swolchok/766/orig -> origin/gh/swolchok/766/orig 2025-06-01T20:58:08.8364869Z * [new branch] gh/swolchok/767/base -> origin/gh/swolchok/767/base 2025-06-01T20:58:08.8365437Z * [new branch] gh/swolchok/767/head -> origin/gh/swolchok/767/head 2025-06-01T20:58:08.8366007Z * [new branch] gh/swolchok/767/orig -> origin/gh/swolchok/767/orig 2025-06-01T20:58:08.8366557Z * [new branch] gh/swolchok/768/base -> origin/gh/swolchok/768/base 2025-06-01T20:58:08.8367111Z * [new branch] gh/swolchok/768/head -> origin/gh/swolchok/768/head 2025-06-01T20:58:08.8367640Z * [new branch] gh/swolchok/768/orig -> origin/gh/swolchok/768/orig 2025-06-01T20:58:08.8368148Z * [new branch] gh/swolchok/769/base -> origin/gh/swolchok/769/base 2025-06-01T20:58:08.8368639Z * [new branch] gh/swolchok/769/head -> origin/gh/swolchok/769/head 2025-06-01T20:58:08.8369144Z * [new branch] gh/swolchok/769/orig -> origin/gh/swolchok/769/orig 2025-06-01T20:58:08.8369656Z * [new branch] gh/syed-ahmed/1/base -> origin/gh/syed-ahmed/1/base 2025-06-01T20:58:08.8370153Z * [new branch] gh/syed-ahmed/1/head -> origin/gh/syed-ahmed/1/head 2025-06-01T20:58:08.8370653Z * [new branch] gh/syed-ahmed/1/orig -> origin/gh/syed-ahmed/1/orig 2025-06-01T20:58:08.8371144Z * [new branch] gh/tianyu-l/2/base -> origin/gh/tianyu-l/2/base 2025-06-01T20:58:08.8371638Z * [new branch] gh/tianyu-l/2/head -> origin/gh/tianyu-l/2/head 2025-06-01T20:58:08.8372114Z * [new branch] gh/tianyu-l/2/orig -> origin/gh/tianyu-l/2/orig 2025-06-01T20:58:08.8372655Z * [new branch] gh/tugsbayasgalan/290/base -> origin/gh/tugsbayasgalan/290/base 2025-06-01T20:58:08.8373324Z * [new branch] gh/tugsbayasgalan/290/head -> origin/gh/tugsbayasgalan/290/head 2025-06-01T20:58:08.8373982Z * [new branch] gh/tugsbayasgalan/290/orig -> origin/gh/tugsbayasgalan/290/orig 2025-06-01T20:58:08.8374558Z * [new branch] gh/tugsbayasgalan/298/base -> origin/gh/tugsbayasgalan/298/base 2025-06-01T20:58:08.8375116Z * [new branch] gh/tugsbayasgalan/298/head -> origin/gh/tugsbayasgalan/298/head 2025-06-01T20:58:08.8375687Z * [new branch] gh/tugsbayasgalan/298/orig -> origin/gh/tugsbayasgalan/298/orig 2025-06-01T20:58:08.8376258Z * [new branch] gh/tugsbayasgalan/299/base -> origin/gh/tugsbayasgalan/299/base 2025-06-01T20:58:08.8376812Z * [new branch] gh/tugsbayasgalan/299/head -> origin/gh/tugsbayasgalan/299/head 2025-06-01T20:58:08.8377401Z * [new branch] gh/tugsbayasgalan/299/orig -> origin/gh/tugsbayasgalan/299/orig 2025-06-01T20:58:08.8377959Z * [new branch] gh/tugsbayasgalan/300/base -> origin/gh/tugsbayasgalan/300/base 2025-06-01T20:58:08.8378521Z * [new branch] gh/tugsbayasgalan/300/head -> origin/gh/tugsbayasgalan/300/head 2025-06-01T20:58:08.8387785Z * [new branch] gh/tugsbayasgalan/300/orig -> origin/gh/tugsbayasgalan/300/orig 2025-06-01T20:58:08.8388511Z * [new branch] gh/tugsbayasgalan/301/base -> origin/gh/tugsbayasgalan/301/base 2025-06-01T20:58:08.8389099Z * [new branch] gh/tugsbayasgalan/301/head -> origin/gh/tugsbayasgalan/301/head 2025-06-01T20:58:08.8389756Z * [new branch] gh/tugsbayasgalan/301/orig -> origin/gh/tugsbayasgalan/301/orig 2025-06-01T20:58:08.8390289Z * [new branch] gh/vkuzo/1/next -> origin/gh/vkuzo/1/next 2025-06-01T20:58:08.8390978Z * [new branch] gh/vkuzo/10/base -> origin/gh/vkuzo/10/base 2025-06-01T20:58:08.8391589Z * [new branch] gh/vkuzo/10/head -> origin/gh/vkuzo/10/head 2025-06-01T20:58:08.8392057Z * [new branch] gh/vkuzo/10/orig -> origin/gh/vkuzo/10/orig 2025-06-01T20:58:08.8392516Z * [new branch] gh/vkuzo/2/next -> origin/gh/vkuzo/2/next 2025-06-01T20:58:08.8393040Z * [new branch] gh/vkuzo/3/next -> origin/gh/vkuzo/3/next 2025-06-01T20:58:08.8393580Z * [new branch] gh/vkuzo/6/base -> origin/gh/vkuzo/6/base 2025-06-01T20:58:08.8826282Z * [new branch] gh/vkuzo/6/head -> origin/gh/vkuzo/6/head 2025-06-01T20:58:08.8826818Z * [new branch] gh/vkuzo/6/orig -> origin/gh/vkuzo/6/orig 2025-06-01T20:58:08.8827313Z * [new branch] gh/vkuzo/9/base -> origin/gh/vkuzo/9/base 2025-06-01T20:58:08.8827812Z * [new branch] gh/vkuzo/9/head -> origin/gh/vkuzo/9/head 2025-06-01T20:58:08.8828283Z * [new branch] gh/vkuzo/9/orig -> origin/gh/vkuzo/9/orig 2025-06-01T20:58:08.8828774Z * [new branch] gh/vmoens/15/base -> origin/gh/vmoens/15/base 2025-06-01T20:58:08.8829259Z * [new branch] gh/vmoens/15/head -> origin/gh/vmoens/15/head 2025-06-01T20:58:08.8829815Z * [new branch] gh/vmoens/15/orig -> origin/gh/vmoens/15/orig 2025-06-01T20:58:08.8830305Z * [new branch] gh/vmoens/16/base -> origin/gh/vmoens/16/base 2025-06-01T20:58:08.8830781Z * [new branch] gh/vmoens/16/head -> origin/gh/vmoens/16/head 2025-06-01T20:58:08.8831266Z * [new branch] gh/vmoens/16/orig -> origin/gh/vmoens/16/orig 2025-06-01T20:58:08.8831778Z * [new branch] gh/vmoens/17/base -> origin/gh/vmoens/17/base 2025-06-01T20:58:08.8832329Z * [new branch] gh/vmoens/17/head -> origin/gh/vmoens/17/head 2025-06-01T20:58:08.8832879Z * [new branch] gh/vmoens/17/orig -> origin/gh/vmoens/17/orig 2025-06-01T20:58:08.8833389Z * [new branch] gh/vmoens/18/base -> origin/gh/vmoens/18/base 2025-06-01T20:58:08.8833934Z * [new branch] gh/vmoens/18/head -> origin/gh/vmoens/18/head 2025-06-01T20:58:08.8834446Z * [new branch] gh/vmoens/18/orig -> origin/gh/vmoens/18/orig 2025-06-01T20:58:08.8835012Z * [new branch] gh/wanchaol/370/base -> origin/gh/wanchaol/370/base 2025-06-01T20:58:08.8835561Z * [new branch] gh/wanchaol/370/head -> origin/gh/wanchaol/370/head 2025-06-01T20:58:08.8836132Z * [new branch] gh/wanchaol/370/orig -> origin/gh/wanchaol/370/orig 2025-06-01T20:58:08.8836667Z * [new branch] gh/wanchaol/371/base -> origin/gh/wanchaol/371/base 2025-06-01T20:58:08.8837187Z * [new branch] gh/wanchaol/371/head -> origin/gh/wanchaol/371/head 2025-06-01T20:58:08.8837692Z * [new branch] gh/wanchaol/371/orig -> origin/gh/wanchaol/371/orig 2025-06-01T20:58:08.8838190Z * [new branch] gh/wanchaol/372/base -> origin/gh/wanchaol/372/base 2025-06-01T20:58:08.8838697Z * [new branch] gh/wanchaol/372/head -> origin/gh/wanchaol/372/head 2025-06-01T20:58:08.8839201Z * [new branch] gh/wanchaol/372/orig -> origin/gh/wanchaol/372/orig 2025-06-01T20:58:08.8839702Z * [new branch] gh/wconstab/380/base -> origin/gh/wconstab/380/base 2025-06-01T20:58:08.8840206Z * [new branch] gh/wconstab/380/head -> origin/gh/wconstab/380/head 2025-06-01T20:58:08.8840715Z * [new branch] gh/wconstab/380/orig -> origin/gh/wconstab/380/orig 2025-06-01T20:58:08.8841441Z * [new branch] gh/wconstab/392/base -> origin/gh/wconstab/392/base 2025-06-01T20:58:08.8842114Z * [new branch] gh/wconstab/392/head -> origin/gh/wconstab/392/head 2025-06-01T20:58:08.8842697Z * [new branch] gh/wconstab/392/orig -> origin/gh/wconstab/392/orig 2025-06-01T20:58:08.8843244Z * [new branch] gh/wconstab/395/base -> origin/gh/wconstab/395/base 2025-06-01T20:58:08.8843740Z * [new branch] gh/wconstab/395/head -> origin/gh/wconstab/395/head 2025-06-01T20:58:08.8844256Z * [new branch] gh/wconstab/395/orig -> origin/gh/wconstab/395/orig 2025-06-01T20:58:08.8844763Z * [new branch] gh/wconstab/396/base -> origin/gh/wconstab/396/base 2025-06-01T20:58:08.8845262Z * [new branch] gh/wconstab/396/head -> origin/gh/wconstab/396/head 2025-06-01T20:58:08.8845764Z * [new branch] gh/wconstab/396/orig -> origin/gh/wconstab/396/orig 2025-06-01T20:58:08.8846265Z * [new branch] gh/wconstab/399/base -> origin/gh/wconstab/399/base 2025-06-01T20:58:08.8846776Z * [new branch] gh/wconstab/399/head -> origin/gh/wconstab/399/head 2025-06-01T20:58:08.8847286Z * [new branch] gh/wconstab/399/orig -> origin/gh/wconstab/399/orig 2025-06-01T20:58:08.8847777Z * [new branch] gh/wconstab/410/base -> origin/gh/wconstab/410/base 2025-06-01T20:58:08.8848327Z * [new branch] gh/wconstab/410/head -> origin/gh/wconstab/410/head 2025-06-01T20:58:08.8848863Z * [new branch] gh/wconstab/410/orig -> origin/gh/wconstab/410/orig 2025-06-01T20:58:08.8849375Z * [new branch] gh/wconstab/412/base -> origin/gh/wconstab/412/base 2025-06-01T20:58:08.8849880Z * [new branch] gh/wconstab/412/head -> origin/gh/wconstab/412/head 2025-06-01T20:58:08.8850381Z * [new branch] gh/wconstab/412/orig -> origin/gh/wconstab/412/orig 2025-06-01T20:58:08.9284263Z * [new branch] gh/wconstab/413/base -> origin/gh/wconstab/413/base 2025-06-01T20:58:08.9284797Z * [new branch] gh/wconstab/413/head -> origin/gh/wconstab/413/head 2025-06-01T20:58:08.9285312Z * [new branch] gh/wconstab/413/orig -> origin/gh/wconstab/413/orig 2025-06-01T20:58:08.9285825Z * [new branch] gh/wconstab/414/base -> origin/gh/wconstab/414/base 2025-06-01T20:58:08.9286320Z * [new branch] gh/wconstab/414/head -> origin/gh/wconstab/414/head 2025-06-01T20:58:08.9286823Z * [new branch] gh/wconstab/414/orig -> origin/gh/wconstab/414/orig 2025-06-01T20:58:08.9287314Z * [new branch] gh/wconstab/415/base -> origin/gh/wconstab/415/base 2025-06-01T20:58:08.9287816Z * [new branch] gh/wconstab/415/head -> origin/gh/wconstab/415/head 2025-06-01T20:58:08.9288374Z * [new branch] gh/wconstab/415/orig -> origin/gh/wconstab/415/orig 2025-06-01T20:58:08.9288918Z * [new branch] gh/wconstab/416/base -> origin/gh/wconstab/416/base 2025-06-01T20:58:08.9289432Z * [new branch] gh/wconstab/416/head -> origin/gh/wconstab/416/head 2025-06-01T20:58:08.9289932Z * [new branch] gh/wconstab/416/orig -> origin/gh/wconstab/416/orig 2025-06-01T20:58:08.9290454Z * [new branch] gh/wconstab/417/base -> origin/gh/wconstab/417/base 2025-06-01T20:58:08.9290957Z * [new branch] gh/wconstab/417/head -> origin/gh/wconstab/417/head 2025-06-01T20:58:08.9291447Z * [new branch] gh/wconstab/417/orig -> origin/gh/wconstab/417/orig 2025-06-01T20:58:08.9291961Z * [new branch] gh/weifengpy/21/base -> origin/gh/weifengpy/21/base 2025-06-01T20:58:08.9292470Z * [new branch] gh/weifengpy/21/head -> origin/gh/weifengpy/21/head 2025-06-01T20:58:08.9293172Z * [new branch] gh/weifengpy/21/orig -> origin/gh/weifengpy/21/orig 2025-06-01T20:58:08.9293835Z * [new branch] gh/weifengpy/25/base -> origin/gh/weifengpy/25/base 2025-06-01T20:58:08.9294375Z * [new branch] gh/weifengpy/25/head -> origin/gh/weifengpy/25/head 2025-06-01T20:58:08.9294896Z * [new branch] gh/weifengpy/25/orig -> origin/gh/weifengpy/25/orig 2025-06-01T20:58:08.9295394Z * [new branch] gh/weifengpy/26/base -> origin/gh/weifengpy/26/base 2025-06-01T20:58:08.9295904Z * [new branch] gh/weifengpy/26/head -> origin/gh/weifengpy/26/head 2025-06-01T20:58:08.9296423Z * [new branch] gh/weifengpy/26/orig -> origin/gh/weifengpy/26/orig 2025-06-01T20:58:08.9297194Z * [new branch] gh/williamwen42/196/base -> origin/gh/williamwen42/196/base 2025-06-01T20:58:08.9298024Z * [new branch] gh/williamwen42/196/head -> origin/gh/williamwen42/196/head 2025-06-01T20:58:08.9298994Z * [new branch] gh/williamwen42/196/orig -> origin/gh/williamwen42/196/orig 2025-06-01T20:58:08.9305262Z * [new branch] gh/williamwen42/209/base -> origin/gh/williamwen42/209/base 2025-06-01T20:58:08.9305936Z * [new branch] gh/williamwen42/209/head -> origin/gh/williamwen42/209/head 2025-06-01T20:58:08.9306484Z * [new branch] gh/williamwen42/209/orig -> origin/gh/williamwen42/209/orig 2025-06-01T20:58:08.9307030Z * [new branch] gh/williamwen42/210/base -> origin/gh/williamwen42/210/base 2025-06-01T20:58:08.9307563Z * [new branch] gh/williamwen42/210/head -> origin/gh/williamwen42/210/head 2025-06-01T20:58:08.9308107Z * [new branch] gh/williamwen42/210/orig -> origin/gh/williamwen42/210/orig 2025-06-01T20:58:08.9308685Z * [new branch] gh/williamwen42/220/base -> origin/gh/williamwen42/220/base 2025-06-01T20:58:08.9309289Z * [new branch] gh/williamwen42/220/head -> origin/gh/williamwen42/220/head 2025-06-01T20:58:08.9309928Z * [new branch] gh/williamwen42/220/orig -> origin/gh/williamwen42/220/orig 2025-06-01T20:58:08.9310464Z * [new branch] gh/williamwen42/227/base -> origin/gh/williamwen42/227/base 2025-06-01T20:58:08.9311007Z * [new branch] gh/williamwen42/227/head -> origin/gh/williamwen42/227/head 2025-06-01T20:58:08.9311550Z * [new branch] gh/williamwen42/227/orig -> origin/gh/williamwen42/227/orig 2025-06-01T20:58:08.9312092Z * [new branch] gh/williamwen42/232/base -> origin/gh/williamwen42/232/base 2025-06-01T20:58:08.9312633Z * [new branch] gh/williamwen42/232/head -> origin/gh/williamwen42/232/head 2025-06-01T20:58:08.9313167Z * [new branch] gh/williamwen42/232/orig -> origin/gh/williamwen42/232/orig 2025-06-01T20:58:08.9313712Z * [new branch] gh/williamwen42/235/base -> origin/gh/williamwen42/235/base 2025-06-01T20:58:08.9314244Z * [new branch] gh/williamwen42/235/head -> origin/gh/williamwen42/235/head 2025-06-01T20:58:08.9314830Z * [new branch] gh/williamwen42/235/orig -> origin/gh/williamwen42/235/orig 2025-06-01T20:58:08.9315408Z * [new branch] gh/williamwen42/236/base -> origin/gh/williamwen42/236/base 2025-06-01T20:58:08.9728019Z * [new branch] gh/williamwen42/236/head -> origin/gh/williamwen42/236/head 2025-06-01T20:58:08.9728657Z * [new branch] gh/williamwen42/236/orig -> origin/gh/williamwen42/236/orig 2025-06-01T20:58:08.9729205Z * [new branch] gh/williamwen42/237/base -> origin/gh/williamwen42/237/base 2025-06-01T20:58:08.9729749Z * [new branch] gh/williamwen42/237/head -> origin/gh/williamwen42/237/head 2025-06-01T20:58:08.9730299Z * [new branch] gh/williamwen42/237/orig -> origin/gh/williamwen42/237/orig 2025-06-01T20:58:08.9731066Z * [new branch] gh/williamwen42/238/base -> origin/gh/williamwen42/238/base 2025-06-01T20:58:08.9731745Z * [new branch] gh/williamwen42/238/head -> origin/gh/williamwen42/238/head 2025-06-01T20:58:08.9732292Z * [new branch] gh/williamwen42/238/orig -> origin/gh/williamwen42/238/orig 2025-06-01T20:58:08.9732874Z * [new branch] gh/williamwen42/239/base -> origin/gh/williamwen42/239/base 2025-06-01T20:58:08.9733468Z * [new branch] gh/williamwen42/239/head -> origin/gh/williamwen42/239/head 2025-06-01T20:58:08.9734004Z * [new branch] gh/williamwen42/239/orig -> origin/gh/williamwen42/239/orig 2025-06-01T20:58:08.9734546Z * [new branch] gh/williamwen42/240/base -> origin/gh/williamwen42/240/base 2025-06-01T20:58:08.9735084Z * [new branch] gh/williamwen42/240/head -> origin/gh/williamwen42/240/head 2025-06-01T20:58:08.9735628Z * [new branch] gh/williamwen42/240/orig -> origin/gh/williamwen42/240/orig 2025-06-01T20:58:08.9736174Z * [new branch] gh/williamwen42/241/base -> origin/gh/williamwen42/241/base 2025-06-01T20:58:08.9736715Z * [new branch] gh/williamwen42/241/head -> origin/gh/williamwen42/241/head 2025-06-01T20:58:08.9737260Z * [new branch] gh/williamwen42/241/orig -> origin/gh/williamwen42/241/orig 2025-06-01T20:58:08.9737799Z * [new branch] gh/williamwen42/242/base -> origin/gh/williamwen42/242/base 2025-06-01T20:58:08.9738378Z * [new branch] gh/williamwen42/242/head -> origin/gh/williamwen42/242/head 2025-06-01T20:58:08.9738970Z * [new branch] gh/williamwen42/242/orig -> origin/gh/williamwen42/242/orig 2025-06-01T20:58:08.9739497Z * [new branch] gh/williamwen42/243/base -> origin/gh/williamwen42/243/base 2025-06-01T20:58:08.9740034Z * [new branch] gh/williamwen42/243/head -> origin/gh/williamwen42/243/head 2025-06-01T20:58:08.9740573Z * [new branch] gh/williamwen42/243/orig -> origin/gh/williamwen42/243/orig 2025-06-01T20:58:08.9741113Z * [new branch] gh/williamwen42/244/base -> origin/gh/williamwen42/244/base 2025-06-01T20:58:08.9741648Z * [new branch] gh/williamwen42/244/head -> origin/gh/williamwen42/244/head 2025-06-01T20:58:08.9742176Z * [new branch] gh/williamwen42/244/orig -> origin/gh/williamwen42/244/orig 2025-06-01T20:58:08.9742722Z * [new branch] gh/williamwen42/245/base -> origin/gh/williamwen42/245/base 2025-06-01T20:58:08.9743250Z * [new branch] gh/williamwen42/245/head -> origin/gh/williamwen42/245/head 2025-06-01T20:58:08.9743786Z * [new branch] gh/williamwen42/245/orig -> origin/gh/williamwen42/245/orig 2025-06-01T20:58:08.9744337Z * [new branch] gh/xmfan/166/base -> origin/gh/xmfan/166/base 2025-06-01T20:58:08.9744861Z * [new branch] gh/xmfan/166/head -> origin/gh/xmfan/166/head 2025-06-01T20:58:08.9745349Z * [new branch] gh/xmfan/166/orig -> origin/gh/xmfan/166/orig 2025-06-01T20:58:08.9745811Z * [new branch] gh/xmfan/169/base -> origin/gh/xmfan/169/base 2025-06-01T20:58:08.9746284Z * [new branch] gh/xmfan/169/head -> origin/gh/xmfan/169/head 2025-06-01T20:58:08.9746751Z * [new branch] gh/xmfan/170/base -> origin/gh/xmfan/170/base 2025-06-01T20:58:08.9747218Z * [new branch] gh/xmfan/170/head -> origin/gh/xmfan/170/head 2025-06-01T20:58:08.9747688Z * [new branch] gh/xmfan/173/base -> origin/gh/xmfan/173/base 2025-06-01T20:58:08.9748154Z * [new branch] gh/xmfan/173/head -> origin/gh/xmfan/173/head 2025-06-01T20:58:08.9748686Z * [new branch] gh/xmfan/173/orig -> origin/gh/xmfan/173/orig 2025-06-01T20:58:08.9749278Z * [new branch] gh/xmfan/174/base -> origin/gh/xmfan/174/base 2025-06-01T20:58:08.9749981Z * [new branch] gh/xmfan/174/head -> origin/gh/xmfan/174/head 2025-06-01T20:58:08.9750501Z * [new branch] gh/xmfan/174/orig -> origin/gh/xmfan/174/orig 2025-06-01T20:58:08.9750962Z * [new branch] gh/xmfan/178/base -> origin/gh/xmfan/178/base 2025-06-01T20:58:08.9751437Z * [new branch] gh/xmfan/178/head -> origin/gh/xmfan/178/head 2025-06-01T20:58:08.9751909Z * [new branch] gh/xmfan/178/orig -> origin/gh/xmfan/178/orig 2025-06-01T20:58:08.9752387Z * [new branch] gh/xmfan/18/base -> origin/gh/xmfan/18/base 2025-06-01T20:58:09.0204828Z * [new branch] gh/xmfan/18/head -> origin/gh/xmfan/18/head 2025-06-01T20:58:09.0205340Z * [new branch] gh/xmfan/180/base -> origin/gh/xmfan/180/base 2025-06-01T20:58:09.0205824Z * [new branch] gh/xmfan/180/head -> origin/gh/xmfan/180/head 2025-06-01T20:58:09.0206304Z * [new branch] gh/xmfan/180/orig -> origin/gh/xmfan/180/orig 2025-06-01T20:58:09.0206782Z * [new branch] gh/xmfan/187/base -> origin/gh/xmfan/187/base 2025-06-01T20:58:09.0207257Z * [new branch] gh/xmfan/187/head -> origin/gh/xmfan/187/head 2025-06-01T20:58:09.0207721Z * [new branch] gh/xmfan/187/orig -> origin/gh/xmfan/187/orig 2025-06-01T20:58:09.0208208Z * [new branch] gh/xmfan/193/base -> origin/gh/xmfan/193/base 2025-06-01T20:58:09.0208694Z * [new branch] gh/xmfan/193/head -> origin/gh/xmfan/193/head 2025-06-01T20:58:09.0209205Z * [new branch] gh/xmfan/193/orig -> origin/gh/xmfan/193/orig 2025-06-01T20:58:09.0209720Z * [new branch] gh/xmfan/194/base -> origin/gh/xmfan/194/base 2025-06-01T20:58:09.0210185Z * [new branch] gh/xmfan/194/head -> origin/gh/xmfan/194/head 2025-06-01T20:58:09.0210664Z * [new branch] gh/xmfan/194/orig -> origin/gh/xmfan/194/orig 2025-06-01T20:58:09.0211126Z * [new branch] gh/xmfan/200/base -> origin/gh/xmfan/200/base 2025-06-01T20:58:09.0211601Z * [new branch] gh/xmfan/200/head -> origin/gh/xmfan/200/head 2025-06-01T20:58:09.0212069Z * [new branch] gh/xmfan/200/orig -> origin/gh/xmfan/200/orig 2025-06-01T20:58:09.0212533Z * [new branch] gh/xmfan/201/base -> origin/gh/xmfan/201/base 2025-06-01T20:58:09.0213001Z * [new branch] gh/xmfan/201/head -> origin/gh/xmfan/201/head 2025-06-01T20:58:09.0213467Z * [new branch] gh/xmfan/201/orig -> origin/gh/xmfan/201/orig 2025-06-01T20:58:09.0213936Z * [new branch] gh/xmfan/202/base -> origin/gh/xmfan/202/base 2025-06-01T20:58:09.0214420Z * [new branch] gh/xmfan/202/head -> origin/gh/xmfan/202/head 2025-06-01T20:58:09.0214924Z * [new branch] gh/xmfan/202/orig -> origin/gh/xmfan/202/orig 2025-06-01T20:58:09.0215440Z * [new branch] gh/xmfan/206/base -> origin/gh/xmfan/206/base 2025-06-01T20:58:09.0215906Z * [new branch] gh/xmfan/206/head -> origin/gh/xmfan/206/head 2025-06-01T20:58:09.0216382Z * [new branch] gh/xmfan/206/orig -> origin/gh/xmfan/206/orig 2025-06-01T20:58:09.0216853Z * [new branch] gh/xmfan/213/base -> origin/gh/xmfan/213/base 2025-06-01T20:58:09.0217318Z * [new branch] gh/xmfan/213/head -> origin/gh/xmfan/213/head 2025-06-01T20:58:09.0217788Z * [new branch] gh/xmfan/213/orig -> origin/gh/xmfan/213/orig 2025-06-01T20:58:09.0218252Z * [new branch] gh/xmfan/214/base -> origin/gh/xmfan/214/base 2025-06-01T20:58:09.0218994Z * [new branch] gh/xmfan/214/head -> origin/gh/xmfan/214/head 2025-06-01T20:58:09.0219464Z * [new branch] gh/xmfan/214/orig -> origin/gh/xmfan/214/orig 2025-06-01T20:58:09.0219945Z * [new branch] gh/xmfan/216/base -> origin/gh/xmfan/216/base 2025-06-01T20:58:09.0220455Z * [new branch] gh/xmfan/216/head -> origin/gh/xmfan/216/head 2025-06-01T20:58:09.0220966Z * [new branch] gh/xmfan/216/orig -> origin/gh/xmfan/216/orig 2025-06-01T20:58:09.0221444Z * [new branch] gh/xmfan/217/base -> origin/gh/xmfan/217/base 2025-06-01T20:58:09.0221916Z * [new branch] gh/xmfan/217/head -> origin/gh/xmfan/217/head 2025-06-01T20:58:09.0222384Z * [new branch] gh/xmfan/217/orig -> origin/gh/xmfan/217/orig 2025-06-01T20:58:09.0222845Z * [new branch] gh/xmfan/220/base -> origin/gh/xmfan/220/base 2025-06-01T20:58:09.0223324Z * [new branch] gh/xmfan/220/head -> origin/gh/xmfan/220/head 2025-06-01T20:58:09.0223786Z * [new branch] gh/xmfan/220/orig -> origin/gh/xmfan/220/orig 2025-06-01T20:58:09.0224256Z * [new branch] gh/xmfan/223/base -> origin/gh/xmfan/223/base 2025-06-01T20:58:09.0224721Z * [new branch] gh/xmfan/223/head -> origin/gh/xmfan/223/head 2025-06-01T20:58:09.0225190Z * [new branch] gh/xmfan/223/orig -> origin/gh/xmfan/223/orig 2025-06-01T20:58:09.0225655Z * [new branch] gh/xmfan/224/base -> origin/gh/xmfan/224/base 2025-06-01T20:58:09.0226116Z * [new branch] gh/xmfan/224/head -> origin/gh/xmfan/224/head 2025-06-01T20:58:09.0226649Z * [new branch] gh/xmfan/224/orig -> origin/gh/xmfan/224/orig 2025-06-01T20:58:09.0227140Z * [new branch] gh/xmfan/225/base -> origin/gh/xmfan/225/base 2025-06-01T20:58:09.0227620Z * [new branch] gh/xmfan/225/head -> origin/gh/xmfan/225/head 2025-06-01T20:58:09.0660416Z * [new branch] gh/xmfan/225/orig -> origin/gh/xmfan/225/orig 2025-06-01T20:58:09.0660963Z * [new branch] gh/xmfan/226/base -> origin/gh/xmfan/226/base 2025-06-01T20:58:09.0661450Z * [new branch] gh/xmfan/226/head -> origin/gh/xmfan/226/head 2025-06-01T20:58:09.0661942Z * [new branch] gh/xmfan/226/orig -> origin/gh/xmfan/226/orig 2025-06-01T20:58:09.0662417Z * [new branch] gh/xmfan/227/base -> origin/gh/xmfan/227/base 2025-06-01T20:58:09.0662888Z * [new branch] gh/xmfan/227/head -> origin/gh/xmfan/227/head 2025-06-01T20:58:09.0663356Z * [new branch] gh/xmfan/227/orig -> origin/gh/xmfan/227/orig 2025-06-01T20:58:09.0663855Z * [new branch] gh/xmfan/228/base -> origin/gh/xmfan/228/base 2025-06-01T20:58:09.0664376Z * [new branch] gh/xmfan/228/head -> origin/gh/xmfan/228/head 2025-06-01T20:58:09.0664884Z * [new branch] gh/xmfan/228/orig -> origin/gh/xmfan/228/orig 2025-06-01T20:58:09.0665363Z * [new branch] gh/xmfan/229/base -> origin/gh/xmfan/229/base 2025-06-01T20:58:09.0665839Z * [new branch] gh/xmfan/229/head -> origin/gh/xmfan/229/head 2025-06-01T20:58:09.0666309Z * [new branch] gh/xmfan/229/orig -> origin/gh/xmfan/229/orig 2025-06-01T20:58:09.0666772Z * [new branch] gh/xmfan/230/base -> origin/gh/xmfan/230/base 2025-06-01T20:58:09.0667247Z * [new branch] gh/xmfan/230/head -> origin/gh/xmfan/230/head 2025-06-01T20:58:09.0667726Z * [new branch] gh/xmfan/230/orig -> origin/gh/xmfan/230/orig 2025-06-01T20:58:09.0668375Z * [new branch] gh/xmfan/231/base -> origin/gh/xmfan/231/base 2025-06-01T20:58:09.0668986Z * [new branch] gh/xmfan/231/head -> origin/gh/xmfan/231/head 2025-06-01T20:58:09.0669450Z * [new branch] gh/xmfan/231/orig -> origin/gh/xmfan/231/orig 2025-06-01T20:58:09.0670040Z * [new branch] gh/xmfan/232/base -> origin/gh/xmfan/232/base 2025-06-01T20:58:09.0670558Z * [new branch] gh/xmfan/232/head -> origin/gh/xmfan/232/head 2025-06-01T20:58:09.0671029Z * [new branch] gh/xmfan/232/orig -> origin/gh/xmfan/232/orig 2025-06-01T20:58:09.0671514Z * [new branch] gh/xmfan/233/base -> origin/gh/xmfan/233/base 2025-06-01T20:58:09.0671974Z * [new branch] gh/xmfan/233/head -> origin/gh/xmfan/233/head 2025-06-01T20:58:09.0672444Z * [new branch] gh/xmfan/233/orig -> origin/gh/xmfan/233/orig 2025-06-01T20:58:09.0672918Z * [new branch] gh/xmfan/234/base -> origin/gh/xmfan/234/base 2025-06-01T20:58:09.0673393Z * [new branch] gh/xmfan/234/head -> origin/gh/xmfan/234/head 2025-06-01T20:58:09.0673865Z * [new branch] gh/xmfan/234/orig -> origin/gh/xmfan/234/orig 2025-06-01T20:58:09.0674328Z * [new branch] gh/xmfan/235/base -> origin/gh/xmfan/235/base 2025-06-01T20:58:09.0674799Z * [new branch] gh/xmfan/235/head -> origin/gh/xmfan/235/head 2025-06-01T20:58:09.0675261Z * [new branch] gh/xmfan/235/orig -> origin/gh/xmfan/235/orig 2025-06-01T20:58:09.0675764Z * [new branch] gh/xmfan/236/base -> origin/gh/xmfan/236/base 2025-06-01T20:58:09.0676271Z * [new branch] gh/xmfan/236/head -> origin/gh/xmfan/236/head 2025-06-01T20:58:09.0676733Z * [new branch] gh/xmfan/236/orig -> origin/gh/xmfan/236/orig 2025-06-01T20:58:09.0677224Z * [new branch] gh/xmfan/237/base -> origin/gh/xmfan/237/base 2025-06-01T20:58:09.0677693Z * [new branch] gh/xmfan/237/head -> origin/gh/xmfan/237/head 2025-06-01T20:58:09.0678171Z * [new branch] gh/xmfan/237/orig -> origin/gh/xmfan/237/orig 2025-06-01T20:58:09.0678639Z * [new branch] gh/xmfan/238/base -> origin/gh/xmfan/238/base 2025-06-01T20:58:09.0679113Z * [new branch] gh/xmfan/238/head -> origin/gh/xmfan/238/head 2025-06-01T20:58:09.0679580Z * [new branch] gh/xmfan/238/orig -> origin/gh/xmfan/238/orig 2025-06-01T20:58:09.0680044Z * [new branch] gh/xmfan/239/base -> origin/gh/xmfan/239/base 2025-06-01T20:58:09.0680522Z * [new branch] gh/xmfan/239/head -> origin/gh/xmfan/239/head 2025-06-01T20:58:09.0680991Z * [new branch] gh/xmfan/239/orig -> origin/gh/xmfan/239/orig 2025-06-01T20:58:09.0681510Z * [new branch] gh/xmfan/240/base -> origin/gh/xmfan/240/base 2025-06-01T20:58:09.0682027Z * [new branch] gh/xmfan/240/head -> origin/gh/xmfan/240/head 2025-06-01T20:58:09.0682488Z * [new branch] gh/xmfan/240/orig -> origin/gh/xmfan/240/orig 2025-06-01T20:58:09.0682958Z * [new branch] gh/xmfan/241/base -> origin/gh/xmfan/241/base 2025-06-01T20:58:09.0683429Z * [new branch] gh/xmfan/241/head -> origin/gh/xmfan/241/head 2025-06-01T20:58:09.1162196Z * [new branch] gh/xmfan/241/orig -> origin/gh/xmfan/241/orig 2025-06-01T20:58:09.1162776Z * [new branch] gh/xmfan/242/base -> origin/gh/xmfan/242/base 2025-06-01T20:58:09.1163268Z * [new branch] gh/xmfan/242/head -> origin/gh/xmfan/242/head 2025-06-01T20:58:09.1163779Z * [new branch] gh/xmfan/242/orig -> origin/gh/xmfan/242/orig 2025-06-01T20:58:09.1164473Z * [new branch] gh/xmfan/243/base -> origin/gh/xmfan/243/base 2025-06-01T20:58:09.1165112Z * [new branch] gh/xmfan/243/head -> origin/gh/xmfan/243/head 2025-06-01T20:58:09.1165582Z * [new branch] gh/xmfan/243/orig -> origin/gh/xmfan/243/orig 2025-06-01T20:58:09.1166100Z * [new branch] gh/xuanzhang816/12/base -> origin/gh/xuanzhang816/12/base 2025-06-01T20:58:09.1166647Z * [new branch] gh/xuanzhang816/12/head -> origin/gh/xuanzhang816/12/head 2025-06-01T20:58:09.1167178Z * [new branch] gh/xuanzhang816/12/orig -> origin/gh/xuanzhang816/12/orig 2025-06-01T20:58:09.1167718Z * [new branch] gh/xuanzhang816/13/base -> origin/gh/xuanzhang816/13/base 2025-06-01T20:58:09.1168285Z * [new branch] gh/xuanzhang816/13/head -> origin/gh/xuanzhang816/13/head 2025-06-01T20:58:09.1168865Z * [new branch] gh/xuanzhang816/13/orig -> origin/gh/xuanzhang816/13/orig 2025-06-01T20:58:09.1169386Z * [new branch] gh/xuhancn/1/base -> origin/gh/xuhancn/1/base 2025-06-01T20:58:09.1169867Z * [new branch] gh/xuhancn/1/head -> origin/gh/xuhancn/1/head 2025-06-01T20:58:09.1170351Z * [new branch] gh/xuhancn/2/base -> origin/gh/xuhancn/2/base 2025-06-01T20:58:09.1170821Z * [new branch] gh/xuhancn/2/head -> origin/gh/xuhancn/2/head 2025-06-01T20:58:09.1171303Z * [new branch] gh/xuhancn/3/base -> origin/gh/xuhancn/3/base 2025-06-01T20:58:09.1171780Z * [new branch] gh/xuhancn/3/head -> origin/gh/xuhancn/3/head 2025-06-01T20:58:09.1172266Z * [new branch] gh/xuhancn/4/base -> origin/gh/xuhancn/4/base 2025-06-01T20:58:09.1172747Z * [new branch] gh/xuhancn/4/head -> origin/gh/xuhancn/4/head 2025-06-01T20:58:09.1173222Z * [new branch] gh/xuhancn/5/base -> origin/gh/xuhancn/5/base 2025-06-01T20:58:09.1173742Z * [new branch] gh/xuhancn/5/head -> origin/gh/xuhancn/5/head 2025-06-01T20:58:09.1174243Z * [new branch] gh/xuhancn/6/base -> origin/gh/xuhancn/6/base 2025-06-01T20:58:09.1174723Z * [new branch] gh/xuhancn/6/head -> origin/gh/xuhancn/6/head 2025-06-01T20:58:09.1175198Z * [new branch] gh/xuhancn/7/base -> origin/gh/xuhancn/7/base 2025-06-01T20:58:09.1175666Z * [new branch] gh/xuhancn/7/head -> origin/gh/xuhancn/7/head 2025-06-01T20:58:09.1176160Z * [new branch] gh/yanbing-j/11/base -> origin/gh/yanbing-j/11/base 2025-06-01T20:58:09.1176670Z * [new branch] gh/yanbing-j/11/head -> origin/gh/yanbing-j/11/head 2025-06-01T20:58:09.1177176Z * [new branch] gh/yanbing-j/11/orig -> origin/gh/yanbing-j/11/orig 2025-06-01T20:58:09.1177681Z * [new branch] gh/yanbing-j/12/base -> origin/gh/yanbing-j/12/base 2025-06-01T20:58:09.1178175Z * [new branch] gh/yanbing-j/12/head -> origin/gh/yanbing-j/12/head 2025-06-01T20:58:09.1178673Z * [new branch] gh/yanbing-j/12/orig -> origin/gh/yanbing-j/12/orig 2025-06-01T20:58:09.1179164Z * [new branch] gh/yanbing-j/13/base -> origin/gh/yanbing-j/13/base 2025-06-01T20:58:09.1179696Z * [new branch] gh/yanbing-j/13/head -> origin/gh/yanbing-j/13/head 2025-06-01T20:58:09.1180225Z * [new branch] gh/yanbing-j/13/orig -> origin/gh/yanbing-j/13/orig 2025-06-01T20:58:09.1180725Z * [new branch] gh/yanbing-j/14/base -> origin/gh/yanbing-j/14/base 2025-06-01T20:58:09.1181227Z * [new branch] gh/yanbing-j/14/head -> origin/gh/yanbing-j/14/head 2025-06-01T20:58:09.1181718Z * [new branch] gh/yanbing-j/14/orig -> origin/gh/yanbing-j/14/orig 2025-06-01T20:58:09.1182348Z * [new branch] gh/yanbing-j/15/base -> origin/gh/yanbing-j/15/base 2025-06-01T20:58:09.1182942Z * [new branch] gh/yanbing-j/15/head -> origin/gh/yanbing-j/15/head 2025-06-01T20:58:09.1183444Z * [new branch] gh/yanbing-j/15/orig -> origin/gh/yanbing-j/15/orig 2025-06-01T20:58:09.1183946Z * [new branch] gh/yanbing-j/18/base -> origin/gh/yanbing-j/18/base 2025-06-01T20:58:09.1184445Z * [new branch] gh/yanbing-j/18/head -> origin/gh/yanbing-j/18/head 2025-06-01T20:58:09.1184952Z * [new branch] gh/yanbing-j/18/orig -> origin/gh/yanbing-j/18/orig 2025-06-01T20:58:09.1185478Z * [new branch] gh/yanbing-j/19/base -> origin/gh/yanbing-j/19/base 2025-06-01T20:58:09.1186026Z * [new branch] gh/yanbing-j/19/head -> origin/gh/yanbing-j/19/head 2025-06-01T20:58:09.1626380Z * [new branch] gh/yanbing-j/19/orig -> origin/gh/yanbing-j/19/orig 2025-06-01T20:58:09.1626991Z * [new branch] gh/yanbing-j/20/base -> origin/gh/yanbing-j/20/base 2025-06-01T20:58:09.1627501Z * [new branch] gh/yanbing-j/20/head -> origin/gh/yanbing-j/20/head 2025-06-01T20:58:09.1627998Z * [new branch] gh/yanbing-j/20/orig -> origin/gh/yanbing-j/20/orig 2025-06-01T20:58:09.1628507Z * [new branch] gh/yanbing-j/21/base -> origin/gh/yanbing-j/21/base 2025-06-01T20:58:09.1629011Z * [new branch] gh/yanbing-j/21/head -> origin/gh/yanbing-j/21/head 2025-06-01T20:58:09.1629516Z * [new branch] gh/yanbing-j/22/base -> origin/gh/yanbing-j/22/base 2025-06-01T20:58:09.1630067Z * [new branch] gh/yanbing-j/22/head -> origin/gh/yanbing-j/22/head 2025-06-01T20:58:09.1630567Z * [new branch] gh/yanbing-j/22/orig -> origin/gh/yanbing-j/22/orig 2025-06-01T20:58:09.1631064Z * [new branch] gh/yanbing-j/23/base -> origin/gh/yanbing-j/23/base 2025-06-01T20:58:09.1631572Z * [new branch] gh/yanbing-j/23/head -> origin/gh/yanbing-j/23/head 2025-06-01T20:58:09.1632055Z * [new branch] gh/yanbing-j/23/orig -> origin/gh/yanbing-j/23/orig 2025-06-01T20:58:09.1632559Z * [new branch] gh/yanbing-j/24/base -> origin/gh/yanbing-j/24/base 2025-06-01T20:58:09.1633048Z * [new branch] gh/yanbing-j/24/head -> origin/gh/yanbing-j/24/head 2025-06-01T20:58:09.1633542Z * [new branch] gh/yanbing-j/24/orig -> origin/gh/yanbing-j/24/orig 2025-06-01T20:58:09.1634036Z * [new branch] gh/yanbing-j/25/base -> origin/gh/yanbing-j/25/base 2025-06-01T20:58:09.1634525Z * [new branch] gh/yanbing-j/25/head -> origin/gh/yanbing-j/25/head 2025-06-01T20:58:09.1635016Z * [new branch] gh/yanbing-j/25/orig -> origin/gh/yanbing-j/25/orig 2025-06-01T20:58:09.1635510Z * [new branch] gh/yanbing-j/26/base -> origin/gh/yanbing-j/26/base 2025-06-01T20:58:09.1636017Z * [new branch] gh/yanbing-j/26/head -> origin/gh/yanbing-j/26/head 2025-06-01T20:58:09.1636508Z * [new branch] gh/yanbing-j/26/orig -> origin/gh/yanbing-j/26/orig 2025-06-01T20:58:09.1636991Z * [new branch] gh/yanbing-j/34/base -> origin/gh/yanbing-j/34/base 2025-06-01T20:58:09.1637490Z * [new branch] gh/yanbing-j/34/head -> origin/gh/yanbing-j/34/head 2025-06-01T20:58:09.1637984Z * [new branch] gh/yanbing-j/34/orig -> origin/gh/yanbing-j/34/orig 2025-06-01T20:58:09.1638474Z * [new branch] gh/yanbing-j/36/base -> origin/gh/yanbing-j/36/base 2025-06-01T20:58:09.1638973Z * [new branch] gh/yanbing-j/36/head -> origin/gh/yanbing-j/36/head 2025-06-01T20:58:09.1639459Z * [new branch] gh/yanbing-j/36/orig -> origin/gh/yanbing-j/36/orig 2025-06-01T20:58:09.1640281Z * [new branch] gh/yanbing-j/37/base -> origin/gh/yanbing-j/37/base 2025-06-01T20:58:09.1640768Z * [new branch] gh/yanbing-j/37/head -> origin/gh/yanbing-j/37/head 2025-06-01T20:58:09.1641270Z * [new branch] gh/yanbing-j/37/orig -> origin/gh/yanbing-j/37/orig 2025-06-01T20:58:09.1641772Z * [new branch] gh/yanboliang/62/base -> origin/gh/yanboliang/62/base 2025-06-01T20:58:09.1642300Z * [new branch] gh/yanboliang/62/head -> origin/gh/yanboliang/62/head 2025-06-01T20:58:09.1642823Z * [new branch] gh/yanboliang/62/orig -> origin/gh/yanboliang/62/orig 2025-06-01T20:58:09.1643314Z * [new branch] gh/ydwu4/194/base -> origin/gh/ydwu4/194/base 2025-06-01T20:58:09.1643794Z * [new branch] gh/ydwu4/194/head -> origin/gh/ydwu4/194/head 2025-06-01T20:58:09.1644257Z * [new branch] gh/ydwu4/194/orig -> origin/gh/ydwu4/194/orig 2025-06-01T20:58:09.1644729Z * [new branch] gh/ydwu4/201/base -> origin/gh/ydwu4/201/base 2025-06-01T20:58:09.1645194Z * [new branch] gh/ydwu4/201/head -> origin/gh/ydwu4/201/head 2025-06-01T20:58:09.1645650Z * [new branch] gh/ydwu4/201/orig -> origin/gh/ydwu4/201/orig 2025-06-01T20:58:09.1646121Z * [new branch] gh/ydwu4/208/base -> origin/gh/ydwu4/208/base 2025-06-01T20:58:09.1646578Z * [new branch] gh/ydwu4/208/head -> origin/gh/ydwu4/208/head 2025-06-01T20:58:09.1647051Z * [new branch] gh/ydwu4/208/orig -> origin/gh/ydwu4/208/orig 2025-06-01T20:58:09.1647517Z * [new branch] gh/ydwu4/219/base -> origin/gh/ydwu4/219/base 2025-06-01T20:58:09.1647984Z * [new branch] gh/ydwu4/219/head -> origin/gh/ydwu4/219/head 2025-06-01T20:58:09.1648467Z * [new branch] gh/ydwu4/219/orig -> origin/gh/ydwu4/219/orig 2025-06-01T20:58:09.1648931Z * [new branch] gh/ydwu4/223/base -> origin/gh/ydwu4/223/base 2025-06-01T20:58:09.1649415Z * [new branch] gh/ydwu4/223/head -> origin/gh/ydwu4/223/head 2025-06-01T20:58:09.2117567Z * [new branch] gh/ydwu4/223/orig -> origin/gh/ydwu4/223/orig 2025-06-01T20:58:09.2118094Z * [new branch] gh/ydwu4/224/base -> origin/gh/ydwu4/224/base 2025-06-01T20:58:09.2118583Z * [new branch] gh/ydwu4/224/head -> origin/gh/ydwu4/224/head 2025-06-01T20:58:09.2119051Z * [new branch] gh/ydwu4/224/orig -> origin/gh/ydwu4/224/orig 2025-06-01T20:58:09.2119522Z * [new branch] gh/ydwu4/225/base -> origin/gh/ydwu4/225/base 2025-06-01T20:58:09.2120005Z * [new branch] gh/ydwu4/225/head -> origin/gh/ydwu4/225/head 2025-06-01T20:58:09.2120495Z * [new branch] gh/ydwu4/225/orig -> origin/gh/ydwu4/225/orig 2025-06-01T20:58:09.2120984Z * [new branch] gh/ydwu4/229/base -> origin/gh/ydwu4/229/base 2025-06-01T20:58:09.2121444Z * [new branch] gh/ydwu4/229/head -> origin/gh/ydwu4/229/head 2025-06-01T20:58:09.2121916Z * [new branch] gh/ydwu4/229/orig -> origin/gh/ydwu4/229/orig 2025-06-01T20:58:09.2122377Z * [new branch] gh/ydwu4/230/base -> origin/gh/ydwu4/230/base 2025-06-01T20:58:09.2122884Z * [new branch] gh/ydwu4/230/head -> origin/gh/ydwu4/230/head 2025-06-01T20:58:09.2123354Z * [new branch] gh/ydwu4/230/orig -> origin/gh/ydwu4/230/orig 2025-06-01T20:58:09.2123821Z * [new branch] gh/ydwu4/231/base -> origin/gh/ydwu4/231/base 2025-06-01T20:58:09.2124291Z * [new branch] gh/ydwu4/231/head -> origin/gh/ydwu4/231/head 2025-06-01T20:58:09.2124955Z * [new branch] gh/ydwu4/231/orig -> origin/gh/ydwu4/231/orig 2025-06-01T20:58:09.2125560Z * [new branch] gh/ydwu4/232/base -> origin/gh/ydwu4/232/base 2025-06-01T20:58:09.2126047Z * [new branch] gh/ydwu4/232/head -> origin/gh/ydwu4/232/head 2025-06-01T20:58:09.2126507Z * [new branch] gh/ydwu4/232/orig -> origin/gh/ydwu4/232/orig 2025-06-01T20:58:09.2126992Z * [new branch] gh/ydwu4/233/base -> origin/gh/ydwu4/233/base 2025-06-01T20:58:09.2127456Z * [new branch] gh/ydwu4/233/head -> origin/gh/ydwu4/233/head 2025-06-01T20:58:09.2127929Z * [new branch] gh/ydwu4/233/orig -> origin/gh/ydwu4/233/orig 2025-06-01T20:58:09.2128401Z * [new branch] gh/ydwu4/234/base -> origin/gh/ydwu4/234/base 2025-06-01T20:58:09.2128887Z * [new branch] gh/ydwu4/234/head -> origin/gh/ydwu4/234/head 2025-06-01T20:58:09.2129350Z * [new branch] gh/ydwu4/234/orig -> origin/gh/ydwu4/234/orig 2025-06-01T20:58:09.2129831Z * [new branch] gh/ydwu4/235/base -> origin/gh/ydwu4/235/base 2025-06-01T20:58:09.2130290Z * [new branch] gh/ydwu4/235/head -> origin/gh/ydwu4/235/head 2025-06-01T20:58:09.2130753Z * [new branch] gh/ydwu4/235/orig -> origin/gh/ydwu4/235/orig 2025-06-01T20:58:09.2131208Z * [new branch] gh/ydwu4/236/base -> origin/gh/ydwu4/236/base 2025-06-01T20:58:09.2131671Z * [new branch] gh/ydwu4/236/head -> origin/gh/ydwu4/236/head 2025-06-01T20:58:09.2132187Z * [new branch] gh/ydwu4/236/orig -> origin/gh/ydwu4/236/orig 2025-06-01T20:58:09.2132641Z * [new branch] gh/ydwu4/237/base -> origin/gh/ydwu4/237/base 2025-06-01T20:58:09.2133108Z * [new branch] gh/ydwu4/237/head -> origin/gh/ydwu4/237/head 2025-06-01T20:58:09.2133592Z * [new branch] gh/ydwu4/237/orig -> origin/gh/ydwu4/237/orig 2025-06-01T20:58:09.2134058Z * [new branch] gh/ydwu4/238/base -> origin/gh/ydwu4/238/base 2025-06-01T20:58:09.2134531Z * [new branch] gh/ydwu4/238/head -> origin/gh/ydwu4/238/head 2025-06-01T20:58:09.2134991Z * [new branch] gh/ydwu4/238/orig -> origin/gh/ydwu4/238/orig 2025-06-01T20:58:09.2135462Z * [new branch] gh/ydwu4/239/base -> origin/gh/ydwu4/239/base 2025-06-01T20:58:09.2135927Z * [new branch] gh/ydwu4/239/head -> origin/gh/ydwu4/239/head 2025-06-01T20:58:09.2136395Z * [new branch] gh/ydwu4/239/orig -> origin/gh/ydwu4/239/orig 2025-06-01T20:58:09.2136872Z * [new branch] gh/ydwu4/240/base -> origin/gh/ydwu4/240/base 2025-06-01T20:58:09.2137329Z * [new branch] gh/ydwu4/240/head -> origin/gh/ydwu4/240/head 2025-06-01T20:58:09.2137807Z * [new branch] gh/ydwu4/240/orig -> origin/gh/ydwu4/240/orig 2025-06-01T20:58:09.2138269Z * [new branch] gh/ydwu4/241/base -> origin/gh/ydwu4/241/base 2025-06-01T20:58:09.2138731Z * [new branch] gh/ydwu4/241/head -> origin/gh/ydwu4/241/head 2025-06-01T20:58:09.2139199Z * [new branch] gh/ydwu4/241/orig -> origin/gh/ydwu4/241/orig 2025-06-01T20:58:09.2139663Z * [new branch] gh/ydwu4/242/base -> origin/gh/ydwu4/242/base 2025-06-01T20:58:09.2140128Z * [new branch] gh/ydwu4/242/head -> origin/gh/ydwu4/242/head 2025-06-01T20:58:09.2586098Z * [new branch] gh/ydwu4/242/orig -> origin/gh/ydwu4/242/orig 2025-06-01T20:58:09.2586683Z * [new branch] gh/ydwu4/243/base -> origin/gh/ydwu4/243/base 2025-06-01T20:58:09.2587187Z * [new branch] gh/ydwu4/243/head -> origin/gh/ydwu4/243/head 2025-06-01T20:58:09.2588024Z * [new branch] gh/ydwu4/243/orig -> origin/gh/ydwu4/243/orig 2025-06-01T20:58:09.2588559Z * [new branch] gh/ydwu4/244/base -> origin/gh/ydwu4/244/base 2025-06-01T20:58:09.2589042Z * [new branch] gh/ydwu4/244/head -> origin/gh/ydwu4/244/head 2025-06-01T20:58:09.2589535Z * [new branch] gh/ydwu4/244/orig -> origin/gh/ydwu4/244/orig 2025-06-01T20:58:09.2590088Z * [new branch] gh/ydwu4/245/base -> origin/gh/ydwu4/245/base 2025-06-01T20:58:09.2590582Z * [new branch] gh/ydwu4/245/head -> origin/gh/ydwu4/245/head 2025-06-01T20:58:09.2591067Z * [new branch] gh/ydwu4/245/orig -> origin/gh/ydwu4/245/orig 2025-06-01T20:58:09.2591536Z * [new branch] gh/ydwu4/246/base -> origin/gh/ydwu4/246/base 2025-06-01T20:58:09.2592070Z * [new branch] gh/ydwu4/246/head -> origin/gh/ydwu4/246/head 2025-06-01T20:58:09.2592608Z * [new branch] gh/ydwu4/246/orig -> origin/gh/ydwu4/246/orig 2025-06-01T20:58:09.2593076Z * [new branch] gh/ydwu4/247/base -> origin/gh/ydwu4/247/base 2025-06-01T20:58:09.2593557Z * [new branch] gh/ydwu4/247/head -> origin/gh/ydwu4/247/head 2025-06-01T20:58:09.2594028Z * [new branch] gh/ydwu4/247/orig -> origin/gh/ydwu4/247/orig 2025-06-01T20:58:09.2594504Z * [new branch] gh/ydwu4/248/base -> origin/gh/ydwu4/248/base 2025-06-01T20:58:09.2594987Z * [new branch] gh/ydwu4/248/head -> origin/gh/ydwu4/248/head 2025-06-01T20:58:09.2595455Z * [new branch] gh/ydwu4/248/orig -> origin/gh/ydwu4/248/orig 2025-06-01T20:58:09.2595931Z * [new branch] gh/ydwu4/249/base -> origin/gh/ydwu4/249/base 2025-06-01T20:58:09.2596410Z * [new branch] gh/ydwu4/249/head -> origin/gh/ydwu4/249/head 2025-06-01T20:58:09.2596889Z * [new branch] gh/ydwu4/249/orig -> origin/gh/ydwu4/249/orig 2025-06-01T20:58:09.2597357Z * [new branch] gh/ydwu4/250/base -> origin/gh/ydwu4/250/base 2025-06-01T20:58:09.2597872Z * [new branch] gh/ydwu4/250/head -> origin/gh/ydwu4/250/head 2025-06-01T20:58:09.2598382Z * [new branch] gh/ydwu4/250/orig -> origin/gh/ydwu4/250/orig 2025-06-01T20:58:09.2598853Z * [new branch] gh/ydwu4/251/base -> origin/gh/ydwu4/251/base 2025-06-01T20:58:09.2599341Z * [new branch] gh/ydwu4/251/head -> origin/gh/ydwu4/251/head 2025-06-01T20:58:09.2599803Z * [new branch] gh/ydwu4/251/orig -> origin/gh/ydwu4/251/orig 2025-06-01T20:58:09.2600273Z * [new branch] gh/ydwu4/252/base -> origin/gh/ydwu4/252/base 2025-06-01T20:58:09.2600760Z * [new branch] gh/ydwu4/252/head -> origin/gh/ydwu4/252/head 2025-06-01T20:58:09.2601234Z * [new branch] gh/ydwu4/252/orig -> origin/gh/ydwu4/252/orig 2025-06-01T20:58:09.2601712Z * [new branch] gh/ydwu4/253/base -> origin/gh/ydwu4/253/base 2025-06-01T20:58:09.2602174Z * [new branch] gh/ydwu4/253/head -> origin/gh/ydwu4/253/head 2025-06-01T20:58:09.2602648Z * [new branch] gh/ydwu4/253/orig -> origin/gh/ydwu4/253/orig 2025-06-01T20:58:09.2603122Z * [new branch] gh/ydwu4/254/base -> origin/gh/ydwu4/254/base 2025-06-01T20:58:09.2603629Z * [new branch] gh/ydwu4/254/head -> origin/gh/ydwu4/254/head 2025-06-01T20:58:09.2604145Z * [new branch] gh/ydwu4/254/orig -> origin/gh/ydwu4/254/orig 2025-06-01T20:58:09.2604613Z * [new branch] gh/ydwu4/255/base -> origin/gh/ydwu4/255/base 2025-06-01T20:58:09.2605231Z * [new branch] gh/ydwu4/255/head -> origin/gh/ydwu4/255/head 2025-06-01T20:58:09.2605816Z * [new branch] gh/ydwu4/255/orig -> origin/gh/ydwu4/255/orig 2025-06-01T20:58:09.2606305Z * [new branch] gh/ydwu4/256/base -> origin/gh/ydwu4/256/base 2025-06-01T20:58:09.2606780Z * [new branch] gh/ydwu4/256/head -> origin/gh/ydwu4/256/head 2025-06-01T20:58:09.2607254Z * [new branch] gh/ydwu4/256/orig -> origin/gh/ydwu4/256/orig 2025-06-01T20:58:09.2607728Z * [new branch] gh/yf225/133/base -> origin/gh/yf225/133/base 2025-06-01T20:58:09.2608180Z * [new branch] gh/yf225/133/head -> origin/gh/yf225/133/head 2025-06-01T20:58:09.2608644Z * [new branch] gh/yf225/164/base -> origin/gh/yf225/164/base 2025-06-01T20:58:09.2609144Z * [new branch] gh/yf225/164/head -> origin/gh/yf225/164/head 2025-06-01T20:58:09.2609642Z * [new branch] gh/yf225/164/orig -> origin/gh/yf225/164/orig 2025-06-01T20:58:09.3084230Z * [new branch] gh/yf225/167/base -> origin/gh/yf225/167/base 2025-06-01T20:58:09.3084759Z * [new branch] gh/yf225/167/head -> origin/gh/yf225/167/head 2025-06-01T20:58:09.3085236Z * [new branch] gh/yf225/167/orig -> origin/gh/yf225/167/orig 2025-06-01T20:58:09.3085709Z * [new branch] gh/yf225/169/base -> origin/gh/yf225/169/base 2025-06-01T20:58:09.3086191Z * [new branch] gh/yf225/169/head -> origin/gh/yf225/169/head 2025-06-01T20:58:09.3086653Z * [new branch] gh/yf225/169/orig -> origin/gh/yf225/169/orig 2025-06-01T20:58:09.3087112Z * [new branch] gh/yf225/170/base -> origin/gh/yf225/170/base 2025-06-01T20:58:09.3087585Z * [new branch] gh/yf225/170/head -> origin/gh/yf225/170/head 2025-06-01T20:58:09.3088075Z * [new branch] gh/yf225/170/orig -> origin/gh/yf225/170/orig 2025-06-01T20:58:09.3088547Z * [new branch] gh/yf225/171/base -> origin/gh/yf225/171/base 2025-06-01T20:58:09.3089007Z * [new branch] gh/yf225/171/head -> origin/gh/yf225/171/head 2025-06-01T20:58:09.3089464Z * [new branch] gh/yf225/171/orig -> origin/gh/yf225/171/orig 2025-06-01T20:58:09.3089930Z * [new branch] gh/yf225/172/base -> origin/gh/yf225/172/base 2025-06-01T20:58:09.3090401Z * [new branch] gh/yf225/172/head -> origin/gh/yf225/172/head 2025-06-01T20:58:09.3090855Z * [new branch] gh/yf225/172/orig -> origin/gh/yf225/172/orig 2025-06-01T20:58:09.3091322Z * [new branch] gh/yf225/173/base -> origin/gh/yf225/173/base 2025-06-01T20:58:09.3091782Z * [new branch] gh/yf225/173/head -> origin/gh/yf225/173/head 2025-06-01T20:58:09.3092258Z * [new branch] gh/yf225/173/orig -> origin/gh/yf225/173/orig 2025-06-01T20:58:09.3092730Z * [new branch] gh/yf225/174/base -> origin/gh/yf225/174/base 2025-06-01T20:58:09.3093184Z * [new branch] gh/yf225/174/head -> origin/gh/yf225/174/head 2025-06-01T20:58:09.3093651Z * [new branch] gh/yf225/174/orig -> origin/gh/yf225/174/orig 2025-06-01T20:58:09.3094108Z * [new branch] gh/yf225/175/base -> origin/gh/yf225/175/base 2025-06-01T20:58:09.3094571Z * [new branch] gh/yf225/175/head -> origin/gh/yf225/175/head 2025-06-01T20:58:09.3095026Z * [new branch] gh/yf225/176/base -> origin/gh/yf225/176/base 2025-06-01T20:58:09.3095491Z * [new branch] gh/yf225/176/head -> origin/gh/yf225/176/head 2025-06-01T20:58:09.3095959Z * [new branch] gh/yf225/176/orig -> origin/gh/yf225/176/orig 2025-06-01T20:58:09.3096642Z * [new branch] gh/yf225/177/base -> origin/gh/yf225/177/base 2025-06-01T20:58:09.3097246Z * [new branch] gh/yf225/177/head -> origin/gh/yf225/177/head 2025-06-01T20:58:09.3097695Z * [new branch] gh/yf225/177/orig -> origin/gh/yf225/177/orig 2025-06-01T20:58:09.3098159Z * [new branch] gh/yf225/178/base -> origin/gh/yf225/178/base 2025-06-01T20:58:09.3098626Z * [new branch] gh/yf225/178/head -> origin/gh/yf225/178/head 2025-06-01T20:58:09.3099081Z * [new branch] gh/yf225/178/orig -> origin/gh/yf225/178/orig 2025-06-01T20:58:09.3099545Z * [new branch] gh/yf225/93/base -> origin/gh/yf225/93/base 2025-06-01T20:58:09.3099996Z * [new branch] gh/yf225/93/head -> origin/gh/yf225/93/head 2025-06-01T20:58:09.3100486Z * [new branch] gh/yifuwang/152/base -> origin/gh/yifuwang/152/base 2025-06-01T20:58:09.3101000Z * [new branch] gh/yifuwang/152/head -> origin/gh/yifuwang/152/head 2025-06-01T20:58:09.3101506Z * [new branch] gh/yifuwang/152/orig -> origin/gh/yifuwang/152/orig 2025-06-01T20:58:09.3102010Z * [new branch] gh/yifuwang/185/base -> origin/gh/yifuwang/185/base 2025-06-01T20:58:09.3102502Z * [new branch] gh/yifuwang/185/head -> origin/gh/yifuwang/185/head 2025-06-01T20:58:09.3103013Z * [new branch] gh/yifuwang/185/orig -> origin/gh/yifuwang/185/orig 2025-06-01T20:58:09.3103508Z * [new branch] gh/yifuwang/186/base -> origin/gh/yifuwang/186/base 2025-06-01T20:58:09.3104007Z * [new branch] gh/yifuwang/186/head -> origin/gh/yifuwang/186/head 2025-06-01T20:58:09.3104511Z * [new branch] gh/yifuwang/186/orig -> origin/gh/yifuwang/186/orig 2025-06-01T20:58:09.3105010Z * [new branch] gh/yifuwang/187/base -> origin/gh/yifuwang/187/base 2025-06-01T20:58:09.3105516Z * [new branch] gh/yifuwang/187/head -> origin/gh/yifuwang/187/head 2025-06-01T20:58:09.3106006Z * [new branch] gh/yifuwang/187/orig -> origin/gh/yifuwang/187/orig 2025-06-01T20:58:09.3106503Z * [new branch] gh/yifuwang/188/base -> origin/gh/yifuwang/188/base 2025-06-01T20:58:09.3107002Z * [new branch] gh/yifuwang/188/head -> origin/gh/yifuwang/188/head 2025-06-01T20:58:09.3588380Z * [new branch] gh/yifuwang/188/orig -> origin/gh/yifuwang/188/orig 2025-06-01T20:58:09.3588956Z * [new branch] gh/yifuwang/189/base -> origin/gh/yifuwang/189/base 2025-06-01T20:58:09.3589467Z * [new branch] gh/yifuwang/189/head -> origin/gh/yifuwang/189/head 2025-06-01T20:58:09.3590018Z * [new branch] gh/yifuwang/189/orig -> origin/gh/yifuwang/189/orig 2025-06-01T20:58:09.3590567Z * [new branch] gh/yifuwang/190/base -> origin/gh/yifuwang/190/base 2025-06-01T20:58:09.3591075Z * [new branch] gh/yifuwang/190/head -> origin/gh/yifuwang/190/head 2025-06-01T20:58:09.3591582Z * [new branch] gh/yifuwang/190/orig -> origin/gh/yifuwang/190/orig 2025-06-01T20:58:09.3592089Z * [new branch] gh/yifuwang/191/base -> origin/gh/yifuwang/191/base 2025-06-01T20:58:09.3592580Z * [new branch] gh/yifuwang/191/head -> origin/gh/yifuwang/191/head 2025-06-01T20:58:09.3593081Z * [new branch] gh/yifuwang/191/orig -> origin/gh/yifuwang/191/orig 2025-06-01T20:58:09.3593569Z * [new branch] gh/yifuwang/192/base -> origin/gh/yifuwang/192/base 2025-06-01T20:58:09.3594075Z * [new branch] gh/yifuwang/192/head -> origin/gh/yifuwang/192/head 2025-06-01T20:58:09.3594569Z * [new branch] gh/yifuwang/192/orig -> origin/gh/yifuwang/192/orig 2025-06-01T20:58:09.3596331Z * [new branch] gh/yifuwang/194/base -> origin/gh/yifuwang/194/base 2025-06-01T20:58:09.3597407Z * [new branch] gh/yifuwang/194/head -> origin/gh/yifuwang/194/head 2025-06-01T20:58:09.3597903Z * [new branch] gh/yifuwang/194/orig -> origin/gh/yifuwang/194/orig 2025-06-01T20:58:09.3598401Z * [new branch] gh/yifuwang/195/base -> origin/gh/yifuwang/195/base 2025-06-01T20:58:09.3598895Z * [new branch] gh/yifuwang/195/head -> origin/gh/yifuwang/195/head 2025-06-01T20:58:09.3599412Z * [new branch] gh/yifuwang/195/orig -> origin/gh/yifuwang/195/orig 2025-06-01T20:58:09.3599926Z * [new branch] gh/yifuwang/196/base -> origin/gh/yifuwang/196/base 2025-06-01T20:58:09.3600415Z * [new branch] gh/yifuwang/196/head -> origin/gh/yifuwang/196/head 2025-06-01T20:58:09.3600916Z * [new branch] gh/yifuwang/196/orig -> origin/gh/yifuwang/196/orig 2025-06-01T20:58:09.3601419Z * [new branch] gh/yiming0416/1/base -> origin/gh/yiming0416/1/base 2025-06-01T20:58:09.3601930Z * [new branch] gh/yiming0416/1/head -> origin/gh/yiming0416/1/head 2025-06-01T20:58:09.3602426Z * [new branch] gh/yiming0416/2/base -> origin/gh/yiming0416/2/base 2025-06-01T20:58:09.3602920Z * [new branch] gh/yiming0416/2/head -> origin/gh/yiming0416/2/head 2025-06-01T20:58:09.3603414Z * [new branch] gh/yiming0416/3/base -> origin/gh/yiming0416/3/base 2025-06-01T20:58:09.3603906Z * [new branch] gh/yiming0416/3/head -> origin/gh/yiming0416/3/head 2025-06-01T20:58:09.3604406Z * [new branch] gh/yiming0416/4/base -> origin/gh/yiming0416/4/base 2025-06-01T20:58:09.3604890Z * [new branch] gh/yiming0416/4/head -> origin/gh/yiming0416/4/head 2025-06-01T20:58:09.3605396Z * [new branch] gh/yiming0416/5/base -> origin/gh/yiming0416/5/base 2025-06-01T20:58:09.3605900Z * [new branch] gh/yiming0416/5/head -> origin/gh/yiming0416/5/head 2025-06-01T20:58:09.3606393Z * [new branch] gh/yiming0416/5/orig -> origin/gh/yiming0416/5/orig 2025-06-01T20:58:09.3606894Z * [new branch] gh/yiming0416/6/base -> origin/gh/yiming0416/6/base 2025-06-01T20:58:09.3607392Z * [new branch] gh/yiming0416/6/head -> origin/gh/yiming0416/6/head 2025-06-01T20:58:09.3607888Z * [new branch] gh/yiming0416/6/orig -> origin/gh/yiming0416/6/orig 2025-06-01T20:58:09.3608389Z * [new branch] gh/yiming0416/7/base -> origin/gh/yiming0416/7/base 2025-06-01T20:58:09.3608879Z * [new branch] gh/yiming0416/7/head -> origin/gh/yiming0416/7/head 2025-06-01T20:58:09.3609383Z * [new branch] gh/yiming0416/7/orig -> origin/gh/yiming0416/7/orig 2025-06-01T20:58:09.3609885Z * [new branch] gh/ysiraichi/79/base -> origin/gh/ysiraichi/79/base 2025-06-01T20:58:09.3610395Z * [new branch] gh/ysiraichi/79/head -> origin/gh/ysiraichi/79/head 2025-06-01T20:58:09.3610903Z * [new branch] gh/ysiraichi/79/orig -> origin/gh/ysiraichi/79/orig 2025-06-01T20:58:09.3611406Z * [new branch] gh/ysiraichi/80/base -> origin/gh/ysiraichi/80/base 2025-06-01T20:58:09.3611910Z * [new branch] gh/ysiraichi/80/head -> origin/gh/ysiraichi/80/head 2025-06-01T20:58:09.3612406Z * [new branch] gh/ysiraichi/80/orig -> origin/gh/ysiraichi/80/orig 2025-06-01T20:58:09.3612913Z * [new branch] gh/ysiraichi/81/base -> origin/gh/ysiraichi/81/base 2025-06-01T20:58:09.3613422Z * [new branch] gh/ysiraichi/81/head -> origin/gh/ysiraichi/81/head 2025-06-01T20:58:09.4073822Z * [new branch] gh/ysiraichi/81/orig -> origin/gh/ysiraichi/81/orig 2025-06-01T20:58:09.4074777Z * [new branch] gh/ysiraichi/82/base -> origin/gh/ysiraichi/82/base 2025-06-01T20:58:09.4075338Z * [new branch] gh/ysiraichi/82/head -> origin/gh/ysiraichi/82/head 2025-06-01T20:58:09.4075909Z * [new branch] gh/ysiraichi/82/orig -> origin/gh/ysiraichi/82/orig 2025-06-01T20:58:09.4076424Z * [new branch] gh/ysiraichi/84/base -> origin/gh/ysiraichi/84/base 2025-06-01T20:58:09.4076919Z * [new branch] gh/ysiraichi/84/head -> origin/gh/ysiraichi/84/head 2025-06-01T20:58:09.4077422Z * [new branch] gh/ysiraichi/84/orig -> origin/gh/ysiraichi/84/orig 2025-06-01T20:58:09.4077921Z * [new branch] gh/ysiraichi/85/base -> origin/gh/ysiraichi/85/base 2025-06-01T20:58:09.4078443Z * [new branch] gh/ysiraichi/85/head -> origin/gh/ysiraichi/85/head 2025-06-01T20:58:09.4078963Z * [new branch] gh/ysiraichi/85/orig -> origin/gh/ysiraichi/85/orig 2025-06-01T20:58:09.4079469Z * [new branch] gh/ysiraichi/86/base -> origin/gh/ysiraichi/86/base 2025-06-01T20:58:09.4079981Z * [new branch] gh/ysiraichi/86/head -> origin/gh/ysiraichi/86/head 2025-06-01T20:58:09.4080481Z * [new branch] gh/ysiraichi/86/orig -> origin/gh/ysiraichi/86/orig 2025-06-01T20:58:09.4080992Z * [new branch] gh/ysiraichi/87/base -> origin/gh/ysiraichi/87/base 2025-06-01T20:58:09.4081569Z * [new branch] gh/ysiraichi/87/head -> origin/gh/ysiraichi/87/head 2025-06-01T20:58:09.4082066Z * [new branch] gh/ysiraichi/87/orig -> origin/gh/ysiraichi/87/orig 2025-06-01T20:58:09.4082568Z * [new branch] gh/ysiraichi/88/base -> origin/gh/ysiraichi/88/base 2025-06-01T20:58:09.4083060Z * [new branch] gh/ysiraichi/88/head -> origin/gh/ysiraichi/88/head 2025-06-01T20:58:09.4083576Z * [new branch] gh/ysiraichi/88/orig -> origin/gh/ysiraichi/88/orig 2025-06-01T20:58:09.4084089Z * [new branch] gh/yuguo68/1/base -> origin/gh/yuguo68/1/base 2025-06-01T20:58:09.4084564Z * [new branch] gh/yuguo68/1/head -> origin/gh/yuguo68/1/head 2025-06-01T20:58:09.4085052Z * [new branch] gh/yuguo68/1/orig -> origin/gh/yuguo68/1/orig 2025-06-01T20:58:09.4085517Z * [new branch] gh/yuguo68/2/base -> origin/gh/yuguo68/2/base 2025-06-01T20:58:09.4085992Z * [new branch] gh/yuguo68/2/head -> origin/gh/yuguo68/2/head 2025-06-01T20:58:09.4086466Z * [new branch] gh/yuguo68/2/orig -> origin/gh/yuguo68/2/orig 2025-06-01T20:58:09.4086984Z * [new branch] gh/zhuhaozhe/28/base -> origin/gh/zhuhaozhe/28/base 2025-06-01T20:58:09.4087536Z * [new branch] gh/zhuhaozhe/28/head -> origin/gh/zhuhaozhe/28/head 2025-06-01T20:58:09.4088064Z * [new branch] gh/zhuhaozhe/28/orig -> origin/gh/zhuhaozhe/28/orig 2025-06-01T20:58:09.4088570Z * [new branch] gh/zhuhaozhe/29/base -> origin/gh/zhuhaozhe/29/base 2025-06-01T20:58:09.4089066Z * [new branch] gh/zhuhaozhe/29/head -> origin/gh/zhuhaozhe/29/head 2025-06-01T20:58:09.4089569Z * [new branch] gh/zhuhaozhe/29/orig -> origin/gh/zhuhaozhe/29/orig 2025-06-01T20:58:09.4090074Z * [new branch] gh/zhuhaozhe/31/base -> origin/gh/zhuhaozhe/31/base 2025-06-01T20:58:09.4090568Z * [new branch] gh/zhuhaozhe/31/head -> origin/gh/zhuhaozhe/31/head 2025-06-01T20:58:09.4091068Z * [new branch] gh/zhuhaozhe/31/orig -> origin/gh/zhuhaozhe/31/orig 2025-06-01T20:58:09.4091563Z * [new branch] gh/zhuhaozhe/32/base -> origin/gh/zhuhaozhe/32/base 2025-06-01T20:58:09.4092189Z * [new branch] gh/zhuhaozhe/32/head -> origin/gh/zhuhaozhe/32/head 2025-06-01T20:58:09.4092847Z * [new branch] gh/zhuhaozhe/32/orig -> origin/gh/zhuhaozhe/32/orig 2025-06-01T20:58:09.4093373Z * [new branch] gh/zhuhaozhe/33/base -> origin/gh/zhuhaozhe/33/base 2025-06-01T20:58:09.4093874Z * [new branch] gh/zhuhaozhe/33/head -> origin/gh/zhuhaozhe/33/head 2025-06-01T20:58:09.4094369Z * [new branch] gh/zhuhaozhe/33/orig -> origin/gh/zhuhaozhe/33/orig 2025-06-01T20:58:09.4094877Z * [new branch] gh/zhxchen17/1/base -> origin/gh/zhxchen17/1/base 2025-06-01T20:58:09.4095371Z * [new branch] gh/zhxchen17/1/head -> origin/gh/zhxchen17/1/head 2025-06-01T20:58:09.4095864Z * [new branch] gh/zhxchen17/1/orig -> origin/gh/zhxchen17/1/orig 2025-06-01T20:58:09.4096365Z * [new branch] gh/zhxchen17/10/base -> origin/gh/zhxchen17/10/base 2025-06-01T20:58:09.4096857Z * [new branch] gh/zhxchen17/10/head -> origin/gh/zhxchen17/10/head 2025-06-01T20:58:09.4097355Z * [new branch] gh/zhxchen17/10/orig -> origin/gh/zhxchen17/10/orig 2025-06-01T20:58:09.4556833Z * [new branch] gh/zhxchen17/11/base -> origin/gh/zhxchen17/11/base 2025-06-01T20:58:09.4557401Z * [new branch] gh/zhxchen17/11/head -> origin/gh/zhxchen17/11/head 2025-06-01T20:58:09.4557911Z * [new branch] gh/zhxchen17/11/orig -> origin/gh/zhxchen17/11/orig 2025-06-01T20:58:09.4558429Z * [new branch] gh/zhxchen17/12/base -> origin/gh/zhxchen17/12/base 2025-06-01T20:58:09.4558932Z * [new branch] gh/zhxchen17/12/head -> origin/gh/zhxchen17/12/head 2025-06-01T20:58:09.4559426Z * [new branch] gh/zhxchen17/12/orig -> origin/gh/zhxchen17/12/orig 2025-06-01T20:58:09.4559920Z * [new branch] gh/zhxchen17/13/base -> origin/gh/zhxchen17/13/base 2025-06-01T20:58:09.4560457Z * [new branch] gh/zhxchen17/13/head -> origin/gh/zhxchen17/13/head 2025-06-01T20:58:09.4560951Z * [new branch] gh/zhxchen17/13/orig -> origin/gh/zhxchen17/13/orig 2025-06-01T20:58:09.4561454Z * [new branch] gh/zhxchen17/14/base -> origin/gh/zhxchen17/14/base 2025-06-01T20:58:09.4561949Z * [new branch] gh/zhxchen17/14/head -> origin/gh/zhxchen17/14/head 2025-06-01T20:58:09.4562440Z * [new branch] gh/zhxchen17/14/orig -> origin/gh/zhxchen17/14/orig 2025-06-01T20:58:09.4562932Z * [new branch] gh/zhxchen17/15/base -> origin/gh/zhxchen17/15/base 2025-06-01T20:58:09.4563424Z * [new branch] gh/zhxchen17/15/head -> origin/gh/zhxchen17/15/head 2025-06-01T20:58:09.4563925Z * [new branch] gh/zhxchen17/15/orig -> origin/gh/zhxchen17/15/orig 2025-06-01T20:58:09.4564425Z * [new branch] gh/zhxchen17/16/base -> origin/gh/zhxchen17/16/base 2025-06-01T20:58:09.4564923Z * [new branch] gh/zhxchen17/16/head -> origin/gh/zhxchen17/16/head 2025-06-01T20:58:09.4565425Z * [new branch] gh/zhxchen17/16/orig -> origin/gh/zhxchen17/16/orig 2025-06-01T20:58:09.4565920Z * [new branch] gh/zhxchen17/17/base -> origin/gh/zhxchen17/17/base 2025-06-01T20:58:09.4566418Z * [new branch] gh/zhxchen17/17/head -> origin/gh/zhxchen17/17/head 2025-06-01T20:58:09.4566914Z * [new branch] gh/zhxchen17/17/orig -> origin/gh/zhxchen17/17/orig 2025-06-01T20:58:09.4567413Z * [new branch] gh/zhxchen17/18/base -> origin/gh/zhxchen17/18/base 2025-06-01T20:58:09.4567911Z * [new branch] gh/zhxchen17/18/head -> origin/gh/zhxchen17/18/head 2025-06-01T20:58:09.4568402Z * [new branch] gh/zhxchen17/18/orig -> origin/gh/zhxchen17/18/orig 2025-06-01T20:58:09.4569099Z * [new branch] gh/zhxchen17/19/base -> origin/gh/zhxchen17/19/base 2025-06-01T20:58:09.4569711Z * [new branch] gh/zhxchen17/19/head -> origin/gh/zhxchen17/19/head 2025-06-01T20:58:09.4570217Z * [new branch] gh/zhxchen17/19/orig -> origin/gh/zhxchen17/19/orig 2025-06-01T20:58:09.4570728Z * [new branch] gh/zhxchen17/2/base -> origin/gh/zhxchen17/2/base 2025-06-01T20:58:09.4571219Z * [new branch] gh/zhxchen17/2/head -> origin/gh/zhxchen17/2/head 2025-06-01T20:58:09.4571710Z * [new branch] gh/zhxchen17/2/orig -> origin/gh/zhxchen17/2/orig 2025-06-01T20:58:09.4572200Z * [new branch] gh/zhxchen17/20/base -> origin/gh/zhxchen17/20/base 2025-06-01T20:58:09.4572701Z * [new branch] gh/zhxchen17/20/head -> origin/gh/zhxchen17/20/head 2025-06-01T20:58:09.4573196Z * [new branch] gh/zhxchen17/20/orig -> origin/gh/zhxchen17/20/orig 2025-06-01T20:58:09.4573691Z * [new branch] gh/zhxchen17/21/base -> origin/gh/zhxchen17/21/base 2025-06-01T20:58:09.4574194Z * [new branch] gh/zhxchen17/21/head -> origin/gh/zhxchen17/21/head 2025-06-01T20:58:09.4574690Z * [new branch] gh/zhxchen17/21/orig -> origin/gh/zhxchen17/21/orig 2025-06-01T20:58:09.4575190Z * [new branch] gh/zhxchen17/3/base -> origin/gh/zhxchen17/3/base 2025-06-01T20:58:09.4575692Z * [new branch] gh/zhxchen17/3/head -> origin/gh/zhxchen17/3/head 2025-06-01T20:58:09.4576173Z * [new branch] gh/zhxchen17/3/orig -> origin/gh/zhxchen17/3/orig 2025-06-01T20:58:09.4576669Z * [new branch] gh/zhxchen17/4/base -> origin/gh/zhxchen17/4/base 2025-06-01T20:58:09.4577154Z * [new branch] gh/zhxchen17/4/head -> origin/gh/zhxchen17/4/head 2025-06-01T20:58:09.4577654Z * [new branch] gh/zhxchen17/4/orig -> origin/gh/zhxchen17/4/orig 2025-06-01T20:58:09.4578148Z * [new branch] gh/zhxchen17/5/base -> origin/gh/zhxchen17/5/base 2025-06-01T20:58:09.4578644Z * [new branch] gh/zhxchen17/5/head -> origin/gh/zhxchen17/5/head 2025-06-01T20:58:09.4579140Z * [new branch] gh/zhxchen17/5/orig -> origin/gh/zhxchen17/5/orig 2025-06-01T20:58:09.4579624Z * [new branch] gh/zhxchen17/6/base -> origin/gh/zhxchen17/6/base 2025-06-01T20:58:09.4580116Z * [new branch] gh/zhxchen17/6/head -> origin/gh/zhxchen17/6/head 2025-06-01T20:58:09.5039936Z * [new branch] gh/zhxchen17/6/orig -> origin/gh/zhxchen17/6/orig 2025-06-01T20:58:09.5040458Z * [new branch] gh/zhxchen17/7/base -> origin/gh/zhxchen17/7/base 2025-06-01T20:58:09.5040957Z * [new branch] gh/zhxchen17/7/head -> origin/gh/zhxchen17/7/head 2025-06-01T20:58:09.5041466Z * [new branch] gh/zhxchen17/7/orig -> origin/gh/zhxchen17/7/orig 2025-06-01T20:58:09.5041968Z * [new branch] gh/zhxchen17/8/base -> origin/gh/zhxchen17/8/base 2025-06-01T20:58:09.5042454Z * [new branch] gh/zhxchen17/8/head -> origin/gh/zhxchen17/8/head 2025-06-01T20:58:09.5042946Z * [new branch] gh/zhxchen17/8/orig -> origin/gh/zhxchen17/8/orig 2025-06-01T20:58:09.5043440Z * [new branch] gh/zhxchen17/9/base -> origin/gh/zhxchen17/9/base 2025-06-01T20:58:09.5043929Z * [new branch] gh/zhxchen17/9/head -> origin/gh/zhxchen17/9/head 2025-06-01T20:58:09.5044429Z * [new branch] gh/zhxchen17/9/orig -> origin/gh/zhxchen17/9/orig 2025-06-01T20:58:09.5044908Z * [new branch] gh/zklaus/1/base -> origin/gh/zklaus/1/base 2025-06-01T20:58:09.5045388Z * [new branch] gh/zklaus/1/head -> origin/gh/zklaus/1/head 2025-06-01T20:58:09.5046038Z * [new branch] gh/zklaus/1/orig -> origin/gh/zklaus/1/orig 2025-06-01T20:58:09.5046635Z * [new branch] gh/zklaus/2/base -> origin/gh/zklaus/2/base 2025-06-01T20:58:09.5047110Z * [new branch] gh/zklaus/2/head -> origin/gh/zklaus/2/head 2025-06-01T20:58:09.5047577Z * [new branch] gh/zklaus/2/orig -> origin/gh/zklaus/2/orig 2025-06-01T20:58:09.5048071Z * [new branch] gh/zklaus/3/base -> origin/gh/zklaus/3/base 2025-06-01T20:58:09.5048540Z * [new branch] gh/zklaus/3/head -> origin/gh/zklaus/3/head 2025-06-01T20:58:09.5049002Z * [new branch] gh/zklaus/3/orig -> origin/gh/zklaus/3/orig 2025-06-01T20:58:09.5049466Z * [new branch] gh/zklaus/4/base -> origin/gh/zklaus/4/base 2025-06-01T20:58:09.5049923Z * [new branch] gh/zklaus/4/head -> origin/gh/zklaus/4/head 2025-06-01T20:58:09.5050398Z * [new branch] gh/zklaus/4/orig -> origin/gh/zklaus/4/orig 2025-06-01T20:58:09.5050896Z * [new branch] gh/zou3519/1141/base -> origin/gh/zou3519/1141/base 2025-06-01T20:58:09.5051386Z * [new branch] gh/zou3519/1141/head -> origin/gh/zou3519/1141/head 2025-06-01T20:58:09.5051872Z * [new branch] gh/zou3519/1141/orig -> origin/gh/zou3519/1141/orig 2025-06-01T20:58:09.5052356Z * [new branch] gh/zou3519/1145/base -> origin/gh/zou3519/1145/base 2025-06-01T20:58:09.5052851Z * [new branch] gh/zou3519/1145/head -> origin/gh/zou3519/1145/head 2025-06-01T20:58:09.5053340Z * [new branch] gh/zou3519/1145/orig -> origin/gh/zou3519/1145/orig 2025-06-01T20:58:09.5053819Z * [new branch] gh/zou3519/1149/base -> origin/gh/zou3519/1149/base 2025-06-01T20:58:09.5054303Z * [new branch] gh/zou3519/1149/head -> origin/gh/zou3519/1149/head 2025-06-01T20:58:09.5054796Z * [new branch] gh/zou3519/1149/orig -> origin/gh/zou3519/1149/orig 2025-06-01T20:58:09.5055283Z * [new branch] gh/zou3519/1152/base -> origin/gh/zou3519/1152/base 2025-06-01T20:58:09.5055760Z * [new branch] gh/zou3519/1152/head -> origin/gh/zou3519/1152/head 2025-06-01T20:58:09.5056244Z * [new branch] gh/zou3519/1152/orig -> origin/gh/zou3519/1152/orig 2025-06-01T20:58:09.5056729Z * [new branch] gh/zou3519/1156/base -> origin/gh/zou3519/1156/base 2025-06-01T20:58:09.5057202Z * [new branch] gh/zou3519/1156/head -> origin/gh/zou3519/1156/head 2025-06-01T20:58:09.5057689Z * [new branch] gh/zou3519/1156/orig -> origin/gh/zou3519/1156/orig 2025-06-01T20:58:09.5058160Z * [new branch] gh/zou3519/1161/base -> origin/gh/zou3519/1161/base 2025-06-01T20:58:09.5058654Z * [new branch] gh/zou3519/1161/head -> origin/gh/zou3519/1161/head 2025-06-01T20:58:09.5059158Z * [new branch] gh/zou3519/1161/orig -> origin/gh/zou3519/1161/orig 2025-06-01T20:58:09.5059635Z * [new branch] gh/zou3519/1162/base -> origin/gh/zou3519/1162/base 2025-06-01T20:58:09.5060123Z * [new branch] gh/zou3519/1162/head -> origin/gh/zou3519/1162/head 2025-06-01T20:58:09.5060598Z * [new branch] gh/zou3519/1162/orig -> origin/gh/zou3519/1162/orig 2025-06-01T20:58:09.5061078Z * [new branch] gh/zou3519/1163/base -> origin/gh/zou3519/1163/base 2025-06-01T20:58:09.5061566Z * [new branch] gh/zou3519/1163/head -> origin/gh/zou3519/1163/head 2025-06-01T20:58:09.5062040Z * [new branch] gh/zou3519/1163/orig -> origin/gh/zou3519/1163/orig 2025-06-01T20:58:09.5062521Z * [new branch] gh/zou3519/1164/base -> origin/gh/zou3519/1164/base 2025-06-01T20:58:09.5502091Z * [new branch] gh/zou3519/1164/head -> origin/gh/zou3519/1164/head 2025-06-01T20:58:09.5502793Z * [new branch] gh/zou3519/1164/orig -> origin/gh/zou3519/1164/orig 2025-06-01T20:58:09.5503290Z * [new branch] gh/zou3519/1165/base -> origin/gh/zou3519/1165/base 2025-06-01T20:58:09.5503767Z * [new branch] gh/zou3519/1165/head -> origin/gh/zou3519/1165/head 2025-06-01T20:58:09.5504278Z * [new branch] gh/zou3519/1165/orig -> origin/gh/zou3519/1165/orig 2025-06-01T20:58:09.5504766Z * [new branch] gh/zou3519/1166/base -> origin/gh/zou3519/1166/base 2025-06-01T20:58:09.5505237Z * [new branch] gh/zou3519/1166/head -> origin/gh/zou3519/1166/head 2025-06-01T20:58:09.5505720Z * [new branch] gh/zou3519/1166/orig -> origin/gh/zou3519/1166/orig 2025-06-01T20:58:09.5506195Z * [new branch] gh/zou3519/1167/base -> origin/gh/zou3519/1167/base 2025-06-01T20:58:09.5506682Z * [new branch] gh/zou3519/1167/head -> origin/gh/zou3519/1167/head 2025-06-01T20:58:09.5507165Z * [new branch] gh/zou3519/1167/orig -> origin/gh/zou3519/1167/orig 2025-06-01T20:58:09.5507659Z * [new branch] gh/zou3519/1168/base -> origin/gh/zou3519/1168/base 2025-06-01T20:58:09.5508140Z * [new branch] gh/zou3519/1168/head -> origin/gh/zou3519/1168/head 2025-06-01T20:58:09.5508616Z * [new branch] gh/zou3519/1168/orig -> origin/gh/zou3519/1168/orig 2025-06-01T20:58:09.5509098Z * [new branch] gh/zou3519/1169/base -> origin/gh/zou3519/1169/base 2025-06-01T20:58:09.5509623Z * [new branch] gh/zou3519/1169/head -> origin/gh/zou3519/1169/head 2025-06-01T20:58:09.5510108Z * [new branch] gh/zou3519/1169/orig -> origin/gh/zou3519/1169/orig 2025-06-01T20:58:09.5510679Z * [new branch] gh/zou3519/1170/base -> origin/gh/zou3519/1170/base 2025-06-01T20:58:09.5511169Z * [new branch] gh/zou3519/1170/head -> origin/gh/zou3519/1170/head 2025-06-01T20:58:09.5511663Z * [new branch] gh/zou3519/1170/orig -> origin/gh/zou3519/1170/orig 2025-06-01T20:58:09.5512143Z * [new branch] gh/zou3519/1171/base -> origin/gh/zou3519/1171/base 2025-06-01T20:58:09.5512645Z * [new branch] gh/zou3519/1171/head -> origin/gh/zou3519/1171/head 2025-06-01T20:58:09.5513123Z * [new branch] gh/zou3519/1171/orig -> origin/gh/zou3519/1171/orig 2025-06-01T20:58:09.5513607Z * [new branch] gh/zou3519/1172/base -> origin/gh/zou3519/1172/base 2025-06-01T20:58:09.5514091Z * [new branch] gh/zou3519/1172/head -> origin/gh/zou3519/1172/head 2025-06-01T20:58:09.5514571Z * [new branch] gh/zou3519/1172/orig -> origin/gh/zou3519/1172/orig 2025-06-01T20:58:09.5515069Z * [new branch] gh/zou3519/916/base -> origin/gh/zou3519/916/base 2025-06-01T20:58:09.5515557Z * [new branch] gh/zou3519/916/head -> origin/gh/zou3519/916/head 2025-06-01T20:58:09.5516028Z * [new branch] google-main -> origin/google-main 2025-06-01T20:58:09.5516529Z * [new branch] guangyey/external_stream -> origin/guangyey/external_stream 2025-06-01T20:58:09.5517056Z * [new branch] guangyey/host_alloc -> origin/guangyey/host_alloc 2025-06-01T20:58:09.5517543Z * [new branch] guangyey/test_2025 -> origin/guangyey/test_2025 2025-06-01T20:58:09.5517999Z * [new branch] guard_system -> origin/guard_system 2025-06-01T20:58:09.5518636Z * [new branch] guilhermeleobas/cherry-pick-55d87d9dfd9 -> origin/guilhermeleobas/cherry-pick-55d87d9dfd9 2025-06-01T20:58:09.5519329Z * [new branch] haozhe/bf16-dynamic-shape -> origin/haozhe/bf16-dynamic-shape 2025-06-01T20:58:09.5520046Z * [new branch] hc_baseline -> origin/hc_baseline 2025-06-01T20:58:09.5520475Z * [new branch] hhh_rand -> origin/hhh_rand 2025-06-01T20:58:09.5520948Z * [new branch] hoy/autotune/numwarps -> origin/hoy/autotune/numwarps 2025-06-01T20:58:09.5521438Z * [new branch] hoy/mmsplitk -> origin/hoy/mmsplitk 2025-06-01T20:58:09.5521911Z * [new branch] hoy/triton-PR3973 -> origin/hoy/triton-PR3973 2025-06-01T20:58:09.5522486Z * [new branch] hoy/triton-coalescing-baseline -> origin/hoy/triton-coalescing-baseline 2025-06-01T20:58:09.5523113Z * [new branch] hoy/triton-coalescing-min -> origin/hoy/triton-coalescing-min 2025-06-01T20:58:09.5523682Z * [new branch] hoy/triton-coalescing-new -> origin/hoy/triton-coalescing-new 2025-06-01T20:58:09.5524255Z * [new branch] hoy/triton-coalescing-vec -> origin/hoy/triton-coalescing-vec 2025-06-01T20:58:09.5524980Z * [new branch] increase-phlippe_resnet-tolerance-float16 -> origin/increase-phlippe_resnet-tolerance-float16 2025-06-01T20:58:09.5525606Z * [new branch] inline -> origin/inline 2025-06-01T20:58:09.5526079Z * [new branch] inlining -> origin/inlining 2025-06-01T20:58:09.5974535Z * [new branch] inlining-ezyang -> origin/inlining-ezyang 2025-06-01T20:58:09.5975058Z * [new branch] int8_sdpa -> origin/int8_sdpa 2025-06-01T20:58:09.5975536Z * [new branch] invoke-subgraph -> origin/invoke-subgraph 2025-06-01T20:58:09.5976000Z * [new branch] issue#58739 -> origin/issue#58739 2025-06-01T20:58:09.5976458Z * [new branch] issue_150765_fix -> origin/issue_150765_fix 2025-06-01T20:58:09.5977046Z * [new branch] ivanov/cherry-pick-ckpt-fixes -> origin/ivanov/cherry-pick-ckpt-fixes 2025-06-01T20:58:09.5977770Z * [new branch] jcaip/test-cusparselt-version-0.6.2 -> origin/jcaip/test-cusparselt-version-0.6.2 2025-06-01T20:58:09.5978676Z * [new branch] jcaip/update-cusparselt-0.6.2 -> origin/jcaip/update-cusparselt-0.6.2 2025-06-01T20:58:09.5979345Z * [new branch] jeanschmidt/issue_148342 -> origin/jeanschmidt/issue_148342 2025-06-01T20:58:09.5980039Z * [new branch] jeanschmidt/remove_perf_test_scripts -> origin/jeanschmidt/remove_perf_test_scripts 2025-06-01T20:58:09.5980699Z * [new branch] jeanschmidt/test_infra_250314 -> origin/jeanschmidt/test_infra_250314 2025-06-01T20:58:09.5981262Z * [new branch] justinchu/onnx-deps -> origin/justinchu/onnx-deps 2025-06-01T20:58:09.5981735Z * [new branch] jz/istft -> origin/jz/istft 2025-06-01T20:58:09.5982278Z * [new branch] leslie/enable_poc_reduction_fusion -> origin/leslie/enable_poc_reduction_fusion 2025-06-01T20:58:09.5982942Z * [new branch] leslie/test_group_gemm_epilogues -> origin/leslie/test_group_gemm_epilogues 2025-06-01T20:58:09.5983524Z * [new branch] liaoxuan/shm_all_reduce -> origin/liaoxuan/shm_all_reduce 2025-06-01T20:58:09.5984074Z * [new branch] liaoxuan/test_int8_sdpa -> origin/liaoxuan/test_int8_sdpa 2025-06-01T20:58:09.5984575Z * [new branch] lts/release/1.8 -> origin/lts/release/1.8 2025-06-01T20:58:09.5985198Z * [new branch] lucaskabela/dynamo_nested_const_fix -> origin/lucaskabela/dynamo_nested_const_fix 2025-06-01T20:58:09.5986033Z * [new branch] lucaskabela/install_params_as_graph_attr -> origin/lucaskabela/install_params_as_graph_attr 2025-06-01T20:58:09.5986896Z * [new branch] lucaskabela/parameters_as_graph_attr -> origin/lucaskabela/parameters_as_graph_attr 2025-06-01T20:58:09.5987940Z * [new branch] lucaskabela/remove_aot_dispatcher_metadata -> origin/lucaskabela/remove_aot_dispatcher_metadata 2025-06-01T20:58:09.5988712Z * [new branch] macos_test -> origin/macos_test 2025-06-01T20:58:09.5989122Z * [new branch] main -> origin/main 2025-06-01T20:58:09.5989641Z * [new branch] malfet-patch-1 -> origin/malfet-patch-1 2025-06-01T20:58:09.5990125Z * [new branch] malfet-patch-10 -> origin/malfet-patch-10 2025-06-01T20:58:09.5990602Z * [new branch] malfet-patch-11 -> origin/malfet-patch-11 2025-06-01T20:58:09.5991084Z * [new branch] malfet-patch-12 -> origin/malfet-patch-12 2025-06-01T20:58:09.5991548Z * [new branch] malfet-patch-13 -> origin/malfet-patch-13 2025-06-01T20:58:09.5992027Z * [new branch] malfet-patch-14 -> origin/malfet-patch-14 2025-06-01T20:58:09.5992513Z * [new branch] malfet-patch-2 -> origin/malfet-patch-2 2025-06-01T20:58:09.5993040Z * [new branch] malfet-patch-20 -> origin/malfet-patch-20 2025-06-01T20:58:09.5993555Z * [new branch] malfet-patch-21 -> origin/malfet-patch-21 2025-06-01T20:58:09.5994115Z * [new branch] malfet-patch-23 -> origin/malfet-patch-23 2025-06-01T20:58:09.5994586Z * [new branch] malfet-patch-3 -> origin/malfet-patch-3 2025-06-01T20:58:09.5995043Z * [new branch] malfet-patch-4 -> origin/malfet-patch-4 2025-06-01T20:58:09.5995500Z * [new branch] malfet-patch-5 -> origin/malfet-patch-5 2025-06-01T20:58:09.5995958Z * [new branch] malfet-patch-6 -> origin/malfet-patch-6 2025-06-01T20:58:09.5996421Z * [new branch] malfet-patch-7 -> origin/malfet-patch-7 2025-06-01T20:58:09.5996888Z * [new branch] malfet-patch-8 -> origin/malfet-patch-8 2025-06-01T20:58:09.5997348Z * [new branch] malfet-patch-9 -> origin/malfet-patch-9 2025-06-01T20:58:09.5997858Z * [new branch] malfet/add-ciflow-pull -> origin/malfet/add-ciflow-pull 2025-06-01T20:58:09.5998393Z * [new branch] malfet/add-h100-opt-in -> origin/malfet/add-h100-opt-in 2025-06-01T20:58:09.5998891Z * [new branch] malfet/cp-150427 -> origin/malfet/cp-150427 2025-06-01T20:58:09.5999405Z * [new branch] malfet/cp-152510 -> origin/malfet/cp-152510 2025-06-01T20:58:09.6439874Z * [new branch] malfet/cuda-do-not-vec128-on-12.6 -> origin/malfet/cuda-do-not-vec128-on-12.6 2025-06-01T20:58:09.6440544Z * [new branch] malfet/delete-upsteam-cuda -> origin/malfet/delete-upsteam-cuda 2025-06-01T20:58:09.6441172Z * [new branch] malfet/lets-revert-145746 -> origin/malfet/lets-revert-145746 2025-06-01T20:58:09.6441922Z * [new branch] malfet/move-dtype_abbr-to-utils -> origin/malfet/move-dtype_abbr-to-utils 2025-06-01T20:58:09.6442642Z * [new branch] malfet/mps-implement-col2im -> origin/malfet/mps-implement-col2im 2025-06-01T20:58:09.6443322Z * [new branch] missing_gloo_causes_deadlock -> origin/missing_gloo_causes_deadlock 2025-06-01T20:58:09.6443904Z * [new branch] mlazos/S429861-debug -> origin/mlazos/S429861-debug 2025-06-01T20:58:09.6444374Z * [new branch] mlazos/aa -> origin/mlazos/aa 2025-06-01T20:58:09.6444867Z * [new branch] mlazos/backup-test-branch -> origin/mlazos/backup-test-branch 2025-06-01T20:58:09.6445417Z * [new branch] mlazos/bad-cudagraphs -> origin/mlazos/bad-cudagraphs 2025-06-01T20:58:09.6445926Z * [new branch] mlazos/baseline -> origin/mlazos/baseline 2025-06-01T20:58:09.6446637Z * [new branch] mlazos/baseline-graph-breaks -> origin/mlazos/baseline-graph-breaks 2025-06-01T20:58:09.6447340Z * [new branch] mlazos/beta-tensor -> origin/mlazos/beta-tensor 2025-06-01T20:58:09.6447825Z * [new branch] mlazos/buff-opt2 -> origin/mlazos/buff-opt2 2025-06-01T20:58:09.6448298Z * [new branch] mlazos/buffers -> origin/mlazos/buffers 2025-06-01T20:58:09.6448782Z * [new branch] mlazos/buffers2 -> origin/mlazos/buffers2 2025-06-01T20:58:09.6449318Z * [new branch] mlazos/buffers3 -> origin/mlazos/buffers3 2025-06-01T20:58:09.6449810Z * [new branch] mlazos/ck2 -> origin/mlazos/ck2 2025-06-01T20:58:09.6450341Z * [new branch] mlazos/combokernels -> origin/mlazos/combokernels 2025-06-01T20:58:09.6450921Z * [new branch] mlazos/ctx-cleanup -> origin/mlazos/ctx-cleanup 2025-06-01T20:58:09.6451531Z * [new branch] mlazos/cudagraph-tests -> origin/mlazos/cudagraph-tests 2025-06-01T20:58:09.6452133Z * [new branch] mlazos/cudagraphs-measurement -> origin/mlazos/cudagraphs-measurement 2025-06-01T20:58:09.6452704Z * [new branch] mlazos/cutlass-test -> origin/mlazos/cutlass-test 2025-06-01T20:58:09.6453230Z * [new branch] mlazos/cutlass-topo-bug -> origin/mlazos/cutlass-topo-bug 2025-06-01T20:58:09.6453754Z * [new branch] mlazos/data-gather -> origin/mlazos/data-gather 2025-06-01T20:58:09.6454248Z * [new branch] mlazos/data-ptrs2 -> origin/mlazos/data-ptrs2 2025-06-01T20:58:09.6454731Z * [new branch] mlazos/data-ptrs3 -> origin/mlazos/data-ptrs3 2025-06-01T20:58:09.6455238Z * [new branch] mlazos/dataclass-proxy -> origin/mlazos/dataclass-proxy 2025-06-01T20:58:09.6455779Z * [new branch] mlazos/disable-closures -> origin/mlazos/disable-closures 2025-06-01T20:58:09.6456313Z * [new branch] mlazos/disable-tf -> origin/mlazos/disable-tf 2025-06-01T20:58:09.6456850Z * [new branch] mlazos/disabled-opt -> origin/mlazos/disabled-opt 2025-06-01T20:58:09.6457387Z * [new branch] mlazos/dyn-batch -> origin/mlazos/dyn-batch 2025-06-01T20:58:09.6457952Z * [new branch] mlazos/einops-fix -> origin/mlazos/einops-fix 2025-06-01T20:58:09.6458455Z * [new branch] mlazos/evt -> origin/mlazos/evt 2025-06-01T20:58:09.6458980Z * [new branch] mlazos/evt-killswitch -> origin/mlazos/evt-killswitch 2025-06-01T20:58:09.6459478Z * [new branch] mlazos/exp_disable -> origin/mlazos/exp_disable 2025-06-01T20:58:09.6459968Z * [new branch] mlazos/foreach-op -> origin/mlazos/foreach-op 2025-06-01T20:58:09.6460471Z * [new branch] mlazos/foreach-reds -> origin/mlazos/foreach-reds 2025-06-01T20:58:09.6460948Z * [new branch] mlazos/fp8 -> origin/mlazos/fp8 2025-06-01T20:58:09.6461388Z * [new branch] mlazos/fp8-bias -> origin/mlazos/fp8-bias 2025-06-01T20:58:09.6461876Z * [new branch] mlazos/fp8-bias-fusion -> origin/mlazos/fp8-bias-fusion 2025-06-01T20:58:09.6462381Z * [new branch] mlazos/freezing -> origin/mlazos/freezing 2025-06-01T20:58:09.6462861Z * [new branch] mlazos/fuse-window -> origin/mlazos/fuse-window 2025-06-01T20:58:09.6463361Z * [new branch] mlazos/gen-foreach -> origin/mlazos/gen-foreach 2025-06-01T20:58:09.6463836Z * [new branch] mlazos/h-comp -> origin/mlazos/h-comp 2025-06-01T20:58:09.6464370Z * [new branch] mlazos/h-comp2 -> origin/mlazos/h-comp2 2025-06-01T20:58:09.6465012Z * [new branch] mlazos/hc -> origin/mlazos/hc 2025-06-01T20:58:09.6977345Z * [new branch] mlazos/hc-cycles -> origin/mlazos/hc-cycles 2025-06-01T20:58:09.6977848Z * [new branch] mlazos/hc-fixes -> origin/mlazos/hc-fixes 2025-06-01T20:58:09.6978327Z * [new branch] mlazos/hc-fixes3 -> origin/mlazos/hc-fixes3 2025-06-01T20:58:09.6978815Z * [new branch] mlazos/hc-fixes4 -> origin/mlazos/hc-fixes4 2025-06-01T20:58:09.6979278Z * [new branch] mlazos/hc-hf -> origin/mlazos/hc-hf 2025-06-01T20:58:09.6979716Z * [new branch] mlazos/hc-mut -> origin/mlazos/hc-mut 2025-06-01T20:58:09.6980158Z * [new branch] mlazos/hc10 -> origin/mlazos/hc10 2025-06-01T20:58:09.6980590Z * [new branch] mlazos/hc11 -> origin/mlazos/hc11 2025-06-01T20:58:09.6981006Z * [new branch] mlazos/hc2 -> origin/mlazos/hc2 2025-06-01T20:58:09.6981454Z * [new branch] mlazos/hc4 -> origin/mlazos/hc4 2025-06-01T20:58:09.6981875Z * [new branch] mlazos/hc5 -> origin/mlazos/hc5 2025-06-01T20:58:09.6982292Z * [new branch] mlazos/hc6 -> origin/mlazos/hc6 2025-06-01T20:58:09.6982709Z * [new branch] mlazos/hc7 -> origin/mlazos/hc7 2025-06-01T20:58:09.6983124Z * [new branch] mlazos/hc8 -> origin/mlazos/hc8 2025-06-01T20:58:09.6983543Z * [new branch] mlazos/hc9 -> origin/mlazos/hc9 2025-06-01T20:58:09.6983995Z * [new branch] mlazos/hc_baseline2 -> origin/mlazos/hc_baseline2 2025-06-01T20:58:09.6984513Z * [new branch] mlazos/init-per-param -> origin/mlazos/init-per-param 2025-06-01T20:58:09.6985028Z * [new branch] mlazos/init_per_param -> origin/mlazos/init_per_param 2025-06-01T20:58:09.6985531Z * [new branch] mlazos/int-fix2 -> origin/mlazos/int-fix2 2025-06-01T20:58:09.6986019Z * [new branch] mlazos/less-guards -> origin/mlazos/less-guards 2025-06-01T20:58:09.6986531Z * [new branch] mlazos/lr-composibility -> origin/mlazos/lr-composibility 2025-06-01T20:58:09.6987025Z * [new branch] mlazos/main -> origin/mlazos/main 2025-06-01T20:58:09.6987528Z * [new branch] mlazos/main-test-enablement -> origin/mlazos/main-test-enablement 2025-06-01T20:58:09.6988046Z * [new branch] mlazos/main2 -> origin/mlazos/main2 2025-06-01T20:58:09.6998408Z * [new branch] mlazos/main_test -> origin/mlazos/main_test 2025-06-01T20:58:09.6999261Z * [new branch] mlazos/mcg -> origin/mlazos/mcg 2025-06-01T20:58:09.6999840Z * [new branch] mlazos/mcg2 -> origin/mlazos/mcg2 2025-06-01T20:58:09.7000354Z * [new branch] mlazos/meta-guards -> origin/mlazos/meta-guards 2025-06-01T20:58:09.7000866Z * [new branch] mlazos/mlazos/ck2 -> origin/mlazos/mlazos/ck2 2025-06-01T20:58:09.7001440Z * [new branch] mlazos/mlazos/foreach-map-adam -> origin/mlazos/mlazos/foreach-map-adam 2025-06-01T20:58:09.7002053Z * [new branch] mlazos/mlazos/subclass-test -> origin/mlazos/mlazos/subclass-test 2025-06-01T20:58:09.7002663Z * [new branch] mlazos/mlazos/tf-mode-backup -> origin/mlazos/mlazos/tf-mode-backup 2025-06-01T20:58:09.7003192Z * [new branch] mlazos/mod-fix -> origin/mlazos/mod-fix 2025-06-01T20:58:09.7003666Z * [new branch] mlazos/more-tests -> origin/mlazos/more-tests 2025-06-01T20:58:09.7004189Z * [new branch] mlazos/mutable-backup -> origin/mlazos/mutable-backup 2025-06-01T20:58:09.7004862Z * [new branch] mlazos/no-cpp -> origin/mlazos/no-cpp 2025-06-01T20:58:09.7005515Z * [new branch] mlazos/no-init-group-handling -> origin/mlazos/no-init-group-handling 2025-06-01T20:58:09.7006102Z * [new branch] mlazos/op-investigation -> origin/mlazos/op-investigation 2025-06-01T20:58:09.7006646Z * [new branch] mlazos/opt-bench-exp2 -> origin/mlazos/opt-bench-exp2 2025-06-01T20:58:09.7007224Z * [new branch] mlazos/opt-bench3 -> origin/mlazos/opt-bench3 2025-06-01T20:58:09.7007745Z * [new branch] mlazos/opt-incr -> origin/mlazos/opt-incr 2025-06-01T20:58:09.7008234Z * [new branch] mlazos/opt-recipe -> origin/mlazos/opt-recipe 2025-06-01T20:58:09.7008725Z * [new branch] mlazos/opt-slowdown -> origin/mlazos/opt-slowdown 2025-06-01T20:58:09.7009234Z * [new branch] mlazos/proxy-ctors -> origin/mlazos/proxy-ctors 2025-06-01T20:58:09.7009732Z * [new branch] mlazos/proxy-opt -> origin/mlazos/proxy-opt 2025-06-01T20:58:09.7010209Z * [new branch] mlazos/rm-spam -> origin/mlazos/rm-spam 2025-06-01T20:58:09.7010660Z * [new branch] mlazos/rtp -> origin/mlazos/rtp 2025-06-01T20:58:09.7011109Z * [new branch] mlazos/sdpa-driss -> origin/mlazos/sdpa-driss 2025-06-01T20:58:09.7011633Z * [new branch] mlazos/static-inputs-log -> origin/mlazos/static-inputs-log 2025-06-01T20:58:09.8157591Z * [new branch] mlazos/subclass-test -> origin/mlazos/subclass-test 2025-06-01T20:58:09.8158165Z * [new branch] mlazos/td-fix2 -> origin/mlazos/td-fix2 2025-06-01T20:58:09.8158671Z * [new branch] mlazos/tensor-hasattr2 -> origin/mlazos/tensor-hasattr2 2025-06-01T20:58:09.8159205Z * [new branch] mlazos/tensor-lr2 -> origin/mlazos/tensor-lr2 2025-06-01T20:58:09.8159708Z * [new branch] mlazos/test-fix -> origin/mlazos/test-fix 2025-06-01T20:58:09.8160184Z * [new branch] mlazos/tf-mode -> origin/mlazos/tf-mode 2025-06-01T20:58:09.8160670Z * [new branch] mlazos/tf-mode-backup2 -> origin/mlazos/tf-mode-backup2 2025-06-01T20:58:09.8161205Z * [new branch] mlazos/tf-mode-reland -> origin/mlazos/tf-mode-reland 2025-06-01T20:58:09.8161736Z * [new branch] mlazos/tf-mode-reland2 -> origin/mlazos/tf-mode-reland2 2025-06-01T20:58:09.8162251Z * [new branch] mlazos/tf-mode-reland3 -> origin/mlazos/tf-mode-reland3 2025-06-01T20:58:09.8162759Z * [new branch] mlazos/trace-ao -> origin/mlazos/trace-ao 2025-06-01T20:58:09.8163245Z * [new branch] mlazos/triton-no-epi -> origin/mlazos/triton-no-epi 2025-06-01T20:58:09.8163759Z * [new branch] mlazos/tune-proto -> origin/mlazos/tune-proto 2025-06-01T20:58:09.8164256Z * [new branch] mlazos/vary-beta -> origin/mlazos/vary-beta 2025-06-01T20:58:09.8164724Z * [new branch] mlazos/vary-beta2 -> origin/mlazos/vary-beta2 2025-06-01T20:58:09.8165219Z * [new branch] mlazos/weird-perf1 -> origin/mlazos/weird-perf1 2025-06-01T20:58:09.8165683Z * [new branch] move_unstash -> origin/move_unstash 2025-06-01T20:58:09.8166134Z * [new branch] mps-linear-1d -> origin/mps-linear-1d 2025-06-01T20:58:09.8166612Z * [new branch] msaroufim-patch-1 -> origin/msaroufim-patch-1 2025-06-01T20:58:09.8167111Z * [new branch] msaroufim-patch-2 -> origin/msaroufim-patch-2 2025-06-01T20:58:09.8167636Z * [new branch] msaroufim/compile_kernel -> origin/msaroufim/compile_kernel 2025-06-01T20:58:09.8168199Z * [new branch] msaroufim/dtensorfusedadam -> origin/msaroufim/dtensorfusedadam 2025-06-01T20:58:09.8169079Z * [new branch] msaroufim/nospew -> origin/msaroufim/nospew 2025-06-01T20:58:09.8169537Z * [new branch] myst_nb_trial -> origin/myst_nb_trial 2025-06-01T20:58:09.8170003Z * [new branch] nWEIdia-patch-1 -> origin/nWEIdia-patch-1 2025-06-01T20:58:09.8170479Z * [new branch] new-batch-norm -> origin/new-batch-norm 2025-06-01T20:58:09.8170942Z * [new branch] ngimel-h100_tests -> origin/ngimel-h100_tests 2025-06-01T20:58:09.8171438Z * [new branch] ngimel/alloc_rdma -> origin/ngimel/alloc_rdma 2025-06-01T20:58:09.8171901Z * [new branch] ngimel/cat_perf -> origin/ngimel/cat_perf 2025-06-01T20:58:09.8172402Z * [new branch] ngimel/cutlass_ptr_array -> origin/ngimel/cutlass_ptr_array 2025-06-01T20:58:09.8172936Z * [new branch] ngimel/elems_per_thread -> origin/ngimel/elems_per_thread 2025-06-01T20:58:09.8173438Z * [new branch] ngimel/fix_index -> origin/ngimel/fix_index 2025-06-01T20:58:09.8173904Z * [new branch] ngimel/gg_new -> origin/ngimel/gg_new 2025-06-01T20:58:09.8174352Z * [new branch] ngimel/h100_tests -> origin/ngimel/h100_tests 2025-06-01T20:58:09.8174833Z * [new branch] ngimel/index_2dlist -> origin/ngimel/index_2dlist 2025-06-01T20:58:09.8175360Z * [new branch] ngimel/mem_pool_thread_local -> origin/ngimel/mem_pool_thread_local 2025-06-01T20:58:09.8175905Z * [new branch] ngimel/mempool_test -> origin/ngimel/mempool_test 2025-06-01T20:58:09.8176426Z * [new branch] ngimel/mempool_thread -> origin/ngimel/mempool_thread 2025-06-01T20:58:09.8176928Z * [new branch] ngimel/reland_gather -> origin/ngimel/reland_gather 2025-06-01T20:58:09.8177445Z * [new branch] ngimel/removememctx -> origin/ngimel/removememctx 2025-06-01T20:58:09.8177949Z * [new branch] ngimel/unroll_kernel -> origin/ngimel/unroll_kernel 2025-06-01T20:58:09.8178471Z * [new branch] ngimel/use_host_register -> origin/ngimel/use_host_register 2025-06-01T20:58:09.8179012Z * [new branch] ngimel/zero_k_grouped_gemm -> origin/ngimel/zero_k_grouped_gemm 2025-06-01T20:58:09.8179496Z * [new branch] nightly -> origin/nightly 2025-06-01T20:58:09.8179969Z * [new branch] nikitaved/tensordot -> origin/nikitaved/tensordot 2025-06-01T20:58:09.8180422Z * [new branch] offline -> origin/offline 2025-06-01T20:58:09.8180856Z * [new branch] openblas_gemv -> origin/openblas_gemv 2025-06-01T20:58:09.8597899Z * [new branch] orig/release/1.10 -> origin/orig/release/1.10 2025-06-01T20:58:09.8598496Z * [new branch] orig/release/1.11 -> origin/orig/release/1.11 2025-06-01T20:58:09.8598998Z * [new branch] orig/release/1.12 -> origin/orig/release/1.12 2025-06-01T20:58:09.8599483Z * [new branch] orig/release/1.13 -> origin/orig/release/1.13 2025-06-01T20:58:09.8599946Z * [new branch] orig/release/1.6 -> origin/orig/release/1.6 2025-06-01T20:58:09.8600421Z * [new branch] orig/release/1.7 -> origin/orig/release/1.7 2025-06-01T20:58:09.8600875Z * [new branch] orig/release/1.8 -> origin/orig/release/1.8 2025-06-01T20:58:09.8601337Z * [new branch] orig/release/1.9 -> origin/orig/release/1.9 2025-06-01T20:58:09.8601797Z * [new branch] orig/release/2.0 -> origin/orig/release/2.0 2025-06-01T20:58:09.8602260Z * [new branch] orig/release/2.1 -> origin/orig/release/2.1 2025-06-01T20:58:09.8602924Z * [new branch] orig/release/2.2 -> origin/orig/release/2.2 2025-06-01T20:58:09.8603511Z * [new branch] orig/release/2.3 -> origin/orig/release/2.3 2025-06-01T20:58:09.8603980Z * [new branch] orig/release/2.4 -> origin/orig/release/2.4 2025-06-01T20:58:09.8604447Z * [new branch] orig/release/2.5 -> origin/orig/release/2.5 2025-06-01T20:58:09.8604919Z * [new branch] orig/release/2.6 -> origin/orig/release/2.6 2025-06-01T20:58:09.8605391Z * [new branch] orig/release/2.7 -> origin/orig/release/2.7 2025-06-01T20:58:09.8605850Z * [new branch] origin/voz/serde -> origin/origin/voz/serde 2025-06-01T20:58:09.8606312Z * [new branch] oulgen/fx_graph -> origin/oulgen/fx_graph 2025-06-01T20:58:09.8606765Z * [new branch] pack_hook_docs -> origin/pack_hook_docs 2025-06-01T20:58:09.8607223Z * [new branch] padded-tensor -> origin/padded-tensor 2025-06-01T20:58:09.8607685Z * [new branch] parallel_cat -> origin/parallel_cat 2025-06-01T20:58:09.8608131Z * [new branch] parallel_reduce -> origin/parallel_reduce 2025-06-01T20:58:09.8608569Z * [new branch] pca2 -> origin/pca2 2025-06-01T20:58:09.8609015Z * [new branch] pianpwk-patch-1 -> origin/pianpwk-patch-1 2025-06-01T20:58:09.8609522Z * [new branch] pianpwk/01_auto_warning -> origin/pianpwk/01_auto_warning 2025-06-01T20:58:09.8610135Z * [new branch] pianpwk/backed_size_oblivious_global -> origin/pianpwk/backed_size_oblivious_global 2025-06-01T20:58:09.8610840Z * [new branch] pianpwk/backed_symint_endofbounds -> origin/pianpwk/backed_symint_endofbounds 2025-06-01T20:58:09.8611448Z * [new branch] pianpwk/bincount_symint -> origin/pianpwk/bincount_symint 2025-06-01T20:58:09.8611987Z * [new branch] pianpwk/cse_bound_expr -> origin/pianpwk/cse_bound_expr 2025-06-01T20:58:09.8612520Z * [new branch] pianpwk/dde_repeat_cat -> origin/pianpwk/dde_repeat_cat 2025-06-01T20:58:09.8613093Z * [new branch] pianpwk/draft_cuda_oom_nonstrict -> origin/pianpwk/draft_cuda_oom_nonstrict 2025-06-01T20:58:09.8613731Z * [new branch] pianpwk/draft_export_normalize -> origin/pianpwk/draft_export_normalize 2025-06-01T20:58:09.8614325Z * [new branch] pianpwk/draft_strict_stack -> origin/pianpwk/draft_strict_stack 2025-06-01T20:58:09.8614885Z * [new branch] pianpwk/dynamic_source_dim -> origin/pianpwk/dynamic_source_dim 2025-06-01T20:58:09.8615444Z * [new branch] pianpwk/dynamo_export_ctx -> origin/pianpwk/dynamo_export_ctx 2025-06-01T20:58:09.8615998Z * [new branch] pianpwk/export_partial_fwd -> origin/pianpwk/export_partial_fwd 2025-06-01T20:58:09.8616562Z * [new branch] pianpwk/false_infer_size -> origin/pianpwk/false_infer_size 2025-06-01T20:58:09.8617176Z * [new branch] pianpwk/inductor_cat_dtype_promote -> origin/pianpwk/inductor_cat_dtype_promote 2025-06-01T20:58:09.8617834Z * [new branch] pianpwk/inductor_unbacked_symint -> origin/pianpwk/inductor_unbacked_symint 2025-06-01T20:58:09.8618429Z * [new branch] pianpwk/kth_value_symint -> origin/pianpwk/kth_value_symint 2025-06-01T20:58:09.8618988Z * [new branch] pianpwk/lru_cache_bound_sympy -> origin/pianpwk/lru_cache_bound_sympy 2025-06-01T20:58:09.8619541Z * [new branch] pianpwk/max_1_strides -> origin/pianpwk/max_1_strides 2025-06-01T20:58:09.8620086Z * [new branch] pianpwk/no_benchmark_aten_to -> origin/pianpwk/no_benchmark_aten_to 2025-06-01T20:58:09.8620644Z * [new branch] pianpwk/no_loc_frame_locals -> origin/pianpwk/no_loc_frame_locals 2025-06-01T20:58:09.8621353Z * [new branch] pianpwk/obl_scatter_gather_index -> origin/pianpwk/obl_scatter_gather_index 2025-06-01T20:58:09.8622054Z * [new branch] pianpwk/oblivious_expand -> origin/pianpwk/oblivious_expand 2025-06-01T20:58:09.9016350Z * [new branch] pianpwk/oblivious_infer_size -> origin/pianpwk/oblivious_infer_size 2025-06-01T20:58:09.9017111Z * [new branch] pianpwk/oblivious_meta_select -> origin/pianpwk/oblivious_meta_select 2025-06-01T20:58:09.9017787Z * [new branch] pianpwk/oblivious_reshape_view -> origin/pianpwk/oblivious_reshape_view 2025-06-01T20:58:09.9018456Z * [new branch] pianpwk/oblivious_reshape_view_bad -> origin/pianpwk/oblivious_reshape_view_bad 2025-06-01T20:58:09.9019174Z * [new branch] pianpwk/oblivious_reshape_view_better -> origin/pianpwk/oblivious_reshape_view_better 2025-06-01T20:58:09.9019843Z * [new branch] pianpwk/oblivious_should_swap -> origin/pianpwk/oblivious_should_swap 2025-06-01T20:58:09.9020515Z * [new branch] pianpwk/oblivious_slice_forward -> origin/pianpwk/oblivious_slice_forward 2025-06-01T20:58:09.9021162Z * [new branch] pianpwk/oblivious_storagenbytes -> origin/pianpwk/oblivious_storagenbytes 2025-06-01T20:58:09.9021775Z * [new branch] pianpwk/oblivious_where -> origin/pianpwk/oblivious_where 2025-06-01T20:58:09.9022313Z * [new branch] pianpwk/pad_nd_meta -> origin/pianpwk/pad_nd_meta 2025-06-01T20:58:09.9022926Z * [new branch] pianpwk/pad_nd_oblivious -> origin/pianpwk/pad_nd_oblivious 2025-06-01T20:58:09.9023515Z * [new branch] pianpwk/pgo_dynamic_whitelist -> origin/pianpwk/pgo_dynamic_whitelist 2025-06-01T20:58:09.9024088Z * [new branch] pianpwk/pre_forward_hook -> origin/pianpwk/pre_forward_hook 2025-06-01T20:58:09.9024680Z * [new branch] pianpwk/remove_guard_fail_break -> origin/pianpwk/remove_guard_fail_break 2025-06-01T20:58:09.9025256Z * [new branch] pianpwk/skt_user_code -> origin/pianpwk/skt_user_code 2025-06-01T20:58:09.9025786Z * [new branch] pianpwk/suggest_for_bool -> origin/pianpwk/suggest_for_bool 2025-06-01T20:58:09.9026314Z * [new branch] pianpwk/sym_and_terms -> origin/pianpwk/sym_and_terms 2025-06-01T20:58:09.9026847Z * [new branch] pianpwk/test_slice_fake_impl -> origin/pianpwk/test_slice_fake_impl 2025-06-01T20:58:09.9027450Z * [new branch] pianpwk/treat_sizes_as_size_like -> origin/pianpwk/treat_sizes_as_size_like 2025-06-01T20:58:09.9028063Z * [new branch] pianpwk/unbacked_safe_conv1d -> origin/pianpwk/unbacked_safe_conv1d 2025-06-01T20:58:09.9028776Z * [new branch] pianpwk/unbacked_safe_unsqueeze -> origin/pianpwk/unbacked_safe_unsqueeze 2025-06-01T20:58:09.9029456Z * [new branch] pianpwk/unbacked_scalar_tensor -> origin/pianpwk/unbacked_scalar_tensor 2025-06-01T20:58:09.9030121Z * [new branch] pianpwk/unbacked_sdpa_flash -> origin/pianpwk/unbacked_sdpa_flash 2025-06-01T20:58:09.9030721Z * [new branch] pianpwk/unbacked_should_swap -> origin/pianpwk/unbacked_should_swap 2025-06-01T20:58:09.9031365Z * [new branch] pianpwk/unbacked_slice_forward -> origin/pianpwk/unbacked_slice_forward 2025-06-01T20:58:09.9031974Z * [new branch] pianpwk/verbose_tensor_guards -> origin/pianpwk/verbose_tensor_guards 2025-06-01T20:58:09.9032595Z * [new branch] pianpwk/verbose_tensor_guards_v2 -> origin/pianpwk/verbose_tensor_guards_v2 2025-06-01T20:58:09.9033226Z * [new branch] pianpwk/verbose_tensor_guards_v3 -> origin/pianpwk/verbose_tensor_guards_v3 2025-06-01T20:58:09.9033779Z * [new branch] pin-new-theme -> origin/pin-new-theme 2025-06-01T20:58:09.9034238Z * [new branch] pin-torchao -> origin/pin-torchao 2025-06-01T20:58:09.9034885Z * [new branch] pool-separate -> origin/pool-separate 2025-06-01T20:58:09.9035466Z * [new branch] pr/131860 -> origin/pr/131860 2025-06-01T20:58:09.9036056Z * [new branch] pr150241 -> origin/pr150241 2025-06-01T20:58:09.9036477Z * [new branch] pr153742 -> origin/pr153742 2025-06-01T20:58:09.9036923Z * [new branch] provenance_doc -> origin/provenance_doc 2025-06-01T20:58:09.9037395Z * [new branch] pt-opt-cuda3 -> origin/pt-opt-cuda3 2025-06-01T20:58:09.9037902Z * [new branch] python_compiled_autograd -> origin/python_compiled_autograd 2025-06-01T20:58:09.9038452Z * [new branch] qchip/export-D54134695 -> origin/qchip/export-D54134695 2025-06-01T20:58:09.9038959Z * [new branch] refactor-adamw -> origin/refactor-adamw 2025-06-01T20:58:09.9039485Z * [new branch] release/1.10 -> origin/release/1.10 2025-06-01T20:58:09.9039989Z * [new branch] release/1.11 -> origin/release/1.11 2025-06-01T20:58:09.9040430Z * [new branch] release/1.12 -> origin/release/1.12 2025-06-01T20:58:09.9040859Z * [new branch] release/1.13 -> origin/release/1.13 2025-06-01T20:58:09.9041299Z * [new branch] release/1.4 -> origin/release/1.4 2025-06-01T20:58:09.9497231Z * [new branch] release/1.4.1 -> origin/release/1.4.1 2025-06-01T20:58:09.9497769Z * [new branch] release/1.5 -> origin/release/1.5 2025-06-01T20:58:09.9498215Z * [new branch] release/1.6 -> origin/release/1.6 2025-06-01T20:58:09.9498656Z * [new branch] release/1.7 -> origin/release/1.7 2025-06-01T20:58:09.9499113Z * [new branch] release/1.8 -> origin/release/1.8 2025-06-01T20:58:09.9499592Z * [new branch] release/1.9 -> origin/release/1.9 2025-06-01T20:58:09.9500016Z * [new branch] release/2.0 -> origin/release/2.0 2025-06-01T20:58:09.9500451Z * [new branch] release/2.1 -> origin/release/2.1 2025-06-01T20:58:09.9500889Z * [new branch] release/2.2 -> origin/release/2.2 2025-06-01T20:58:09.9501313Z * [new branch] release/2.3 -> origin/release/2.3 2025-06-01T20:58:09.9501745Z * [new branch] release/2.4 -> origin/release/2.4 2025-06-01T20:58:09.9502164Z * [new branch] release/2.5 -> origin/release/2.5 2025-06-01T20:58:09.9502600Z * [new branch] release/2.6 -> origin/release/2.6 2025-06-01T20:58:09.9503068Z * [new branch] release/2.7 -> origin/release/2.7 2025-06-01T20:58:09.9503621Z * [new branch] release_auto_func_cache -> origin/release_auto_func_cache 2025-06-01T20:58:09.9504125Z * [new branch] release_notes -> origin/release_notes 2025-06-01T20:58:09.9504754Z * [new branch] revert-131069-gh/krzysztofjordan/1/head -> origin/revert-131069-gh/krzysztofjordan/1/head 2025-06-01T20:58:09.9505502Z * [new branch] revert-131469-gh/andrewor14/51/head -> origin/revert-131469-gh/andrewor14/51/head 2025-06-01T20:58:09.9506173Z * [new branch] revert-154600-gh/pearu/110/head -> origin/revert-154600-gh/pearu/110/head 2025-06-01T20:58:09.9506806Z * [new branch] revert-154617-gh/pearu/112/head -> origin/revert-154617-gh/pearu/112/head 2025-06-01T20:58:09.9507369Z * [new branch] rithesh/fsdp_cpu -> origin/rithesh/fsdp_cpu 2025-06-01T20:58:09.9507852Z * [new branch] rocm-monitoring -> origin/rocm-monitoring 2025-06-01T20:58:09.9508522Z * [new branch] rprop-playground -> origin/rprop-playground 2025-06-01T20:58:09.9509426Z * [new branch] ryanguo99/cleanup-dynamo-expected-failures -> origin/ryanguo99/cleanup-dynamo-expected-failures 2025-06-01T20:58:09.9510234Z * [new branch] ryanguo99/fix-closure-var -> origin/ryanguo99/fix-closure-var 2025-06-01T20:58:09.9510781Z * [new branch] rzou/faketensor_bench -> origin/rzou/faketensor_bench 2025-06-01T20:58:09.9511258Z * [new branch] rzou/fix -> origin/rzou/fix 2025-06-01T20:58:09.9511681Z * [new branch] rzou/fix2 -> origin/rzou/fix2 2025-06-01T20:58:09.9512115Z * [new branch] rzou/njt -> origin/rzou/njt 2025-06-01T20:58:09.9512552Z * [new branch] rzou/operator -> origin/rzou/operator 2025-06-01T20:58:09.9512986Z * [new branch] rzou/pca -> origin/rzou/pca 2025-06-01T20:58:09.9513443Z * [new branch] rzou/pipe_split -> origin/rzou/pipe_split 2025-06-01T20:58:09.9513905Z * [new branch] rzou/realprop -> origin/rzou/realprop 2025-06-01T20:58:09.9514372Z * [new branch] rzou/setup_context -> origin/rzou/setup_context 2025-06-01T20:58:09.9515223Z * [new branch] sanchitintel/gemm_template_avoid_malloc_lock_contention -> origin/sanchitintel/gemm_template_avoid_malloc_lock_contention 2025-06-01T20:58:09.9516085Z * [new branch] sanchitintel/modify_fp32_micro_gemm -> origin/sanchitintel/modify_fp32_micro_gemm 2025-06-01T20:58:09.9516823Z * [new branch] sanchitintel/refactor_aten_int8_woq_gemm -> origin/sanchitintel/refactor_aten_int8_woq_gemm 2025-06-01T20:58:09.9517708Z * [new branch] sanchitintel/weird_thing_with_test_cpu_select_algorithm -> origin/sanchitintel/weird_thing_with_test_cpu_select_algorithm 2025-06-01T20:58:09.9518530Z * [new branch] sapling-pr-archive-SS-JIA -> origin/sapling-pr-archive-SS-JIA 2025-06-01T20:58:09.9519046Z * [new branch] save -> origin/save 2025-06-01T20:58:09.9519462Z * [new branch] sdym/2.5.1 -> origin/sdym/2.5.1 2025-06-01T20:58:09.9519949Z * [new branch] seemethere-patch-1 -> origin/seemethere-patch-1 2025-06-01T20:58:09.9520439Z * [new branch] share_and_pin_fork -> origin/share_and_pin_fork 2025-06-01T20:58:09.9520939Z * [new branch] shengf/fx-xform-perf -> origin/shengf/fx-xform-perf 2025-06-01T20:58:09.9521466Z * [new branch] shikaili_fp8_allgather -> origin/shikaili_fp8_allgather 2025-06-01T20:58:09.9521982Z * [new branch] shoumikhin-patch-1 -> origin/shoumikhin-patch-1 2025-06-01T20:58:09.9932292Z * [new branch] shoumikhin-patch-10 -> origin/shoumikhin-patch-10 2025-06-01T20:58:09.9932924Z * [new branch] shoumikhin-patch-11 -> origin/shoumikhin-patch-11 2025-06-01T20:58:09.9933498Z * [new branch] shoumikhin-patch-12 -> origin/shoumikhin-patch-12 2025-06-01T20:58:09.9934088Z * [new branch] shoumikhin-patch-2 -> origin/shoumikhin-patch-2 2025-06-01T20:58:09.9934628Z * [new branch] shoumikhin-patch-3 -> origin/shoumikhin-patch-3 2025-06-01T20:58:09.9935217Z * [new branch] shoumikhin-patch-4 -> origin/shoumikhin-patch-4 2025-06-01T20:58:09.9935722Z * [new branch] shoumikhin-patch-5 -> origin/shoumikhin-patch-5 2025-06-01T20:58:09.9936227Z * [new branch] shoumikhin-patch-6 -> origin/shoumikhin-patch-6 2025-06-01T20:58:09.9936732Z * [new branch] shoumikhin-patch-7 -> origin/shoumikhin-patch-7 2025-06-01T20:58:09.9937226Z * [new branch] shoumikhin-patch-8 -> origin/shoumikhin-patch-8 2025-06-01T20:58:09.9938493Z * [new branch] shoumikhin-patch-9 -> origin/shoumikhin-patch-9 2025-06-01T20:58:09.9939553Z * [new branch] shunting-multi-kernel-2 -> origin/shunting-multi-kernel-2 2025-06-01T20:58:09.9940128Z * [new branch] shunting-multi-kernel-3 -> origin/shunting-multi-kernel-3 2025-06-01T20:58:09.9940784Z * [new branch] shunting-triton-pin-update-5 -> origin/shunting-triton-pin-update-5 2025-06-01T20:58:09.9941440Z * [new branch] simplify-fq-per-channel -> origin/simplify-fq-per-channel 2025-06-01T20:58:09.9942032Z * [new branch] solve-accuracy-fix -> origin/solve-accuracy-fix 2025-06-01T20:58:09.9942594Z * [new branch] split-backend-plugin -> origin/split-backend-plugin 2025-06-01T20:58:09.9943184Z * [new branch] sqzhang/flight4 -> origin/sqzhang/flight4 2025-06-01T20:58:09.9943722Z * [new branch] sqzhang/flight4plus -> origin/sqzhang/flight4plus 2025-06-01T20:58:09.9944321Z * [new branch] sraikund/record_funct_test -> origin/sraikund/record_funct_test 2025-06-01T20:58:09.9944886Z * [new branch] sraikund16/test -> origin/sraikund16/test 2025-06-01T20:58:09.9945451Z * [new branch] stablize-compilation-time -> origin/stablize-compilation-time 2025-06-01T20:58:09.9946046Z * [new branch] starterTaskUpdate -> origin/starterTaskUpdate 2025-06-01T20:58:09.9946565Z * [new branch] stash_v -> origin/stash_v 2025-06-01T20:58:09.9947026Z * [new branch] subgraph_fuse -> origin/subgraph_fuse 2025-06-01T20:58:09.9947621Z * [new branch] support-uv-in-collect_env -> origin/support-uv-in-collect_env 2025-06-01T20:58:09.9948184Z * [new branch] svekars-patch-1 -> origin/svekars-patch-1 2025-06-01T20:58:09.9948718Z * [new branch] svekars-patch-2 -> origin/svekars-patch-2 2025-06-01T20:58:09.9949207Z * [new branch] switch-bn -> origin/switch-bn 2025-06-01T20:58:09.9949829Z * [new branch] sympy-bottleneck-repro -> origin/sympy-bottleneck-repro 2025-06-01T20:58:09.9950374Z * [new branch] teja/add_logs -> origin/teja/add_logs 2025-06-01T20:58:09.9950858Z * [new branch] teja/dcp_poc -> origin/teja/dcp_poc 2025-06-01T20:58:09.9951341Z * [new branch] tensor_shelf -> origin/tensor_shelf 2025-06-01T20:58:09.9951861Z * [new branch] tensordict_integration -> origin/tensordict_integration 2025-06-01T20:58:09.9952447Z * [new branch] test-move-conda-builds -> origin/test-move-conda-builds 2025-06-01T20:58:09.9952981Z * [new branch] test/bmm_heur -> origin/test/bmm_heur 2025-06-01T20:58:09.9953459Z * [new branch] test/inductor -> origin/test/inductor 2025-06-01T20:58:09.9953989Z * [new branch] tidy_performance_cyy -> origin/tidy_performance_cyy 2025-06-01T20:58:09.9954552Z * [new branch] trace_fsdp_torchtune_lora -> origin/trace_fsdp_torchtune_lora 2025-06-01T20:58:09.9955137Z * [new branch] traceable_fsdp_unit_tests -> origin/traceable_fsdp_unit_tests 2025-06-01T20:58:09.9955729Z * [new branch] tree_loop_vec_base -> origin/tree_loop_vec_base 2025-06-01T20:58:09.9956222Z * [new branch] tree_vec_base -> origin/tree_vec_base 2025-06-01T20:58:09.9956780Z * [new branch] triton-cpu-arm-expriment -> origin/triton-cpu-arm-expriment 2025-06-01T20:58:09.9957329Z * [new branch] triton-update -> origin/triton-update 2025-06-01T20:58:09.9957817Z * [new branch] triton_kernel -> origin/triton_kernel 2025-06-01T20:58:09.9958458Z * [new branch] triton_kernel_perf -> origin/triton_kernel_perf 2025-06-01T20:58:09.9959096Z * [new branch] try-runllm -> origin/try-runllm 2025-06-01T20:58:09.9959573Z * [new branch] type_dec -> origin/type_dec 2025-06-01T20:58:10.0328743Z * [new branch] update-audio-commit-hash/14543755404-1550-1 -> origin/update-audio-commit-hash/14543755404-1550-1 2025-06-01T20:58:10.0329647Z * [new branch] update-audio-commit-hash/14654232188-1560-1 -> origin/update-audio-commit-hash/14654232188-1560-1 2025-06-01T20:58:10.0330562Z * [new branch] update-audio-commit-hash/14849006741-1577-1 -> origin/update-audio-commit-hash/14849006741-1577-1 2025-06-01T20:58:10.0331376Z * [new branch] update-audio-commit-hash/14939917980-1582-1 -> origin/update-audio-commit-hash/14939917980-1582-1 2025-06-01T20:58:10.0332225Z * [new branch] update-audio-commit-hash/15009422285-1586-1 -> origin/update-audio-commit-hash/15009422285-1586-1 2025-06-01T20:58:10.0333049Z * [new branch] update-audio-commit-hash/15150628051-1595-1 -> origin/update-audio-commit-hash/15150628051-1595-1 2025-06-01T20:58:10.0333847Z * [new branch] update-audio-commit-hash/15358121390-1608-1 -> origin/update-audio-commit-hash/15358121390-1608-1 2025-06-01T20:58:10.0334556Z * [new branch] update-benchmark-cuda-12.8 -> origin/update-benchmark-cuda-12.8 2025-06-01T20:58:10.0335191Z * [new branch] update-doc-dependencies-local -> origin/update-doc-dependencies-local 2025-06-01T20:58:10.0335825Z * [new branch] update-doca-actions -> origin/update-doca-actions 2025-06-01T20:58:10.0336592Z * [new branch] update-executorch-commit-hash/14543755404-1550-1 -> origin/update-executorch-commit-hash/14543755404-1550-1 2025-06-01T20:58:10.0337511Z * [new branch] update-executorch-commit-hash/14675703089-1561-1 -> origin/update-executorch-commit-hash/14675703089-1561-1 2025-06-01T20:58:10.0338431Z * [new branch] update-executorch-commit-hash/14985369033-1585-1 -> origin/update-executorch-commit-hash/14985369033-1585-1 2025-06-01T20:58:10.0339301Z * [new branch] update-triton-commit-hash/13663274526-1487-2 -> origin/update-triton-commit-hash/13663274526-1487-2 2025-06-01T20:58:10.0340028Z * [new branch] update-triton-wheel-install -> origin/update-triton-wheel-install 2025-06-01T20:58:10.0340762Z * [new branch] update-vision-commit-hash/15336342773-1607-1 -> origin/update-vision-commit-hash/15336342773-1607-1 2025-06-01T20:58:10.0341618Z * [new branch] update-vision-commit-hash/9010274985-1089-1 -> origin/update-vision-commit-hash/9010274985-1089-1 2025-06-01T20:58:10.0342452Z * [new branch] update-xla-commit-hash/14440116118-180-1 -> origin/update-xla-commit-hash/14440116118-180-1 2025-06-01T20:58:10.0343207Z * [new branch] update-xla-commit-hash/14831479729-183-1 -> origin/update-xla-commit-hash/14831479729-183-1 2025-06-01T20:58:10.0343970Z * [new branch] update-xla-commit-hash/14966557941-184-1 -> origin/update-xla-commit-hash/14966557941-184-1 2025-06-01T20:58:10.0344727Z * [new branch] update-xla-commit-hash/15107157326-185-1 -> origin/update-xla-commit-hash/15107157326-185-1 2025-06-01T20:58:10.0345478Z * [new branch] update-xla-commit-hash/15249005916-186-1 -> origin/update-xla-commit-hash/15249005916-186-1 2025-06-01T20:58:10.0346247Z * [new branch] update_docs_torch_multinomial_issue#125388 -> origin/update_docs_torch_multinomial_issue#125388 2025-06-01T20:58:10.0346920Z * [new branch] update_slow_tests_1722488736 -> origin/update_slow_tests_1722488736 2025-06-01T20:58:10.0347549Z * [new branch] update_slow_tests_1722879173 -> origin/update_slow_tests_1722879173 2025-06-01T20:58:10.0348307Z * [new branch] update_slow_tests_1744616441 -> origin/update_slow_tests_1744616441 2025-06-01T20:58:10.0348986Z * [new branch] update_slow_tests_1747640463 -> origin/update_slow_tests_1747640463 2025-06-01T20:58:10.0349620Z * [new branch] update_slow_tests_1748245625 -> origin/update_slow_tests_1748245625 2025-06-01T20:58:10.0350199Z * [new branch] update_submodule_FBGEMM -> origin/update_submodule_FBGEMM 2025-06-01T20:58:10.0350734Z * [new branch] update_submodule_kineto -> origin/update_submodule_kineto 2025-06-01T20:58:10.0351211Z * [new branch] v0.1.2 -> origin/v0.1.2 2025-06-01T20:58:10.0351619Z * [new branch] v1.0.1 -> origin/v1.0.1 2025-06-01T20:58:10.0352024Z * [new branch] v1.0.3 -> origin/v1.0.3 2025-06-01T20:58:10.0352416Z * [new branch] v1.1.0 -> origin/v1.1.0 2025-06-01T20:58:10.0352866Z * [new branch] v1.2.0 -> origin/v1.2.0 2025-06-01T20:58:10.0353307Z * [new branch] v1.3.0 -> origin/v1.3.0 2025-06-01T20:58:10.0353692Z * [new branch] v1.3.1 -> origin/v1.3.1 2025-06-01T20:58:10.0354121Z * [new branch] validate-flex -> origin/validate-flex 2025-06-01T20:58:10.0802772Z * [new branch] validate_fn -> origin/validate_fn 2025-06-01T20:58:10.0803313Z * [new branch] validations_2.6 -> origin/validations_2.6 2025-06-01T20:58:10.0803776Z * [new branch] viable/strict -> origin/viable/strict 2025-06-01T20:58:10.0804279Z * [new branch] wdvr/conda_devcontainer -> origin/wdvr/conda_devcontainer 2025-06-01T20:58:10.0804876Z * [new branch] wdvr/devcontainer_apt_cleanup -> origin/wdvr/devcontainer_apt_cleanup 2025-06-01T20:58:10.0805569Z * [new branch] wdvr/devcontainer_conda_removal -> origin/wdvr/devcontainer_conda_removal 2025-06-01T20:58:10.0806235Z * [new branch] wdvr/devcontainer_context_fix -> origin/wdvr/devcontainer_context_fix 2025-06-01T20:58:10.0806794Z * [new branch] wdvr/fix_logging_test -> origin/wdvr/fix_logging_test 2025-06-01T20:58:10.0807285Z * [new branch] wdvr/iss145259_alt -> origin/wdvr/iss145259_alt 2025-06-01T20:58:10.0807761Z * [new branch] wdvr/iss_145259 -> origin/wdvr/iss_145259 2025-06-01T20:58:10.0808220Z * [new branch] wdvr/logging2fix -> origin/wdvr/logging2fix 2025-06-01T20:58:10.0808678Z * [new branch] whc/flight -> origin/whc/flight 2025-06-01T20:58:10.0809125Z * [new branch] whc/flight4 -> origin/whc/flight4 2025-06-01T20:58:10.0809564Z * [new branch] whc/flight51 -> origin/whc/flight51 2025-06-01T20:58:10.0810024Z * [new branch] whc/flight53 -> origin/whc/flight53 2025-06-01T20:58:10.0810472Z * [new branch] whc/flight_full -> origin/whc/flight_full 2025-06-01T20:58:10.0810942Z * [new branch] whc/flightbase -> origin/whc/flightbase 2025-06-01T20:58:10.0811469Z * [new branch] whc/p2phang -> origin/whc/p2phang 2025-06-01T20:58:10.0811905Z * [new branch] whc/stage2 -> origin/whc/stage2 2025-06-01T20:58:10.0812334Z * [new branch] whc/uneven -> origin/whc/uneven 2025-06-01T20:58:10.0812782Z * [new branch] whc/uneven-merge -> origin/whc/uneven-merge 2025-06-01T20:58:10.0813284Z * [new branch] windowsMonitoring -> origin/windowsMonitoring 2025-06-01T20:58:10.0813756Z * [new branch] xmfan/ca_0516 -> origin/xmfan/ca_0516 2025-06-01T20:58:10.0814602Z * [new branch] xmfan/ca_1a722f62c248391fc4a542e8851a5559aa356ae8 -> origin/xmfan/ca_1a722f62c248391fc4a542e8851a5559aa356ae8 2025-06-01T20:58:10.0815423Z * [new branch] xmfan/ca_5a2be192d1 -> origin/xmfan/ca_5a2be192d1 2025-06-01T20:58:10.0815895Z * [new branch] xmfan/ca_api -> origin/xmfan/ca_api 2025-06-01T20:58:10.0816349Z * [new branch] xmfan/ca_apr8 -> origin/xmfan/ca_apr8 2025-06-01T20:58:10.0816830Z * [new branch] xmfan/ca_base -> origin/xmfan/ca_base 2025-06-01T20:58:10.0817345Z * [new branch] xmfan/ca_cudagraphs -> origin/xmfan/ca_cudagraphs 2025-06-01T20:58:10.0817834Z * [new branch] xmfan/ca_dynamic -> origin/xmfan/ca_dynamic 2025-06-01T20:58:10.0818290Z * [new branch] xmfan/ca_fix_dyn -> origin/xmfan/ca_fix_dyn 2025-06-01T20:58:10.0818771Z * [new branch] xmfan/ca_fix_lowering -> origin/xmfan/ca_fix_lowering 2025-06-01T20:58:10.0819278Z * [new branch] xmfan/ca_fix_polyfills -> origin/xmfan/ca_fix_polyfills 2025-06-01T20:58:10.0819778Z * [new branch] xmfan/ca_jan3 -> origin/xmfan/ca_jan3 2025-06-01T20:58:10.0820225Z * [new branch] xmfan/ca_jun18 -> origin/xmfan/ca_jun18 2025-06-01T20:58:10.0820667Z * [new branch] xmfan/ca_jun24 -> origin/xmfan/ca_jun24 2025-06-01T20:58:10.0821129Z * [new branch] xmfan/ca_mem_base -> origin/xmfan/ca_mem_base 2025-06-01T20:58:10.0821585Z * [new branch] xmfan/ca_mem_fix -> origin/xmfan/ca_mem_fix 2025-06-01T20:58:10.0822063Z * [new branch] xmfan/ca_memory_fix -> origin/xmfan/ca_memory_fix 2025-06-01T20:58:10.0822626Z * [new branch] xmfan/ca_memory_fix_rebased -> origin/xmfan/ca_memory_fix_rebased 2025-06-01T20:58:10.0823219Z * [new branch] xmfan/ca_memory_fix_rebased2 -> origin/xmfan/ca_memory_fix_rebased2 2025-06-01T20:58:10.0823769Z * [new branch] xmfan/ca_move_to_cuda -> origin/xmfan/ca_move_to_cuda 2025-06-01T20:58:10.0824249Z * [new branch] xmfan/ca_nested -> origin/xmfan/ca_nested 2025-06-01T20:58:10.0824721Z * [new branch] xmfan/ca_overhead -> origin/xmfan/ca_overhead 2025-06-01T20:58:10.0825250Z * [new branch] xmfan/ca_overhead_0eba7e5451 -> origin/xmfan/ca_overhead_0eba7e5451 2025-06-01T20:58:10.0825761Z * [new branch] xmfan/ca_scalar -> origin/xmfan/ca_scalar 2025-06-01T20:58:10.0826267Z * [new branch] xmfan/ca_subclass_mem_fix -> origin/xmfan/ca_subclass_mem_fix 2025-06-01T20:58:10.0826769Z * [new branch] xmfan/ca_warm_mem -> origin/xmfan/ca_warm_mem 2025-06-01T20:58:10.1246124Z * [new branch] xmfan/ca_warm_mem_base -> origin/xmfan/ca_warm_mem_base 2025-06-01T20:58:10.1246691Z * [new branch] xmfan/cacu_jun18 -> origin/xmfan/cacu_jun18 2025-06-01T20:58:10.1247213Z * [new branch] xmfan/cacu_jun19 -> origin/xmfan/cacu_jun19 2025-06-01T20:58:10.1247688Z * [new branch] xmfan/cacu_jun4 -> origin/xmfan/cacu_jun4 2025-06-01T20:58:10.1248146Z * [new branch] xmfan/cacu_may27 -> origin/xmfan/cacu_may27 2025-06-01T20:58:10.1248629Z * [new branch] xmfan/circular_dep -> origin/xmfan/circular_dep 2025-06-01T20:58:10.1249194Z * [new branch] xmfan/compiled_autograd_bench -> origin/xmfan/compiled_autograd_bench 2025-06-01T20:58:10.1249941Z * [new branch] xmfan/compiled_autograd_bench_base -> origin/xmfan/compiled_autograd_bench_base 2025-06-01T20:58:10.1250638Z * [new branch] xmfan/compiled_autograd_benchmark -> origin/xmfan/compiled_autograd_benchmark 2025-06-01T20:58:10.1251271Z * [new branch] xmfan/compiled_autograd_ddp -> origin/xmfan/compiled_autograd_ddp 2025-06-01T20:58:10.1252201Z * [new branch] xmfan/compiled_autograd_feb_29 -> origin/xmfan/compiled_autograd_feb_29 2025-06-01T20:58:10.1252870Z * [new branch] xmfan/compiled_autograd_graph_breaks -> origin/xmfan/compiled_autograd_graph_breaks 2025-06-01T20:58:10.1253511Z * [new branch] xmfan/compiled_autograd_hud -> origin/xmfan/compiled_autograd_hud 2025-06-01T20:58:10.1254212Z * [new branch] xmfan/compiled_autograd_hypothetical_perf -> origin/xmfan/compiled_autograd_hypothetical_perf 2025-06-01T20:58:10.1254965Z * [new branch] xmfan/compiled_autograd_perf_no_reuse -> origin/xmfan/compiled_autograd_perf_no_reuse 2025-06-01T20:58:10.1255703Z * [new branch] xmfan/disable_duck_shape -> origin/xmfan/disable_duck_shape 2025-06-01T20:58:10.1256291Z * [new branch] xmfan/fca_cpp_node_passthrough -> origin/xmfan/fca_cpp_node_passthrough 2025-06-01T20:58:10.1256963Z * [new branch] xmfan/feb_10_compiled_autograd -> origin/xmfan/feb_10_compiled_autograd 2025-06-01T20:58:10.1257667Z * [new branch] xmfan/feb_10_compiled_autograd_cudagraph -> origin/xmfan/feb_10_compiled_autograd_cudagraph 2025-06-01T20:58:10.1258283Z * [new branch] xmfan/issue_123374 -> origin/xmfan/issue_123374 2025-06-01T20:58:10.1259033Z * [new branch] xmfan/post_3945954741e2d37023c5d6954f9483008e0892f9 -> origin/xmfan/post_3945954741e2d37023c5d6954f9483008e0892f9 2025-06-01T20:58:10.1259945Z * [new branch] xmfan/pre_3945954741e2d37023c5d6954f9483008e0892f9 -> origin/xmfan/pre_3945954741e2d37023c5d6954f9483008e0892f9 2025-06-01T20:58:10.1260655Z * [new branch] xmfan/segfault_test -> origin/xmfan/segfault_test 2025-06-01T20:58:10.1261198Z * [new branch] xmfan/single_step -> origin/xmfan/single_step 2025-06-01T20:58:10.1261714Z * [new branch] xmfan/sth_0829 -> origin/xmfan/sth_0829 2025-06-01T20:58:10.1262172Z * [new branch] xmfan/test -> origin/xmfan/test 2025-06-01T20:58:10.1262664Z * [new branch] yguo/debug-0226-constexpr -> origin/yguo/debug-0226-constexpr 2025-06-01T20:58:10.1263220Z * [new branch] yguo/new_latest_changes -> origin/yguo/new_latest_changes 2025-06-01T20:58:10.1263778Z * [new branch] yguo/patch_constexpr_changes -> origin/yguo/patch_constexpr_changes 2025-06-01T20:58:10.1264547Z * [new branch] yguo/repro-segfault-triton-aoti-cpp-wrapper -> origin/yguo/repro-segfault-triton-aoti-cpp-wrapper 2025-06-01T20:58:10.1265254Z * [new branch] yihan_quantization -> origin/yihan_quantization 2025-06-01T20:58:10.1265742Z * [new branch] yiming/bootcamp -> origin/yiming/bootcamp 2025-06-01T20:58:10.1266223Z * [new branch] zainr/canary-test -> origin/zainr/canary-test 2025-06-01T20:58:10.1266772Z * [new branch] zainr/mypy15-claude -> origin/zainr/mypy15-claude 2025-06-01T20:58:10.1267317Z * [new branch] zainr/no-win-pull -> origin/zainr/no-win-pull 2025-06-01T20:58:10.1267840Z * [new branch] zainr/pull-migration-c -> origin/zainr/pull-migration-c 2025-06-01T20:58:10.1268378Z * [new branch] zainr/require-easycla -> origin/zainr/require-easycla 2025-06-01T20:58:10.1268894Z * [new branch] zainr/unstable -> origin/zainr/unstable 2025-06-01T20:58:10.1269369Z * [new branch] zasdfgbnm-patch-3 -> origin/zasdfgbnm-patch-3 2025-06-01T20:58:10.1269892Z * [new branch] zb2p -> origin/zb2p 2025-06-01T20:58:10.1270336Z * [new branch] zdevito-patch-1 -> origin/zdevito-patch-1 2025-06-01T20:58:10.1270851Z * [new branch] zeros-and-scatter-part2 -> origin/zeros-and-scatter-part2 2025-06-01T20:58:10.1671753Z * [new branch] zhxchen17/moodycamel -> origin/zhxchen17/moodycamel 2025-06-01T20:58:10.1672474Z * [new branch] zhxchen17/nativert/0 -> origin/zhxchen17/nativert/0 2025-06-01T20:58:10.1673004Z * [new branch] zhxchen17/scratch/0 -> origin/zhxchen17/scratch/0 2025-06-01T20:58:10.1673539Z * [new branch] zhxchen17/sticky_cache/0 -> origin/zhxchen17/sticky_cache/0 2025-06-01T20:58:10.1674094Z * [new branch] zhxhcen17/moodycamel -> origin/zhxhcen17/moodycamel 2025-06-01T20:58:10.1674593Z * [new branch] zxiiro/bazel -> origin/zxiiro/bazel 2025-06-01T20:58:10.1675034Z * [new branch] zxiiro/docs -> origin/zxiiro/docs 2025-06-01T20:58:10.1675509Z * [new branch] zxiiro/linux-build -> origin/zxiiro/linux-build 2025-06-01T20:58:10.1676019Z * [new branch] zxiiro/linux-test -> origin/zxiiro/linux-test 2025-06-01T20:58:10.1676488Z * [new branch] zxiiro/main -> origin/zxiiro/main 2025-06-01T20:58:10.1676940Z * [new branch] zxiiro/test -> origin/zxiiro/test 2025-06-01T20:58:10.1677398Z * [new branch] zxiiro/test-bazel -> origin/zxiiro/test-bazel 2025-06-01T20:58:10.1677926Z * [new branch] zxiiro/windows -> origin/zxiiro/windows 2025-06-01T20:58:10.1678429Z * [new branch] zxiiro/xpu -> origin/zxiiro/xpu 2025-06-01T20:58:10.1679207Z * [new tag] bc2caa7fdf006894eff7af936babde69ab5a40f8-huydhn-debug -> bc2caa7fdf006894eff7af936babde69ab5a40f8-huydhn-debug 2025-06-01T20:58:10.1679930Z * [new tag] ci/binaries/77164 -> ci/binaries/77164 2025-06-01T20:58:10.1680339Z * [new tag] ciflow/all/70978 -> ciflow/all/70978 2025-06-01T20:58:10.1680743Z * [new tag] ciflow/all/70979 -> ciflow/all/70979 2025-06-01T20:58:10.1681154Z * [new tag] ciflow/all/70989 -> ciflow/all/70989 2025-06-01T20:58:10.1681580Z * [new tag] ciflow/autoformat/149003 -> ciflow/autoformat/149003 2025-06-01T20:58:10.1682051Z * [new tag] ciflow/binaries/120076 -> ciflow/binaries/120076 2025-06-01T20:58:10.1682496Z * [new tag] ciflow/binaries/138996 -> ciflow/binaries/138996 2025-06-01T20:58:10.1682942Z * [new tag] ciflow/binaries/148173 -> ciflow/binaries/148173 2025-06-01T20:58:10.1683374Z * [new tag] ciflow/binaries/149192 -> ciflow/binaries/149192 2025-06-01T20:58:10.1683820Z * [new tag] ciflow/binaries/150688 -> ciflow/binaries/150688 2025-06-01T20:58:10.1684261Z * [new tag] ciflow/binaries/151581 -> ciflow/binaries/151581 2025-06-01T20:58:10.1684692Z * [new tag] ciflow/binaries/152782 -> ciflow/binaries/152782 2025-06-01T20:58:10.1685145Z * [new tag] ciflow/binaries/153322 -> ciflow/binaries/153322 2025-06-01T20:58:10.1685584Z * [new tag] ciflow/binaries/153538 -> ciflow/binaries/153538 2025-06-01T20:58:10.1686031Z * [new tag] ciflow/binaries/153792 -> ciflow/binaries/153792 2025-06-01T20:58:10.1686477Z * [new tag] ciflow/binaries/154783 -> ciflow/binaries/154783 2025-06-01T20:58:10.1686911Z * [new tag] ciflow/binaries/154809 -> ciflow/binaries/154809 2025-06-01T20:58:10.1687358Z * [new tag] ciflow/binaries/154811 -> ciflow/binaries/154811 2025-06-01T20:58:10.1687792Z * [new tag] ciflow/binaries/154819 -> ciflow/binaries/154819 2025-06-01T20:58:10.1688307Z * [new tag] ciflow/binaries_libtorch/152184 -> ciflow/binaries_libtorch/152184 2025-06-01T20:58:10.1688834Z * [new tag] ciflow/binaries_wheel/146055 -> ciflow/binaries_wheel/146055 2025-06-01T20:58:10.1689603Z * [new tag] ciflow/binaries_wheel/149192 -> ciflow/binaries_wheel/149192 2025-06-01T20:58:10.1690113Z * [new tag] ciflow/binaries_wheel/151429 -> ciflow/binaries_wheel/151429 2025-06-01T20:58:10.1690605Z * [new tag] ciflow/binaries_wheel/152184 -> ciflow/binaries_wheel/152184 2025-06-01T20:58:10.1691124Z * [new tag] ciflow/binaries_wheel/152820 -> ciflow/binaries_wheel/152820 2025-06-01T20:58:10.1691617Z * [new tag] ciflow/binaries_wheel/153228 -> ciflow/binaries_wheel/153228 2025-06-01T20:58:10.1692131Z * [new tag] ciflow/binaries_wheel/153538 -> ciflow/binaries_wheel/153538 2025-06-01T20:58:10.1692632Z * [new tag] ciflow/binaries_wheel/154107 -> ciflow/binaries_wheel/154107 2025-06-01T20:58:10.1693115Z * [new tag] ciflow/binaries_wheel/154346 -> ciflow/binaries_wheel/154346 2025-06-01T20:58:10.1693615Z * [new tag] ciflow/binaries_wheel/154729 -> ciflow/binaries_wheel/154729 2025-06-01T20:58:10.1694067Z * [new tag] ciflow/cuda/70978 -> ciflow/cuda/70978 2025-06-01T20:58:10.1694482Z * [new tag] ciflow/cuda/70979 -> ciflow/cuda/70979 2025-06-01T20:58:10.1694893Z * [new tag] ciflow/cuda/70989 -> ciflow/cuda/70989 2025-06-01T20:58:10.1973029Z * [new tag] ciflow/h100/db26aeaec2ce9d47e52ec21ae30d15054bcd2a71 -> ciflow/h100/db26aeaec2ce9d47e52ec21ae30d15054bcd2a71 2025-06-01T20:58:10.1973913Z * [new tag] ciflow/inductor-cu124/153541 -> ciflow/inductor-cu124/153541 2025-06-01T20:58:10.1974498Z * [new tag] ciflow/inductor-cu126/152782 -> ciflow/inductor-cu126/152782 2025-06-01T20:58:10.1975082Z * [new tag] ciflow/inductor-cu126/153541 -> ciflow/inductor-cu126/153541 2025-06-01T20:58:10.1975868Z * [new tag] ciflow/inductor-micro-benchmark-cpu-x86/151581 -> ciflow/inductor-micro-benchmark-cpu-x86/151581 2025-06-01T20:58:10.1976805Z * [new tag] ciflow/inductor-micro-benchmark-cpu-x86/151585 -> ciflow/inductor-micro-benchmark-cpu-x86/151585 2025-06-01T20:58:10.1977667Z * [new tag] ciflow/inductor-micro-benchmark/151581 -> ciflow/inductor-micro-benchmark/151581 2025-06-01T20:58:10.1978376Z * [new tag] ciflow/inductor-micro-benchmark/151585 -> ciflow/inductor-micro-benchmark/151585 2025-06-01T20:58:10.1979047Z * [new tag] ciflow/inductor-perf-compare/151581 -> ciflow/inductor-perf-compare/151581 2025-06-01T20:58:10.1979701Z * [new tag] ciflow/inductor-perf-compare/151585 -> ciflow/inductor-perf-compare/151585 2025-06-01T20:58:10.1980433Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/148672 -> ciflow/inductor-perf-test-nightly-rocm/148672 2025-06-01T20:58:10.1981276Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/149039 -> ciflow/inductor-perf-test-nightly-rocm/149039 2025-06-01T20:58:10.1982105Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/149506 -> ciflow/inductor-perf-test-nightly-rocm/149506 2025-06-01T20:58:10.1982987Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/151581 -> ciflow/inductor-perf-test-nightly-rocm/151581 2025-06-01T20:58:10.1983844Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/151845 -> ciflow/inductor-perf-test-nightly-rocm/151845 2025-06-01T20:58:10.1984659Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/154511 -> ciflow/inductor-perf-test-nightly-rocm/154511 2025-06-01T20:58:10.1985446Z * [new tag] ciflow/inductor-perf-test-nightly/151581 -> ciflow/inductor-perf-test-nightly/151581 2025-06-01T20:58:10.1986175Z * [new tag] ciflow/inductor-perf-test-nightly/154511 -> ciflow/inductor-perf-test-nightly/154511 2025-06-01T20:58:10.1987335Z * [new tag] ciflow/inductor-periodic/053ca7439a0ec3c09a257bbcb31896a62d889f33 -> ciflow/inductor-periodic/053ca7439a0ec3c09a257bbcb31896a62d889f33 2025-06-01T20:58:10.1988354Z * [new tag] ciflow/inductor-periodic/149949 -> ciflow/inductor-periodic/149949 2025-06-01T20:58:10.1988997Z * [new tag] ciflow/inductor-periodic/150411 -> ciflow/inductor-periodic/150411 2025-06-01T20:58:10.1989654Z * [new tag] ciflow/inductor-periodic/151581 -> ciflow/inductor-periodic/151581 2025-06-01T20:58:10.1990247Z * [new tag] ciflow/inductor-periodic/153290 -> ciflow/inductor-periodic/153290 2025-06-01T20:58:10.1990809Z * [new tag] ciflow/inductor-periodic/154497 -> ciflow/inductor-periodic/154497 2025-06-01T20:58:10.1991685Z * [new tag] ciflow/inductor-periodic/c13eeaa718c985782bd72bf47886430f6203a768 -> ciflow/inductor-periodic/c13eeaa718c985782bd72bf47886430f6203a768 2025-06-01T20:58:10.1992880Z * [new tag] ciflow/inductor-periodic/fe082c5ffe0c9b1bb70727f2ee7996987bf7c5cd -> ciflow/inductor-periodic/fe082c5ffe0c9b1bb70727f2ee7996987bf7c5cd 2025-06-01T20:58:10.1993721Z * [new tag] ciflow/inductor-rocm/141309 -> ciflow/inductor-rocm/141309 2025-06-01T20:58:10.1994230Z * [new tag] ciflow/inductor-rocm/147583 -> ciflow/inductor-rocm/147583 2025-06-01T20:58:10.1994754Z * [new tag] ciflow/inductor-rocm/151581 -> ciflow/inductor-rocm/151581 2025-06-01T20:58:10.1995277Z * [new tag] ciflow/inductor-rocm/151845 -> ciflow/inductor-rocm/151845 2025-06-01T20:58:10.1995799Z * [new tag] ciflow/inductor-rocm/153545 -> ciflow/inductor-rocm/153545 2025-06-01T20:58:10.1996274Z * [new tag] ciflow/inductor-rocm/153548 -> ciflow/inductor-rocm/153548 2025-06-01T20:58:10.1996752Z * [new tag] ciflow/inductor-rocm/154525 -> ciflow/inductor-rocm/154525 2025-06-01T20:58:10.1997213Z * [new tag] ciflow/inductor/110155 -> ciflow/inductor/110155 2025-06-01T20:58:10.1997686Z * [new tag] ciflow/inductor/119496 -> ciflow/inductor/119496 2025-06-01T20:58:10.1998127Z * [new tag] ciflow/inductor/119977 -> ciflow/inductor/119977 2025-06-01T20:58:10.1998570Z * [new tag] ciflow/inductor/120076 -> ciflow/inductor/120076 2025-06-01T20:58:10.1999017Z * [new tag] ciflow/inductor/121445 -> ciflow/inductor/121445 2025-06-01T20:58:10.1999443Z * [new tag] ciflow/inductor/124490 -> ciflow/inductor/124490 2025-06-01T20:58:10.2296926Z * [new tag] ciflow/inductor/125270 -> ciflow/inductor/125270 2025-06-01T20:58:10.2297445Z * [new tag] ciflow/inductor/125326 -> ciflow/inductor/125326 2025-06-01T20:58:10.2297903Z * [new tag] ciflow/inductor/125428 -> ciflow/inductor/125428 2025-06-01T20:58:10.2298350Z * [new tag] ciflow/inductor/125888 -> ciflow/inductor/125888 2025-06-01T20:58:10.2298895Z * [new tag] ciflow/inductor/125995 -> ciflow/inductor/125995 2025-06-01T20:58:10.2299383Z * [new tag] ciflow/inductor/126348 -> ciflow/inductor/126348 2025-06-01T20:58:10.2299819Z * [new tag] ciflow/inductor/127293 -> ciflow/inductor/127293 2025-06-01T20:58:10.2300245Z * [new tag] ciflow/inductor/127294 -> ciflow/inductor/127294 2025-06-01T20:58:10.2300681Z * [new tag] ciflow/inductor/129352 -> ciflow/inductor/129352 2025-06-01T20:58:10.2301114Z * [new tag] ciflow/inductor/130887 -> ciflow/inductor/130887 2025-06-01T20:58:10.2301550Z * [new tag] ciflow/inductor/132414 -> ciflow/inductor/132414 2025-06-01T20:58:10.2301988Z * [new tag] ciflow/inductor/133044 -> ciflow/inductor/133044 2025-06-01T20:58:10.2302419Z * [new tag] ciflow/inductor/133289 -> ciflow/inductor/133289 2025-06-01T20:58:10.2303185Z * [new tag] ciflow/inductor/133296 -> ciflow/inductor/133296 2025-06-01T20:58:10.2303616Z * [new tag] ciflow/inductor/133297 -> ciflow/inductor/133297 2025-06-01T20:58:10.2304055Z * [new tag] ciflow/inductor/133315 -> ciflow/inductor/133315 2025-06-01T20:58:10.2304556Z * [new tag] ciflow/inductor/133392 -> ciflow/inductor/133392 2025-06-01T20:58:10.2305033Z * [new tag] ciflow/inductor/133419 -> ciflow/inductor/133419 2025-06-01T20:58:10.2305473Z * [new tag] ciflow/inductor/133423 -> ciflow/inductor/133423 2025-06-01T20:58:10.2305913Z * [new tag] ciflow/inductor/133667 -> ciflow/inductor/133667 2025-06-01T20:58:10.2306353Z * [new tag] ciflow/inductor/133753 -> ciflow/inductor/133753 2025-06-01T20:58:10.2306792Z * [new tag] ciflow/inductor/135792 -> ciflow/inductor/135792 2025-06-01T20:58:10.2307240Z * [new tag] ciflow/inductor/136355 -> ciflow/inductor/136355 2025-06-01T20:58:10.2307688Z * [new tag] ciflow/inductor/136702 -> ciflow/inductor/136702 2025-06-01T20:58:10.2308123Z * [new tag] ciflow/inductor/137400 -> ciflow/inductor/137400 2025-06-01T20:58:10.2308558Z * [new tag] ciflow/inductor/137568 -> ciflow/inductor/137568 2025-06-01T20:58:10.2308983Z * [new tag] ciflow/inductor/137583 -> ciflow/inductor/137583 2025-06-01T20:58:10.2309424Z * [new tag] ciflow/inductor/137846 -> ciflow/inductor/137846 2025-06-01T20:58:10.2309965Z * [new tag] ciflow/inductor/138214 -> ciflow/inductor/138214 2025-06-01T20:58:10.2310453Z * [new tag] ciflow/inductor/138388 -> ciflow/inductor/138388 2025-06-01T20:58:10.2310948Z * [new tag] ciflow/inductor/138513 -> ciflow/inductor/138513 2025-06-01T20:58:10.2311392Z * [new tag] ciflow/inductor/138519 -> ciflow/inductor/138519 2025-06-01T20:58:10.2311833Z * [new tag] ciflow/inductor/138626 -> ciflow/inductor/138626 2025-06-01T20:58:10.2312272Z * [new tag] ciflow/inductor/139561 -> ciflow/inductor/139561 2025-06-01T20:58:10.2312703Z * [new tag] ciflow/inductor/139975 -> ciflow/inductor/139975 2025-06-01T20:58:10.2313146Z * [new tag] ciflow/inductor/140756 -> ciflow/inductor/140756 2025-06-01T20:58:10.2313578Z * [new tag] ciflow/inductor/140979 -> ciflow/inductor/140979 2025-06-01T20:58:10.2314016Z * [new tag] ciflow/inductor/141309 -> ciflow/inductor/141309 2025-06-01T20:58:10.2314447Z * [new tag] ciflow/inductor/141842 -> ciflow/inductor/141842 2025-06-01T20:58:10.2314889Z * [new tag] ciflow/inductor/141961 -> ciflow/inductor/141961 2025-06-01T20:58:10.2315337Z * [new tag] ciflow/inductor/142295 -> ciflow/inductor/142295 2025-06-01T20:58:10.2315797Z * [new tag] ciflow/inductor/143712 -> ciflow/inductor/143712 2025-06-01T20:58:10.2316296Z * [new tag] ciflow/inductor/143812 -> ciflow/inductor/143812 2025-06-01T20:58:10.2316725Z * [new tag] ciflow/inductor/143833 -> ciflow/inductor/143833 2025-06-01T20:58:10.2317171Z * [new tag] ciflow/inductor/143987 -> ciflow/inductor/143987 2025-06-01T20:58:10.2317609Z * [new tag] ciflow/inductor/144366 -> ciflow/inductor/144366 2025-06-01T20:58:10.2318037Z * [new tag] ciflow/inductor/144438 -> ciflow/inductor/144438 2025-06-01T20:58:10.2318474Z * [new tag] ciflow/inductor/144516 -> ciflow/inductor/144516 2025-06-01T20:58:10.2318902Z * [new tag] ciflow/inductor/144542 -> ciflow/inductor/144542 2025-06-01T20:58:10.2658062Z * [new tag] ciflow/inductor/144548 -> ciflow/inductor/144548 2025-06-01T20:58:10.2658726Z * [new tag] ciflow/inductor/144553 -> ciflow/inductor/144553 2025-06-01T20:58:10.2659174Z * [new tag] ciflow/inductor/144555 -> ciflow/inductor/144555 2025-06-01T20:58:10.2659655Z * [new tag] ciflow/inductor/144556 -> ciflow/inductor/144556 2025-06-01T20:58:10.2660093Z * [new tag] ciflow/inductor/144765 -> ciflow/inductor/144765 2025-06-01T20:58:10.2660534Z * [new tag] ciflow/inductor/144905 -> ciflow/inductor/144905 2025-06-01T20:58:10.2660981Z * [new tag] ciflow/inductor/144925 -> ciflow/inductor/144925 2025-06-01T20:58:10.2661416Z * [new tag] ciflow/inductor/144992 -> ciflow/inductor/144992 2025-06-01T20:58:10.2661861Z * [new tag] ciflow/inductor/145153 -> ciflow/inductor/145153 2025-06-01T20:58:10.2662302Z * [new tag] ciflow/inductor/145353 -> ciflow/inductor/145353 2025-06-01T20:58:10.2662750Z * [new tag] ciflow/inductor/145594 -> ciflow/inductor/145594 2025-06-01T20:58:10.2663191Z * [new tag] ciflow/inductor/145595 -> ciflow/inductor/145595 2025-06-01T20:58:10.2663626Z * [new tag] ciflow/inductor/145681 -> ciflow/inductor/145681 2025-06-01T20:58:10.2664071Z * [new tag] ciflow/inductor/145911 -> ciflow/inductor/145911 2025-06-01T20:58:10.2664508Z * [new tag] ciflow/inductor/145922 -> ciflow/inductor/145922 2025-06-01T20:58:10.2664948Z * [new tag] ciflow/inductor/145992 -> ciflow/inductor/145992 2025-06-01T20:58:10.2665392Z * [new tag] ciflow/inductor/146101 -> ciflow/inductor/146101 2025-06-01T20:58:10.2665821Z * [new tag] ciflow/inductor/146172 -> ciflow/inductor/146172 2025-06-01T20:58:10.2666269Z * [new tag] ciflow/inductor/146267 -> ciflow/inductor/146267 2025-06-01T20:58:10.2666704Z * [new tag] ciflow/inductor/146288 -> ciflow/inductor/146288 2025-06-01T20:58:10.2667141Z * [new tag] ciflow/inductor/146335 -> ciflow/inductor/146335 2025-06-01T20:58:10.2667570Z * [new tag] ciflow/inductor/146436 -> ciflow/inductor/146436 2025-06-01T20:58:10.2668011Z * [new tag] ciflow/inductor/146506 -> ciflow/inductor/146506 2025-06-01T20:58:10.2668448Z * [new tag] ciflow/inductor/146558 -> ciflow/inductor/146558 2025-06-01T20:58:10.2668880Z * [new tag] ciflow/inductor/146845 -> ciflow/inductor/146845 2025-06-01T20:58:10.2669326Z * [new tag] ciflow/inductor/146874 -> ciflow/inductor/146874 2025-06-01T20:58:10.2669837Z * [new tag] ciflow/inductor/146983 -> ciflow/inductor/146983 2025-06-01T20:58:10.2670292Z * [new tag] ciflow/inductor/147049 -> ciflow/inductor/147049 2025-06-01T20:58:10.2670755Z * [new tag] ciflow/inductor/147146 -> ciflow/inductor/147146 2025-06-01T20:58:10.2671191Z * [new tag] ciflow/inductor/147360 -> ciflow/inductor/147360 2025-06-01T20:58:10.2671643Z * [new tag] ciflow/inductor/147368 -> ciflow/inductor/147368 2025-06-01T20:58:10.2672074Z * [new tag] ciflow/inductor/147410 -> ciflow/inductor/147410 2025-06-01T20:58:10.2672519Z * [new tag] ciflow/inductor/147514 -> ciflow/inductor/147514 2025-06-01T20:58:10.2672952Z * [new tag] ciflow/inductor/147528 -> ciflow/inductor/147528 2025-06-01T20:58:10.2673395Z * [new tag] ciflow/inductor/147562 -> ciflow/inductor/147562 2025-06-01T20:58:10.2673836Z * [new tag] ciflow/inductor/147583 -> ciflow/inductor/147583 2025-06-01T20:58:10.2674403Z * [new tag] ciflow/inductor/147603 -> ciflow/inductor/147603 2025-06-01T20:58:10.2674944Z * [new tag] ciflow/inductor/147745 -> ciflow/inductor/147745 2025-06-01T20:58:10.2675377Z * [new tag] ciflow/inductor/147881 -> ciflow/inductor/147881 2025-06-01T20:58:10.2675824Z * [new tag] ciflow/inductor/147927 -> ciflow/inductor/147927 2025-06-01T20:58:10.2676268Z * [new tag] ciflow/inductor/147990 -> ciflow/inductor/147990 2025-06-01T20:58:10.2676698Z * [new tag] ciflow/inductor/148173 -> ciflow/inductor/148173 2025-06-01T20:58:10.2677135Z * [new tag] ciflow/inductor/148186 -> ciflow/inductor/148186 2025-06-01T20:58:10.2677561Z * [new tag] ciflow/inductor/148202 -> ciflow/inductor/148202 2025-06-01T20:58:10.2677998Z * [new tag] ciflow/inductor/148235 -> ciflow/inductor/148235 2025-06-01T20:58:10.2678439Z * [new tag] ciflow/inductor/148294 -> ciflow/inductor/148294 2025-06-01T20:58:10.2678878Z * [new tag] ciflow/inductor/148328 -> ciflow/inductor/148328 2025-06-01T20:58:10.2679313Z * [new tag] ciflow/inductor/148357 -> ciflow/inductor/148357 2025-06-01T20:58:10.2679743Z * [new tag] ciflow/inductor/148408 -> ciflow/inductor/148408 2025-06-01T20:58:10.2680180Z * [new tag] ciflow/inductor/148413 -> ciflow/inductor/148413 2025-06-01T20:58:10.3010458Z * [new tag] ciflow/inductor/148414 -> ciflow/inductor/148414 2025-06-01T20:58:10.3010965Z * [new tag] ciflow/inductor/148415 -> ciflow/inductor/148415 2025-06-01T20:58:10.3011419Z * [new tag] ciflow/inductor/148418 -> ciflow/inductor/148418 2025-06-01T20:58:10.3011853Z * [new tag] ciflow/inductor/148424 -> ciflow/inductor/148424 2025-06-01T20:58:10.3012329Z * [new tag] ciflow/inductor/148484 -> ciflow/inductor/148484 2025-06-01T20:58:10.3012775Z * [new tag] ciflow/inductor/148485 -> ciflow/inductor/148485 2025-06-01T20:58:10.3013209Z * [new tag] ciflow/inductor/148488 -> ciflow/inductor/148488 2025-06-01T20:58:10.3013644Z * [new tag] ciflow/inductor/148492 -> ciflow/inductor/148492 2025-06-01T20:58:10.3014079Z * [new tag] ciflow/inductor/148529 -> ciflow/inductor/148529 2025-06-01T20:58:10.3014538Z * [new tag] ciflow/inductor/148569 -> ciflow/inductor/148569 2025-06-01T20:58:10.3014974Z * [new tag] ciflow/inductor/148618 -> ciflow/inductor/148618 2025-06-01T20:58:10.3015408Z * [new tag] ciflow/inductor/148694 -> ciflow/inductor/148694 2025-06-01T20:58:10.3015851Z * [new tag] ciflow/inductor/148710 -> ciflow/inductor/148710 2025-06-01T20:58:10.3016296Z * [new tag] ciflow/inductor/148731 -> ciflow/inductor/148731 2025-06-01T20:58:10.3016740Z * [new tag] ciflow/inductor/148780 -> ciflow/inductor/148780 2025-06-01T20:58:10.3017180Z * [new tag] ciflow/inductor/148898 -> ciflow/inductor/148898 2025-06-01T20:58:10.3017616Z * [new tag] ciflow/inductor/148932 -> ciflow/inductor/148932 2025-06-01T20:58:10.3018053Z * [new tag] ciflow/inductor/148947 -> ciflow/inductor/148947 2025-06-01T20:58:10.3018482Z * [new tag] ciflow/inductor/149039 -> ciflow/inductor/149039 2025-06-01T20:58:10.3018929Z * [new tag] ciflow/inductor/149055 -> ciflow/inductor/149055 2025-06-01T20:58:10.3019362Z * [new tag] ciflow/inductor/149066 -> ciflow/inductor/149066 2025-06-01T20:58:10.3019802Z * [new tag] ciflow/inductor/149067 -> ciflow/inductor/149067 2025-06-01T20:58:10.3020243Z * [new tag] ciflow/inductor/149068 -> ciflow/inductor/149068 2025-06-01T20:58:10.3020994Z * [new tag] ciflow/inductor/149069 -> ciflow/inductor/149069 2025-06-01T20:58:10.3021437Z * [new tag] ciflow/inductor/149140 -> ciflow/inductor/149140 2025-06-01T20:58:10.3021871Z * [new tag] ciflow/inductor/149150 -> ciflow/inductor/149150 2025-06-01T20:58:10.3022323Z * [new tag] ciflow/inductor/149173 -> ciflow/inductor/149173 2025-06-01T20:58:10.3022772Z * [new tag] ciflow/inductor/149192 -> ciflow/inductor/149192 2025-06-01T20:58:10.3023208Z * [new tag] ciflow/inductor/149282 -> ciflow/inductor/149282 2025-06-01T20:58:10.3023655Z * [new tag] ciflow/inductor/149288 -> ciflow/inductor/149288 2025-06-01T20:58:10.3024088Z * [new tag] ciflow/inductor/149348 -> ciflow/inductor/149348 2025-06-01T20:58:10.3024597Z * [new tag] ciflow/inductor/149362 -> ciflow/inductor/149362 2025-06-01T20:58:10.3025107Z * [new tag] ciflow/inductor/149420 -> ciflow/inductor/149420 2025-06-01T20:58:10.3025542Z * [new tag] ciflow/inductor/149426 -> ciflow/inductor/149426 2025-06-01T20:58:10.3025990Z * [new tag] ciflow/inductor/149427 -> ciflow/inductor/149427 2025-06-01T20:58:10.3026422Z * [new tag] ciflow/inductor/149486 -> ciflow/inductor/149486 2025-06-01T20:58:10.3026857Z * [new tag] ciflow/inductor/149506 -> ciflow/inductor/149506 2025-06-01T20:58:10.3027287Z * [new tag] ciflow/inductor/149518 -> ciflow/inductor/149518 2025-06-01T20:58:10.3027728Z * [new tag] ciflow/inductor/149560 -> ciflow/inductor/149560 2025-06-01T20:58:10.3028166Z * [new tag] ciflow/inductor/149561 -> ciflow/inductor/149561 2025-06-01T20:58:10.3028594Z * [new tag] ciflow/inductor/149562 -> ciflow/inductor/149562 2025-06-01T20:58:10.3029048Z * [new tag] ciflow/inductor/149580 -> ciflow/inductor/149580 2025-06-01T20:58:10.3029550Z * [new tag] ciflow/inductor/149697 -> ciflow/inductor/149697 2025-06-01T20:58:10.3029991Z * [new tag] ciflow/inductor/149701 -> ciflow/inductor/149701 2025-06-01T20:58:10.3030431Z * [new tag] ciflow/inductor/149706 -> ciflow/inductor/149706 2025-06-01T20:58:10.3030865Z * [new tag] ciflow/inductor/149733 -> ciflow/inductor/149733 2025-06-01T20:58:10.3031306Z * [new tag] ciflow/inductor/149763 -> ciflow/inductor/149763 2025-06-01T20:58:10.3031733Z * [new tag] ciflow/inductor/149769 -> ciflow/inductor/149769 2025-06-01T20:58:10.3032188Z * [new tag] ciflow/inductor/149913 -> ciflow/inductor/149913 2025-06-01T20:58:10.3345677Z * [new tag] ciflow/inductor/149949 -> ciflow/inductor/149949 2025-06-01T20:58:10.3346242Z * [new tag] ciflow/inductor/149958 -> ciflow/inductor/149958 2025-06-01T20:58:10.3346697Z * [new tag] ciflow/inductor/149961 -> ciflow/inductor/149961 2025-06-01T20:58:10.3347140Z * [new tag] ciflow/inductor/149967 -> ciflow/inductor/149967 2025-06-01T20:58:10.3347605Z * [new tag] ciflow/inductor/149998 -> ciflow/inductor/149998 2025-06-01T20:58:10.3348048Z * [new tag] ciflow/inductor/150003 -> ciflow/inductor/150003 2025-06-01T20:58:10.3348479Z * [new tag] ciflow/inductor/150044 -> ciflow/inductor/150044 2025-06-01T20:58:10.3348920Z * [new tag] ciflow/inductor/150080 -> ciflow/inductor/150080 2025-06-01T20:58:10.3349349Z * [new tag] ciflow/inductor/150116 -> ciflow/inductor/150116 2025-06-01T20:58:10.3349874Z * [new tag] ciflow/inductor/150241 -> ciflow/inductor/150241 2025-06-01T20:58:10.3350693Z * [new tag] ciflow/inductor/150287 -> ciflow/inductor/150287 2025-06-01T20:58:10.3351186Z * [new tag] ciflow/inductor/150302 -> ciflow/inductor/150302 2025-06-01T20:58:10.3351633Z * [new tag] ciflow/inductor/150331 -> ciflow/inductor/150331 2025-06-01T20:58:10.3352068Z * [new tag] ciflow/inductor/150349 -> ciflow/inductor/150349 2025-06-01T20:58:10.3352513Z * [new tag] ciflow/inductor/150355 -> ciflow/inductor/150355 2025-06-01T20:58:10.3352954Z * [new tag] ciflow/inductor/150365 -> ciflow/inductor/150365 2025-06-01T20:58:10.3353384Z * [new tag] ciflow/inductor/150411 -> ciflow/inductor/150411 2025-06-01T20:58:10.3353823Z * [new tag] ciflow/inductor/150415 -> ciflow/inductor/150415 2025-06-01T20:58:10.3354254Z * [new tag] ciflow/inductor/150429 -> ciflow/inductor/150429 2025-06-01T20:58:10.3354710Z * [new tag] ciflow/inductor/150455 -> ciflow/inductor/150455 2025-06-01T20:58:10.3355140Z * [new tag] ciflow/inductor/150474 -> ciflow/inductor/150474 2025-06-01T20:58:10.3355577Z * [new tag] ciflow/inductor/150481 -> ciflow/inductor/150481 2025-06-01T20:58:10.3356017Z * [new tag] ciflow/inductor/150546 -> ciflow/inductor/150546 2025-06-01T20:58:10.3356497Z * [new tag] ciflow/inductor/150564 -> ciflow/inductor/150564 2025-06-01T20:58:10.3356978Z * [new tag] ciflow/inductor/150567 -> ciflow/inductor/150567 2025-06-01T20:58:10.3357408Z * [new tag] ciflow/inductor/150569 -> ciflow/inductor/150569 2025-06-01T20:58:10.3357851Z * [new tag] ciflow/inductor/150582 -> ciflow/inductor/150582 2025-06-01T20:58:10.3358289Z * [new tag] ciflow/inductor/150583 -> ciflow/inductor/150583 2025-06-01T20:58:10.3358733Z * [new tag] ciflow/inductor/150669 -> ciflow/inductor/150669 2025-06-01T20:58:10.3359187Z * [new tag] ciflow/inductor/150673 -> ciflow/inductor/150673 2025-06-01T20:58:10.3359624Z * [new tag] ciflow/inductor/150717 -> ciflow/inductor/150717 2025-06-01T20:58:10.3360071Z * [new tag] ciflow/inductor/150719 -> ciflow/inductor/150719 2025-06-01T20:58:10.3360503Z * [new tag] ciflow/inductor/150720 -> ciflow/inductor/150720 2025-06-01T20:58:10.3360950Z * [new tag] ciflow/inductor/150762 -> ciflow/inductor/150762 2025-06-01T20:58:10.3361389Z * [new tag] ciflow/inductor/150789 -> ciflow/inductor/150789 2025-06-01T20:58:10.3361826Z * [new tag] ciflow/inductor/150793 -> ciflow/inductor/150793 2025-06-01T20:58:10.3362311Z * [new tag] ciflow/inductor/150794 -> ciflow/inductor/150794 2025-06-01T20:58:10.3362791Z * [new tag] ciflow/inductor/150795 -> ciflow/inductor/150795 2025-06-01T20:58:10.3363244Z * [new tag] ciflow/inductor/150796 -> ciflow/inductor/150796 2025-06-01T20:58:10.3363677Z * [new tag] ciflow/inductor/150875 -> ciflow/inductor/150875 2025-06-01T20:58:10.3364116Z * [new tag] ciflow/inductor/150899 -> ciflow/inductor/150899 2025-06-01T20:58:10.3364552Z * [new tag] ciflow/inductor/150937 -> ciflow/inductor/150937 2025-06-01T20:58:10.3364982Z * [new tag] ciflow/inductor/150944 -> ciflow/inductor/150944 2025-06-01T20:58:10.3365421Z * [new tag] ciflow/inductor/150954 -> ciflow/inductor/150954 2025-06-01T20:58:10.3365860Z * [new tag] ciflow/inductor/150968 -> ciflow/inductor/150968 2025-06-01T20:58:10.3366296Z * [new tag] ciflow/inductor/151009 -> ciflow/inductor/151009 2025-06-01T20:58:10.3366868Z * [new tag] ciflow/inductor/151115 -> ciflow/inductor/151115 2025-06-01T20:58:10.3367401Z * [new tag] ciflow/inductor/151120 -> ciflow/inductor/151120 2025-06-01T20:58:10.3367899Z * [new tag] ciflow/inductor/151217 -> ciflow/inductor/151217 2025-06-01T20:58:10.3701015Z * [new tag] ciflow/inductor/151265 -> ciflow/inductor/151265 2025-06-01T20:58:10.3701522Z * [new tag] ciflow/inductor/151271 -> ciflow/inductor/151271 2025-06-01T20:58:10.3701995Z * [new tag] ciflow/inductor/151315 -> ciflow/inductor/151315 2025-06-01T20:58:10.3702442Z * [new tag] ciflow/inductor/151481 -> ciflow/inductor/151481 2025-06-01T20:58:10.3702894Z * [new tag] ciflow/inductor/151495 -> ciflow/inductor/151495 2025-06-01T20:58:10.3703328Z * [new tag] ciflow/inductor/151497 -> ciflow/inductor/151497 2025-06-01T20:58:10.3703791Z * [new tag] ciflow/inductor/151568 -> ciflow/inductor/151568 2025-06-01T20:58:10.3704251Z * [new tag] ciflow/inductor/151581 -> ciflow/inductor/151581 2025-06-01T20:58:10.3704680Z * [new tag] ciflow/inductor/151585 -> ciflow/inductor/151585 2025-06-01T20:58:10.3705118Z * [new tag] ciflow/inductor/151604 -> ciflow/inductor/151604 2025-06-01T20:58:10.3705557Z * [new tag] ciflow/inductor/151679 -> ciflow/inductor/151679 2025-06-01T20:58:10.3705987Z * [new tag] ciflow/inductor/151711 -> ciflow/inductor/151711 2025-06-01T20:58:10.3706424Z * [new tag] ciflow/inductor/151718 -> ciflow/inductor/151718 2025-06-01T20:58:10.3706859Z * [new tag] ciflow/inductor/151719 -> ciflow/inductor/151719 2025-06-01T20:58:10.3707302Z * [new tag] ciflow/inductor/151774 -> ciflow/inductor/151774 2025-06-01T20:58:10.3707749Z * [new tag] ciflow/inductor/151775 -> ciflow/inductor/151775 2025-06-01T20:58:10.3708202Z * [new tag] ciflow/inductor/151777 -> ciflow/inductor/151777 2025-06-01T20:58:10.3708642Z * [new tag] ciflow/inductor/151778 -> ciflow/inductor/151778 2025-06-01T20:58:10.3709077Z * [new tag] ciflow/inductor/151845 -> ciflow/inductor/151845 2025-06-01T20:58:10.3709564Z * [new tag] ciflow/inductor/151854 -> ciflow/inductor/151854 2025-06-01T20:58:10.3710005Z * [new tag] ciflow/inductor/151860 -> ciflow/inductor/151860 2025-06-01T20:58:10.3710453Z * [new tag] ciflow/inductor/151900 -> ciflow/inductor/151900 2025-06-01T20:58:10.3710902Z * [new tag] ciflow/inductor/151919 -> ciflow/inductor/151919 2025-06-01T20:58:10.3711344Z * [new tag] ciflow/inductor/151924 -> ciflow/inductor/151924 2025-06-01T20:58:10.3711804Z * [new tag] ciflow/inductor/151935 -> ciflow/inductor/151935 2025-06-01T20:58:10.3712243Z * [new tag] ciflow/inductor/151941 -> ciflow/inductor/151941 2025-06-01T20:58:10.3712688Z * [new tag] ciflow/inductor/151948 -> ciflow/inductor/151948 2025-06-01T20:58:10.3713136Z * [new tag] ciflow/inductor/151956 -> ciflow/inductor/151956 2025-06-01T20:58:10.3713572Z * [new tag] ciflow/inductor/151958 -> ciflow/inductor/151958 2025-06-01T20:58:10.3714018Z * [new tag] ciflow/inductor/151971 -> ciflow/inductor/151971 2025-06-01T20:58:10.3714452Z * [new tag] ciflow/inductor/152011 -> ciflow/inductor/152011 2025-06-01T20:58:10.3714893Z * [new tag] ciflow/inductor/152137 -> ciflow/inductor/152137 2025-06-01T20:58:10.3715327Z * [new tag] ciflow/inductor/152159 -> ciflow/inductor/152159 2025-06-01T20:58:10.3715989Z * [new tag] ciflow/inductor/152166 -> ciflow/inductor/152166 2025-06-01T20:58:10.3716573Z * [new tag] ciflow/inductor/152193 -> ciflow/inductor/152193 2025-06-01T20:58:10.3717008Z * [new tag] ciflow/inductor/152194 -> ciflow/inductor/152194 2025-06-01T20:58:10.3717457Z * [new tag] ciflow/inductor/152197 -> ciflow/inductor/152197 2025-06-01T20:58:10.3717890Z * [new tag] ciflow/inductor/152198 -> ciflow/inductor/152198 2025-06-01T20:58:10.3718334Z * [new tag] ciflow/inductor/152217 -> ciflow/inductor/152217 2025-06-01T20:58:10.3718780Z * [new tag] ciflow/inductor/152289 -> ciflow/inductor/152289 2025-06-01T20:58:10.3719211Z * [new tag] ciflow/inductor/152311 -> ciflow/inductor/152311 2025-06-01T20:58:10.3719648Z * [new tag] ciflow/inductor/152353 -> ciflow/inductor/152353 2025-06-01T20:58:10.3720082Z * [new tag] ciflow/inductor/152361 -> ciflow/inductor/152361 2025-06-01T20:58:10.3720530Z * [new tag] ciflow/inductor/152392 -> ciflow/inductor/152392 2025-06-01T20:58:10.3720973Z * [new tag] ciflow/inductor/152405 -> ciflow/inductor/152405 2025-06-01T20:58:10.3721403Z * [new tag] ciflow/inductor/152449 -> ciflow/inductor/152449 2025-06-01T20:58:10.3721844Z * [new tag] ciflow/inductor/152450 -> ciflow/inductor/152450 2025-06-01T20:58:10.3722275Z * [new tag] ciflow/inductor/152453 -> ciflow/inductor/152453 2025-06-01T20:58:10.3722707Z * [new tag] ciflow/inductor/152493 -> ciflow/inductor/152493 2025-06-01T20:58:10.3723138Z * [new tag] ciflow/inductor/152495 -> ciflow/inductor/152495 2025-06-01T20:58:10.4029564Z * [new tag] ciflow/inductor/152509 -> ciflow/inductor/152509 2025-06-01T20:58:10.4030103Z * [new tag] ciflow/inductor/152543 -> ciflow/inductor/152543 2025-06-01T20:58:10.4030562Z * [new tag] ciflow/inductor/152586 -> ciflow/inductor/152586 2025-06-01T20:58:10.4031017Z * [new tag] ciflow/inductor/152622 -> ciflow/inductor/152622 2025-06-01T20:58:10.4031451Z * [new tag] ciflow/inductor/152624 -> ciflow/inductor/152624 2025-06-01T20:58:10.4031907Z * [new tag] ciflow/inductor/152633 -> ciflow/inductor/152633 2025-06-01T20:58:10.4032350Z * [new tag] ciflow/inductor/152646 -> ciflow/inductor/152646 2025-06-01T20:58:10.4032785Z * [new tag] ciflow/inductor/152729 -> ciflow/inductor/152729 2025-06-01T20:58:10.4033223Z * [new tag] ciflow/inductor/152738 -> ciflow/inductor/152738 2025-06-01T20:58:10.4033652Z * [new tag] ciflow/inductor/152739 -> ciflow/inductor/152739 2025-06-01T20:58:10.4034107Z * [new tag] ciflow/inductor/152771 -> ciflow/inductor/152771 2025-06-01T20:58:10.4034568Z * [new tag] ciflow/inductor/152775 -> ciflow/inductor/152775 2025-06-01T20:58:10.4034996Z * [new tag] ciflow/inductor/152776 -> ciflow/inductor/152776 2025-06-01T20:58:10.4035434Z * [new tag] ciflow/inductor/152782 -> ciflow/inductor/152782 2025-06-01T20:58:10.4035875Z * [new tag] ciflow/inductor/152806 -> ciflow/inductor/152806 2025-06-01T20:58:10.4036317Z * [new tag] ciflow/inductor/152894 -> ciflow/inductor/152894 2025-06-01T20:58:10.4036756Z * [new tag] ciflow/inductor/152975 -> ciflow/inductor/152975 2025-06-01T20:58:10.4037190Z * [new tag] ciflow/inductor/152991 -> ciflow/inductor/152991 2025-06-01T20:58:10.4037639Z * [new tag] ciflow/inductor/153004 -> ciflow/inductor/153004 2025-06-01T20:58:10.4038280Z * [new tag] ciflow/inductor/153011 -> ciflow/inductor/153011 2025-06-01T20:58:10.4038856Z * [new tag] ciflow/inductor/153117 -> ciflow/inductor/153117 2025-06-01T20:58:10.4039299Z * [new tag] ciflow/inductor/153131 -> ciflow/inductor/153131 2025-06-01T20:58:10.4039729Z * [new tag] ciflow/inductor/153150 -> ciflow/inductor/153150 2025-06-01T20:58:10.4040175Z * [new tag] ciflow/inductor/153165 -> ciflow/inductor/153165 2025-06-01T20:58:10.4040617Z * [new tag] ciflow/inductor/153173 -> ciflow/inductor/153173 2025-06-01T20:58:10.4041058Z * [new tag] ciflow/inductor/153201 -> ciflow/inductor/153201 2025-06-01T20:58:10.4041505Z * [new tag] ciflow/inductor/153271 -> ciflow/inductor/153271 2025-06-01T20:58:10.4041944Z * [new tag] ciflow/inductor/153272 -> ciflow/inductor/153272 2025-06-01T20:58:10.4042389Z * [new tag] ciflow/inductor/153278 -> ciflow/inductor/153278 2025-06-01T20:58:10.4042834Z * [new tag] ciflow/inductor/153290 -> ciflow/inductor/153290 2025-06-01T20:58:10.4043280Z * [new tag] ciflow/inductor/153317 -> ciflow/inductor/153317 2025-06-01T20:58:10.4043729Z * [new tag] ciflow/inductor/153384 -> ciflow/inductor/153384 2025-06-01T20:58:10.4044206Z * [new tag] ciflow/inductor/153419 -> ciflow/inductor/153419 2025-06-01T20:58:10.4044645Z * [new tag] ciflow/inductor/153430 -> ciflow/inductor/153430 2025-06-01T20:58:10.4045075Z * [new tag] ciflow/inductor/153434 -> ciflow/inductor/153434 2025-06-01T20:58:10.4045518Z * [new tag] ciflow/inductor/153436 -> ciflow/inductor/153436 2025-06-01T20:58:10.4045951Z * [new tag] ciflow/inductor/153473 -> ciflow/inductor/153473 2025-06-01T20:58:10.4046398Z * [new tag] ciflow/inductor/153481 -> ciflow/inductor/153481 2025-06-01T20:58:10.4046853Z * [new tag] ciflow/inductor/153499 -> ciflow/inductor/153499 2025-06-01T20:58:10.4047290Z * [new tag] ciflow/inductor/153501 -> ciflow/inductor/153501 2025-06-01T20:58:10.4047727Z * [new tag] ciflow/inductor/153548 -> ciflow/inductor/153548 2025-06-01T20:58:10.4048155Z * [new tag] ciflow/inductor/153553 -> ciflow/inductor/153553 2025-06-01T20:58:10.4048592Z * [new tag] ciflow/inductor/153569 -> ciflow/inductor/153569 2025-06-01T20:58:10.4049034Z * [new tag] ciflow/inductor/153596 -> ciflow/inductor/153596 2025-06-01T20:58:10.4049468Z * [new tag] ciflow/inductor/153623 -> ciflow/inductor/153623 2025-06-01T20:58:10.4049909Z * [new tag] ciflow/inductor/153628 -> ciflow/inductor/153628 2025-06-01T20:58:10.4050344Z * [new tag] ciflow/inductor/153654 -> ciflow/inductor/153654 2025-06-01T20:58:10.4050795Z * [new tag] ciflow/inductor/153662 -> ciflow/inductor/153662 2025-06-01T20:58:10.4051249Z * [new tag] ciflow/inductor/153663 -> ciflow/inductor/153663 2025-06-01T20:58:10.4368983Z * [new tag] ciflow/inductor/153672 -> ciflow/inductor/153672 2025-06-01T20:58:10.4369505Z * [new tag] ciflow/inductor/153682 -> ciflow/inductor/153682 2025-06-01T20:58:10.4369978Z * [new tag] ciflow/inductor/153723 -> ciflow/inductor/153723 2025-06-01T20:58:10.4370418Z * [new tag] ciflow/inductor/153730 -> ciflow/inductor/153730 2025-06-01T20:58:10.4370866Z * [new tag] ciflow/inductor/153734 -> ciflow/inductor/153734 2025-06-01T20:58:10.4371303Z * [new tag] ciflow/inductor/153739 -> ciflow/inductor/153739 2025-06-01T20:58:10.4371747Z * [new tag] ciflow/inductor/153743 -> ciflow/inductor/153743 2025-06-01T20:58:10.4373553Z * [new tag] ciflow/inductor/153748 -> ciflow/inductor/153748 2025-06-01T20:58:10.4374015Z * [new tag] ciflow/inductor/153751 -> ciflow/inductor/153751 2025-06-01T20:58:10.4374458Z * [new tag] ciflow/inductor/153752 -> ciflow/inductor/153752 2025-06-01T20:58:10.4374890Z * [new tag] ciflow/inductor/153766 -> ciflow/inductor/153766 2025-06-01T20:58:10.4375332Z * [new tag] ciflow/inductor/153774 -> ciflow/inductor/153774 2025-06-01T20:58:10.4375768Z * [new tag] ciflow/inductor/153780 -> ciflow/inductor/153780 2025-06-01T20:58:10.4376207Z * [new tag] ciflow/inductor/153802 -> ciflow/inductor/153802 2025-06-01T20:58:10.4376645Z * [new tag] ciflow/inductor/153834 -> ciflow/inductor/153834 2025-06-01T20:58:10.4377076Z * [new tag] ciflow/inductor/153841 -> ciflow/inductor/153841 2025-06-01T20:58:10.4377530Z * [new tag] ciflow/inductor/153846 -> ciflow/inductor/153846 2025-06-01T20:58:10.4377962Z * [new tag] ciflow/inductor/153886 -> ciflow/inductor/153886 2025-06-01T20:58:10.4378491Z * [new tag] ciflow/inductor/153953 -> ciflow/inductor/153953 2025-06-01T20:58:10.4378931Z * [new tag] ciflow/inductor/153966 -> ciflow/inductor/153966 2025-06-01T20:58:10.4379379Z * [new tag] ciflow/inductor/153969 -> ciflow/inductor/153969 2025-06-01T20:58:10.4379831Z * [new tag] ciflow/inductor/154000 -> ciflow/inductor/154000 2025-06-01T20:58:10.4380265Z * [new tag] ciflow/inductor/154003 -> ciflow/inductor/154003 2025-06-01T20:58:10.4380703Z * [new tag] ciflow/inductor/154007 -> ciflow/inductor/154007 2025-06-01T20:58:10.4381130Z * [new tag] ciflow/inductor/154013 -> ciflow/inductor/154013 2025-06-01T20:58:10.4381572Z * [new tag] ciflow/inductor/154032 -> ciflow/inductor/154032 2025-06-01T20:58:10.4382029Z * [new tag] ciflow/inductor/154047 -> ciflow/inductor/154047 2025-06-01T20:58:10.4382459Z * [new tag] ciflow/inductor/154056 -> ciflow/inductor/154056 2025-06-01T20:58:10.4382898Z * [new tag] ciflow/inductor/154058 -> ciflow/inductor/154058 2025-06-01T20:58:10.4383327Z * [new tag] ciflow/inductor/154063 -> ciflow/inductor/154063 2025-06-01T20:58:10.4383810Z * [new tag] ciflow/inductor/154064 -> ciflow/inductor/154064 2025-06-01T20:58:10.4384289Z * [new tag] ciflow/inductor/154065 -> ciflow/inductor/154065 2025-06-01T20:58:10.4384724Z * [new tag] ciflow/inductor/154066 -> ciflow/inductor/154066 2025-06-01T20:58:10.4385164Z * [new tag] ciflow/inductor/154072 -> ciflow/inductor/154072 2025-06-01T20:58:10.4385602Z * [new tag] ciflow/inductor/154078 -> ciflow/inductor/154078 2025-06-01T20:58:10.4386049Z * [new tag] ciflow/inductor/154081 -> ciflow/inductor/154081 2025-06-01T20:58:10.4386481Z * [new tag] ciflow/inductor/154100 -> ciflow/inductor/154100 2025-06-01T20:58:10.4386921Z * [new tag] ciflow/inductor/154129 -> ciflow/inductor/154129 2025-06-01T20:58:10.4387362Z * [new tag] ciflow/inductor/154134 -> ciflow/inductor/154134 2025-06-01T20:58:10.4387790Z * [new tag] ciflow/inductor/154142 -> ciflow/inductor/154142 2025-06-01T20:58:10.4388233Z * [new tag] ciflow/inductor/154149 -> ciflow/inductor/154149 2025-06-01T20:58:10.4388661Z * [new tag] ciflow/inductor/154165 -> ciflow/inductor/154165 2025-06-01T20:58:10.4389101Z * [new tag] ciflow/inductor/154193 -> ciflow/inductor/154193 2025-06-01T20:58:10.4389791Z * [new tag] ciflow/inductor/154194 -> ciflow/inductor/154194 2025-06-01T20:58:10.4390383Z * [new tag] ciflow/inductor/154199 -> ciflow/inductor/154199 2025-06-01T20:58:10.4390830Z * [new tag] ciflow/inductor/154263 -> ciflow/inductor/154263 2025-06-01T20:58:10.4391265Z * [new tag] ciflow/inductor/154273 -> ciflow/inductor/154273 2025-06-01T20:58:10.4391709Z * [new tag] ciflow/inductor/154283 -> ciflow/inductor/154283 2025-06-01T20:58:10.4392136Z * [new tag] ciflow/inductor/154287 -> ciflow/inductor/154287 2025-06-01T20:58:10.4711242Z * [new tag] ciflow/inductor/154289 -> ciflow/inductor/154289 2025-06-01T20:58:10.4711748Z * [new tag] ciflow/inductor/154343 -> ciflow/inductor/154343 2025-06-01T20:58:10.4712200Z * [new tag] ciflow/inductor/154348 -> ciflow/inductor/154348 2025-06-01T20:58:10.4712677Z * [new tag] ciflow/inductor/154350 -> ciflow/inductor/154350 2025-06-01T20:58:10.4713162Z * [new tag] ciflow/inductor/154366 -> ciflow/inductor/154366 2025-06-01T20:58:10.4713611Z * [new tag] ciflow/inductor/154388 -> ciflow/inductor/154388 2025-06-01T20:58:10.4714061Z * [new tag] ciflow/inductor/154389 -> ciflow/inductor/154389 2025-06-01T20:58:10.4714508Z * [new tag] ciflow/inductor/154390 -> ciflow/inductor/154390 2025-06-01T20:58:10.4714955Z * [new tag] ciflow/inductor/154415 -> ciflow/inductor/154415 2025-06-01T20:58:10.4715444Z * [new tag] ciflow/inductor/154434 -> ciflow/inductor/154434 2025-06-01T20:58:10.4715923Z * [new tag] ciflow/inductor/154464 -> ciflow/inductor/154464 2025-06-01T20:58:10.4716367Z * [new tag] ciflow/inductor/154472 -> ciflow/inductor/154472 2025-06-01T20:58:10.4716811Z * [new tag] ciflow/inductor/154475 -> ciflow/inductor/154475 2025-06-01T20:58:10.4717271Z * [new tag] ciflow/inductor/154482 -> ciflow/inductor/154482 2025-06-01T20:58:10.4717718Z * [new tag] ciflow/inductor/154492 -> ciflow/inductor/154492 2025-06-01T20:58:10.4718159Z * [new tag] ciflow/inductor/154497 -> ciflow/inductor/154497 2025-06-01T20:58:10.4718608Z * [new tag] ciflow/inductor/154510 -> ciflow/inductor/154510 2025-06-01T20:58:10.4719052Z * [new tag] ciflow/inductor/154514 -> ciflow/inductor/154514 2025-06-01T20:58:10.4719496Z * [new tag] ciflow/inductor/154523 -> ciflow/inductor/154523 2025-06-01T20:58:10.4719934Z * [new tag] ciflow/inductor/154535 -> ciflow/inductor/154535 2025-06-01T20:58:10.4720383Z * [new tag] ciflow/inductor/154539 -> ciflow/inductor/154539 2025-06-01T20:58:10.4720869Z * [new tag] ciflow/inductor/154543 -> ciflow/inductor/154543 2025-06-01T20:58:10.4721352Z * [new tag] ciflow/inductor/154544 -> ciflow/inductor/154544 2025-06-01T20:58:10.4721801Z * [new tag] ciflow/inductor/154551 -> ciflow/inductor/154551 2025-06-01T20:58:10.4722236Z * [new tag] ciflow/inductor/154555 -> ciflow/inductor/154555 2025-06-01T20:58:10.4722686Z * [new tag] ciflow/inductor/154564 -> ciflow/inductor/154564 2025-06-01T20:58:10.4723131Z * [new tag] ciflow/inductor/154570 -> ciflow/inductor/154570 2025-06-01T20:58:10.4723569Z * [new tag] ciflow/inductor/154575 -> ciflow/inductor/154575 2025-06-01T20:58:10.4724017Z * [new tag] ciflow/inductor/154586 -> ciflow/inductor/154586 2025-06-01T20:58:10.4724459Z * [new tag] ciflow/inductor/154630 -> ciflow/inductor/154630 2025-06-01T20:58:10.4725097Z * [new tag] ciflow/inductor/154640 -> ciflow/inductor/154640 2025-06-01T20:58:10.4725658Z * [new tag] ciflow/inductor/154650 -> ciflow/inductor/154650 2025-06-01T20:58:10.4726105Z * [new tag] ciflow/inductor/154654 -> ciflow/inductor/154654 2025-06-01T20:58:10.4726592Z * [new tag] ciflow/inductor/154656 -> ciflow/inductor/154656 2025-06-01T20:58:10.4727057Z * [new tag] ciflow/inductor/154667 -> ciflow/inductor/154667 2025-06-01T20:58:10.4737937Z * [new tag] ciflow/inductor/154673 -> ciflow/inductor/154673 2025-06-01T20:58:10.4738529Z * [new tag] ciflow/inductor/154679 -> ciflow/inductor/154679 2025-06-01T20:58:10.4738976Z * [new tag] ciflow/inductor/154688 -> ciflow/inductor/154688 2025-06-01T20:58:10.4739422Z * [new tag] ciflow/inductor/154694 -> ciflow/inductor/154694 2025-06-01T20:58:10.4739877Z * [new tag] ciflow/inductor/154695 -> ciflow/inductor/154695 2025-06-01T20:58:10.4740325Z * [new tag] ciflow/inductor/154698 -> ciflow/inductor/154698 2025-06-01T20:58:10.4740758Z * [new tag] ciflow/inductor/154699 -> ciflow/inductor/154699 2025-06-01T20:58:10.4741202Z * [new tag] ciflow/inductor/154704 -> ciflow/inductor/154704 2025-06-01T20:58:10.4741648Z * [new tag] ciflow/inductor/154737 -> ciflow/inductor/154737 2025-06-01T20:58:10.4742085Z * [new tag] ciflow/inductor/154740 -> ciflow/inductor/154740 2025-06-01T20:58:10.4742525Z * [new tag] ciflow/inductor/154752 -> ciflow/inductor/154752 2025-06-01T20:58:10.4742959Z * [new tag] ciflow/inductor/154753 -> ciflow/inductor/154753 2025-06-01T20:58:10.4743403Z * [new tag] ciflow/inductor/154754 -> ciflow/inductor/154754 2025-06-01T20:58:10.4743894Z * [new tag] ciflow/inductor/154757 -> ciflow/inductor/154757 2025-06-01T20:58:10.4744370Z * [new tag] ciflow/inductor/154761 -> ciflow/inductor/154761 2025-06-01T20:58:10.5042374Z * [new tag] ciflow/inductor/154764 -> ciflow/inductor/154764 2025-06-01T20:58:10.5042918Z * [new tag] ciflow/inductor/154766 -> ciflow/inductor/154766 2025-06-01T20:58:10.5043355Z * [new tag] ciflow/inductor/154768 -> ciflow/inductor/154768 2025-06-01T20:58:10.5043804Z * [new tag] ciflow/inductor/154769 -> ciflow/inductor/154769 2025-06-01T20:58:10.5044244Z * [new tag] ciflow/inductor/154771 -> ciflow/inductor/154771 2025-06-01T20:58:10.5044678Z * [new tag] ciflow/inductor/154772 -> ciflow/inductor/154772 2025-06-01T20:58:10.5045114Z * [new tag] ciflow/inductor/154774 -> ciflow/inductor/154774 2025-06-01T20:58:10.5045569Z * [new tag] ciflow/inductor/154775 -> ciflow/inductor/154775 2025-06-01T20:58:10.5046014Z * [new tag] ciflow/inductor/154776 -> ciflow/inductor/154776 2025-06-01T20:58:10.5046449Z * [new tag] ciflow/inductor/154780 -> ciflow/inductor/154780 2025-06-01T20:58:10.5046894Z * [new tag] ciflow/inductor/154782 -> ciflow/inductor/154782 2025-06-01T20:58:10.5047331Z * [new tag] ciflow/inductor/154783 -> ciflow/inductor/154783 2025-06-01T20:58:10.5047764Z * [new tag] ciflow/inductor/154793 -> ciflow/inductor/154793 2025-06-01T20:58:10.5048208Z * [new tag] ciflow/inductor/154794 -> ciflow/inductor/154794 2025-06-01T20:58:10.5048643Z * [new tag] ciflow/inductor/154804 -> ciflow/inductor/154804 2025-06-01T20:58:10.5049087Z * [new tag] ciflow/inductor/154805 -> ciflow/inductor/154805 2025-06-01T20:58:10.5049731Z * [new tag] ciflow/inductor/3b9a386 -> ciflow/inductor/3b9a386 2025-06-01T20:58:10.5050308Z * [new tag] ciflow/inductor/3d4b92b -> ciflow/inductor/3d4b92b 2025-06-01T20:58:10.5050762Z * [new tag] ciflow/inductor/88106 -> ciflow/inductor/88106 2025-06-01T20:58:10.5051205Z * [new tag] ciflow/inductor/88196 -> ciflow/inductor/88196 2025-06-01T20:58:10.5051640Z * [new tag] ciflow/inductor/88998 -> ciflow/inductor/88998 2025-06-01T20:58:10.5052082Z * [new tag] ciflow/inductor/d224ac7 -> ciflow/inductor/d224ac7 2025-06-01T20:58:10.5052564Z * [new tag] ciflow/linux-aarch64/125888 -> ciflow/linux-aarch64/125888 2025-06-01T20:58:10.5053060Z * [new tag] ciflow/linux-aarch64/126050 -> ciflow/linux-aarch64/126050 2025-06-01T20:58:10.5053607Z * [new tag] ciflow/linux-aarch64/126054 -> ciflow/linux-aarch64/126054 2025-06-01T20:58:10.5054139Z * [new tag] ciflow/linux-aarch64/133297 -> ciflow/linux-aarch64/133297 2025-06-01T20:58:10.5054613Z * [new tag] ciflow/linux-aarch64/133315 -> ciflow/linux-aarch64/133315 2025-06-01T20:58:10.5055088Z * [new tag] ciflow/linux-aarch64/133392 -> ciflow/linux-aarch64/133392 2025-06-01T20:58:10.5055568Z * [new tag] ciflow/linux-aarch64/133419 -> ciflow/linux-aarch64/133419 2025-06-01T20:58:10.5056033Z * [new tag] ciflow/linux-aarch64/133423 -> ciflow/linux-aarch64/133423 2025-06-01T20:58:10.5056513Z * [new tag] ciflow/linux-aarch64/133667 -> ciflow/linux-aarch64/133667 2025-06-01T20:58:10.5056984Z * [new tag] ciflow/linux-aarch64/133753 -> ciflow/linux-aarch64/133753 2025-06-01T20:58:10.5057459Z * [new tag] ciflow/linux-aarch64/135792 -> ciflow/linux-aarch64/135792 2025-06-01T20:58:10.5057937Z * [new tag] ciflow/linux-aarch64/136355 -> ciflow/linux-aarch64/136355 2025-06-01T20:58:10.5058412Z * [new tag] ciflow/linux-aarch64/137568 -> ciflow/linux-aarch64/137568 2025-06-01T20:58:10.5058892Z * [new tag] ciflow/linux-aarch64/138388 -> ciflow/linux-aarch64/138388 2025-06-01T20:58:10.5059358Z * [new tag] ciflow/linux-aarch64/144774 -> ciflow/linux-aarch64/144774 2025-06-01T20:58:10.5059840Z * [new tag] ciflow/linux-aarch64/145260 -> ciflow/linux-aarch64/145260 2025-06-01T20:58:10.5060321Z * [new tag] ciflow/linux-aarch64/147073 -> ciflow/linux-aarch64/147073 2025-06-01T20:58:10.5060789Z * [new tag] ciflow/linux-aarch64/147359 -> ciflow/linux-aarch64/147359 2025-06-01T20:58:10.5061267Z * [new tag] ciflow/linux-aarch64/147763 -> ciflow/linux-aarch64/147763 2025-06-01T20:58:10.5061735Z * [new tag] ciflow/linux-aarch64/147855 -> ciflow/linux-aarch64/147855 2025-06-01T20:58:10.5062216Z * [new tag] ciflow/linux-aarch64/148173 -> ciflow/linux-aarch64/148173 2025-06-01T20:58:10.5062698Z * [new tag] ciflow/linux-aarch64/148424 -> ciflow/linux-aarch64/148424 2025-06-01T20:58:10.5063177Z * [new tag] ciflow/linux-aarch64/150095 -> ciflow/linux-aarch64/150095 2025-06-01T20:58:10.5063655Z * [new tag] ciflow/linux-aarch64/151896 -> ciflow/linux-aarch64/151896 2025-06-01T20:58:10.5064126Z * [new tag] ciflow/linux-aarch64/152001 -> ciflow/linux-aarch64/152001 2025-06-01T20:58:10.5382769Z * [new tag] ciflow/linux-aarch64/152361 -> ciflow/linux-aarch64/152361 2025-06-01T20:58:10.5383274Z * [new tag] ciflow/linux-aarch64/153940 -> ciflow/linux-aarch64/153940 2025-06-01T20:58:10.5383714Z * [new tag] ciflow/mps/102148 -> ciflow/mps/102148 2025-06-01T20:58:10.5384126Z * [new tag] ciflow/mps/119496 -> ciflow/mps/119496 2025-06-01T20:58:10.5384523Z * [new tag] ciflow/mps/120076 -> ciflow/mps/120076 2025-06-01T20:58:10.5385338Z * [new tag] ciflow/mps/133423 -> ciflow/mps/133423 2025-06-01T20:58:10.5385733Z * [new tag] ciflow/mps/133667 -> ciflow/mps/133667 2025-06-01T20:58:10.5386133Z * [new tag] ciflow/mps/145955 -> ciflow/mps/145955 2025-06-01T20:58:10.5386543Z * [new tag] ciflow/mps/146436 -> ciflow/mps/146436 2025-06-01T20:58:10.5386937Z * [new tag] ciflow/mps/147583 -> ciflow/mps/147583 2025-06-01T20:58:10.5387341Z * [new tag] ciflow/mps/148408 -> ciflow/mps/148408 2025-06-01T20:58:10.5387727Z * [new tag] ciflow/mps/148415 -> ciflow/mps/148415 2025-06-01T20:58:10.5388124Z * [new tag] ciflow/mps/149173 -> ciflow/mps/149173 2025-06-01T20:58:10.5388520Z * [new tag] ciflow/mps/149958 -> ciflow/mps/149958 2025-06-01T20:58:10.5388931Z * [new tag] ciflow/mps/150569 -> ciflow/mps/150569 2025-06-01T20:58:10.5389336Z * [new tag] ciflow/mps/150721 -> ciflow/mps/150721 2025-06-01T20:58:10.5389796Z * [new tag] ciflow/mps/150964 -> ciflow/mps/150964 2025-06-01T20:58:10.5390196Z * [new tag] ciflow/mps/151177 -> ciflow/mps/151177 2025-06-01T20:58:10.5390643Z * [new tag] ciflow/mps/151292 -> ciflow/mps/151292 2025-06-01T20:58:10.5391031Z * [new tag] ciflow/mps/151439 -> ciflow/mps/151439 2025-06-01T20:58:10.5391471Z * [new tag] ciflow/mps/151916 -> ciflow/mps/151916 2025-06-01T20:58:10.5391859Z * [new tag] ciflow/mps/152094 -> ciflow/mps/152094 2025-06-01T20:58:10.5392259Z * [new tag] ciflow/mps/152742 -> ciflow/mps/152742 2025-06-01T20:58:10.5392656Z * [new tag] ciflow/mps/152843 -> ciflow/mps/152843 2025-06-01T20:58:10.5393055Z * [new tag] ciflow/mps/153583 -> ciflow/mps/153583 2025-06-01T20:58:10.5393462Z * [new tag] ciflow/mps/153954 -> ciflow/mps/153954 2025-06-01T20:58:10.5393854Z * [new tag] ciflow/mps/153995 -> ciflow/mps/153995 2025-06-01T20:58:10.5394251Z * [new tag] ciflow/mps/154145 -> ciflow/mps/154145 2025-06-01T20:58:10.5394634Z * [new tag] ciflow/mps/154287 -> ciflow/mps/154287 2025-06-01T20:58:10.5395024Z * [new tag] ciflow/mps/154465 -> ciflow/mps/154465 2025-06-01T20:58:10.5395417Z * [new tag] ciflow/mps/154696 -> ciflow/mps/154696 2025-06-01T20:58:10.5395828Z * [new tag] ciflow/nightly/149192 -> ciflow/nightly/149192 2025-06-01T20:58:10.5396265Z * [new tag] ciflow/nightly/151567 -> ciflow/nightly/151567 2025-06-01T20:58:10.5396747Z * [new tag] ciflow/nightly/151581 -> ciflow/nightly/151581 2025-06-01T20:58:10.5397261Z * [new tag] ciflow/op-benchmark/151581 -> ciflow/op-benchmark/151581 2025-06-01T20:58:10.5397736Z * [new tag] ciflow/op-benchmark/151585 -> ciflow/op-benchmark/151585 2025-06-01T20:58:10.5398213Z * [new tag] ciflow/op-benchmark/154410 -> ciflow/op-benchmark/154410 2025-06-01T20:58:10.5398754Z * [new tag] ciflow/periodic-rocm-mi300/150694 -> ciflow/periodic-rocm-mi300/150694 2025-06-01T20:58:10.5399343Z * [new tag] ciflow/periodic-rocm-mi300/151581 -> ciflow/periodic-rocm-mi300/151581 2025-06-01T20:58:10.5399937Z * [new tag] ciflow/periodic-rocm-mi300/153545 -> ciflow/periodic-rocm-mi300/153545 2025-06-01T20:58:10.5400763Z * [new tag] ciflow/periodic/0203f89cc1937e6e97f4533b1a45bdc6c233b3fc -> ciflow/periodic/0203f89cc1937e6e97f4533b1a45bdc6c233b3fc 2025-06-01T20:58:10.5401909Z * [new tag] ciflow/periodic/02cecd101871cdeabc84c031c0d6c465fdd26bf1 -> ciflow/periodic/02cecd101871cdeabc84c031c0d6c465fdd26bf1 2025-06-01T20:58:10.5403132Z * [new tag] ciflow/periodic/053ca7439a0ec3c09a257bbcb31896a62d889f33 -> ciflow/periodic/053ca7439a0ec3c09a257bbcb31896a62d889f33 2025-06-01T20:58:10.5403872Z * [new tag] ciflow/periodic/054a2fd -> ciflow/periodic/054a2fd 2025-06-01T20:58:10.5404346Z * [new tag] ciflow/periodic/123020 -> ciflow/periodic/123020 2025-06-01T20:58:10.5404814Z * [new tag] ciflow/periodic/141309 -> ciflow/periodic/141309 2025-06-01T20:58:10.5405255Z * [new tag] ciflow/periodic/143959 -> ciflow/periodic/143959 2025-06-01T20:58:10.5405696Z * [new tag] ciflow/periodic/148760 -> ciflow/periodic/148760 2025-06-01T20:58:10.5697431Z * [new tag] ciflow/periodic/149192 -> ciflow/periodic/149192 2025-06-01T20:58:10.5698012Z * [new tag] ciflow/periodic/150411 -> ciflow/periodic/150411 2025-06-01T20:58:10.5698487Z * [new tag] ciflow/periodic/150422 -> ciflow/periodic/150422 2025-06-01T20:58:10.5698927Z * [new tag] ciflow/periodic/150434 -> ciflow/periodic/150434 2025-06-01T20:58:10.5699408Z * [new tag] ciflow/periodic/151292 -> ciflow/periodic/151292 2025-06-01T20:58:10.5699881Z * [new tag] ciflow/periodic/151581 -> ciflow/periodic/151581 2025-06-01T20:58:10.5700328Z * [new tag] ciflow/periodic/151585 -> ciflow/periodic/151585 2025-06-01T20:58:10.5700771Z * [new tag] ciflow/periodic/152281 -> ciflow/periodic/152281 2025-06-01T20:58:10.5701204Z * [new tag] ciflow/periodic/154169 -> ciflow/periodic/154169 2025-06-01T20:58:10.5701647Z * [new tag] ciflow/periodic/154293 -> ciflow/periodic/154293 2025-06-01T20:58:10.5702086Z * [new tag] ciflow/periodic/154469 -> ciflow/periodic/154469 2025-06-01T20:58:10.5702544Z * [new tag] ciflow/periodic/154585 -> ciflow/periodic/154585 2025-06-01T20:58:10.5703305Z * [new tag] ciflow/periodic/1f0d764b65d71ff9dd8fb9093063ebfe00ac2d7e -> ciflow/periodic/1f0d764b65d71ff9dd8fb9093063ebfe00ac2d7e 2025-06-01T20:58:10.5704062Z * [new tag] ciflow/periodic/2a6d37d -> ciflow/periodic/2a6d37d 2025-06-01T20:58:10.5704531Z * [new tag] ciflow/periodic/317eeb8 -> ciflow/periodic/317eeb8 2025-06-01T20:58:10.5704972Z * [new tag] ciflow/periodic/3c32 -> ciflow/periodic/3c32 2025-06-01T20:58:10.5705457Z * [new tag] ciflow/periodic/3e98831 -> ciflow/periodic/3e98831 2025-06-01T20:58:10.5706234Z * [new tag] ciflow/periodic/41663739085c57edc4a352c55ed6b23b8e9eb91d -> ciflow/periodic/41663739085c57edc4a352c55ed6b23b8e9eb91d 2025-06-01T20:58:10.5707250Z * [new tag] ciflow/periodic/5dd746b4b58d2e4760f46837b3ecae0090904456 -> ciflow/periodic/5dd746b4b58d2e4760f46837b3ecae0090904456 2025-06-01T20:58:10.5708288Z * [new tag] ciflow/periodic/5f4c8e4c896f9a1d89e1bf9b3bd92b3e7db5c3b9 -> ciflow/periodic/5f4c8e4c896f9a1d89e1bf9b3bd92b3e7db5c3b9 2025-06-01T20:58:10.5709313Z * [new tag] ciflow/periodic/7c63ddd817870bed34d74f921fb384105dfe6677 -> ciflow/periodic/7c63ddd817870bed34d74f921fb384105dfe6677 2025-06-01T20:58:10.5710125Z * [new tag] ciflow/periodic/94512-point -> ciflow/periodic/94512-point 2025-06-01T20:58:10.5710918Z * [new tag] ciflow/periodic/c13eeaa718c985782bd72bf47886430f6203a768 -> ciflow/periodic/c13eeaa718c985782bd72bf47886430f6203a768 2025-06-01T20:58:10.5711733Z * [new tag] ciflow/periodic/csl/test87519 -> ciflow/periodic/csl/test87519 2025-06-01T20:58:10.5712264Z * [new tag] ciflow/periodic/csltest88275 -> ciflow/periodic/csltest88275 2025-06-01T20:58:10.5713162Z * [new tag] ciflow/periodic/csltest88761 -> ciflow/periodic/csltest88761 2025-06-01T20:58:10.5713936Z * [new tag] ciflow/periodic/e2b1c063194b66b40b52d0a9db59b55a5b7dfabd -> ciflow/periodic/e2b1c063194b66b40b52d0a9db59b55a5b7dfabd 2025-06-01T20:58:10.5714965Z * [new tag] ciflow/periodic/ed0dea3e24a2ba4d01043c4cfd27e90655692adc -> ciflow/periodic/ed0dea3e24a2ba4d01043c4cfd27e90655692adc 2025-06-01T20:58:10.5715742Z * [new tag] ciflow/periodic/release_1.12 -> ciflow/periodic/release_1.12 2025-06-01T20:58:10.5716278Z * [new tag] ciflow/periodic/release_1.12.0 -> ciflow/periodic/release_1.12.0 2025-06-01T20:58:10.5716850Z * [new tag] ciflow/periodic/sha-ec5b83 -> ciflow/periodic/sha-ec5b83 2025-06-01T20:58:10.5717344Z * [new tag] ciflow/pull/152484 -> ciflow/pull/152484 2025-06-01T20:58:10.5717795Z * [new tag] ciflow/rocm-mi300/125888 -> ciflow/rocm-mi300/125888 2025-06-01T20:58:10.5718245Z * [new tag] ciflow/rocm-mi300/139975 -> ciflow/rocm-mi300/139975 2025-06-01T20:58:10.5718686Z * [new tag] ciflow/rocm-mi300/151465 -> ciflow/rocm-mi300/151465 2025-06-01T20:58:10.5719137Z * [new tag] ciflow/rocm-mi300/151581 -> ciflow/rocm-mi300/151581 2025-06-01T20:58:10.5719576Z * [new tag] ciflow/rocm-mi300/153545 -> ciflow/rocm-mi300/153545 2025-06-01T20:58:10.5720021Z * [new tag] ciflow/rocm-mi300/154525 -> ciflow/rocm-mi300/154525 2025-06-01T20:58:10.5720452Z * [new tag] ciflow/rocm-mi300/154680 -> ciflow/rocm-mi300/154680 2025-06-01T20:58:10.5720877Z * [new tag] ciflow/rocm/124424 -> ciflow/rocm/124424 2025-06-01T20:58:10.5721272Z * [new tag] ciflow/rocm/125888 -> ciflow/rocm/125888 2025-06-01T20:58:10.5721684Z * [new tag] ciflow/rocm/139975 -> ciflow/rocm/139975 2025-06-01T20:58:10.5722092Z * [new tag] ciflow/rocm/141309 -> ciflow/rocm/141309 2025-06-01T20:58:10.6070159Z * [new tag] ciflow/rocm/145685 -> ciflow/rocm/145685 2025-06-01T20:58:10.6070629Z * [new tag] ciflow/rocm/146903 -> ciflow/rocm/146903 2025-06-01T20:58:10.6071049Z * [new tag] ciflow/rocm/148492 -> ciflow/rocm/148492 2025-06-01T20:58:10.6071451Z * [new tag] ciflow/rocm/148672 -> ciflow/rocm/148672 2025-06-01T20:58:10.6071852Z * [new tag] ciflow/rocm/149039 -> ciflow/rocm/149039 2025-06-01T20:58:10.6072298Z * [new tag] ciflow/rocm/149466 -> ciflow/rocm/149466 2025-06-01T20:58:10.6072730Z * [new tag] ciflow/rocm/149506 -> ciflow/rocm/149506 2025-06-01T20:58:10.6073136Z * [new tag] ciflow/rocm/151305 -> ciflow/rocm/151305 2025-06-01T20:58:10.6073561Z * [new tag] ciflow/rocm/151439 -> ciflow/rocm/151439 2025-06-01T20:58:10.6073976Z * [new tag] ciflow/rocm/151465 -> ciflow/rocm/151465 2025-06-01T20:58:10.6074375Z * [new tag] ciflow/rocm/151581 -> ciflow/rocm/151581 2025-06-01T20:58:10.6074781Z * [new tag] ciflow/rocm/151845 -> ciflow/rocm/151845 2025-06-01T20:58:10.6075175Z * [new tag] ciflow/rocm/153117 -> ciflow/rocm/153117 2025-06-01T20:58:10.6075577Z * [new tag] ciflow/rocm/153287 -> ciflow/rocm/153287 2025-06-01T20:58:10.6075965Z * [new tag] ciflow/rocm/153455 -> ciflow/rocm/153455 2025-06-01T20:58:10.6076363Z * [new tag] ciflow/rocm/153545 -> ciflow/rocm/153545 2025-06-01T20:58:10.6076763Z * [new tag] ciflow/rocm/153548 -> ciflow/rocm/153548 2025-06-01T20:58:10.6077335Z * [new tag] ciflow/rocm/153596 -> ciflow/rocm/153596 2025-06-01T20:58:10.6077870Z * [new tag] ciflow/rocm/153666 -> ciflow/rocm/153666 2025-06-01T20:58:10.6078263Z * [new tag] ciflow/rocm/154525 -> ciflow/rocm/154525 2025-06-01T20:58:10.6078658Z * [new tag] ciflow/s390/142346 -> ciflow/s390/142346 2025-06-01T20:58:10.6079040Z * [new tag] ciflow/s390/143959 -> ciflow/s390/143959 2025-06-01T20:58:10.6079441Z * [new tag] ciflow/s390/150116 -> ciflow/s390/150116 2025-06-01T20:58:10.6079832Z * [new tag] ciflow/s390/151581 -> ciflow/s390/151581 2025-06-01T20:58:10.6080215Z * [new tag] ciflow/s390/151585 -> ciflow/s390/151585 2025-06-01T20:58:10.6080603Z * [new tag] ciflow/s390/152372 -> ciflow/s390/152372 2025-06-01T20:58:10.6080994Z * [new tag] ciflow/slow/01c7106 -> ciflow/slow/01c7106 2025-06-01T20:58:10.6081423Z * [new tag] ciflow/slow/0577043 -> ciflow/slow/0577043 2025-06-01T20:58:10.6082177Z * [new tag] ciflow/slow/0d5b74da0cab798fbfdb9caa53fad816999c8386-sdym -> ciflow/slow/0d5b74da0cab798fbfdb9caa53fad816999c8386-sdym 2025-06-01T20:58:10.6082974Z * [new tag] ciflow/slow/0e81104 -> ciflow/slow/0e81104 2025-06-01T20:58:10.6083388Z * [new tag] ciflow/slow/139975 -> ciflow/slow/139975 2025-06-01T20:58:10.6083780Z * [new tag] ciflow/slow/149192 -> ciflow/slow/149192 2025-06-01T20:58:10.6084184Z * [new tag] ciflow/slow/151581 -> ciflow/slow/151581 2025-06-01T20:58:10.6084590Z * [new tag] ciflow/slow/151585 -> ciflow/slow/151585 2025-06-01T20:58:10.6084982Z * [new tag] ciflow/slow/154347 -> ciflow/slow/154347 2025-06-01T20:58:10.6085385Z * [new tag] ciflow/slow/154469 -> ciflow/slow/154469 2025-06-01T20:58:10.6085778Z * [new tag] ciflow/slow/154783 -> ciflow/slow/154783 2025-06-01T20:58:10.6086180Z * [new tag] ciflow/slow/154809 -> ciflow/slow/154809 2025-06-01T20:58:10.6086571Z * [new tag] ciflow/slow/1732077 -> ciflow/slow/1732077 2025-06-01T20:58:10.6086991Z * [new tag] ciflow/slow/187eb7c -> ciflow/slow/187eb7c 2025-06-01T20:58:10.6087402Z * [new tag] ciflow/slow/1faef89 -> ciflow/slow/1faef89 2025-06-01T20:58:10.6087803Z * [new tag] ciflow/slow/3920ec1 -> ciflow/slow/3920ec1 2025-06-01T20:58:10.6088208Z * [new tag] ciflow/slow/3b7c6b2 -> ciflow/slow/3b7c6b2 2025-06-01T20:58:10.6088878Z * [new tag] ciflow/slow/4863e5c843722eb2a34fb0ca1d518a33431a38c0 -> ciflow/slow/4863e5c843722eb2a34fb0ca1d518a33431a38c0 2025-06-01T20:58:10.6089563Z * [new tag] ciflow/slow/59a3759 -> ciflow/slow/59a3759 2025-06-01T20:58:10.6089987Z * [new tag] ciflow/slow/70ef0bb -> ciflow/slow/70ef0bb 2025-06-01T20:58:10.6090396Z * [new tag] ciflow/slow/788ff06 -> ciflow/slow/788ff06 2025-06-01T20:58:10.6091104Z * [new tag] ciflow/slow/8751002215790a3a88750faa8f4366933e296693-sdym -> ciflow/slow/8751002215790a3a88750faa8f4366933e296693-sdym 2025-06-01T20:58:10.6091799Z * [new tag] ciflow/slow/9d85864 -> ciflow/slow/9d85864 2025-06-01T20:58:10.6416232Z * [new tag] ciflow/slow/9ffad5b -> ciflow/slow/9ffad5b 2025-06-01T20:58:10.6416689Z * [new tag] ciflow/slow/a206e8b -> ciflow/slow/a206e8b 2025-06-01T20:58:10.6417097Z * [new tag] ciflow/slow/a837609 -> ciflow/slow/a837609 2025-06-01T20:58:10.6417543Z * [new tag] ciflow/slow/af841f3 -> ciflow/slow/af841f3 2025-06-01T20:58:10.6418648Z * [new tag] ciflow/slow/da3aba1e46157c4df504b067477cdf2b3c96b194-sdym -> ciflow/slow/da3aba1e46157c4df504b067477cdf2b3c96b194-sdym 2025-06-01T20:58:10.6419394Z * [new tag] ciflow/torchao/149192 -> ciflow/torchao/149192 2025-06-01T20:58:10.6419855Z * [new tag] ciflow/torchbench/151581 -> ciflow/torchbench/151581 2025-06-01T20:58:10.6420317Z * [new tag] ciflow/torchbench/151585 -> ciflow/torchbench/151585 2025-06-01T20:58:10.6420789Z * [new tag] ciflow/torchbench/154665 -> ciflow/torchbench/154665 2025-06-01T20:58:10.6421271Z * [new tag] ciflow/trunk/101814 -> ciflow/trunk/101814 2025-06-01T20:58:10.6421673Z * [new tag] ciflow/trunk/108303 -> ciflow/trunk/108303 2025-06-01T20:58:10.6422081Z * [new tag] ciflow/trunk/113258 -> ciflow/trunk/113258 2025-06-01T20:58:10.6422484Z * [new tag] ciflow/trunk/120076 -> ciflow/trunk/120076 2025-06-01T20:58:10.6422890Z * [new tag] ciflow/trunk/121445 -> ciflow/trunk/121445 2025-06-01T20:58:10.6423329Z * [new tag] ciflow/trunk/123020 -> ciflow/trunk/123020 2025-06-01T20:58:10.6423774Z * [new tag] ciflow/trunk/124424 -> ciflow/trunk/124424 2025-06-01T20:58:10.6424178Z * [new tag] ciflow/trunk/124490 -> ciflow/trunk/124490 2025-06-01T20:58:10.6424573Z * [new tag] ciflow/trunk/125888 -> ciflow/trunk/125888 2025-06-01T20:58:10.6424976Z * [new tag] ciflow/trunk/125995 -> ciflow/trunk/125995 2025-06-01T20:58:10.6425371Z * [new tag] ciflow/trunk/126050 -> ciflow/trunk/126050 2025-06-01T20:58:10.6425783Z * [new tag] ciflow/trunk/126054 -> ciflow/trunk/126054 2025-06-01T20:58:10.6426183Z * [new tag] ciflow/trunk/127171 -> ciflow/trunk/127171 2025-06-01T20:58:10.6426590Z * [new tag] ciflow/trunk/127919 -> ciflow/trunk/127919 2025-06-01T20:58:10.6426997Z * [new tag] ciflow/trunk/129352 -> ciflow/trunk/129352 2025-06-01T20:58:10.6427396Z * [new tag] ciflow/trunk/130752 -> ciflow/trunk/130752 2025-06-01T20:58:10.6427798Z * [new tag] ciflow/trunk/133044 -> ciflow/trunk/133044 2025-06-01T20:58:10.6428204Z * [new tag] ciflow/trunk/133289 -> ciflow/trunk/133289 2025-06-01T20:58:10.6428609Z * [new tag] ciflow/trunk/133296 -> ciflow/trunk/133296 2025-06-01T20:58:10.6429059Z * [new tag] ciflow/trunk/133297 -> ciflow/trunk/133297 2025-06-01T20:58:10.6429599Z * [new tag] ciflow/trunk/133315 -> ciflow/trunk/133315 2025-06-01T20:58:10.6430054Z * [new tag] ciflow/trunk/133392 -> ciflow/trunk/133392 2025-06-01T20:58:10.6430501Z * [new tag] ciflow/trunk/133419 -> ciflow/trunk/133419 2025-06-01T20:58:10.6430956Z * [new tag] ciflow/trunk/133423 -> ciflow/trunk/133423 2025-06-01T20:58:10.6431358Z * [new tag] ciflow/trunk/133667 -> ciflow/trunk/133667 2025-06-01T20:58:10.6431752Z * [new tag] ciflow/trunk/133753 -> ciflow/trunk/133753 2025-06-01T20:58:10.6432159Z * [new tag] ciflow/trunk/135631 -> ciflow/trunk/135631 2025-06-01T20:58:10.6432556Z * [new tag] ciflow/trunk/136824 -> ciflow/trunk/136824 2025-06-01T20:58:10.6432958Z * [new tag] ciflow/trunk/137400 -> ciflow/trunk/137400 2025-06-01T20:58:10.6433352Z * [new tag] ciflow/trunk/138436 -> ciflow/trunk/138436 2025-06-01T20:58:10.6433758Z * [new tag] ciflow/trunk/138626 -> ciflow/trunk/138626 2025-06-01T20:58:10.6434295Z * [new tag] ciflow/trunk/138684 -> ciflow/trunk/138684 2025-06-01T20:58:10.6434813Z * [new tag] ciflow/trunk/138834 -> ciflow/trunk/138834 2025-06-01T20:58:10.6435229Z * [new tag] ciflow/trunk/138996 -> ciflow/trunk/138996 2025-06-01T20:58:10.6435632Z * [new tag] ciflow/trunk/139171 -> ciflow/trunk/139171 2025-06-01T20:58:10.6436086Z * [new tag] ciflow/trunk/139971 -> ciflow/trunk/139971 2025-06-01T20:58:10.6436529Z * [new tag] ciflow/trunk/139975 -> ciflow/trunk/139975 2025-06-01T20:58:10.6436965Z * [new tag] ciflow/trunk/140756 -> ciflow/trunk/140756 2025-06-01T20:58:10.6437408Z * [new tag] ciflow/trunk/140979 -> ciflow/trunk/140979 2025-06-01T20:58:10.6437808Z * [new tag] ciflow/trunk/141309 -> ciflow/trunk/141309 2025-06-01T20:58:10.6438216Z * [new tag] ciflow/trunk/141842 -> ciflow/trunk/141842 2025-06-01T20:58:10.6438627Z * [new tag] ciflow/trunk/141961 -> ciflow/trunk/141961 2025-06-01T20:58:10.6761649Z * [new tag] ciflow/trunk/142346 -> ciflow/trunk/142346 2025-06-01T20:58:10.6762138Z * [new tag] ciflow/trunk/143712 -> ciflow/trunk/143712 2025-06-01T20:58:10.6762541Z * [new tag] ciflow/trunk/143896 -> ciflow/trunk/143896 2025-06-01T20:58:10.6762963Z * [new tag] ciflow/trunk/144468 -> ciflow/trunk/144468 2025-06-01T20:58:10.6763377Z * [new tag] ciflow/trunk/144557 -> ciflow/trunk/144557 2025-06-01T20:58:10.6763773Z * [new tag] ciflow/trunk/144756 -> ciflow/trunk/144756 2025-06-01T20:58:10.6764193Z * [new tag] ciflow/trunk/144925 -> ciflow/trunk/144925 2025-06-01T20:58:10.6764590Z * [new tag] ciflow/trunk/144992 -> ciflow/trunk/144992 2025-06-01T20:58:10.6765010Z * [new tag] ciflow/trunk/145136 -> ciflow/trunk/145136 2025-06-01T20:58:10.6765414Z * [new tag] ciflow/trunk/145153 -> ciflow/trunk/145153 2025-06-01T20:58:10.6765810Z * [new tag] ciflow/trunk/145719 -> ciflow/trunk/145719 2025-06-01T20:58:10.6766264Z * [new tag] ciflow/trunk/146055 -> ciflow/trunk/146055 2025-06-01T20:58:10.6766698Z * [new tag] ciflow/trunk/146289 -> ciflow/trunk/146289 2025-06-01T20:58:10.6767106Z * [new tag] ciflow/trunk/146335 -> ciflow/trunk/146335 2025-06-01T20:58:10.6767501Z * [new tag] ciflow/trunk/146622 -> ciflow/trunk/146622 2025-06-01T20:58:10.6767902Z * [new tag] ciflow/trunk/146777 -> ciflow/trunk/146777 2025-06-01T20:58:10.6768298Z * [new tag] ciflow/trunk/146845 -> ciflow/trunk/146845 2025-06-01T20:58:10.6768703Z * [new tag] ciflow/trunk/146874 -> ciflow/trunk/146874 2025-06-01T20:58:10.6769114Z * [new tag] ciflow/trunk/146903 -> ciflow/trunk/146903 2025-06-01T20:58:10.6769518Z * [new tag] ciflow/trunk/147053 -> ciflow/trunk/147053 2025-06-01T20:58:10.6769919Z * [new tag] ciflow/trunk/147095 -> ciflow/trunk/147095 2025-06-01T20:58:10.6770320Z * [new tag] ciflow/trunk/147368 -> ciflow/trunk/147368 2025-06-01T20:58:10.6770715Z * [new tag] ciflow/trunk/147433 -> ciflow/trunk/147433 2025-06-01T20:58:10.6771125Z * [new tag] ciflow/trunk/147583 -> ciflow/trunk/147583 2025-06-01T20:58:10.6771520Z * [new tag] ciflow/trunk/147670 -> ciflow/trunk/147670 2025-06-01T20:58:10.6771959Z * [new tag] ciflow/trunk/147758 -> ciflow/trunk/147758 2025-06-01T20:58:10.6772552Z * [new tag] ciflow/trunk/147881 -> ciflow/trunk/147881 2025-06-01T20:58:10.6773063Z * [new tag] ciflow/trunk/148140 -> ciflow/trunk/148140 2025-06-01T20:58:10.6773474Z * [new tag] ciflow/trunk/148173 -> ciflow/trunk/148173 2025-06-01T20:58:10.6773871Z * [new tag] ciflow/trunk/148180 -> ciflow/trunk/148180 2025-06-01T20:58:10.6774280Z * [new tag] ciflow/trunk/148328 -> ciflow/trunk/148328 2025-06-01T20:58:10.6774674Z * [new tag] ciflow/trunk/148419 -> ciflow/trunk/148419 2025-06-01T20:58:10.6775076Z * [new tag] ciflow/trunk/148424 -> ciflow/trunk/148424 2025-06-01T20:58:10.6775479Z * [new tag] ciflow/trunk/148492 -> ciflow/trunk/148492 2025-06-01T20:58:10.6775877Z * [new tag] ciflow/trunk/148605 -> ciflow/trunk/148605 2025-06-01T20:58:10.6776283Z * [new tag] ciflow/trunk/148628 -> ciflow/trunk/148628 2025-06-01T20:58:10.6776693Z * [new tag] ciflow/trunk/148753 -> ciflow/trunk/148753 2025-06-01T20:58:10.6777097Z * [new tag] ciflow/trunk/148900 -> ciflow/trunk/148900 2025-06-01T20:58:10.6777500Z * [new tag] ciflow/trunk/148903 -> ciflow/trunk/148903 2025-06-01T20:58:10.6777950Z * [new tag] ciflow/trunk/148919 -> ciflow/trunk/148919 2025-06-01T20:58:10.6778394Z * [new tag] ciflow/trunk/149069 -> ciflow/trunk/149069 2025-06-01T20:58:10.6778795Z * [new tag] ciflow/trunk/149114 -> ciflow/trunk/149114 2025-06-01T20:58:10.6779199Z * [new tag] ciflow/trunk/149122 -> ciflow/trunk/149122 2025-06-01T20:58:10.6779602Z * [new tag] ciflow/trunk/149150 -> ciflow/trunk/149150 2025-06-01T20:58:10.6780009Z * [new tag] ciflow/trunk/149192 -> ciflow/trunk/149192 2025-06-01T20:58:10.6780415Z * [new tag] ciflow/trunk/149282 -> ciflow/trunk/149282 2025-06-01T20:58:10.6780820Z * [new tag] ciflow/trunk/149330 -> ciflow/trunk/149330 2025-06-01T20:58:10.6781229Z * [new tag] ciflow/trunk/149338 -> ciflow/trunk/149338 2025-06-01T20:58:10.6781626Z * [new tag] ciflow/trunk/149348 -> ciflow/trunk/149348 2025-06-01T20:58:10.6782032Z * [new tag] ciflow/trunk/149362 -> ciflow/trunk/149362 2025-06-01T20:58:10.6782445Z * [new tag] ciflow/trunk/149427 -> ciflow/trunk/149427 2025-06-01T20:58:10.7110571Z * [new tag] ciflow/trunk/149486 -> ciflow/trunk/149486 2025-06-01T20:58:10.7111005Z * [new tag] ciflow/trunk/149602 -> ciflow/trunk/149602 2025-06-01T20:58:10.7111429Z * [new tag] ciflow/trunk/149744 -> ciflow/trunk/149744 2025-06-01T20:58:10.7111854Z * [new tag] ciflow/trunk/149769 -> ciflow/trunk/149769 2025-06-01T20:58:10.7112268Z * [new tag] ciflow/trunk/149814 -> ciflow/trunk/149814 2025-06-01T20:58:10.7112668Z * [new tag] ciflow/trunk/149949 -> ciflow/trunk/149949 2025-06-01T20:58:10.7113077Z * [new tag] ciflow/trunk/149958 -> ciflow/trunk/149958 2025-06-01T20:58:10.7113471Z * [new tag] ciflow/trunk/149961 -> ciflow/trunk/149961 2025-06-01T20:58:10.7113875Z * [new tag] ciflow/trunk/149967 -> ciflow/trunk/149967 2025-06-01T20:58:10.7114279Z * [new tag] ciflow/trunk/150095 -> ciflow/trunk/150095 2025-06-01T20:58:10.7114672Z * [new tag] ciflow/trunk/150105 -> ciflow/trunk/150105 2025-06-01T20:58:10.7115076Z * [new tag] ciflow/trunk/150116 -> ciflow/trunk/150116 2025-06-01T20:58:10.7115473Z * [new tag] ciflow/trunk/150227 -> ciflow/trunk/150227 2025-06-01T20:58:10.7116165Z * [new tag] ciflow/trunk/150338 -> ciflow/trunk/150338 2025-06-01T20:58:10.7116574Z * [new tag] ciflow/trunk/150365 -> ciflow/trunk/150365 2025-06-01T20:58:10.7116984Z * [new tag] ciflow/trunk/150383 -> ciflow/trunk/150383 2025-06-01T20:58:10.7117391Z * [new tag] ciflow/trunk/150415 -> ciflow/trunk/150415 2025-06-01T20:58:10.7117789Z * [new tag] ciflow/trunk/150429 -> ciflow/trunk/150429 2025-06-01T20:58:10.7118199Z * [new tag] ciflow/trunk/150474 -> ciflow/trunk/150474 2025-06-01T20:58:10.7118603Z * [new tag] ciflow/trunk/150546 -> ciflow/trunk/150546 2025-06-01T20:58:10.7119009Z * [new tag] ciflow/trunk/150552 -> ciflow/trunk/150552 2025-06-01T20:58:10.7119413Z * [new tag] ciflow/trunk/150583 -> ciflow/trunk/150583 2025-06-01T20:58:10.7119822Z * [new tag] ciflow/trunk/150669 -> ciflow/trunk/150669 2025-06-01T20:58:10.7120234Z * [new tag] ciflow/trunk/150678 -> ciflow/trunk/150678 2025-06-01T20:58:10.7120628Z * [new tag] ciflow/trunk/150717 -> ciflow/trunk/150717 2025-06-01T20:58:10.7121041Z * [new tag] ciflow/trunk/150719 -> ciflow/trunk/150719 2025-06-01T20:58:10.7121445Z * [new tag] ciflow/trunk/150937 -> ciflow/trunk/150937 2025-06-01T20:58:10.7121856Z * [new tag] ciflow/trunk/150954 -> ciflow/trunk/150954 2025-06-01T20:58:10.7122259Z * [new tag] ciflow/trunk/150979 -> ciflow/trunk/150979 2025-06-01T20:58:10.7122655Z * [new tag] ciflow/trunk/151125 -> ciflow/trunk/151125 2025-06-01T20:58:10.7123066Z * [new tag] ciflow/trunk/151146 -> ciflow/trunk/151146 2025-06-01T20:58:10.7123470Z * [new tag] ciflow/trunk/151150 -> ciflow/trunk/151150 2025-06-01T20:58:10.7123885Z * [new tag] ciflow/trunk/151177 -> ciflow/trunk/151177 2025-06-01T20:58:10.7124288Z * [new tag] ciflow/trunk/151292 -> ciflow/trunk/151292 2025-06-01T20:58:10.7124686Z * [new tag] ciflow/trunk/151305 -> ciflow/trunk/151305 2025-06-01T20:58:10.7125092Z * [new tag] ciflow/trunk/151315 -> ciflow/trunk/151315 2025-06-01T20:58:10.7125486Z * [new tag] ciflow/trunk/151439 -> ciflow/trunk/151439 2025-06-01T20:58:10.7125899Z * [new tag] ciflow/trunk/151456 -> ciflow/trunk/151456 2025-06-01T20:58:10.7126295Z * [new tag] ciflow/trunk/151473 -> ciflow/trunk/151473 2025-06-01T20:58:10.7126700Z * [new tag] ciflow/trunk/151481 -> ciflow/trunk/151481 2025-06-01T20:58:10.7127105Z * [new tag] ciflow/trunk/151497 -> ciflow/trunk/151497 2025-06-01T20:58:10.7127512Z * [new tag] ciflow/trunk/151527 -> ciflow/trunk/151527 2025-06-01T20:58:10.7127918Z * [new tag] ciflow/trunk/151547 -> ciflow/trunk/151547 2025-06-01T20:58:10.7128320Z * [new tag] ciflow/trunk/151557 -> ciflow/trunk/151557 2025-06-01T20:58:10.7128727Z * [new tag] ciflow/trunk/151567 -> ciflow/trunk/151567 2025-06-01T20:58:10.7129146Z * [new tag] ciflow/trunk/151581 -> ciflow/trunk/151581 2025-06-01T20:58:10.7129549Z * [new tag] ciflow/trunk/151585 -> ciflow/trunk/151585 2025-06-01T20:58:10.7129958Z * [new tag] ciflow/trunk/151596 -> ciflow/trunk/151596 2025-06-01T20:58:10.7130358Z * [new tag] ciflow/trunk/151647 -> ciflow/trunk/151647 2025-06-01T20:58:10.7130763Z * [new tag] ciflow/trunk/151676 -> ciflow/trunk/151676 2025-06-01T20:58:10.7131293Z * [new tag] ciflow/trunk/151752 -> ciflow/trunk/151752 2025-06-01T20:58:10.7473689Z * [new tag] ciflow/trunk/151774 -> ciflow/trunk/151774 2025-06-01T20:58:10.7474252Z * [new tag] ciflow/trunk/151777 -> ciflow/trunk/151777 2025-06-01T20:58:10.7474657Z * [new tag] ciflow/trunk/151795 -> ciflow/trunk/151795 2025-06-01T20:58:10.7475067Z * [new tag] ciflow/trunk/151845 -> ciflow/trunk/151845 2025-06-01T20:58:10.7475484Z * [new tag] ciflow/trunk/151860 -> ciflow/trunk/151860 2025-06-01T20:58:10.7475888Z * [new tag] ciflow/trunk/151896 -> ciflow/trunk/151896 2025-06-01T20:58:10.7476299Z * [new tag] ciflow/trunk/151924 -> ciflow/trunk/151924 2025-06-01T20:58:10.7476700Z * [new tag] ciflow/trunk/152023 -> ciflow/trunk/152023 2025-06-01T20:58:10.7477125Z * [new tag] ciflow/trunk/152026 -> ciflow/trunk/152026 2025-06-01T20:58:10.7477537Z * [new tag] ciflow/trunk/152091 -> ciflow/trunk/152091 2025-06-01T20:58:10.7477936Z * [new tag] ciflow/trunk/152197 -> ciflow/trunk/152197 2025-06-01T20:58:10.7478354Z * [new tag] ciflow/trunk/152348 -> ciflow/trunk/152348 2025-06-01T20:58:10.7478747Z * [new tag] ciflow/trunk/152353 -> ciflow/trunk/152353 2025-06-01T20:58:10.7479166Z * [new tag] ciflow/trunk/152372 -> ciflow/trunk/152372 2025-06-01T20:58:10.7479560Z * [new tag] ciflow/trunk/152373 -> ciflow/trunk/152373 2025-06-01T20:58:10.7480013Z * [new tag] ciflow/trunk/152394 -> ciflow/trunk/152394 2025-06-01T20:58:10.7480451Z * [new tag] ciflow/trunk/152424 -> ciflow/trunk/152424 2025-06-01T20:58:10.7480886Z * [new tag] ciflow/trunk/152450 -> ciflow/trunk/152450 2025-06-01T20:58:10.7481302Z * [new tag] ciflow/trunk/152453 -> ciflow/trunk/152453 2025-06-01T20:58:10.7481696Z * [new tag] ciflow/trunk/152477 -> ciflow/trunk/152477 2025-06-01T20:58:10.7482099Z * [new tag] ciflow/trunk/152484 -> ciflow/trunk/152484 2025-06-01T20:58:10.7482500Z * [new tag] ciflow/trunk/152493 -> ciflow/trunk/152493 2025-06-01T20:58:10.7482899Z * [new tag] ciflow/trunk/152495 -> ciflow/trunk/152495 2025-06-01T20:58:10.7483302Z * [new tag] ciflow/trunk/152509 -> ciflow/trunk/152509 2025-06-01T20:58:10.7483708Z * [new tag] ciflow/trunk/152539 -> ciflow/trunk/152539 2025-06-01T20:58:10.7484114Z * [new tag] ciflow/trunk/152557 -> ciflow/trunk/152557 2025-06-01T20:58:10.7484516Z * [new tag] ciflow/trunk/152624 -> ciflow/trunk/152624 2025-06-01T20:58:10.7484932Z * [new tag] ciflow/trunk/152630 -> ciflow/trunk/152630 2025-06-01T20:58:10.7485345Z * [new tag] ciflow/trunk/152729 -> ciflow/trunk/152729 2025-06-01T20:58:10.7485743Z * [new tag] ciflow/trunk/152748 -> ciflow/trunk/152748 2025-06-01T20:58:10.7486149Z * [new tag] ciflow/trunk/152806 -> ciflow/trunk/152806 2025-06-01T20:58:10.7486546Z * [new tag] ciflow/trunk/152908 -> ciflow/trunk/152908 2025-06-01T20:58:10.7486954Z * [new tag] ciflow/trunk/152981 -> ciflow/trunk/152981 2025-06-01T20:58:10.7487353Z * [new tag] ciflow/trunk/152986 -> ciflow/trunk/152986 2025-06-01T20:58:10.7487762Z * [new tag] ciflow/trunk/153117 -> ciflow/trunk/153117 2025-06-01T20:58:10.7488174Z * [new tag] ciflow/trunk/153165 -> ciflow/trunk/153165 2025-06-01T20:58:10.7488740Z * [new tag] ciflow/trunk/153213 -> ciflow/trunk/153213 2025-06-01T20:58:10.7489259Z * [new tag] ciflow/trunk/153228 -> ciflow/trunk/153228 2025-06-01T20:58:10.7489663Z * [new tag] ciflow/trunk/153287 -> ciflow/trunk/153287 2025-06-01T20:58:10.7490062Z * [new tag] ciflow/trunk/153322 -> ciflow/trunk/153322 2025-06-01T20:58:10.7490484Z * [new tag] ciflow/trunk/153373 -> ciflow/trunk/153373 2025-06-01T20:58:10.7490890Z * [new tag] ciflow/trunk/153407 -> ciflow/trunk/153407 2025-06-01T20:58:10.7491311Z * [new tag] ciflow/trunk/153409 -> ciflow/trunk/153409 2025-06-01T20:58:10.7491708Z * [new tag] ciflow/trunk/153436 -> ciflow/trunk/153436 2025-06-01T20:58:10.7492111Z * [new tag] ciflow/trunk/153473 -> ciflow/trunk/153473 2025-06-01T20:58:10.7492525Z * [new tag] ciflow/trunk/153499 -> ciflow/trunk/153499 2025-06-01T20:58:10.7492930Z * [new tag] ciflow/trunk/153515 -> ciflow/trunk/153515 2025-06-01T20:58:10.7493336Z * [new tag] ciflow/trunk/153538 -> ciflow/trunk/153538 2025-06-01T20:58:10.7493730Z * [new tag] ciflow/trunk/153540 -> ciflow/trunk/153540 2025-06-01T20:58:10.7494136Z * [new tag] ciflow/trunk/153541 -> ciflow/trunk/153541 2025-06-01T20:58:10.7494544Z * [new tag] ciflow/trunk/153547 -> ciflow/trunk/153547 2025-06-01T20:58:10.7822013Z * [new tag] ciflow/trunk/153548 -> ciflow/trunk/153548 2025-06-01T20:58:10.7822445Z * [new tag] ciflow/trunk/153567 -> ciflow/trunk/153567 2025-06-01T20:58:10.7822864Z * [new tag] ciflow/trunk/153596 -> ciflow/trunk/153596 2025-06-01T20:58:10.7823287Z * [new tag] ciflow/trunk/153651 -> ciflow/trunk/153651 2025-06-01T20:58:10.7823711Z * [new tag] ciflow/trunk/153662 -> ciflow/trunk/153662 2025-06-01T20:58:10.7824115Z * [new tag] ciflow/trunk/153672 -> ciflow/trunk/153672 2025-06-01T20:58:10.7824520Z * [new tag] ciflow/trunk/153675 -> ciflow/trunk/153675 2025-06-01T20:58:10.7824921Z * [new tag] ciflow/trunk/153683 -> ciflow/trunk/153683 2025-06-01T20:58:10.7825331Z * [new tag] ciflow/trunk/153684 -> ciflow/trunk/153684 2025-06-01T20:58:10.7825736Z * [new tag] ciflow/trunk/153724 -> ciflow/trunk/153724 2025-06-01T20:58:10.7826132Z * [new tag] ciflow/trunk/153738 -> ciflow/trunk/153738 2025-06-01T20:58:10.7826542Z * [new tag] ciflow/trunk/153780 -> ciflow/trunk/153780 2025-06-01T20:58:10.7826941Z * [new tag] ciflow/trunk/153783 -> ciflow/trunk/153783 2025-06-01T20:58:10.7827354Z * [new tag] ciflow/trunk/153792 -> ciflow/trunk/153792 2025-06-01T20:58:10.7827754Z * [new tag] ciflow/trunk/153802 -> ciflow/trunk/153802 2025-06-01T20:58:10.7828158Z * [new tag] ciflow/trunk/153831 -> ciflow/trunk/153831 2025-06-01T20:58:10.7828561Z * [new tag] ciflow/trunk/153834 -> ciflow/trunk/153834 2025-06-01T20:58:10.7828961Z * [new tag] ciflow/trunk/153835 -> ciflow/trunk/153835 2025-06-01T20:58:10.7829431Z * [new tag] ciflow/trunk/153855 -> ciflow/trunk/153855 2025-06-01T20:58:10.7829833Z * [new tag] ciflow/trunk/153862 -> ciflow/trunk/153862 2025-06-01T20:58:10.7830236Z * [new tag] ciflow/trunk/153921 -> ciflow/trunk/153921 2025-06-01T20:58:10.7830642Z * [new tag] ciflow/trunk/153972 -> ciflow/trunk/153972 2025-06-01T20:58:10.7831200Z * [new tag] ciflow/trunk/153977 -> ciflow/trunk/153977 2025-06-01T20:58:10.7831720Z * [new tag] ciflow/trunk/154013 -> ciflow/trunk/154013 2025-06-01T20:58:10.7832118Z * [new tag] ciflow/trunk/154047 -> ciflow/trunk/154047 2025-06-01T20:58:10.7832520Z * [new tag] ciflow/trunk/154075 -> ciflow/trunk/154075 2025-06-01T20:58:10.7832920Z * [new tag] ciflow/trunk/154100 -> ciflow/trunk/154100 2025-06-01T20:58:10.7833333Z * [new tag] ciflow/trunk/154129 -> ciflow/trunk/154129 2025-06-01T20:58:10.7833749Z * [new tag] ciflow/trunk/154132 -> ciflow/trunk/154132 2025-06-01T20:58:10.7834148Z * [new tag] ciflow/trunk/154142 -> ciflow/trunk/154142 2025-06-01T20:58:10.7834561Z * [new tag] ciflow/trunk/154145 -> ciflow/trunk/154145 2025-06-01T20:58:10.7834960Z * [new tag] ciflow/trunk/154149 -> ciflow/trunk/154149 2025-06-01T20:58:10.7835380Z * [new tag] ciflow/trunk/154159 -> ciflow/trunk/154159 2025-06-01T20:58:10.7835790Z * [new tag] ciflow/trunk/154165 -> ciflow/trunk/154165 2025-06-01T20:58:10.7836191Z * [new tag] ciflow/trunk/154169 -> ciflow/trunk/154169 2025-06-01T20:58:10.7836604Z * [new tag] ciflow/trunk/154198 -> ciflow/trunk/154198 2025-06-01T20:58:10.7837003Z * [new tag] ciflow/trunk/154203 -> ciflow/trunk/154203 2025-06-01T20:58:10.7837411Z * [new tag] ciflow/trunk/154292 -> ciflow/trunk/154292 2025-06-01T20:58:10.7837823Z * [new tag] ciflow/trunk/154293 -> ciflow/trunk/154293 2025-06-01T20:58:10.7838231Z * [new tag] ciflow/trunk/154298 -> ciflow/trunk/154298 2025-06-01T20:58:10.7838638Z * [new tag] ciflow/trunk/154314 -> ciflow/trunk/154314 2025-06-01T20:58:10.7839038Z * [new tag] ciflow/trunk/154320 -> ciflow/trunk/154320 2025-06-01T20:58:10.7839453Z * [new tag] ciflow/trunk/154343 -> ciflow/trunk/154343 2025-06-01T20:58:10.7839857Z * [new tag] ciflow/trunk/154347 -> ciflow/trunk/154347 2025-06-01T20:58:10.7840270Z * [new tag] ciflow/trunk/154348 -> ciflow/trunk/154348 2025-06-01T20:58:10.7840682Z * [new tag] ciflow/trunk/154353 -> ciflow/trunk/154353 2025-06-01T20:58:10.7841086Z * [new tag] ciflow/trunk/154406 -> ciflow/trunk/154406 2025-06-01T20:58:10.7841495Z * [new tag] ciflow/trunk/154447 -> ciflow/trunk/154447 2025-06-01T20:58:10.7841892Z * [new tag] ciflow/trunk/154464 -> ciflow/trunk/154464 2025-06-01T20:58:10.7842299Z * [new tag] ciflow/trunk/154469 -> ciflow/trunk/154469 2025-06-01T20:58:10.7842704Z * [new tag] ciflow/trunk/154514 -> ciflow/trunk/154514 2025-06-01T20:58:10.8196661Z * [new tag] ciflow/trunk/154525 -> ciflow/trunk/154525 2025-06-01T20:58:10.8197149Z * [new tag] ciflow/trunk/154533 -> ciflow/trunk/154533 2025-06-01T20:58:10.8197591Z * [new tag] ciflow/trunk/154538 -> ciflow/trunk/154538 2025-06-01T20:58:10.8197998Z * [new tag] ciflow/trunk/154555 -> ciflow/trunk/154555 2025-06-01T20:58:10.8198413Z * [new tag] ciflow/trunk/154568 -> ciflow/trunk/154568 2025-06-01T20:58:10.8198815Z * [new tag] ciflow/trunk/154585 -> ciflow/trunk/154585 2025-06-01T20:58:10.8199222Z * [new tag] ciflow/trunk/154589 -> ciflow/trunk/154589 2025-06-01T20:58:10.8199622Z * [new tag] ciflow/trunk/154594 -> ciflow/trunk/154594 2025-06-01T20:58:10.8200029Z * [new tag] ciflow/trunk/154610 -> ciflow/trunk/154610 2025-06-01T20:58:10.8200803Z * [new tag] ciflow/trunk/154630 -> ciflow/trunk/154630 2025-06-01T20:58:10.8201207Z * [new tag] ciflow/trunk/154631 -> ciflow/trunk/154631 2025-06-01T20:58:10.8201616Z * [new tag] ciflow/trunk/154636 -> ciflow/trunk/154636 2025-06-01T20:58:10.8202015Z * [new tag] ciflow/trunk/154640 -> ciflow/trunk/154640 2025-06-01T20:58:10.8202425Z * [new tag] ciflow/trunk/154665 -> ciflow/trunk/154665 2025-06-01T20:58:10.8202847Z * [new tag] ciflow/trunk/154667 -> ciflow/trunk/154667 2025-06-01T20:58:10.8203244Z * [new tag] ciflow/trunk/154673 -> ciflow/trunk/154673 2025-06-01T20:58:10.8203645Z * [new tag] ciflow/trunk/154679 -> ciflow/trunk/154679 2025-06-01T20:58:10.8204044Z * [new tag] ciflow/trunk/154688 -> ciflow/trunk/154688 2025-06-01T20:58:10.8204460Z * [new tag] ciflow/trunk/154694 -> ciflow/trunk/154694 2025-06-01T20:58:10.8204859Z * [new tag] ciflow/trunk/154698 -> ciflow/trunk/154698 2025-06-01T20:58:10.8205274Z * [new tag] ciflow/trunk/154704 -> ciflow/trunk/154704 2025-06-01T20:58:10.8205678Z * [new tag] ciflow/trunk/154729 -> ciflow/trunk/154729 2025-06-01T20:58:10.8206072Z * [new tag] ciflow/trunk/154749 -> ciflow/trunk/154749 2025-06-01T20:58:10.8206475Z * [new tag] ciflow/trunk/154776 -> ciflow/trunk/154776 2025-06-01T20:58:10.8206871Z * [new tag] ciflow/trunk/154780 -> ciflow/trunk/154780 2025-06-01T20:58:10.8207273Z * [new tag] ciflow/trunk/154783 -> ciflow/trunk/154783 2025-06-01T20:58:10.8207673Z * [new tag] ciflow/trunk/154814 -> ciflow/trunk/154814 2025-06-01T20:58:10.8208072Z * [new tag] ciflow/trunk/154817 -> ciflow/trunk/154817 2025-06-01T20:58:10.8208485Z * [new tag] ciflow/trunk/154825 -> ciflow/trunk/154825 2025-06-01T20:58:10.8208883Z * [new tag] ciflow/trunk/70978 -> ciflow/trunk/70978 2025-06-01T20:58:10.8209295Z * [new tag] ciflow/trunk/70979 -> ciflow/trunk/70979 2025-06-01T20:58:10.8209699Z * [new tag] ciflow/unstable/123 -> ciflow/unstable/123 2025-06-01T20:58:10.8210130Z * [new tag] ciflow/win-arm64/154783 -> ciflow/win-arm64/154783 2025-06-01T20:58:10.8210560Z * [new tag] ciflow/xpu/138996 -> ciflow/xpu/138996 2025-06-01T20:58:10.8210955Z * [new tag] ciflow/xpu/139971 -> ciflow/xpu/139971 2025-06-01T20:58:10.8211349Z * [new tag] ciflow/xpu/140372 -> ciflow/xpu/140372 2025-06-01T20:58:10.8211747Z * [new tag] ciflow/xpu/147583 -> ciflow/xpu/147583 2025-06-01T20:58:10.8212164Z * [new tag] ciflow/xpu/149114 -> ciflow/xpu/149114 2025-06-01T20:58:10.8212558Z * [new tag] ciflow/xpu/150095 -> ciflow/xpu/150095 2025-06-01T20:58:10.8212949Z * [new tag] ciflow/xpu/150673 -> ciflow/xpu/150673 2025-06-01T20:58:10.8213349Z * [new tag] ciflow/xpu/151420 -> ciflow/xpu/151420 2025-06-01T20:58:10.8213732Z * [new tag] ciflow/xpu/151439 -> ciflow/xpu/151439 2025-06-01T20:58:10.8214126Z * [new tag] ciflow/xpu/151581 -> ciflow/xpu/151581 2025-06-01T20:58:10.8214513Z * [new tag] ciflow/xpu/151596 -> ciflow/xpu/151596 2025-06-01T20:58:10.8214924Z * [new tag] ciflow/xpu/151777 -> ciflow/xpu/151777 2025-06-01T20:58:10.8215327Z * [new tag] ciflow/xpu/152001 -> ciflow/xpu/152001 2025-06-01T20:58:10.8216415Z * [new tag] ciflow/xpu/152091 -> ciflow/xpu/152091 2025-06-01T20:58:10.8217397Z * [new tag] ciflow/xpu/152879 -> ciflow/xpu/152879 2025-06-01T20:58:10.8217787Z * [new tag] ciflow/xpu/153096 -> ciflow/xpu/153096 2025-06-01T20:58:10.8218198Z * [new tag] ciflow/xpu/153213 -> ciflow/xpu/153213 2025-06-01T20:58:10.8218592Z * [new tag] ciflow/xpu/153228 -> ciflow/xpu/153228 2025-06-01T20:58:10.8218980Z * [new tag] ciflow/xpu/153322 -> ciflow/xpu/153322 2025-06-01T20:58:10.8588642Z * [new tag] ciflow/xpu/153680 -> ciflow/xpu/153680 2025-06-01T20:58:10.8589056Z * [new tag] ciflow/xpu/153739 -> ciflow/xpu/153739 2025-06-01T20:58:10.8589511Z * [new tag] ciflow/xpu/153841 -> ciflow/xpu/153841 2025-06-01T20:58:10.8589907Z * [new tag] ciflow/xpu/154194 -> ciflow/xpu/154194 2025-06-01T20:58:10.8590314Z * [new tag] ciflow/xpu/154339 -> ciflow/xpu/154339 2025-06-01T20:58:10.8590720Z * [new tag] ciflow/xpu/154346 -> ciflow/xpu/154346 2025-06-01T20:58:10.8591105Z * [new tag] ciflow/xpu/154406 -> ciflow/xpu/154406 2025-06-01T20:58:10.8591503Z * [new tag] ciflow/xpu/154514 -> ciflow/xpu/154514 2025-06-01T20:58:10.8591902Z * [new tag] ciflow/xpu/154586 -> ciflow/xpu/154586 2025-06-01T20:58:10.8592286Z * [new tag] ciflow/xpu/154744 -> ciflow/xpu/154744 2025-06-01T20:58:10.8592722Z * [new tag] cslpull75 -> cslpull75 2025-06-01T20:58:10.8593098Z * [new tag] cslpull76 -> cslpull76 2025-06-01T20:58:10.8593466Z * [new tag] cslpull77 -> cslpull77 2025-06-01T20:58:10.8593827Z * [new tag] cslpull78 -> cslpull78 2025-06-01T20:58:10.8594205Z * [new tag] cslpull79 -> cslpull79 2025-06-01T20:58:10.8594567Z * [new tag] cslpull80 -> cslpull80 2025-06-01T20:58:10.8594919Z * [new tag] cslpull81 -> cslpull81 2025-06-01T20:58:10.8595285Z * [new tag] cslpull82 -> cslpull82 2025-06-01T20:58:10.8595635Z * [new tag] cslpull83 -> cslpull83 2025-06-01T20:58:10.8596000Z * [new tag] cslpull84 -> cslpull84 2025-06-01T20:58:10.8596350Z * [new tag] cslpull85 -> cslpull85 2025-06-01T20:58:10.8596708Z * [new tag] cslpull86 -> cslpull86 2025-06-01T20:58:10.8597071Z * [new tag] cslpull87 -> cslpull87 2025-06-01T20:58:10.8597422Z * [new tag] cslpull88 -> cslpull88 2025-06-01T20:58:10.8597797Z * [new tag] cslpull89 -> cslpull89 2025-06-01T20:58:10.8598150Z * [new tag] cslpull90 -> cslpull90 2025-06-01T20:58:10.8598510Z * [new tag] cslpull91 -> cslpull91 2025-06-01T20:58:10.8598870Z * [new tag] cslpull92 -> cslpull92 2025-06-01T20:58:10.8599225Z * [new tag] flight_5 -> flight_5 2025-06-01T20:58:10.8599592Z * [new tag] flight_5.1 -> flight_5.1 2025-06-01T20:58:10.8599947Z * [new tag] flight_5.2 -> flight_5.2 2025-06-01T20:58:10.8600312Z * [new tag] flight_5.3 -> flight_5.3 2025-06-01T20:58:10.8600687Z * [new tag] forpull1 -> forpull1 2025-06-01T20:58:10.8601072Z * [new tag] malfet/tag-2ef5611 -> malfet/tag-2ef5611 2025-06-01T20:58:10.8601801Z * [new tag] malfet/tag-317b1a0 -> malfet/tag-317b1a0 2025-06-01T20:58:10.8602215Z * [new tag] malfet/tag-ec6f767 -> malfet/tag-ec6f767 2025-06-01T20:58:10.8602638Z * [new tag] nightly-binary -> nightly-binary 2025-06-01T20:58:10.8603050Z * [new tag] sqzhang_flight4_plus -> sqzhang_flight4_plus 2025-06-01T20:58:10.8603468Z * [new tag] sqzhang_flight_3 -> sqzhang_flight_3 2025-06-01T20:58:10.8603851Z * [new tag] v0.1.1 -> v0.1.1 2025-06-01T20:58:10.8604198Z * [new tag] v0.1.10 -> v0.1.10 2025-06-01T20:58:10.8604553Z * [new tag] v0.1.11 -> v0.1.11 2025-06-01T20:58:10.8604909Z * [new tag] v0.1.12 -> v0.1.12 2025-06-01T20:58:10.8605250Z * [new tag] v0.1.2 -> v0.1.2 2025-06-01T20:58:10.8605592Z * [new tag] v0.1.3 -> v0.1.3 2025-06-01T20:58:10.8605935Z * [new tag] v0.1.4 -> v0.1.4 2025-06-01T20:58:10.8606270Z * [new tag] v0.1.5 -> v0.1.5 2025-06-01T20:58:10.8606595Z * [new tag] v0.1.6 -> v0.1.6 2025-06-01T20:58:10.8606930Z * [new tag] v0.1.7 -> v0.1.7 2025-06-01T20:58:10.8607260Z * [new tag] v0.1.8 -> v0.1.8 2025-06-01T20:58:10.8607599Z * [new tag] v0.1.9 -> v0.1.9 2025-06-01T20:58:10.8607926Z * [new tag] v0.2.0 -> v0.2.0 2025-06-01T20:58:10.8608261Z * [new tag] v0.3.0 -> v0.3.0 2025-06-01T20:58:10.8608592Z * [new tag] v0.3.1 -> v0.3.1 2025-06-01T20:58:10.8608921Z * [new tag] v0.4.0 -> v0.4.0 2025-06-01T20:58:10.8609261Z * [new tag] v0.4.1 -> v0.4.1 2025-06-01T20:58:10.8609598Z * [new tag] v1.0.0 -> v1.0.0 2025-06-01T20:58:10.8999189Z * [new tag] v1.0.0a0 -> v1.0.0a0 2025-06-01T20:58:10.8999594Z * [new tag] v1.0.1 -> v1.0.1 2025-06-01T20:58:10.8999937Z * [new tag] v1.0rc0 -> v1.0rc0 2025-06-01T20:58:10.9000288Z * [new tag] v1.0rc1 -> v1.0rc1 2025-06-01T20:58:10.9000632Z * [new tag] v1.1.0 -> v1.1.0 2025-06-01T20:58:10.9000983Z * [new tag] v1.1.0a0 -> v1.1.0a0 2025-06-01T20:58:10.9001342Z * [new tag] v1.10.0 -> v1.10.0 2025-06-01T20:58:10.9001689Z * [new tag] v1.10.0-rc1 -> v1.10.0-rc1 2025-06-01T20:58:10.9002079Z * [new tag] v1.10.0-rc2 -> v1.10.0-rc2 2025-06-01T20:58:10.9002449Z * [new tag] v1.10.0-rc3 -> v1.10.0-rc3 2025-06-01T20:58:10.9002798Z * [new tag] v1.10.1 -> v1.10.1 2025-06-01T20:58:10.9003143Z * [new tag] v1.10.1-rc1 -> v1.10.1-rc1 2025-06-01T20:58:10.9003488Z * [new tag] v1.10.2 -> v1.10.2 2025-06-01T20:58:10.9003835Z * [new tag] v1.10.2-rc1 -> v1.10.2-rc1 2025-06-01T20:58:10.9004184Z * [new tag] v1.11.0 -> v1.11.0 2025-06-01T20:58:10.9004530Z * [new tag] v1.11.0-rc1 -> v1.11.0-rc1 2025-06-01T20:58:10.9004882Z * [new tag] v1.11.0-rc2 -> v1.11.0-rc2 2025-06-01T20:58:10.9005245Z * [new tag] v1.11.0-rc3 -> v1.11.0-rc3 2025-06-01T20:58:10.9005893Z * [new tag] v1.11.0-rc4 -> v1.11.0-rc4 2025-06-01T20:58:10.9006244Z * [new tag] v1.11.0-rc5 -> v1.11.0-rc5 2025-06-01T20:58:10.9006594Z * [new tag] v1.11.0-rc6 -> v1.11.0-rc6 2025-06-01T20:58:10.9006945Z * [new tag] v1.11.0-rc7 -> v1.11.0-rc7 2025-06-01T20:58:10.9007301Z * [new tag] v1.12.0 -> v1.12.0 2025-06-01T20:58:10.9007647Z * [new tag] v1.12.0-rc1 -> v1.12.0-rc1 2025-06-01T20:58:10.9008005Z * [new tag] v1.12.0-rc2 -> v1.12.0-rc2 2025-06-01T20:58:10.9008421Z * [new tag] v1.12.0-rc3 -> v1.12.0-rc3 2025-06-01T20:58:10.9008813Z * [new tag] v1.12.0-rc4 -> v1.12.0-rc4 2025-06-01T20:58:10.9009211Z * [new tag] v1.12.0-rc5 -> v1.12.0-rc5 2025-06-01T20:58:10.9009563Z * [new tag] v1.12.0-rc6 -> v1.12.0-rc6 2025-06-01T20:58:10.9009923Z * [new tag] v1.12.0-rc7 -> v1.12.0-rc7 2025-06-01T20:58:10.9010282Z * [new tag] v1.12.0-rc8 -> v1.12.0-rc8 2025-06-01T20:58:10.9010624Z * [new tag] v1.12.1 -> v1.12.1 2025-06-01T20:58:10.9010968Z * [new tag] v1.12.1-rc1 -> v1.12.1-rc1 2025-06-01T20:58:10.9011318Z * [new tag] v1.12.1-rc2 -> v1.12.1-rc2 2025-06-01T20:58:10.9011676Z * [new tag] v1.12.1-rc3 -> v1.12.1-rc3 2025-06-01T20:58:10.9012023Z * [new tag] v1.12.1-rc4 -> v1.12.1-rc4 2025-06-01T20:58:10.9012383Z * [new tag] v1.12.1-rc5 -> v1.12.1-rc5 2025-06-01T20:58:10.9012733Z * [new tag] v1.13.0 -> v1.13.0 2025-06-01T20:58:10.9013080Z * [new tag] v1.13.0-rc1 -> v1.13.0-rc1 2025-06-01T20:58:10.9013443Z * [new tag] v1.13.0-rc2 -> v1.13.0-rc2 2025-06-01T20:58:10.9013790Z * [new tag] v1.13.0-rc3 -> v1.13.0-rc3 2025-06-01T20:58:10.9014147Z * [new tag] v1.13.0-rc4 -> v1.13.0-rc4 2025-06-01T20:58:10.9014492Z * [new tag] v1.13.0-rc5 -> v1.13.0-rc5 2025-06-01T20:58:10.9014847Z * [new tag] v1.13.0-rc6 -> v1.13.0-rc6 2025-06-01T20:58:10.9015193Z * [new tag] v1.13.1 -> v1.13.1 2025-06-01T20:58:10.9015534Z * [new tag] v1.13.1-rc1 -> v1.13.1-rc1 2025-06-01T20:58:10.9015893Z * [new tag] v1.2.0 -> v1.2.0 2025-06-01T20:58:10.9016233Z * [new tag] v1.2.0a0 -> v1.2.0a0 2025-06-01T20:58:10.9016584Z * [new tag] v1.3.0 -> v1.3.0 2025-06-01T20:58:10.9016943Z * [new tag] v1.3.0a0 -> v1.3.0a0 2025-06-01T20:58:10.9017279Z * [new tag] v1.3.1 -> v1.3.1 2025-06-01T20:58:10.9017628Z * [new tag] v1.4.0 -> v1.4.0 2025-06-01T20:58:10.9017974Z * [new tag] v1.4.0a0 -> v1.4.0a0 2025-06-01T20:58:10.9018326Z * [new tag] v1.4.1 -> v1.4.1 2025-06-01T20:58:10.9018656Z * [new tag] v1.5.0 -> v1.5.0 2025-06-01T20:58:10.9019010Z * [new tag] v1.5.0-rc1 -> v1.5.0-rc1 2025-06-01T20:58:10.9019371Z * [new tag] v1.5.0-rc2 -> v1.5.0-rc2 2025-06-01T20:58:10.9019721Z * [new tag] v1.5.0-rc3 -> v1.5.0-rc3 2025-06-01T20:58:10.9020083Z * [new tag] v1.5.0-rc4 -> v1.5.0-rc4 2025-06-01T20:58:10.9369926Z * [new tag] v1.5.0-rc5 -> v1.5.0-rc5 2025-06-01T20:58:10.9370386Z * [new tag] v1.5.1 -> v1.5.1 2025-06-01T20:58:10.9370764Z * [new tag] v1.5.1-rc1 -> v1.5.1-rc1 2025-06-01T20:58:10.9371175Z * [new tag] v1.6.0 -> v1.6.0 2025-06-01T20:58:10.9371526Z * [new tag] v1.6.0-rc1 -> v1.6.0-rc1 2025-06-01T20:58:10.9371888Z * [new tag] v1.6.0-rc2 -> v1.6.0-rc2 2025-06-01T20:58:10.9372239Z * [new tag] v1.6.0-rc3 -> v1.6.0-rc3 2025-06-01T20:58:10.9372596Z * [new tag] v1.6.0-rc4 -> v1.6.0-rc4 2025-06-01T20:58:10.9372946Z * [new tag] v1.6.0-rc5 -> v1.6.0-rc5 2025-06-01T20:58:10.9373301Z * [new tag] v1.6.0-rc6 -> v1.6.0-rc6 2025-06-01T20:58:10.9373671Z * [new tag] v1.6.0-rc7 -> v1.6.0-rc7 2025-06-01T20:58:10.9374010Z * [new tag] v1.7.0 -> v1.7.0 2025-06-01T20:58:10.9374358Z * [new tag] v1.7.0-rc1 -> v1.7.0-rc1 2025-06-01T20:58:10.9374706Z * [new tag] v1.7.0-rc2 -> v1.7.0-rc2 2025-06-01T20:58:10.9375058Z * [new tag] v1.7.0-rc3 -> v1.7.0-rc3 2025-06-01T20:58:10.9375410Z * [new tag] v1.7.0-rc4 -> v1.7.0-rc4 2025-06-01T20:58:10.9375748Z * [new tag] v1.7.1 -> v1.7.1 2025-06-01T20:58:10.9376153Z * [new tag] v1.7.1-rc1 -> v1.7.1-rc1 2025-06-01T20:58:10.9376552Z * [new tag] v1.7.1-rc2 -> v1.7.1-rc2 2025-06-01T20:58:10.9376919Z * [new tag] v1.7.1-rc3 -> v1.7.1-rc3 2025-06-01T20:58:10.9377276Z * [new tag] v1.8.0 -> v1.8.0 2025-06-01T20:58:10.9377626Z * [new tag] v1.8.0-rc1 -> v1.8.0-rc1 2025-06-01T20:58:10.9377984Z * [new tag] v1.8.0-rc2 -> v1.8.0-rc2 2025-06-01T20:58:10.9378329Z * [new tag] v1.8.0-rc3 -> v1.8.0-rc3 2025-06-01T20:58:10.9378681Z * [new tag] v1.8.0-rc4 -> v1.8.0-rc4 2025-06-01T20:58:10.9379031Z * [new tag] v1.8.0-rc5 -> v1.8.0-rc5 2025-06-01T20:58:10.9379380Z * [new tag] v1.8.1 -> v1.8.1 2025-06-01T20:58:10.9379731Z * [new tag] v1.8.1-rc1 -> v1.8.1-rc1 2025-06-01T20:58:10.9380071Z * [new tag] v1.8.1-rc2 -> v1.8.1-rc2 2025-06-01T20:58:10.9380428Z * [new tag] v1.8.1-rc3 -> v1.8.1-rc3 2025-06-01T20:58:10.9380777Z * [new tag] v1.8.2 -> v1.8.2 2025-06-01T20:58:10.9381129Z * [new tag] v1.8.2-rc1 -> v1.8.2-rc1 2025-06-01T20:58:10.9381484Z * [new tag] v1.9.0 -> v1.9.0 2025-06-01T20:58:10.9381873Z * [new tag] v1.9.0-rc1 -> v1.9.0-rc1 2025-06-01T20:58:10.9382245Z * [new tag] v1.9.0-rc2 -> v1.9.0-rc2 2025-06-01T20:58:10.9382629Z * [new tag] v1.9.0-rc3 -> v1.9.0-rc3 2025-06-01T20:58:10.9382989Z * [new tag] v1.9.0-rc4 -> v1.9.0-rc4 2025-06-01T20:58:10.9383330Z * [new tag] v1.9.1 -> v1.9.1 2025-06-01T20:58:10.9383691Z * [new tag] v1.9.1-rc1 -> v1.9.1-rc1 2025-06-01T20:58:10.9384044Z * [new tag] v1.9.1-rc2 -> v1.9.1-rc2 2025-06-01T20:58:10.9384513Z * [new tag] v2.0.0 -> v2.0.0 2025-06-01T20:58:10.9385027Z * [new tag] v2.0.0-rc1 -> v2.0.0-rc1 2025-06-01T20:58:10.9385370Z * [new tag] v2.0.0-rc2 -> v2.0.0-rc2 2025-06-01T20:58:10.9385728Z * [new tag] v2.0.0-rc3 -> v2.0.0-rc3 2025-06-01T20:58:10.9386079Z * [new tag] v2.0.0-rc4 -> v2.0.0-rc4 2025-06-01T20:58:10.9386455Z * [new tag] v2.0.0-rc5 -> v2.0.0-rc5 2025-06-01T20:58:10.9386807Z * [new tag] v2.0.0-rc6 -> v2.0.0-rc6 2025-06-01T20:58:10.9387146Z * [new tag] v2.0.1 -> v2.0.1 2025-06-01T20:58:10.9387498Z * [new tag] v2.0.1-rc1 -> v2.0.1-rc1 2025-06-01T20:58:10.9387888Z * [new tag] v2.0.1-rc2 -> v2.0.1-rc2 2025-06-01T20:58:10.9388291Z * [new tag] v2.0.1-rc3 -> v2.0.1-rc3 2025-06-01T20:58:10.9388659Z * [new tag] v2.0.1-rc4 -> v2.0.1-rc4 2025-06-01T20:58:10.9388999Z * [new tag] v2.1.0 -> v2.1.0 2025-06-01T20:58:10.9389350Z * [new tag] v2.1.0-rc1 -> v2.1.0-rc1 2025-06-01T20:58:10.9389777Z * [new tag] v2.1.0-rc2 -> v2.1.0-rc2 2025-06-01T20:58:10.9390135Z * [new tag] v2.1.0-rc3 -> v2.1.0-rc3 2025-06-01T20:58:10.9390484Z * [new tag] v2.1.0-rc4 -> v2.1.0-rc4 2025-06-01T20:58:10.9390840Z * [new tag] v2.1.0-rc5 -> v2.1.0-rc5 2025-06-01T20:58:10.9750489Z * [new tag] v2.1.0-rc6 -> v2.1.0-rc6 2025-06-01T20:58:10.9750929Z * [new tag] v2.1.1 -> v2.1.1 2025-06-01T20:58:10.9751294Z * [new tag] v2.1.1-rc1 -> v2.1.1-rc1 2025-06-01T20:58:10.9751685Z * [new tag] v2.1.1-rc2 -> v2.1.1-rc2 2025-06-01T20:58:10.9752061Z * [new tag] v2.1.1-rc3 -> v2.1.1-rc3 2025-06-01T20:58:10.9752401Z * [new tag] v2.1.1-rc4 -> v2.1.1-rc4 2025-06-01T20:58:10.9752776Z * [new tag] v2.1.1-rc5 -> v2.1.1-rc5 2025-06-01T20:58:10.9753126Z * [new tag] v2.1.1-rc6 -> v2.1.1-rc6 2025-06-01T20:58:10.9753464Z * [new tag] v2.1.2 -> v2.1.2 2025-06-01T20:58:10.9753810Z * [new tag] v2.1.2-rc1 -> v2.1.2-rc1 2025-06-01T20:58:10.9754165Z * [new tag] v2.1.2-rc2 -> v2.1.2-rc2 2025-06-01T20:58:10.9754511Z * [new tag] v2.1.2-rc3 -> v2.1.2-rc3 2025-06-01T20:58:10.9754861Z * [new tag] v2.2.0 -> v2.2.0 2025-06-01T20:58:10.9755204Z * [new tag] v2.2.0-rc1 -> v2.2.0-rc1 2025-06-01T20:58:10.9755562Z * [new tag] v2.2.0-rc2 -> v2.2.0-rc2 2025-06-01T20:58:10.9755954Z * [new tag] v2.2.0-rc3 -> v2.2.0-rc3 2025-06-01T20:58:10.9756344Z * [new tag] v2.2.0-rc4 -> v2.2.0-rc4 2025-06-01T20:58:10.9756695Z * [new tag] v2.2.0-rc5 -> v2.2.0-rc5 2025-06-01T20:58:10.9757035Z * [new tag] v2.2.0-rc6 -> v2.2.0-rc6 2025-06-01T20:58:10.9757385Z * [new tag] v2.2.0-rc7 -> v2.2.0-rc7 2025-06-01T20:58:10.9757725Z * [new tag] v2.2.0-rc8 -> v2.2.0-rc8 2025-06-01T20:58:10.9758068Z * [new tag] v2.2.1 -> v2.2.1 2025-06-01T20:58:10.9758398Z * [new tag] v2.2.1-rc1 -> v2.2.1-rc1 2025-06-01T20:58:10.9758943Z * [new tag] v2.2.1-rc2 -> v2.2.1-rc2 2025-06-01T20:58:10.9759562Z * [new tag] v2.2.1-rc3 -> v2.2.1-rc3 2025-06-01T20:58:10.9759908Z * [new tag] v2.2.2 -> v2.2.2 2025-06-01T20:58:10.9760271Z * [new tag] v2.2.2-rc1 -> v2.2.2-rc1 2025-06-01T20:58:10.9760615Z * [new tag] v2.2.2-rc2 -> v2.2.2-rc2 2025-06-01T20:58:10.9760971Z * [new tag] v2.2.2-rc3 -> v2.2.2-rc3 2025-06-01T20:58:10.9761330Z * [new tag] v2.3.0 -> v2.3.0 2025-06-01T20:58:10.9761711Z * [new tag] v2.3.0-rc1 -> v2.3.0-rc1 2025-06-01T20:58:10.9762116Z * [new tag] v2.3.0-rc10 -> v2.3.0-rc10 2025-06-01T20:58:10.9762478Z * [new tag] v2.3.0-rc11 -> v2.3.0-rc11 2025-06-01T20:58:10.9762854Z * [new tag] v2.3.0-rc12 -> v2.3.0-rc12 2025-06-01T20:58:10.9763211Z * [new tag] v2.3.0-rc2 -> v2.3.0-rc2 2025-06-01T20:58:10.9763563Z * [new tag] v2.3.0-rc3 -> v2.3.0-rc3 2025-06-01T20:58:10.9763921Z * [new tag] v2.3.0-rc4 -> v2.3.0-rc4 2025-06-01T20:58:10.9764264Z * [new tag] v2.3.0-rc5 -> v2.3.0-rc5 2025-06-01T20:58:10.9764612Z * [new tag] v2.3.0-rc6 -> v2.3.0-rc6 2025-06-01T20:58:10.9764955Z * [new tag] v2.3.0-rc7 -> v2.3.0-rc7 2025-06-01T20:58:10.9765302Z * [new tag] v2.3.0-rc8 -> v2.3.0-rc8 2025-06-01T20:58:10.9765643Z * [new tag] v2.3.0-rc9 -> v2.3.0-rc9 2025-06-01T20:58:10.9765993Z * [new tag] v2.3.1 -> v2.3.1 2025-06-01T20:58:10.9766347Z * [new tag] v2.3.1-rc1 -> v2.3.1-rc1 2025-06-01T20:58:10.9766697Z * [new tag] v2.3.1-rc2 -> v2.3.1-rc2 2025-06-01T20:58:10.9767044Z * [new tag] v2.3.1-rc3 -> v2.3.1-rc3 2025-06-01T20:58:10.9767422Z * [new tag] v2.4.0 -> v2.4.0 2025-06-01T20:58:10.9767769Z * [new tag] v2.4.0-rc1 -> v2.4.0-rc1 2025-06-01T20:58:10.9768163Z * [new tag] v2.4.0-rc2 -> v2.4.0-rc2 2025-06-01T20:58:10.9768509Z * [new tag] v2.4.0-rc3 -> v2.4.0-rc3 2025-06-01T20:58:10.9768867Z * [new tag] v2.4.0-rc4 -> v2.4.0-rc4 2025-06-01T20:58:10.9769210Z * [new tag] v2.4.0-rc5 -> v2.4.0-rc5 2025-06-01T20:58:10.9769563Z * [new tag] v2.4.0-rc6 -> v2.4.0-rc6 2025-06-01T20:58:10.9769908Z * [new tag] v2.4.0-rc7 -> v2.4.0-rc7 2025-06-01T20:58:10.9770273Z * [new tag] v2.4.0-rc8 -> v2.4.0-rc8 2025-06-01T20:58:10.9770627Z * [new tag] v2.4.0-rc9 -> v2.4.0-rc9 2025-06-01T20:58:10.9770967Z * [new tag] v2.4.1 -> v2.4.1 2025-06-01T20:58:10.9771315Z * [new tag] v2.4.1-rc1 -> v2.4.1-rc1 2025-06-01T20:58:11.3030083Z * [new tag] v2.4.1-rc2 -> v2.4.1-rc2 2025-06-01T20:58:11.3030506Z * [new tag] v2.4.1-rc3 -> v2.4.1-rc3 2025-06-01T20:58:11.3030873Z * [new tag] v2.5.0 -> v2.5.0 2025-06-01T20:58:11.3031221Z * [new tag] v2.5.0-rc1 -> v2.5.0-rc1 2025-06-01T20:58:11.3031610Z * [new tag] v2.5.0-rc10 -> v2.5.0-rc10 2025-06-01T20:58:11.3031969Z * [new tag] v2.5.0-rc2 -> v2.5.0-rc2 2025-06-01T20:58:11.3032554Z * [new tag] v2.5.0-rc3 -> v2.5.0-rc3 2025-06-01T20:58:11.3033056Z * [new tag] v2.5.0-rc4 -> v2.5.0-rc4 2025-06-01T20:58:11.3033400Z * [new tag] v2.5.0-rc5 -> v2.5.0-rc5 2025-06-01T20:58:11.3033757Z * [new tag] v2.5.0-rc6 -> v2.5.0-rc6 2025-06-01T20:58:11.3034169Z * [new tag] v2.5.0-rc7 -> v2.5.0-rc7 2025-06-01T20:58:11.3034561Z * [new tag] v2.5.0-rc8 -> v2.5.0-rc8 2025-06-01T20:58:11.3034964Z * [new tag] v2.5.0-rc9 -> v2.5.0-rc9 2025-06-01T20:58:11.3035307Z * [new tag] v2.5.1 -> v2.5.1 2025-06-01T20:58:11.3035661Z * [new tag] v2.5.1-rc1 -> v2.5.1-rc1 2025-06-01T20:58:11.3036002Z * [new tag] v2.6.0 -> v2.6.0 2025-06-01T20:58:11.3036356Z * [new tag] v2.6.0-rc1 -> v2.6.0-rc1 2025-06-01T20:58:11.3036711Z * [new tag] v2.6.0-rc2 -> v2.6.0-rc2 2025-06-01T20:58:11.3037056Z * [new tag] v2.6.0-rc3 -> v2.6.0-rc3 2025-06-01T20:58:11.3037405Z * [new tag] v2.6.0-rc4 -> v2.6.0-rc4 2025-06-01T20:58:11.3037747Z * [new tag] v2.6.0-rc5 -> v2.6.0-rc5 2025-06-01T20:58:11.3038095Z * [new tag] v2.6.0-rc6 -> v2.6.0-rc6 2025-06-01T20:58:11.3038439Z * [new tag] v2.6.0-rc7 -> v2.6.0-rc7 2025-06-01T20:58:11.3038796Z * [new tag] v2.6.0-rc8 -> v2.6.0-rc8 2025-06-01T20:58:11.3039147Z * [new tag] v2.6.0-rc9 -> v2.6.0-rc9 2025-06-01T20:58:11.3039483Z * [new tag] v2.7.0 -> v2.7.0 2025-06-01T20:58:11.3039842Z * [new tag] v2.7.0-rc1 -> v2.7.0-rc1 2025-06-01T20:58:11.3040198Z * [new tag] v2.7.0-rc10 -> v2.7.0-rc10 2025-06-01T20:58:11.3040555Z * [new tag] v2.7.0-rc2 -> v2.7.0-rc2 2025-06-01T20:58:11.3040908Z * [new tag] v2.7.0-rc3 -> v2.7.0-rc3 2025-06-01T20:58:11.3041255Z * [new tag] v2.7.0-rc4 -> v2.7.0-rc4 2025-06-01T20:58:11.3041607Z * [new tag] v2.7.0-rc5 -> v2.7.0-rc5 2025-06-01T20:58:11.3041952Z * [new tag] v2.7.0-rc6 -> v2.7.0-rc6 2025-06-01T20:58:11.3042305Z * [new tag] v2.7.0-rc7 -> v2.7.0-rc7 2025-06-01T20:58:11.3042654Z * [new tag] v2.7.0-rc8 -> v2.7.0-rc8 2025-06-01T20:58:11.3043012Z * [new tag] v2.7.0-rc9 -> v2.7.0-rc9 2025-06-01T20:58:11.3043365Z * [new tag] v2.7.1-rc1 -> v2.7.1-rc1 2025-06-01T20:58:11.3043718Z * [new tag] v2.7.1-rc2 -> v2.7.1-rc2 2025-06-01T20:58:11.3044068Z * [new tag] v2.7.1-rc3 -> v2.7.1-rc3 2025-06-01T20:58:11.3044411Z * [new tag] v2.7.1-rc4 -> v2.7.1-rc4 2025-06-01T20:58:11.3044759Z * [new tag] v2.7.1-rc5 -> v2.7.1-rc5 2025-06-01T20:58:11.3045114Z * [new tag] whc_flight_1 -> whc_flight_1 2025-06-01T20:58:11.3045484Z * [new tag] whc_flight_2 -> whc_flight_2 2025-06-01T20:58:11.3045852Z * [new tag] whc_flight_4 -> whc_flight_4 2025-06-01T20:58:11.3219192Z [command]"C:\Program Files\Git\cmd\git.exe" rev-parse --verify --quiet f7c09f864a6c6467a7454f1431340d3338473fd1^{object} 2025-06-01T20:58:11.3444907Z f7c09f864a6c6467a7454f1431340d3338473fd1 2025-06-01T20:58:11.3485366Z ##[endgroup] 2025-06-01T20:58:11.3486036Z ##[group]Determining the checkout info 2025-06-01T20:58:11.3487231Z ##[endgroup] 2025-06-01T20:58:11.3497840Z [command]"C:\Program Files\Git\cmd\git.exe" sparse-checkout disable 2025-06-01T20:58:11.3770587Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --unset-all extensions.worktreeConfig 2025-06-01T20:58:11.4015466Z ##[group]Checking out the ref 2025-06-01T20:58:11.4026392Z [command]"C:\Program Files\Git\cmd\git.exe" checkout --progress --force f7c09f864a6c6467a7454f1431340d3338473fd1 2025-06-01T20:58:12.5370863Z Updating files: 12% (2232/17658) 2025-06-01T20:58:12.6017563Z Updating files: 13% (2296/17658) 2025-06-01T20:58:12.6628892Z Updating files: 14% (2473/17658) 2025-06-01T20:58:12.7353200Z Updating files: 15% (2649/17658) 2025-06-01T20:58:12.7893073Z Updating files: 16% (2826/17658) 2025-06-01T20:58:12.8462285Z Updating files: 17% (3002/17658) 2025-06-01T20:58:12.9072718Z Updating files: 18% (3179/17658) 2025-06-01T20:58:13.0226211Z Updating files: 19% (3356/17658) 2025-06-01T20:58:13.0928721Z Updating files: 20% (3532/17658) 2025-06-01T20:58:13.1683221Z Updating files: 21% (3709/17658) 2025-06-01T20:58:13.2748347Z Updating files: 22% (3885/17658) 2025-06-01T20:58:13.3430631Z Updating files: 23% (4062/17658) 2025-06-01T20:58:13.4519454Z Updating files: 24% (4238/17658) 2025-06-01T20:58:13.5802370Z Updating files: 24% (4374/17658) 2025-06-01T20:58:13.6579971Z Updating files: 25% (4415/17658) 2025-06-01T20:58:13.7370472Z Updating files: 26% (4592/17658) 2025-06-01T20:58:13.9137368Z Updating files: 27% (4768/17658) 2025-06-01T20:58:13.9842354Z Updating files: 28% (4945/17658) 2025-06-01T20:58:14.0603454Z Updating files: 29% (5121/17658) 2025-06-01T20:58:14.1517678Z Updating files: 30% (5298/17658) 2025-06-01T20:58:14.2186346Z Updating files: 31% (5474/17658) 2025-06-01T20:58:14.2947156Z Updating files: 32% (5651/17658) 2025-06-01T20:58:14.3350520Z Updating files: 33% (5828/17658) 2025-06-01T20:58:14.3746295Z Updating files: 34% (6004/17658) 2025-06-01T20:58:14.4512158Z Updating files: 35% (6181/17658) 2025-06-01T20:58:14.4588397Z Updating files: 35% (6325/17658) 2025-06-01T20:58:14.4957347Z Updating files: 36% (6357/17658) 2025-06-01T20:58:14.5338081Z Updating files: 37% (6534/17658) 2025-06-01T20:58:14.5990218Z Updating files: 38% (6711/17658) 2025-06-01T20:58:14.6317264Z Updating files: 39% (6887/17658) 2025-06-01T20:58:14.6661404Z Updating files: 40% (7064/17658) 2025-06-01T20:58:14.7341303Z Updating files: 41% (7240/17658) 2025-06-01T20:58:14.9132079Z Updating files: 42% (7417/17658) 2025-06-01T20:58:14.9512148Z Updating files: 43% (7593/17658) 2025-06-01T20:58:14.9932357Z Updating files: 44% (7770/17658) 2025-06-01T20:58:15.0356337Z Updating files: 45% (7947/17658) 2025-06-01T20:58:15.0837853Z Updating files: 46% (8123/17658) 2025-06-01T20:58:15.1298714Z Updating files: 47% (8300/17658) 2025-06-01T20:58:15.1752055Z Updating files: 48% (8476/17658) 2025-06-01T20:58:15.2217532Z Updating files: 49% (8653/17658) 2025-06-01T20:58:15.2715465Z Updating files: 50% (8829/17658) 2025-06-01T20:58:15.3199413Z Updating files: 51% (9006/17658) 2025-06-01T20:58:15.4515279Z Updating files: 52% (9183/17658) 2025-06-01T20:58:15.4924383Z Updating files: 53% (9359/17658) 2025-06-01T20:58:15.5348696Z Updating files: 53% (9364/17658) 2025-06-01T20:58:15.5745116Z Updating files: 54% (9536/17658) 2025-06-01T20:58:15.6166151Z Updating files: 55% (9712/17658) 2025-06-01T20:58:16.0063162Z Updating files: 56% (9889/17658) 2025-06-01T20:58:16.0558006Z Updating files: 57% (10066/17658) 2025-06-01T20:58:16.1056343Z Updating files: 58% (10242/17658) 2025-06-01T20:58:16.1537914Z Updating files: 59% (10419/17658) 2025-06-01T20:58:16.2078789Z Updating files: 60% (10595/17658) 2025-06-01T20:58:16.2570472Z Updating files: 61% (10772/17658) 2025-06-01T20:58:16.3108294Z Updating files: 62% (10948/17658) 2025-06-01T20:58:16.3578772Z Updating files: 63% (11125/17658) 2025-06-01T20:58:16.4075730Z Updating files: 64% (11302/17658) 2025-06-01T20:58:16.4548382Z Updating files: 65% (11478/17658) 2025-06-01T20:58:16.4650985Z Updating files: 66% (11655/17658) 2025-06-01T20:58:16.5048592Z Updating files: 66% (11694/17658) 2025-06-01T20:58:16.5730953Z Updating files: 67% (11831/17658) 2025-06-01T20:58:16.6912116Z Updating files: 68% (12008/17658) 2025-06-01T20:58:16.8214904Z Updating files: 69% (12185/17658) 2025-06-01T20:58:16.8675945Z Updating files: 70% (12361/17658) 2025-06-01T20:58:16.9436871Z Updating files: 71% (12538/17658) 2025-06-01T20:58:17.1840147Z Updating files: 72% (12714/17658) 2025-06-01T20:58:17.2768873Z Updating files: 73% (12891/17658) 2025-06-01T20:58:17.4030515Z Updating files: 74% (13067/17658) 2025-06-01T20:58:17.4723880Z Updating files: 75% (13244/17658) 2025-06-01T20:58:17.4794570Z Updating files: 75% (13403/17658) 2025-06-01T20:58:17.5580187Z Updating files: 76% (13421/17658) 2025-06-01T20:58:17.6459979Z Updating files: 77% (13597/17658) 2025-06-01T20:58:17.7437971Z Updating files: 78% (13774/17658) 2025-06-01T20:58:17.8480088Z Updating files: 79% (13950/17658) 2025-06-01T20:58:17.9631686Z Updating files: 80% (14127/17658) 2025-06-01T20:58:18.0643546Z Updating files: 81% (14303/17658) 2025-06-01T20:58:18.1492412Z Updating files: 82% (14480/17658) 2025-06-01T20:58:18.2278460Z Updating files: 83% (14657/17658) 2025-06-01T20:58:18.3123737Z Updating files: 84% (14833/17658) 2025-06-01T20:58:18.4270327Z Updating files: 85% (15010/17658) 2025-06-01T20:58:18.4786351Z Updating files: 86% (15186/17658) 2025-06-01T20:58:18.5029284Z Updating files: 86% (15307/17658) 2025-06-01T20:58:18.5744481Z Updating files: 87% (15363/17658) 2025-06-01T20:58:18.8340816Z Updating files: 88% (15540/17658) 2025-06-01T20:58:18.9043276Z Updating files: 89% (15716/17658) 2025-06-01T20:58:18.9859690Z Updating files: 90% (15893/17658) 2025-06-01T20:58:19.0652424Z Updating files: 91% (16069/17658) 2025-06-01T20:58:19.1480252Z Updating files: 92% (16246/17658) 2025-06-01T20:58:19.2700237Z Updating files: 93% (16422/17658) 2025-06-01T20:58:19.3520002Z Updating files: 94% (16599/17658) 2025-06-01T20:58:19.4382799Z Updating files: 95% (16776/17658) 2025-06-01T20:58:19.4807883Z Updating files: 96% (16952/17658) 2025-06-01T20:58:19.5451792Z Updating files: 96% (16982/17658) 2025-06-01T20:58:19.6420894Z Updating files: 97% (17129/17658) 2025-06-01T20:58:19.7315306Z Updating files: 98% (17305/17658) 2025-06-01T20:58:20.0302034Z Updating files: 99% (17482/17658) 2025-06-01T20:58:20.0302367Z Updating files: 100% (17658/17658) 2025-06-01T20:58:20.0302649Z Updating files: 100% (17658/17658), done. 2025-06-01T20:58:20.0741328Z Note: switching to 'f7c09f864a6c6467a7454f1431340d3338473fd1'. 2025-06-01T20:58:20.0741658Z 2025-06-01T20:58:20.0741868Z You are in 'detached HEAD' state. You can look around, make experimental 2025-06-01T20:58:20.0742385Z changes and commit them, and you can discard any commits you make in this 2025-06-01T20:58:20.0742911Z state without impacting any branches by switching back to a branch. 2025-06-01T20:58:20.0743235Z 2025-06-01T20:58:20.0743423Z If you want to create a new branch to retain commits you create, you may 2025-06-01T20:58:20.0743873Z do so (now or later) by using -c with the switch command. Example: 2025-06-01T20:58:20.0744146Z 2025-06-01T20:58:20.0744273Z git switch -c 2025-06-01T20:58:20.0744458Z 2025-06-01T20:58:20.0744553Z Or undo this operation with: 2025-06-01T20:58:20.0744713Z 2025-06-01T20:58:20.0744788Z git switch - 2025-06-01T20:58:20.0744913Z 2025-06-01T20:58:20.0745125Z Turn off this advice by setting config variable advice.detachedHead to false 2025-06-01T20:58:20.0745447Z 2025-06-01T20:58:20.0745625Z HEAD is now at f7c09f864a6 [Docs] Reformat sparse example (#154785) 2025-06-01T20:58:20.0903182Z ##[endgroup] 2025-06-01T20:58:20.0903581Z ##[group]Setting up auth for fetching submodules 2025-06-01T20:58:20.0915024Z [command]"C:\Program Files\Git\cmd\git.exe" config --global http.https://github.com/.extraheader "AUTHORIZATION: basic ***" 2025-06-01T20:58:20.1191738Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --unset-all url.https://github.com/.insteadOf 2025-06-01T20:58:20.1438502Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add url.https://github.com/.insteadOf git@github.com: 2025-06-01T20:58:20.1692840Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add url.https://github.com/.insteadOf org-21003710@github.com: 2025-06-01T20:58:20.1940781Z ##[endgroup] 2025-06-01T20:58:20.1941138Z ##[group]Fetching submodules 2025-06-01T20:58:20.1950998Z [command]"C:\Program Files\Git\cmd\git.exe" submodule sync --recursive 2025-06-01T20:58:20.5475702Z [command]"C:\Program Files\Git\cmd\git.exe" -c protocol.version=2 submodule update --init --force --recursive 2025-06-01T20:58:20.9747862Z Submodule 'android/libs/fbjni' (https://github.com/facebookincubator/fbjni.git) registered for path 'android/libs/fbjni' 2025-06-01T20:58:20.9748936Z Submodule 'third_party/NNPACK_deps/FP16' (https://github.com/Maratyszcza/FP16.git) registered for path 'third_party/FP16' 2025-06-01T20:58:20.9749998Z Submodule 'third_party/NNPACK_deps/FXdiv' (https://github.com/Maratyszcza/FXdiv.git) registered for path 'third_party/FXdiv' 2025-06-01T20:58:20.9750931Z Submodule 'third_party/NNPACK' (https://github.com/Maratyszcza/NNPACK.git) registered for path 'third_party/NNPACK' 2025-06-01T20:58:20.9751754Z Submodule 'third_party/NVTX' (https://github.com/NVIDIA/NVTX.git) registered for path 'third_party/NVTX' 2025-06-01T20:58:20.9752878Z Submodule 'third_party/VulkanMemoryAllocator' (https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git) registered for path 'third_party/VulkanMemoryAllocator' 2025-06-01T20:58:20.9754041Z Submodule 'third_party/XNNPACK' (https://github.com/google/XNNPACK.git) registered for path 'third_party/XNNPACK' 2025-06-01T20:58:20.9754929Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/benchmark' 2025-06-01T20:58:20.9756065Z Submodule 'third_party/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/composable_kernel' 2025-06-01T20:58:20.9757105Z Submodule 'third_party/cpp-httplib' (https://github.com/yhirose/cpp-httplib.git) registered for path 'third_party/cpp-httplib' 2025-06-01T20:58:20.9758021Z Submodule 'third_party/cpuinfo' (https://github.com/pytorch/cpuinfo.git) registered for path 'third_party/cpuinfo' 2025-06-01T20:58:20.9758971Z Submodule 'third_party/cudnn_frontend' (https://github.com/NVIDIA/cudnn-frontend.git) registered for path 'third_party/cudnn_frontend' 2025-06-01T20:58:20.9759908Z Submodule 'third_party/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/cutlass' 2025-06-01T20:58:20.9760744Z Submodule 'third_party/eigen' (https://gitlab.com/libeigen/eigen.git) registered for path 'third_party/eigen' 2025-06-01T20:58:20.9761551Z Submodule 'third_party/fbgemm' (https://github.com/pytorch/fbgemm) registered for path 'third_party/fbgemm' 2025-06-01T20:58:20.9762512Z Submodule 'third_party/flash-attention' (https://github.com/Dao-AILab/flash-attention.git) registered for path 'third_party/flash-attention' 2025-06-01T20:58:20.9763537Z Submodule 'third_party/flatbuffers' (https://github.com/google/flatbuffers.git) registered for path 'third_party/flatbuffers' 2025-06-01T20:58:20.9764387Z Submodule 'third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/fmt' 2025-06-01T20:58:20.9765273Z Submodule 'third_party/gemmlowp/gemmlowp' (https://github.com/google/gemmlowp.git) registered for path 'third_party/gemmlowp/gemmlowp' 2025-06-01T20:58:20.9766157Z Submodule 'third_party/gloo' (https://github.com/pytorch/gloo) registered for path 'third_party/gloo' 2025-06-01T20:58:20.9767087Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/googletest' 2025-06-01T20:58:20.9768175Z Submodule 'third_party/ideep' (https://github.com/intel/ideep) registered for path 'third_party/ideep' 2025-06-01T20:58:20.9769112Z Submodule 'third_party/ittapi' (https://github.com/intel/ittapi.git) registered for path 'third_party/ittapi' 2025-06-01T20:58:20.9769936Z Submodule 'third_party/kineto' (https://github.com/pytorch/kineto) registered for path 'third_party/kineto' 2025-06-01T20:58:20.9770798Z Submodule 'third_party/kleidiai' (https://github.com/ARM-software/kleidiai.git) registered for path 'third_party/kleidiai' 2025-06-01T20:58:20.9771718Z Submodule 'third_party/mimalloc' (https://github.com/microsoft/mimalloc.git) registered for path 'third_party/mimalloc' 2025-06-01T20:58:20.9772589Z Submodule 'third_party/nlohmann' (https://github.com/nlohmann/json.git) registered for path 'third_party/nlohmann' 2025-06-01T20:58:20.9773396Z Submodule 'third_party/onnx' (https://github.com/onnx/onnx.git) registered for path 'third_party/onnx' 2025-06-01T20:58:20.9774376Z Submodule 'third_party/opentelemetry-cpp' (https://github.com/open-telemetry/opentelemetry-cpp.git) registered for path 'third_party/opentelemetry-cpp' 2025-06-01T20:58:20.9775437Z Submodule 'third_party/pocketfft' (https://github.com/mreineck/pocketfft) registered for path 'third_party/pocketfft' 2025-06-01T20:58:20.9776386Z Submodule 'third_party/protobuf' (https://github.com/protocolbuffers/protobuf.git) registered for path 'third_party/protobuf' 2025-06-01T20:58:20.9777351Z Submodule 'third_party/NNPACK_deps/psimd' (https://github.com/Maratyszcza/psimd.git) registered for path 'third_party/psimd' 2025-06-01T20:58:20.9778388Z Submodule 'third_party/NNPACK_deps/pthreadpool' (https://github.com/Maratyszcza/pthreadpool.git) registered for path 'third_party/pthreadpool' 2025-06-01T20:58:20.9820722Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/pybind11' 2025-06-01T20:58:20.9821669Z Submodule 'third_party/python-peachpy' (https://github.com/malfet/PeachPy.git) registered for path 'third_party/python-peachpy' 2025-06-01T20:58:20.9822583Z Submodule 'third_party/sleef' (https://github.com/shibatch/sleef) registered for path 'third_party/sleef' 2025-06-01T20:58:20.9823455Z Submodule 'third_party/tensorpipe' (https://github.com/pytorch/tensorpipe.git) registered for path 'third_party/tensorpipe' 2025-06-01T20:58:21.0536894Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/android/libs/fbjni'... 2025-06-01T20:58:22.4078339Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/FXdiv'... 2025-06-01T20:58:22.4078976Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/FP16'... 2025-06-01T20:58:23.0700173Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fmt'... 2025-06-01T20:58:27.9128289Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/NNPACK'... 2025-06-01T20:58:27.9129438Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/benchmark'... 2025-06-01T20:58:27.9130559Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/NVTX'... 2025-06-01T20:58:27.9131778Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cpp-httplib'... 2025-06-01T20:58:27.9132919Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cpuinfo'... 2025-06-01T20:58:27.9133909Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/gloo'... 2025-06-01T20:58:27.9134674Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention'... 2025-06-01T20:58:27.9135937Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/gemmlowp/gemmlowp'... 2025-06-01T20:58:27.9137198Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cudnn_frontend'... 2025-06-01T20:58:27.9138386Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ideep'... 2025-06-01T20:58:27.9139504Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ittapi'... 2025-06-01T20:58:28.1276625Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flatbuffers'... 2025-06-01T20:58:48.2213629Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cutlass'... 2025-06-01T20:58:48.2214421Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kleidiai'... 2025-06-01T20:58:48.2214984Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/googletest'... 2025-06-01T20:58:48.2215563Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pocketfft'... 2025-06-01T20:58:48.2216116Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/mimalloc'... 2025-06-01T20:58:48.2216740Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/VulkanMemoryAllocator'... 2025-06-01T20:58:48.2217382Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pthreadpool'... 2025-06-01T20:58:48.2217974Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/psimd'... 2025-06-01T20:58:48.2218576Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp'... 2025-06-01T20:58:48.2219173Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm'... 2025-06-01T20:58:48.2219768Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/python-peachpy'... 2025-06-01T20:58:48.2220366Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe'... 2025-06-01T20:58:48.2220986Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/composable_kernel'... 2025-06-01T20:58:48.2221571Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto'... 2025-06-01T20:58:48.2222136Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pybind11'... 2025-06-01T20:58:48.2222694Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/sleef'... 2025-06-01T20:58:48.2223227Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/eigen'... 2025-06-01T20:58:48.2223764Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/onnx'... 2025-06-01T20:58:48.2224311Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/nlohmann'... 2025-06-01T20:58:48.2224949Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/XNNPACK'... 2025-06-01T20:58:48.2225517Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf'... 2025-06-01T20:58:48.3265807Z Submodule path 'android/libs/fbjni': checked out '7e1e1fe3858c63c251c637ae41a20de425dde96f' 2025-06-01T20:58:48.4191445Z Submodule path 'third_party/FP16': checked out '4dfe081cf6bcd15db339cf2680b9281b8451eeb3' 2025-06-01T20:58:48.4964166Z Submodule path 'third_party/FXdiv': checked out 'b408327ac2a15ec3e43352421954f5b1967701d1' 2025-06-01T20:58:49.1854299Z Submodule path 'third_party/NNPACK': checked out 'c07e3a0400713d546e0dea2d5466dd22ea389c73' 2025-06-01T20:58:49.6135772Z Submodule path 'third_party/NVTX': checked out '2942f167cc30c5e3a44a2aecd5b0d9c07ff61a07' 2025-06-01T20:58:49.8413262Z Submodule path 'third_party/VulkanMemoryAllocator': checked out '1d8f600fd424278486eade7ed3e877c99f0846b1' 2025-06-01T20:58:56.2751288Z Submodule path 'third_party/XNNPACK': checked out '51a0103656eff6fc9bfd39a4597923c4b542c883' 2025-06-01T20:58:56.5618445Z Submodule path 'third_party/benchmark': checked out '299e5928955cc62af9968370293b916f5130916f' 2025-06-01T20:58:58.9058341Z Submodule path 'third_party/composable_kernel': checked out '8086bbe3a78d931eb96fe12fdc014082e18d18d3' 2025-06-01T20:58:59.0744657Z Submodule path 'third_party/cpp-httplib': checked out '3b6597bba913d51161383657829b7e644e59c006' 2025-06-01T20:58:59.5303001Z Submodule path 'third_party/cpuinfo': checked out '5e3d2445e6a84d9599bee2bf78edbb4d80865e1d' 2025-06-01T20:58:59.7557147Z Submodule path 'third_party/cudnn_frontend': checked out '666996fe3960f27170d1527e5579ba24c8d3380a' 2025-06-01T20:59:04.1363650Z Submodule path 'third_party/cutlass': checked out 'ad7b2f5e84fcfa124cb02b91d5bd26d238c0459e' 2025-06-01T20:59:05.5529761Z Submodule path 'third_party/eigen': checked out '3147391d946bb4b6c68edd901f2add6ac1f31f8c' 2025-06-01T20:59:06.6341586Z Submodule path 'third_party/fbgemm': checked out '157e88b750c452bef2ab4653fe9d1eeb151ce4c3' 2025-06-01T20:59:06.6546231Z Submodule 'external/asmjit' (https://github.com/asmjit/asmjit.git) registered for path 'third_party/fbgemm/external/asmjit' 2025-06-01T20:59:06.6547382Z Submodule 'external/composable_kernel' (https://github.com/jwfromm/composable_kernel.git) registered for path 'third_party/fbgemm/external/composable_kernel' 2025-06-01T20:59:06.6548506Z Submodule 'external/cpuinfo' (https://github.com/pytorch/cpuinfo) registered for path 'third_party/fbgemm/external/cpuinfo' 2025-06-01T20:59:06.6549448Z Submodule 'external/cutlass' (https://github.com/jwfromm/cutlass) registered for path 'third_party/fbgemm/external/cutlass' 2025-06-01T20:59:06.6550644Z Submodule 'external/googletest' (https://github.com/google/googletest) registered for path 'third_party/fbgemm/external/googletest' 2025-06-01T20:59:06.6552204Z Submodule 'external/hipify_torch' (https://github.com/ROCmSoftwarePlatform/hipify_torch.git) registered for path 'third_party/fbgemm/external/hipify_torch' 2025-06-01T20:59:06.6553311Z Submodule 'external/json' (https://github.com/nlohmann/json.git) registered for path 'third_party/fbgemm/external/json' 2025-06-01T20:59:06.7431487Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/asmjit'... 2025-06-01T20:59:16.3944799Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/hipify_torch'... 2025-06-01T20:59:16.3945578Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/cpuinfo'... 2025-06-01T20:59:16.3946329Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/composable_kernel'... 2025-06-01T20:59:16.3947735Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/cutlass'... 2025-06-01T20:59:16.3948619Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/googletest'... 2025-06-01T20:59:16.3949363Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/json'... 2025-06-01T20:59:16.6058783Z Submodule path 'third_party/fbgemm/external/asmjit': checked out 'e5d7c0bd5d9aec44d68830187138149e6a8c4e32' 2025-06-01T20:59:19.6374224Z Submodule path 'third_party/fbgemm/external/composable_kernel': checked out '4a61bdd4bd4ed730e078aebc7c0fcf046ff29406' 2025-06-01T20:59:20.0789054Z Submodule path 'third_party/fbgemm/external/cpuinfo': checked out '6543fec09b2f04ac4a666882998b534afc9c1349' 2025-06-01T20:59:23.9101534Z Submodule path 'third_party/fbgemm/external/cutlass': checked out '3ed8d2ec4ba35ef5d9d8353826209b6f868f63d3' 2025-06-01T20:59:24.1206800Z Submodule path 'third_party/fbgemm/external/googletest': checked out 'f8d7d77c06936315286eb55f8de22cd23c188571' 2025-06-01T20:59:24.4532149Z Submodule path 'third_party/fbgemm/external/hipify_torch': checked out 'a4337c69fe0e2552a7b7b0669178926beeed828c' 2025-06-01T20:59:25.0973005Z Submodule path 'third_party/fbgemm/external/json': checked out '9cca280a4d0ccf0c08f47a99aa71d1b0e52f8d03' 2025-06-01T20:59:25.7926482Z Submodule path 'third_party/flash-attention': checked out '979702c87a8713a8e0a5e9fee122b90d2ef13be5' 2025-06-01T20:59:25.8041385Z Submodule 'csrc/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/flash-attention/csrc/composable_kernel' 2025-06-01T20:59:25.8042505Z Submodule 'csrc/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/flash-attention/csrc/cutlass' 2025-06-01T20:59:29.5874080Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention/csrc/composable_kernel'... 2025-06-01T20:59:29.5874947Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention/csrc/cutlass'... 2025-06-01T20:59:32.0014604Z Submodule path 'third_party/flash-attention/csrc/composable_kernel': checked out '888317e698e9803c62bd38568abc9e05d7709f33' 2025-06-01T20:59:37.2074435Z Submodule path 'third_party/flash-attention/csrc/cutlass': checked out 'c506e16788cb08416a4a57e11a9067beeee29420' 2025-06-01T20:59:38.8130211Z Submodule path 'third_party/flatbuffers': checked out 'a2cd1ea3b6d3fee220106b5fed3f7ce8da9eb757' 2025-06-01T20:59:39.0092083Z Submodule path 'third_party/fmt': checked out '40626af88bd7df9a5fb80be7b25ac85b122d6c21' 2025-06-01T20:59:39.1791090Z Submodule path 'third_party/gemmlowp/gemmlowp': checked out '3fb5c176c17c765a3492cd2f0321b0dab712f350' 2025-06-01T20:59:39.6225880Z Submodule path 'third_party/gloo': checked out 'fe67c4bea940a117ff539d23f4110efc19404edb' 2025-06-01T20:59:39.8424862Z Submodule path 'third_party/googletest': checked out '52eb8108c5bdec04579160ae17225d66034bd723' 2025-06-01T20:59:39.9265580Z Submodule path 'third_party/ideep': checked out '719d8e6cd7f7a0e01b155657526d693acf97c2b3' 2025-06-01T20:59:39.9359353Z Submodule 'mkl-dnn' (https://github.com/intel/mkl-dnn.git) registered for path 'third_party/ideep/mkl-dnn' 2025-06-01T20:59:50.9292984Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ideep/mkl-dnn'... 2025-06-01T20:59:54.2411328Z Submodule path 'third_party/ideep/mkl-dnn': checked out '8d263e693366ef8db40acc569cc7d8edf644556d' 2025-06-01T20:59:54.3822363Z Submodule path 'third_party/ittapi': checked out 'dec1d23ca65ab069d225dfe40dea14f455170959' 2025-06-01T20:59:54.6858936Z Submodule path 'third_party/kineto': checked out '20f652846f651fcae287f667d34bcf164c99f383' 2025-06-01T20:59:54.6997369Z Submodule 'libkineto/third_party/dynolog' (https://github.com/facebookincubator/dynolog.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog' 2025-06-01T20:59:54.6998563Z Submodule 'libkineto/third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/kineto/libkineto/third_party/fmt' 2025-06-01T20:59:54.6999715Z Submodule 'libkineto/third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/kineto/libkineto/third_party/googletest' 2025-06-01T20:59:57.3560983Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog'... 2025-06-01T20:59:57.3561949Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/fmt'... 2025-06-01T20:59:57.3562763Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/googletest'... 2025-06-01T20:59:57.7345192Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog': checked out '7d04a0053a845370ae06ce317a22a48e9edcc74e' 2025-06-01T20:59:57.7571766Z Submodule 'third_party/DCGM' (https://github.com/NVIDIA/DCGM.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-06-01T20:59:57.7573012Z Submodule 'third_party/cpr' (https://github.com/libcpr/cpr.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-06-01T20:59:57.7574223Z Submodule 'third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-06-01T20:59:57.7575586Z Submodule 'third_party/gflags' (https://github.com/gflags/gflags.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-06-01T20:59:57.7577043Z Submodule 'third_party/glog' (https://github.com/google/glog.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-06-01T20:59:57.7578780Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-06-01T20:59:57.7580440Z Submodule 'third_party/json' (https://github.com/nlohmann/json.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-06-01T20:59:57.7582003Z Submodule 'third_party/pfs' (https://github.com/dtrugman/pfs.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-06-01T20:59:57.8238709Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM'... 2025-06-01T21:00:06.6527658Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/cpr'... 2025-06-01T21:00:06.6528672Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/pfs'... 2025-06-01T21:00:06.6529632Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/gflags'... 2025-06-01T21:00:06.6530602Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/glog'... 2025-06-01T21:00:06.6531558Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/fmt'... 2025-06-01T21:00:06.6532529Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/googletest'... 2025-06-01T21:00:06.6533552Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/json'... 2025-06-01T21:00:07.6389558Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM': checked out 'ffde4e54bc7249a6039a5e6b45b395141e1217f9' 2025-06-01T21:00:07.7743437Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr': checked out '871ed52d350214a034f6ef8a3b8f51c5ce1bd400' 2025-06-01T21:00:07.9582204Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt': checked out 'cd4af11efc9c622896a3e4cb599fa28668ca3d05' 2025-06-01T21:00:08.0513879Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags': checked out 'e171aa2d15ed9eb17054558e0b3a6a413bb01067' 2025-06-01T21:00:08.0620832Z Submodule 'doc' (https://github.com/gflags/gflags.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-06-01T21:00:08.6632127Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc'... 2025-06-01T21:00:08.7161049Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc': checked out '8411df715cf522606e3b1aca386ddfc0b63d34b4' 2025-06-01T21:00:08.8687880Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog': checked out 'b33e3bad4c46c8a6345525fd822af355e5ef9446' 2025-06-01T21:00:09.1013678Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest': checked out '58d77fa8070e8cec2dc1ed015d66b454c8d78850' 2025-06-01T21:00:09.6349011Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json': checked out '4f8fba14066156b73f1189a2b8bd568bde5284c5' 2025-06-01T21:00:09.7398048Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs': checked out 'f68a2fa8ea36c783bdd760371411fcb495aa3150' 2025-06-01T21:00:09.8888435Z Submodule path 'third_party/kineto/libkineto/third_party/fmt': checked out '0041a40c1350ba702d475b9c4ad62da77caea164' 2025-06-01T21:00:10.1750083Z Submodule path 'third_party/kineto/libkineto/third_party/googletest': checked out '7aca84427f224eeed3144123d5230d5871e93347' 2025-06-01T21:00:10.4803502Z Submodule path 'third_party/kleidiai': checked out 'cca02c2f69dd18e1f12647c1c0bdc8cf90e680c7' 2025-06-01T21:00:10.7484962Z Submodule path 'third_party/mimalloc': checked out '94036de6fe20bfd8a73d4a6d142fcf532ea604d9' 2025-06-01T21:00:11.3242174Z Submodule path 'third_party/nlohmann': checked out '87cda1d6646592ac5866dc703c8e1839046a6806' 2025-06-01T21:00:15.6894600Z Submodule path 'third_party/onnx': checked out 'e709452ef2bbc1d113faf678c24e6d3467696e83' 2025-06-01T21:00:15.7015662Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/onnx/third_party/pybind11' 2025-06-01T21:00:16.8301167Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/onnx/third_party/pybind11'... 2025-06-01T21:00:17.0286038Z Submodule path 'third_party/onnx/third_party/pybind11': checked out 'a2e59f0e7065404b44dfe92a28aca47ba1378dc4' 2025-06-01T21:00:17.6927463Z Submodule path 'third_party/opentelemetry-cpp': checked out 'a799f4aed9c94b765dcdaabaeab7d5e7e2310878' 2025-06-01T21:00:17.7156763Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark) registered for path 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-06-01T21:00:17.7157954Z Submodule 'third_party/googletest' (https://github.com/google/googletest) registered for path 'third_party/opentelemetry-cpp/third_party/googletest' 2025-06-01T21:00:17.7159054Z Submodule 'third_party/ms-gsl' (https://github.com/microsoft/GSL) registered for path 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-06-01T21:00:17.7160150Z Submodule 'third_party/nlohmann-json' (https://github.com/nlohmann/json) registered for path 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-06-01T21:00:17.7161506Z Submodule 'third_party/opentelemetry-proto' (https://github.com/open-telemetry/opentelemetry-proto) registered for path 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-06-01T21:00:17.7162970Z Submodule 'third_party/opentracing-cpp' (https://github.com/opentracing/opentracing-cpp.git) registered for path 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-06-01T21:00:17.7164303Z Submodule 'third_party/prometheus-cpp' (https://github.com/jupp0r/prometheus-cpp) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-06-01T21:00:17.7165412Z Submodule 'tools/vcpkg' (https://github.com/Microsoft/vcpkg) registered for path 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-06-01T21:00:28.3222634Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/benchmark'... 2025-06-01T21:00:28.3223567Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/opentracing-cpp'... 2025-06-01T21:00:28.3224552Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/opentelemetry-proto'... 2025-06-01T21:00:28.3225443Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/ms-gsl'... 2025-06-01T21:00:28.3226307Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp'... 2025-06-01T21:00:28.3227257Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/googletest'... 2025-06-01T21:00:28.3228136Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/nlohmann-json'... 2025-06-01T21:00:28.3228967Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/tools/vcpkg'... 2025-06-01T21:00:28.4325724Z Submodule path 'third_party/opentelemetry-cpp/third_party/benchmark': checked out 'd572f4777349d43653b21d6c2fc63020ab326db2' 2025-06-01T21:00:28.5973066Z Submodule path 'third_party/opentelemetry-cpp/third_party/googletest': checked out 'b796f7d44681514f58a683a3a71ff17c94edb0c1' 2025-06-01T21:00:28.6790518Z Submodule path 'third_party/opentelemetry-cpp/third_party/ms-gsl': checked out '6f4529395c5b7c2d661812257cd6780c67e54afa' 2025-06-01T21:00:29.2314000Z Submodule path 'third_party/opentelemetry-cpp/third_party/nlohmann-json': checked out 'bc889afb4c5bf1c0d8ee29ef35eaaf4c8bef8a5d' 2025-06-01T21:00:29.3226481Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto': checked out '4ca4f0335c63cda7ab31ea7ed70d6553aee14dce' 2025-06-01T21:00:29.4282378Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentracing-cpp': checked out '06b57f48ded1fa3bdd3d4346f6ef29e40e08eaf5' 2025-06-01T21:00:29.5513535Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp': checked out 'c9ffcdda9086ffd9e1283ea7a0276d831f3c8a8d' 2025-06-01T21:00:29.5627054Z Submodule 'civetweb' (https://github.com/civetweb/civetweb.git) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-06-01T21:00:29.5628968Z Submodule 'googletest' (https://github.com/google/googletest.git) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-06-01T21:00:31.8111795Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb'... 2025-06-01T21:00:31.8112918Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest'... 2025-06-01T21:00:32.4971979Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb': checked out 'eefb26f82b233268fc98577d265352720d477ba4' 2025-06-01T21:00:32.7019559Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest': checked out 'e2239ee6043f73722e7aa812a459f54a28552929' 2025-06-01T21:00:39.8071602Z Submodule path 'third_party/opentelemetry-cpp/tools/vcpkg': checked out '8eb57355a4ffb410a2e94c07b4dca2dffbee8e50' 2025-06-01T21:00:39.8784977Z Submodule path 'third_party/pocketfft': checked out '9d3ab05a7fffbc71a492bc6a17be034e83e8f0fe' 2025-06-01T21:00:41.2397196Z Submodule path 'third_party/protobuf': checked out 'd1eca4e4b421cd2997495c4b4e65cea6be4e9b8a' 2025-06-01T21:00:41.2518308Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/protobuf/third_party/benchmark' 2025-06-01T21:00:41.2519456Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/protobuf/third_party/googletest' 2025-06-01T21:00:42.7921870Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf/third_party/benchmark'... 2025-06-01T21:00:42.7922817Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf/third_party/googletest'... 2025-06-01T21:00:42.8726120Z Submodule path 'third_party/protobuf/third_party/benchmark': checked out '5b7683f49e1e9223cf9927b24f6fd3d6bd82e3f8' 2025-06-01T21:00:43.1310116Z Submodule path 'third_party/protobuf/third_party/googletest': checked out '5ec7f0c4a113e2f18ac2c6cc7df51ad6afc24081' 2025-06-01T21:00:43.2058971Z Submodule path 'third_party/psimd': checked out '072586a71b55b7f8c584153d223e95687148a900' 2025-06-01T21:00:43.2876767Z Submodule path 'third_party/pthreadpool': checked out '4fe0e1e183925bf8cfa6aae24237e724a96479b8' 2025-06-01T21:00:43.4709309Z Submodule path 'third_party/pybind11': checked out 'a2e59f0e7065404b44dfe92a28aca47ba1378dc4' 2025-06-01T21:00:43.7494428Z Submodule path 'third_party/python-peachpy': checked out 'f45429b087dd7d5bc78bb40dc7cf06425c252d67' 2025-06-01T21:00:43.9414898Z Submodule path 'third_party/sleef': checked out '5a1d179df9cf652951b59010a2d2075372d67f68' 2025-06-01T21:00:44.1185556Z Submodule path 'third_party/tensorpipe': checked out '52791a2fd214b2a9dc5759d36725909c1daa7f2e' 2025-06-01T21:00:44.1344330Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/tensorpipe/third_party/googletest' 2025-06-01T21:00:44.1345464Z Submodule 'third_party/libnop' (https://github.com/google/libnop.git) registered for path 'third_party/tensorpipe/third_party/libnop' 2025-06-01T21:00:44.1346458Z Submodule 'third_party/libuv' (https://github.com/libuv/libuv.git) registered for path 'third_party/tensorpipe/third_party/libuv' 2025-06-01T21:00:44.1347480Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/tensorpipe/third_party/pybind11' 2025-06-01T21:00:46.8537831Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/googletest'... 2025-06-01T21:00:46.8538762Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/libnop'... 2025-06-01T21:00:46.8539610Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/pybind11'... 2025-06-01T21:00:46.8540760Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/libuv'... 2025-06-01T21:00:47.0761306Z Submodule path 'third_party/tensorpipe/third_party/googletest': checked out 'aee0f9d9b5b87796ee8a0ab26b7587ec30e8858e' 2025-06-01T21:00:47.1845941Z Submodule path 'third_party/tensorpipe/third_party/libnop': checked out '910b55815be16109f04f4180e9adee14fb4ce281' 2025-06-01T21:00:47.4530848Z Submodule path 'third_party/tensorpipe/third_party/libuv': checked out '1dff88e5161cba5c59276d2070d2e304e4dcb242' 2025-06-01T21:00:47.5933344Z Submodule path 'third_party/tensorpipe/third_party/pybind11': checked out 'a23996fce38ff6ccfbcdc09f1e63f2c4be5ea2ef' 2025-06-01T21:00:47.6034317Z Submodule 'tools/clang' (https://github.com/wjakob/clang-cindex-python3) registered for path 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-06-01T21:00:48.0562109Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/pybind11/tools/clang'... 2025-06-01T21:00:48.1103356Z Submodule path 'third_party/tensorpipe/third_party/pybind11/tools/clang': checked out '6a00cbc4a9b8e68b71caf7f774b3f9c753ae84d5' 2025-06-01T21:00:48.1327762Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local gc.auto 0" 2025-06-01T21:00:48.4918569Z Entering 'android/libs/fbjni' 2025-06-01T21:00:48.5297008Z Entering 'third_party/FP16' 2025-06-01T21:00:48.5663716Z Entering 'third_party/FXdiv' 2025-06-01T21:00:48.6020968Z Entering 'third_party/NNPACK' 2025-06-01T21:00:48.6390012Z Entering 'third_party/NVTX' 2025-06-01T21:00:48.6787335Z Entering 'third_party/VulkanMemoryAllocator' 2025-06-01T21:00:48.7182793Z Entering 'third_party/XNNPACK' 2025-06-01T21:00:48.7601444Z Entering 'third_party/benchmark' 2025-06-01T21:00:48.8008139Z Entering 'third_party/composable_kernel' 2025-06-01T21:00:48.8386085Z Entering 'third_party/cpp-httplib' 2025-06-01T21:00:48.8753514Z Entering 'third_party/cpuinfo' 2025-06-01T21:00:48.9118591Z Entering 'third_party/cudnn_frontend' 2025-06-01T21:00:48.9482876Z Entering 'third_party/cutlass' 2025-06-01T21:00:48.9911204Z Entering 'third_party/eigen' 2025-06-01T21:00:49.0294249Z Entering 'third_party/fbgemm' 2025-06-01T21:00:49.0703799Z Entering 'third_party/fbgemm/external/asmjit' 2025-06-01T21:00:49.1092889Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-06-01T21:00:49.1472257Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-06-01T21:00:49.1845119Z Entering 'third_party/fbgemm/external/cutlass' 2025-06-01T21:00:49.2243602Z Entering 'third_party/fbgemm/external/googletest' 2025-06-01T21:00:49.2615447Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-06-01T21:00:49.2984417Z Entering 'third_party/fbgemm/external/json' 2025-06-01T21:00:49.3373741Z Entering 'third_party/flash-attention' 2025-06-01T21:00:49.3729021Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-06-01T21:00:49.4137566Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-06-01T21:00:49.4525235Z Entering 'third_party/flatbuffers' 2025-06-01T21:00:49.4900278Z Entering 'third_party/fmt' 2025-06-01T21:00:49.5266365Z Entering 'third_party/gemmlowp/gemmlowp' 2025-06-01T21:00:49.5655935Z Entering 'third_party/gloo' 2025-06-01T21:00:49.6025093Z Entering 'third_party/googletest' 2025-06-01T21:00:49.6401349Z Entering 'third_party/ideep' 2025-06-01T21:00:49.6758174Z Entering 'third_party/ideep/mkl-dnn' 2025-06-01T21:00:49.7164613Z Entering 'third_party/ittapi' 2025-06-01T21:00:49.7527600Z Entering 'third_party/kineto' 2025-06-01T21:00:49.7886983Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-06-01T21:00:49.8283104Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-06-01T21:00:49.8657935Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-06-01T21:00:49.9026857Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-06-01T21:00:49.9402503Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-06-01T21:00:49.9765790Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-06-01T21:00:50.0206700Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-06-01T21:00:50.0579931Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-06-01T21:00:50.0953078Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-06-01T21:00:50.1334756Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-06-01T21:00:50.1734383Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-06-01T21:00:50.2117302Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-06-01T21:00:50.2508419Z Entering 'third_party/kleidiai' 2025-06-01T21:00:50.2876226Z Entering 'third_party/mimalloc' 2025-06-01T21:00:50.3259567Z Entering 'third_party/nlohmann' 2025-06-01T21:00:50.3626030Z Entering 'third_party/onnx' 2025-06-01T21:00:50.4006343Z Entering 'third_party/onnx/third_party/pybind11' 2025-06-01T21:00:50.4433550Z Entering 'third_party/opentelemetry-cpp' 2025-06-01T21:00:50.4797902Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-06-01T21:00:50.5163132Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-06-01T21:00:50.5534063Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-06-01T21:00:50.5905776Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-06-01T21:00:50.6296297Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-06-01T21:00:50.6668412Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-06-01T21:00:50.7071905Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-06-01T21:00:50.7437398Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-06-01T21:00:50.7826131Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-06-01T21:00:50.8267802Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-06-01T21:00:50.8677031Z Entering 'third_party/pocketfft' 2025-06-01T21:00:50.9052560Z Entering 'third_party/protobuf' 2025-06-01T21:00:50.9428166Z Entering 'third_party/protobuf/third_party/benchmark' 2025-06-01T21:00:50.9797887Z Entering 'third_party/protobuf/third_party/googletest' 2025-06-01T21:00:51.0193691Z Entering 'third_party/psimd' 2025-06-01T21:00:51.0599408Z Entering 'third_party/pthreadpool' 2025-06-01T21:00:51.0965310Z Entering 'third_party/pybind11' 2025-06-01T21:00:51.1333580Z Entering 'third_party/python-peachpy' 2025-06-01T21:00:51.1718349Z Entering 'third_party/sleef' 2025-06-01T21:00:51.2082310Z Entering 'third_party/tensorpipe' 2025-06-01T21:00:51.2474593Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-06-01T21:00:51.2830530Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-06-01T21:00:51.3200631Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-06-01T21:00:51.3577651Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-06-01T21:00:51.3938131Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-06-01T21:00:51.4444440Z ##[endgroup] 2025-06-01T21:00:51.4444902Z ##[group]Persisting credentials for submodules 2025-06-01T21:00:51.4458267Z [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-06-01T21:00:51.7995482Z Entering 'android/libs/fbjni' 2025-06-01T21:00:51.8587471Z Entering 'third_party/FP16' 2025-06-01T21:00:51.9148004Z Entering 'third_party/FXdiv' 2025-06-01T21:00:51.9715086Z Entering 'third_party/NNPACK' 2025-06-01T21:00:52.0292592Z Entering 'third_party/NVTX' 2025-06-01T21:00:52.0859112Z Entering 'third_party/VulkanMemoryAllocator' 2025-06-01T21:00:52.1425854Z Entering 'third_party/XNNPACK' 2025-06-01T21:00:52.2051409Z Entering 'third_party/benchmark' 2025-06-01T21:00:52.2676532Z Entering 'third_party/composable_kernel' 2025-06-01T21:00:52.3256156Z Entering 'third_party/cpp-httplib' 2025-06-01T21:00:52.3820667Z Entering 'third_party/cpuinfo' 2025-06-01T21:00:52.4398157Z Entering 'third_party/cudnn_frontend' 2025-06-01T21:00:52.4971062Z Entering 'third_party/cutlass' 2025-06-01T21:00:52.5541673Z Entering 'third_party/eigen' 2025-06-01T21:00:52.6126022Z Entering 'third_party/fbgemm' 2025-06-01T21:00:52.6685990Z Entering 'third_party/fbgemm/external/asmjit' 2025-06-01T21:00:52.7272036Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-06-01T21:00:52.7863429Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-06-01T21:00:52.8432442Z Entering 'third_party/fbgemm/external/cutlass' 2025-06-01T21:00:52.9057967Z Entering 'third_party/fbgemm/external/googletest' 2025-06-01T21:00:52.9630715Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-06-01T21:00:53.0235884Z Entering 'third_party/fbgemm/external/json' 2025-06-01T21:00:53.0823149Z Entering 'third_party/flash-attention' 2025-06-01T21:00:53.1381503Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-06-01T21:00:53.1960517Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-06-01T21:00:53.3064941Z Entering 'third_party/flatbuffers' 2025-06-01T21:00:53.3632287Z Entering 'third_party/fmt' 2025-06-01T21:00:53.4196224Z Entering 'third_party/gemmlowp/gemmlowp' 2025-06-01T21:00:53.4763204Z Entering 'third_party/gloo' 2025-06-01T21:00:53.5337408Z Entering 'third_party/googletest' 2025-06-01T21:00:53.5920225Z Entering 'third_party/ideep' 2025-06-01T21:00:53.6466203Z Entering 'third_party/ideep/mkl-dnn' 2025-06-01T21:00:53.7087518Z Entering 'third_party/ittapi' 2025-06-01T21:00:53.7654804Z Entering 'third_party/kineto' 2025-06-01T21:00:53.8207529Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-06-01T21:00:53.8767628Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-06-01T21:00:53.9355453Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-06-01T21:00:53.9959934Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-06-01T21:00:54.0585860Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-06-01T21:00:54.1168174Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-06-01T21:00:54.1805160Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-06-01T21:00:54.2377585Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-06-01T21:00:54.2951737Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-06-01T21:00:54.3551590Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-06-01T21:00:54.4151691Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-06-01T21:00:54.4725631Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-06-01T21:00:54.5311183Z Entering 'third_party/kleidiai' 2025-06-01T21:00:54.5895968Z Entering 'third_party/mimalloc' 2025-06-01T21:00:54.6494346Z Entering 'third_party/nlohmann' 2025-06-01T21:00:54.7079555Z Entering 'third_party/onnx' 2025-06-01T21:00:54.7678780Z Entering 'third_party/onnx/third_party/pybind11' 2025-06-01T21:00:54.8277683Z Entering 'third_party/opentelemetry-cpp' 2025-06-01T21:00:54.8841454Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-06-01T21:00:54.9432216Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-06-01T21:00:55.0016947Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-06-01T21:00:55.0585106Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-06-01T21:00:55.1173230Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-06-01T21:00:55.1754371Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-06-01T21:00:55.2324705Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-06-01T21:00:55.2919010Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-06-01T21:00:55.3501564Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-06-01T21:00:55.4099771Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-06-01T21:00:55.4724012Z Entering 'third_party/pocketfft' 2025-06-01T21:00:55.5287750Z Entering 'third_party/protobuf' 2025-06-01T21:00:55.5882719Z Entering 'third_party/protobuf/third_party/benchmark' 2025-06-01T21:00:55.6452366Z Entering 'third_party/protobuf/third_party/googletest' 2025-06-01T21:00:55.7046846Z Entering 'third_party/psimd' 2025-06-01T21:00:55.7657525Z Entering 'third_party/pthreadpool' 2025-06-01T21:00:55.8248035Z Entering 'third_party/pybind11' 2025-06-01T21:00:55.8832419Z Entering 'third_party/python-peachpy' 2025-06-01T21:00:55.9404355Z Entering 'third_party/sleef' 2025-06-01T21:00:55.9979375Z Entering 'third_party/tensorpipe' 2025-06-01T21:00:56.0574250Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-06-01T21:00:56.1158450Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-06-01T21:00:56.1740350Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-06-01T21:00:56.2354250Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-06-01T21:00:56.2911536Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-06-01T21:00:56.3617179Z [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-06-01T21:00:56.7240397Z Entering 'android/libs/fbjni' 2025-06-01T21:00:56.7787825Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/android/libs/fbjni/config remote.origin.url 2025-06-01T21:00:56.7923113Z Entering 'third_party/FP16' 2025-06-01T21:00:56.8473761Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FP16/config remote.origin.url 2025-06-01T21:00:56.8608550Z Entering 'third_party/FXdiv' 2025-06-01T21:00:56.9163143Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FXdiv/config remote.origin.url 2025-06-01T21:00:56.9295471Z Entering 'third_party/NNPACK' 2025-06-01T21:00:56.9835459Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK/config remote.origin.url 2025-06-01T21:00:56.9967698Z Entering 'third_party/NVTX' 2025-06-01T21:00:57.0508297Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NVTX/config remote.origin.url 2025-06-01T21:00:57.0650435Z Entering 'third_party/VulkanMemoryAllocator' 2025-06-01T21:00:57.1184467Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/VulkanMemoryAllocator/config remote.origin.url 2025-06-01T21:00:57.1312053Z Entering 'third_party/XNNPACK' 2025-06-01T21:00:57.1848576Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/XNNPACK/config remote.origin.url 2025-06-01T21:00:57.2000693Z Entering 'third_party/benchmark' 2025-06-01T21:00:57.2537181Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/benchmark/config remote.origin.url 2025-06-01T21:00:57.2676167Z Entering 'third_party/composable_kernel' 2025-06-01T21:00:57.3247679Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/composable_kernel/config remote.origin.url 2025-06-01T21:00:57.3391017Z Entering 'third_party/cpp-httplib' 2025-06-01T21:00:57.3929021Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cpp-httplib/config remote.origin.url 2025-06-01T21:00:57.4062845Z Entering 'third_party/cpuinfo' 2025-06-01T21:00:57.4609608Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cpuinfo/config remote.origin.url 2025-06-01T21:00:57.4745603Z Entering 'third_party/cudnn_frontend' 2025-06-01T21:00:57.5316389Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cudnn_frontend/config remote.origin.url 2025-06-01T21:00:57.5446255Z Entering 'third_party/cutlass' 2025-06-01T21:00:57.6011506Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cutlass/config remote.origin.url 2025-06-01T21:00:57.6156231Z Entering 'third_party/eigen' 2025-06-01T21:00:57.6705400Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/eigen/config remote.origin.url 2025-06-01T21:00:57.6843698Z Entering 'third_party/fbgemm' 2025-06-01T21:00:57.7387541Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/config remote.origin.url 2025-06-01T21:00:57.7508121Z Entering 'third_party/fbgemm/external/asmjit' 2025-06-01T21:00:57.8055537Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/asmjit/config remote.origin.url 2025-06-01T21:00:57.8185394Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-06-01T21:00:57.8747289Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/composable_kernel/config remote.origin.url 2025-06-01T21:00:57.8887757Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-06-01T21:00:57.9470953Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/cpuinfo/config remote.origin.url 2025-06-01T21:00:57.9605110Z Entering 'third_party/fbgemm/external/cutlass' 2025-06-01T21:00:58.0156072Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/cutlass/config remote.origin.url 2025-06-01T21:00:58.0299612Z Entering 'third_party/fbgemm/external/googletest' 2025-06-01T21:00:58.0837219Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/googletest/config remote.origin.url 2025-06-01T21:00:58.0965551Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-06-01T21:00:58.1554753Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/hipify_torch/config remote.origin.url 2025-06-01T21:00:58.1693397Z Entering 'third_party/fbgemm/external/json' 2025-06-01T21:00:58.2246879Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/json/config remote.origin.url 2025-06-01T21:00:58.2398433Z Entering 'third_party/flash-attention' 2025-06-01T21:00:58.2959646Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/config remote.origin.url 2025-06-01T21:00:58.3078784Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-06-01T21:00:58.3636560Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/modules/csrc/composable_kernel/config remote.origin.url 2025-06-01T21:00:58.3775290Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-06-01T21:00:58.4328141Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/modules/csrc/cutlass/config remote.origin.url 2025-06-01T21:00:58.4484966Z Entering 'third_party/flatbuffers' 2025-06-01T21:00:58.5050779Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flatbuffers/config remote.origin.url 2025-06-01T21:00:58.5185862Z Entering 'third_party/fmt' 2025-06-01T21:00:58.5725908Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fmt/config remote.origin.url 2025-06-01T21:00:58.5865859Z Entering 'third_party/gemmlowp/gemmlowp' 2025-06-01T21:00:58.6442994Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/gemmlowp/gemmlowp/config remote.origin.url 2025-06-01T21:00:58.6573766Z Entering 'third_party/gloo' 2025-06-01T21:00:58.7138466Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/gloo/config remote.origin.url 2025-06-01T21:00:58.7274984Z Entering 'third_party/googletest' 2025-06-01T21:00:58.7830073Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/googletest/config remote.origin.url 2025-06-01T21:00:58.7963638Z Entering 'third_party/ideep' 2025-06-01T21:00:58.8524662Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/config remote.origin.url 2025-06-01T21:00:58.8652097Z Entering 'third_party/ideep/mkl-dnn' 2025-06-01T21:00:58.9186263Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/modules/mkl-dnn/config remote.origin.url 2025-06-01T21:00:58.9379412Z Entering 'third_party/ittapi' 2025-06-01T21:00:58.9914664Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ittapi/config remote.origin.url 2025-06-01T21:00:59.0043940Z Entering 'third_party/kineto' 2025-06-01T21:00:59.0640204Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/config remote.origin.url 2025-06-01T21:00:59.0761752Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-06-01T21:00:59.1314176Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/config remote.origin.url 2025-06-01T21:00:59.1433254Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-06-01T21:00:59.1987928Z 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-06-01T21:00:59.2122767Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-06-01T21:00:59.2703044Z 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-06-01T21:00:59.2849867Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-06-01T21:00:59.3409797Z 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-06-01T21:00:59.3540531Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-06-01T21:00:59.4096361Z 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-06-01T21:00:59.4214505Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-06-01T21:00:59.4794810Z 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-06-01T21:00:59.4954467Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-06-01T21:00:59.5508837Z 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-06-01T21:00:59.5646180Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-06-01T21:00:59.6203528Z 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-06-01T21:00:59.6342285Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-06-01T21:00:59.6918138Z 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-06-01T21:00:59.7053063Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-06-01T21:00:59.7647612Z 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-06-01T21:00:59.7803487Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-06-01T21:00:59.8379069Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/fmt/config remote.origin.url 2025-06-01T21:00:59.8512533Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-06-01T21:00:59.9064309Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/googletest/config remote.origin.url 2025-06-01T21:00:59.9215088Z Entering 'third_party/kleidiai' 2025-06-01T21:00:59.9800853Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kleidiai/config remote.origin.url 2025-06-01T21:00:59.9934228Z Entering 'third_party/mimalloc' 2025-06-01T21:01:00.0494502Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/mimalloc/config remote.origin.url 2025-06-01T21:01:00.0635312Z Entering 'third_party/nlohmann' 2025-06-01T21:01:00.1189731Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/nlohmann/config remote.origin.url 2025-06-01T21:01:00.1350773Z Entering 'third_party/onnx' 2025-06-01T21:01:00.1913659Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/config remote.origin.url 2025-06-01T21:01:00.2051332Z Entering 'third_party/onnx/third_party/pybind11' 2025-06-01T21:01:00.2644223Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/modules/third_party/pybind11/config remote.origin.url 2025-06-01T21:01:00.2803372Z Entering 'third_party/opentelemetry-cpp' 2025-06-01T21:01:00.3409556Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/config remote.origin.url 2025-06-01T21:01:00.3527580Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-06-01T21:01:00.4119023Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/benchmark/config remote.origin.url 2025-06-01T21:01:00.4268482Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-06-01T21:01:00.4827889Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/googletest/config remote.origin.url 2025-06-01T21:01:00.4962729Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-06-01T21:01:00.5578392Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/ms-gsl/config remote.origin.url 2025-06-01T21:01:00.5709080Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-06-01T21:01:00.6260502Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/nlohmann-json/config remote.origin.url 2025-06-01T21:01:00.6397232Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-06-01T21:01:00.6940473Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentelemetry-proto/config remote.origin.url 2025-06-01T21:01:00.7079345Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-06-01T21:01:00.7639441Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentracing-cpp/config remote.origin.url 2025-06-01T21:01:00.7777554Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-06-01T21:01:00.8344195Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/prometheus-cpp/config remote.origin.url 2025-06-01T21:01:00.8467664Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-06-01T21:01:00.9024372Z 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-06-01T21:01:00.9163827Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-06-01T21:01:00.9708179Z 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-06-01T21:01:00.9858658Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-06-01T21:01:01.0411538Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/tools/vcpkg/config remote.origin.url 2025-06-01T21:01:01.0583512Z Entering 'third_party/pocketfft' 2025-06-01T21:01:01.1144947Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/pocketfft/config remote.origin.url 2025-06-01T21:01:01.1278019Z Entering 'third_party/protobuf' 2025-06-01T21:01:01.1834074Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/config remote.origin.url 2025-06-01T21:01:01.1957477Z Entering 'third_party/protobuf/third_party/benchmark' 2025-06-01T21:01:01.2503056Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/benchmark/config remote.origin.url 2025-06-01T21:01:01.2634250Z Entering 'third_party/protobuf/third_party/googletest' 2025-06-01T21:01:01.3190413Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/googletest/config remote.origin.url 2025-06-01T21:01:01.3343752Z Entering 'third_party/psimd' 2025-06-01T21:01:01.3881495Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/psimd/config remote.origin.url 2025-06-01T21:01:01.4020825Z Entering 'third_party/pthreadpool' 2025-06-01T21:01:01.4570345Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/pthreadpool/config remote.origin.url 2025-06-01T21:01:01.4701307Z Entering 'third_party/pybind11' 2025-06-01T21:01:01.5272337Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/pybind11/config remote.origin.url 2025-06-01T21:01:01.5406426Z Entering 'third_party/python-peachpy' 2025-06-01T21:01:01.5982813Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/python-peachpy/config remote.origin.url 2025-06-01T21:01:01.6115255Z Entering 'third_party/sleef' 2025-06-01T21:01:01.6655209Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/sleef/config remote.origin.url 2025-06-01T21:01:01.6786571Z Entering 'third_party/tensorpipe' 2025-06-01T21:01:01.7338499Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/config remote.origin.url 2025-06-01T21:01:01.7461815Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-06-01T21:01:01.8015067Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/googletest/config remote.origin.url 2025-06-01T21:01:01.8145211Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-06-01T21:01:01.8714753Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libnop/config remote.origin.url 2025-06-01T21:01:01.8850455Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-06-01T21:01:01.9425703Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libuv/config remote.origin.url 2025-06-01T21:01:01.9565790Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-06-01T21:01:02.0157226Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/pybind11/config remote.origin.url 2025-06-01T21:01:02.0273714Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-06-01T21:01:02.0841613Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/pybind11/modules/tools/clang/config remote.origin.url 2025-06-01T21:01:02.1443764Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local --add 'url.https://github.com/.insteadOf' 'git@github.com:'" 2025-06-01T21:01:02.5282377Z Entering 'android/libs/fbjni' 2025-06-01T21:01:02.5663555Z Entering 'third_party/FP16' 2025-06-01T21:01:02.6052718Z Entering 'third_party/FXdiv' 2025-06-01T21:01:02.6421704Z Entering 'third_party/NNPACK' 2025-06-01T21:01:02.6819939Z Entering 'third_party/NVTX' 2025-06-01T21:01:02.7223959Z Entering 'third_party/VulkanMemoryAllocator' 2025-06-01T21:01:02.7611460Z Entering 'third_party/XNNPACK' 2025-06-01T21:01:02.7999443Z Entering 'third_party/benchmark' 2025-06-01T21:01:02.8374427Z Entering 'third_party/composable_kernel' 2025-06-01T21:01:02.8772040Z Entering 'third_party/cpp-httplib' 2025-06-01T21:01:02.9144733Z Entering 'third_party/cpuinfo' 2025-06-01T21:01:02.9555632Z Entering 'third_party/cudnn_frontend' 2025-06-01T21:01:02.9929721Z Entering 'third_party/cutlass' 2025-06-01T21:01:03.0314607Z Entering 'third_party/eigen' 2025-06-01T21:01:03.0696668Z Entering 'third_party/fbgemm' 2025-06-01T21:01:03.1053723Z Entering 'third_party/fbgemm/external/asmjit' 2025-06-01T21:01:03.1454719Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-06-01T21:01:03.1826046Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-06-01T21:01:03.2195596Z Entering 'third_party/fbgemm/external/cutlass' 2025-06-01T21:01:03.2577775Z Entering 'third_party/fbgemm/external/googletest' 2025-06-01T21:01:03.2951717Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-06-01T21:01:03.3333052Z Entering 'third_party/fbgemm/external/json' 2025-06-01T21:01:03.3750923Z Entering 'third_party/flash-attention' 2025-06-01T21:01:03.4114581Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-06-01T21:01:03.4510339Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-06-01T21:01:03.4908536Z Entering 'third_party/flatbuffers' 2025-06-01T21:01:03.5279207Z Entering 'third_party/fmt' 2025-06-01T21:01:03.5664438Z Entering 'third_party/gemmlowp/gemmlowp' 2025-06-01T21:01:03.6040610Z Entering 'third_party/gloo' 2025-06-01T21:01:03.6429074Z Entering 'third_party/googletest' 2025-06-01T21:01:03.6814738Z Entering 'third_party/ideep' 2025-06-01T21:01:03.7189245Z Entering 'third_party/ideep/mkl-dnn' 2025-06-01T21:01:03.7594435Z Entering 'third_party/ittapi' 2025-06-01T21:01:03.7960836Z Entering 'third_party/kineto' 2025-06-01T21:01:03.8314856Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-06-01T21:01:03.8681669Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-06-01T21:01:03.9069009Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-06-01T21:01:03.9460355Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-06-01T21:01:03.9860323Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-06-01T21:01:04.0216789Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-06-01T21:01:04.0811194Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-06-01T21:01:04.1184701Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-06-01T21:01:04.1568257Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-06-01T21:01:04.1959485Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-06-01T21:01:04.2345099Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-06-01T21:01:04.2718426Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-06-01T21:01:04.3114162Z Entering 'third_party/kleidiai' 2025-06-01T21:01:04.3482936Z Entering 'third_party/mimalloc' 2025-06-01T21:01:04.3858831Z Entering 'third_party/nlohmann' 2025-06-01T21:01:04.4236428Z Entering 'third_party/onnx' 2025-06-01T21:01:04.4623911Z Entering 'third_party/onnx/third_party/pybind11' 2025-06-01T21:01:04.5016298Z Entering 'third_party/opentelemetry-cpp' 2025-06-01T21:01:04.5377392Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-06-01T21:01:04.5740603Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-06-01T21:01:04.6109490Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-06-01T21:01:04.6479370Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-06-01T21:01:04.6840544Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-06-01T21:01:04.7196204Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-06-01T21:01:04.7584581Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-06-01T21:01:04.7937746Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-06-01T21:01:04.8325206Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-06-01T21:01:04.8714377Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-06-01T21:01:04.9140032Z Entering 'third_party/pocketfft' 2025-06-01T21:01:04.9524343Z Entering 'third_party/protobuf' 2025-06-01T21:01:04.9925476Z Entering 'third_party/protobuf/third_party/benchmark' 2025-06-01T21:01:05.0309919Z Entering 'third_party/protobuf/third_party/googletest' 2025-06-01T21:01:05.0686063Z Entering 'third_party/psimd' 2025-06-01T21:01:05.1038498Z Entering 'third_party/pthreadpool' 2025-06-01T21:01:05.1404493Z Entering 'third_party/pybind11' 2025-06-01T21:01:05.1758180Z Entering 'third_party/python-peachpy' 2025-06-01T21:01:05.2114761Z Entering 'third_party/sleef' 2025-06-01T21:01:05.2468886Z Entering 'third_party/tensorpipe' 2025-06-01T21:01:05.2814601Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-06-01T21:01:05.3175480Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-06-01T21:01:05.3547334Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-06-01T21:01:05.3920555Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-06-01T21:01:05.4283575Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-06-01T21:01:05.4782215Z [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-06-01T21:01:05.8385350Z Entering 'android/libs/fbjni' 2025-06-01T21:01:05.8749058Z Entering 'third_party/FP16' 2025-06-01T21:01:05.9117572Z Entering 'third_party/FXdiv' 2025-06-01T21:01:05.9473015Z Entering 'third_party/NNPACK' 2025-06-01T21:01:05.9827980Z Entering 'third_party/NVTX' 2025-06-01T21:01:06.0226713Z Entering 'third_party/VulkanMemoryAllocator' 2025-06-01T21:01:06.1828678Z Entering 'third_party/XNNPACK' 2025-06-01T21:01:06.2206404Z Entering 'third_party/benchmark' 2025-06-01T21:01:06.2589718Z Entering 'third_party/composable_kernel' 2025-06-01T21:01:06.2963252Z Entering 'third_party/cpp-httplib' 2025-06-01T21:01:06.3312049Z Entering 'third_party/cpuinfo' 2025-06-01T21:01:06.3673384Z Entering 'third_party/cudnn_frontend' 2025-06-01T21:01:06.4030501Z Entering 'third_party/cutlass' 2025-06-01T21:01:06.4398474Z Entering 'third_party/eigen' 2025-06-01T21:01:06.4766053Z Entering 'third_party/fbgemm' 2025-06-01T21:01:06.5108371Z Entering 'third_party/fbgemm/external/asmjit' 2025-06-01T21:01:06.5490045Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-06-01T21:01:06.6208789Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-06-01T21:01:06.6593954Z Entering 'third_party/fbgemm/external/cutlass' 2025-06-01T21:01:06.6971099Z Entering 'third_party/fbgemm/external/googletest' 2025-06-01T21:01:06.7362139Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-06-01T21:01:06.7793340Z Entering 'third_party/fbgemm/external/json' 2025-06-01T21:01:06.8177310Z Entering 'third_party/flash-attention' 2025-06-01T21:01:06.8533885Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-06-01T21:01:06.8935291Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-06-01T21:01:06.9335992Z Entering 'third_party/flatbuffers' 2025-06-01T21:01:06.9726341Z Entering 'third_party/fmt' 2025-06-01T21:01:07.0088776Z Entering 'third_party/gemmlowp/gemmlowp' 2025-06-01T21:01:07.0459247Z Entering 'third_party/gloo' 2025-06-01T21:01:07.0854532Z Entering 'third_party/googletest' 2025-06-01T21:01:07.1238678Z Entering 'third_party/ideep' 2025-06-01T21:01:07.1592534Z Entering 'third_party/ideep/mkl-dnn' 2025-06-01T21:01:07.2023998Z Entering 'third_party/ittapi' 2025-06-01T21:01:07.2395659Z Entering 'third_party/kineto' 2025-06-01T21:01:07.2762112Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-06-01T21:01:07.3123535Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-06-01T21:01:07.4968208Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-06-01T21:01:07.5365596Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-06-01T21:01:07.5749319Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-06-01T21:01:07.6129871Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-06-01T21:01:07.6523470Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-06-01T21:01:07.6910374Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-06-01T21:01:07.7286179Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-06-01T21:01:07.7665903Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-06-01T21:01:07.8067297Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-06-01T21:01:07.8453614Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-06-01T21:01:07.8848884Z Entering 'third_party/kleidiai' 2025-06-01T21:01:07.9214787Z Entering 'third_party/mimalloc' 2025-06-01T21:01:07.9574936Z Entering 'third_party/nlohmann' 2025-06-01T21:01:07.9945410Z Entering 'third_party/onnx' 2025-06-01T21:01:08.0322888Z Entering 'third_party/onnx/third_party/pybind11' 2025-06-01T21:01:08.0717498Z Entering 'third_party/opentelemetry-cpp' 2025-06-01T21:01:08.1076993Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-06-01T21:01:08.1484656Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-06-01T21:01:08.1871516Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-06-01T21:01:08.2238229Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-06-01T21:01:08.2621534Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-06-01T21:01:08.3006966Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-06-01T21:01:08.3430276Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-06-01T21:01:08.3794275Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-06-01T21:01:08.4172885Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-06-01T21:01:08.4571231Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-06-01T21:01:08.5008207Z Entering 'third_party/pocketfft' 2025-06-01T21:01:08.5417435Z Entering 'third_party/protobuf' 2025-06-01T21:01:08.5775659Z Entering 'third_party/protobuf/third_party/benchmark' 2025-06-01T21:01:08.6143864Z Entering 'third_party/protobuf/third_party/googletest' 2025-06-01T21:01:08.6554898Z Entering 'third_party/psimd' 2025-06-01T21:01:08.6924889Z Entering 'third_party/pthreadpool' 2025-06-01T21:01:08.7298573Z Entering 'third_party/pybind11' 2025-06-01T21:01:08.7672366Z Entering 'third_party/python-peachpy' 2025-06-01T21:01:08.8041180Z Entering 'third_party/sleef' 2025-06-01T21:01:08.8414761Z Entering 'third_party/tensorpipe' 2025-06-01T21:01:08.8768126Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-06-01T21:01:08.9151478Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-06-01T21:01:08.9555905Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-06-01T21:01:08.9929292Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-06-01T21:01:09.0277661Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-06-01T21:01:09.0777160Z ##[endgroup] 2025-06-01T21:01:09.1055933Z [command]"C:\Program Files\Git\cmd\git.exe" log -1 --format=%H 2025-06-01T21:01:09.1271669Z f7c09f864a6c6467a7454f1431340d3338473fd1 2025-06-01T21:01:09.1581257Z Prepare all required actions 2025-06-01T21:01:09.1650080Z ##[group]Run ./.github/actions/setup-win 2025-06-01T21:01:09.1650374Z with: 2025-06-01T21:01:09.1650584Z cuda-version: 12.6 2025-06-01T21:01:09.1650785Z env: 2025-06-01T21:01:09.1650979Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:01:09.1651364Z ##[endgroup] 2025-06-01T21:01:09.1740482Z ##[group]Run set -euo pipefail 2025-06-01T21:01:09.1740827Z set -euo pipefail 2025-06-01T21:01:09.1741083Z function get_ec2_metadata() { 2025-06-01T21:01:09.1741426Z  # Pulled from instance metadata endpoint for EC2 2025-06-01T21:01:09.1742008Z  # see https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-data-retrieval.html 2025-06-01T21:01:09.1742518Z  category=$1 2025-06-01T21:01:09.1743360Z  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-06-01T21:01:09.1744202Z } 2025-06-01T21:01:09.1744435Z echo "ami-id: $(get_ec2_metadata ami-id)" 2025-06-01T21:01:09.1744813Z echo "instance-id: $(get_ec2_metadata instance-id)" 2025-06-01T21:01:09.1745252Z echo "instance-type: $(get_ec2_metadata instance-type)" 2025-06-01T21:01:09.1745696Z echo "system info $(uname -a)" 2025-06-01T21:01:09.1765591Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T21:01:09.1766010Z env: 2025-06-01T21:01:09.1766198Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:01:09.1766418Z ##[endgroup] 2025-06-01T21:01:09.2522190Z ami-id: ami-047591c381c19028d 2025-06-01T21:01:09.2996479Z instance-id: i-07560307e21f40fae 2025-06-01T21:01:09.3470298Z instance-type: c5d.4xlarge 2025-06-01T21:01:09.3663825Z system info MSYS_NT-10.0-17763 EC2AMAZ-DD9BHOF 3.5.4-395fda67.x86_64 2024-11-25 09:49 UTC x86_64 Msys 2025-06-01T21:01:09.3775646Z ##[group]Run Set-ItemProperty -Path "HKLM:\\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 2025-06-01T21:01:09.3777243Z Set-ItemProperty -Path "HKLM:\\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 2025-06-01T21:01:09.3795233Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-06-01T21:01:09.3795882Z env: 2025-06-01T21:01:09.3796059Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:01:09.3796289Z ##[endgroup] 2025-06-01T21:01:09.7604487Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-06-01T21:01:09.7672310Z Finished 2025-06-01T21:01:09.8006271Z ##[group]Run # Windows conda is baked into the AMI at this location 2025-06-01T21:01:09.8006764Z # Windows conda is baked into the AMI at this location 2025-06-01T21:01:09.8007178Z CONDA="C:\Jenkins\Miniconda3\condabin\conda.bat" 2025-06-01T21:01:09.8007689Z  2025-06-01T21:01:09.8007876Z { 2025-06-01T21:01:09.8008189Z  echo "CONDA_RUN=${CONDA} run --no-capture-output"; 2025-06-01T21:01:09.8008614Z  echo "CONDA_BUILD=${CONDA} run conda-build"; 2025-06-01T21:01:09.8008959Z  echo "CONDA_INSTALL=${CONDA} install"; 2025-06-01T21:01:09.8009249Z } >> "${GITHUB_ENV}" 2025-06-01T21:01:09.8028652Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T21:01:09.8029072Z env: 2025-06-01T21:01:09.8029271Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:01:09.8029491Z ##[endgroup] 2025-06-01T21:01:09.8335691Z ##[group]Run set +e 2025-06-01T21:01:09.8335958Z set +e 2025-06-01T21:01:09.8336153Z set -x 2025-06-01T21:01:09.8336323Z  2025-06-01T21:01:09.8336536Z PYTHON3=$(${CONDA_RUN} which python3) 2025-06-01T21:01:09.8336825Z EXIT_CODE=$? 2025-06-01T21:01:09.8337028Z  2025-06-01T21:01:09.8338793Z if [[ "${EXIT_CODE}" == "0" ]]; then 2025-06-01T21:01:09.8339209Z  echo "Found Python3 at ${PYTHON3}, adding it into GITHUB_PATH" 2025-06-01T21:01:09.8339578Z  2025-06-01T21:01:09.8339780Z  PYTHON_PATH=$(dirname "${PYTHON3}") 2025-06-01T21:01:09.8340113Z  echo "${PYTHON_PATH}" >> "${GITHUB_PATH}" 2025-06-01T21:01:09.8340545Z else 2025-06-01T21:01:09.8340989Z  # According to https://docs.conda.io/en/latest/miniconda.html, we are using the Miniconda3 2025-06-01T21:01:09.8341694Z  # installation, which is Python 3 based. Its Python is default to Python 3. Further, there 2025-06-01T21:01:09.8342346Z  # is also the Miniconda installation that is Python 2 based, and both can be installed if 2025-06-01T21:01:09.8342973Z  # needed. In both cases, Python binary is just called python 2025-06-01T21:01:09.8343400Z  PYTHON=$(${CONDA_RUN} which python) 2025-06-01T21:01:09.8343693Z  EXIT_CODE=$? 2025-06-01T21:01:09.8343909Z  2025-06-01T21:01:09.8344109Z  if [[ "${EXIT_CODE}" == "0" ]]; then 2025-06-01T21:01:09.8344552Z  echo "Found Python at ${PYTHON}, set Python3 alias and add it into GITHUB_PATH" 2025-06-01T21:01:09.8344957Z  2025-06-01T21:01:09.8345212Z  PYTHON3=$(echo "${PYTHON}" | sed "s/python/python3/") 2025-06-01T21:01:09.8345727Z  # It's difficult to setup alias across GitHub action steps, so I just add a softlink 2025-06-01T21:01:09.8346195Z  # here pointing to Python 2025-06-01T21:01:09.8346492Z  ln -s "${PYTHON}" "${PYTHON3}" 2025-06-01T21:01:09.8346753Z  2025-06-01T21:01:09.8346967Z  PYTHON_PATH=$(dirname "${PYTHON}") 2025-06-01T21:01:09.8347297Z  echo "${PYTHON_PATH}" >> "${GITHUB_PATH}" 2025-06-01T21:01:09.8347595Z  else 2025-06-01T21:01:09.8347826Z  echo "Found no Python using ${CONDA_RUN}" 2025-06-01T21:01:09.8348125Z  fi 2025-06-01T21:01:09.8348299Z fi 2025-06-01T21:01:09.8368126Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T21:01:09.8368543Z env: 2025-06-01T21:01:09.8368733Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:01:09.8369099Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:01:09.8369633Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:01:09.8370094Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:01:09.8370452Z ##[endgroup] 2025-06-01T21:01:09.8659810Z ++ 'C:\Jenkins\Miniconda3\condabin\conda.bat' run --no-capture-output which python3 2025-06-01T21:01:15.6526980Z 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/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/Users/runneruser/AppData/Local/Microsoft/WindowsApps) 2025-06-01T21:01:15.6554711Z ERROR conda.cli.main_run:execute(49): `conda run which python3` failed. (See above for error) 2025-06-01T21:01:15.7462090Z + PYTHON3= 2025-06-01T21:01:15.7462312Z + EXIT_CODE=1 2025-06-01T21:01:15.7462770Z + [[ 1 == \0 ]] 2025-06-01T21:01:15.7526352Z ++ 'C:\Jenkins\Miniconda3\condabin\conda.bat' run --no-capture-output which python 2025-06-01T21:01:17.5077652Z + PYTHON=/c/Jenkins/Miniconda3/python 2025-06-01T21:01:17.5078013Z + EXIT_CODE=0 2025-06-01T21:01:17.5078193Z + [[ 0 == \0 ]] 2025-06-01T21:01:17.5078630Z + echo 'Found Python at /c/Jenkins/Miniconda3/python, set Python3 alias and add it into GITHUB_PATH' 2025-06-01T21:01:17.5080208Z Found Python at /c/Jenkins/Miniconda3/python, set Python3 alias and add it into GITHUB_PATH 2025-06-01T21:01:17.5199245Z ++ echo /c/Jenkins/Miniconda3/python 2025-06-01T21:01:17.5253336Z ++ sed s/python/python3/ 2025-06-01T21:01:17.5323630Z + PYTHON3=/c/Jenkins/Miniconda3/python3 2025-06-01T21:01:17.5324359Z + ln -s /c/Jenkins/Miniconda3/python /c/Jenkins/Miniconda3/python3 2025-06-01T21:01:17.5526121Z ++ dirname /c/Jenkins/Miniconda3/python 2025-06-01T21:01:17.5604910Z + PYTHON_PATH=/c/Jenkins/Miniconda3 2025-06-01T21:01:17.5605249Z + echo /c/Jenkins/Miniconda3 2025-06-01T21:01:17.5704041Z ##[group]Run TMPDIR=$(python -c 'import tempfile; print(tempfile.gettempdir());') 2025-06-01T21:01:17.5704637Z TMPDIR=$(python -c 'import tempfile; print(tempfile.gettempdir());') 2025-06-01T21:01:17.5705094Z echo "TMPDIR=${TMPDIR}" >> "${GITHUB_ENV}" 2025-06-01T21:01:17.5727501Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T21:01:17.5727954Z env: 2025-06-01T21:01:17.5728137Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:01:17.5728505Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:01:17.5729013Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:01:17.5729493Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:01:17.5729833Z ##[endgroup] 2025-06-01T21:01:17.6631252Z ##[group]Run Add-MpPreference -ExclusionPath $(Get-Location).tostring(),$Env:TMPDIR,"C:\Jenkins\Miniconda3" -ErrorAction Ignore 2025-06-01T21:01:17.6632247Z Add-MpPreference -ExclusionPath $(Get-Location).tostring(),$Env:TMPDIR,"C:\Jenkins\Miniconda3" -ErrorAction Ignore 2025-06-01T21:01:17.6633012Z # Let's both exclude the path and disable Windows Defender completely just to be sure 2025-06-01T21:01:17.6633466Z # that it doesn't interfere 2025-06-01T21:01:17.6633931Z Set-MpPreference -DisableRealtimeMonitoring $True -ErrorAction Ignore 2025-06-01T21:01:17.6650023Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-06-01T21:01:17.6650472Z env: 2025-06-01T21:01:17.6650656Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:01:17.6651033Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:01:17.6651560Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:01:17.6652029Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:01:17.6652421Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:01:17.6652700Z ##[endgroup] 2025-06-01T21:01:18.0507832Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-06-01T21:01:18.0554605Z Finished 2025-06-01T21:01:18.7361103Z ##[group]Run choco install handle -y 2025-06-01T21:01:18.7361445Z choco install handle -y 2025-06-01T21:01:18.7361736Z handle C:\actions-runner\_work\ 2025-06-01T21:01:18.7378395Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-06-01T21:01:18.7378842Z env: 2025-06-01T21:01:18.7379035Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:01:18.7379397Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:01:18.7379931Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:01:18.7380412Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:01:18.7380798Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:01:18.7381087Z ##[endgroup] 2025-06-01T21:01:19.1000807Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-06-01T21:01:19.1059140Z Finished 2025-06-01T21:01:20.9943423Z Chocolatey v2.4.2 2025-06-01T21:01:21.1545357Z Installing the following packages: 2025-06-01T21:01:21.1551230Z handle 2025-06-01T21:01:21.1556051Z By installing, you accept licenses for the packages. 2025-06-01T21:01:22.2877580Z Downloading package from source 'https://community.chocolatey.org/api/v2/' 2025-06-01T21:01:22.4093757Z 2025-06-01T21:01:22.4094377Z Progress: Downloading Handle 5.0... 15% 2025-06-01T21:01:22.4094733Z Progress: Downloading Handle 5.0... 45% 2025-06-01T21:01:22.4096032Z Progress: Downloading Handle 5.0... 75% 2025-06-01T21:01:22.6470076Z Progress: Downloading Handle 5.0... 100% 2025-06-01T21:01:22.6470346Z 2025-06-01T21:01:22.6470482Z handle v5.0.0 [Approved] 2025-06-01T21:01:22.6680001Z handle package files install completed. Performing other installation steps. 2025-06-01T21:01:24.1087489Z Downloading Handle 2025-06-01T21:01:24.1087890Z from 'https://download.sysinternals.com/files/Handle.zip' 2025-06-01T21:01:24.1881713Z 2025-06-01T21:01:24.1899571Z Progress: 19% - Saving 143.51 KB of 729.82 KB 2025-06-01T21:01:24.2023592Z Progress: 41% - Saving 303.51 KB of 729.82 KB 2025-06-01T21:01:24.2038303Z Progress: 63% - Saving 463.51 KB of 729.82 KB 2025-06-01T21:01:24.2057513Z Progress: 85% - Saving 623.51 KB of 729.82 KB 2025-06-01T21:01:24.2061468Z Progress: 100% - Completed download of C:\Users\runneruser\AppData\Local\Temp\chocolatey\Handle\5.0.0\Handle.zip (729.82 KB). 2025-06-01T21:01:24.2068553Z Download of Handle.zip (729.82 KB) completed. 2025-06-01T21:01:27.2854105Z Hashes match. 2025-06-01T21:01:27.3129477Z Extracting C:\Users\runneruser\AppData\Local\Temp\chocolatey\Handle\5.0.0\Handle.zip to C:\ProgramData\chocolatey\lib\Handle\tools... 2025-06-01T21:01:27.8163910Z C:\ProgramData\chocolatey\lib\Handle\tools 2025-06-01T21:01:27.8217308Z HKEY_CURRENT_USER\Software\Sysinternals 2025-06-01T21:01:27.8365246Z HKEY_CURRENT_USER\Software\Sysinternals\Handle 2025-06-01T21:01:28.3498548Z ShimGen has successfully created a shim for handle.exe 2025-06-01T21:01:28.5425958Z ShimGen has successfully created a shim for handle64.exe 2025-06-01T21:01:28.7190384Z ShimGen has successfully created a shim for handle64a.exe 2025-06-01T21:01:28.7460707Z The install of handle was successful. 2025-06-01T21:01:28.7463775Z Deployed to 'C:\ProgramData\chocolatey\lib\Handle\tools' 2025-06-01T21:01:28.7566643Z 2025-06-01T21:01:28.7566799Z Chocolatey installed 1/1 packages. 2025-06-01T21:01:28.7567208Z See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log). 2025-06-01T21:01:28.8590884Z 2025-06-01T21:01:28.8591323Z Nthandle v5.0 - Handle viewer 2025-06-01T21:01:28.8591705Z Copyright (C) 1997-2022 Mark Russinovich 2025-06-01T21:01:28.8592016Z Sysinternals - www.sysinternals.com 2025-06-01T21:01:28.8592208Z 2025-06-01T21:01:28.9709254Z powershell.exe pid: 5216 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-06-01T21:01:28.9709927Z handle.exe pid: 2096 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-06-01T21:01:28.9710560Z handle.exe pid: 4308 type: File 94: C:\actions-runner\_work\pytorch\pytorch 2025-06-01T21:01:28.9711212Z handle64.exe pid: 5960 type: File 50: C:\actions-runner\_work\pytorch\pytorch 2025-06-01T21:01:29.0038546Z ##[group]Run python3 .github/scripts/parse_ref.py 2025-06-01T21:01:29.0038955Z python3 .github/scripts/parse_ref.py 2025-06-01T21:01:29.0058606Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T21:01:29.0059057Z env: 2025-06-01T21:01:29.0059257Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:01:29.0059619Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:01:29.0060143Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:01:29.0060609Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:01:29.0060992Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:01:29.0061279Z ##[endgroup] 2025-06-01T21:01:29.0890207Z Prepare all required actions 2025-06-01T21:01:29.0926863Z ##[group]Run ./.github/actions/get-workflow-job-id 2025-06-01T21:01:29.0927181Z with: 2025-06-01T21:01:29.0927825Z github-token: *** 2025-06-01T21:01:29.0928025Z env: 2025-06-01T21:01:29.0928197Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:01:29.0928585Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:01:29.0929111Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:01:29.0930339Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:01:29.0930732Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:01:29.0931016Z ##[endgroup] 2025-06-01T21:01:29.1005823Z ##[group]Run set -eux 2025-06-01T21:01:29.1006072Z set -eux 2025-06-01T21:01:29.1006471Z python3 .github/scripts/get_workflow_job_id.py "${GITHUB_RUN_ID}" "${RUNNER_NAME}" 2025-06-01T21:01:29.1025956Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T21:01:29.1026390Z env: 2025-06-01T21:01:29.1026590Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:01:29.1027036Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:01:29.1027608Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:01:29.1028078Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:01:29.1028475Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:01:29.1029021Z GITHUB_TOKEN: *** 2025-06-01T21:01:29.1029213Z ##[endgroup] 2025-06-01T21:01:29.1223905Z + python3 .github/scripts/get_workflow_job_id.py 15379340894 i-07560307e21f40fae 2025-06-01T21:01:29.4764511Z setting job-id=43268061396 2025-06-01T21:01:29.4764869Z setting job-name=win-vs2022-cuda12.6-py3 / build 2025-06-01T21:01:29.5083013Z Prepare all required actions 2025-06-01T21:01:29.5083467Z Getting action download info 2025-06-01T21:01:29.6325589Z Download action repository 'nick-fields/retry@v3.0.0' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-06-01T21:01:29.8632646Z ##[group]Run ./.github/actions/filter-test-configs 2025-06-01T21:01:29.8633013Z with: 2025-06-01T21:01:29.8633424Z github-token: *** 2025-06-01T21:01:29.8633661Z job-name: win-vs2022-cuda12.6-py3 / build 2025-06-01T21:01:29.8633950Z env: 2025-06-01T21:01:29.8634125Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:01:29.8634502Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:01:29.8635033Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:01:29.8635502Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:01:29.8635883Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:01:29.8636168Z ##[endgroup] 2025-06-01T21:01:29.8757434Z ##[group]Run nick-fields/retry@v3.0.0 2025-06-01T21:01:29.8757730Z with: 2025-06-01T21:01:29.8757904Z shell: bash 2025-06-01T21:01:29.8758087Z timeout_minutes: 10 2025-06-01T21:01:29.8758294Z max_attempts: 5 2025-06-01T21:01:29.8758483Z retry_wait_seconds: 30 2025-06-01T21:01:29.8759217Z command: set -eux # PyYAML 6.0 doesn't work with MacOS x86 anymore # This must run on Python-3.7 (AmazonLinux2) so can't use request=3.32.2 python3 -m pip install requests==2.27.1 pyyaml==6.0.1 2025-06-01T21:01:29.8759982Z polling_interval_seconds: 1 2025-06-01T21:01:29.8760220Z warning_on_retry: true 2025-06-01T21:01:29.8760456Z continue_on_error: false 2025-06-01T21:01:29.8760670Z env: 2025-06-01T21:01:29.8760840Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:01:29.8761250Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:01:29.8761825Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:01:29.8762344Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:01:29.8762738Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:01:29.8763270Z GITHUB_TOKEN: *** 2025-06-01T21:01:29.8763462Z ##[endgroup] 2025-06-01T21:01:29.9967205Z + python3 -m pip install requests==2.27.1 pyyaml==6.0.1 2025-06-01T21:01:34.1769804Z Collecting requests==2.27.1 2025-06-01T21:01:34.3642783Z Downloading requests-2.27.1-py2.py3-none-any.whl.metadata (5.0 kB) 2025-06-01T21:01:34.4750766Z Collecting pyyaml==6.0.1 2025-06-01T21:01:34.4809163Z Downloading PyYAML-6.0.1-cp39-cp39-win_amd64.whl.metadata (2.1 kB) 2025-06-01T21:01:34.5034571Z 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-06-01T21:01:34.5041493Z Requirement already satisfied: certifi>=2017.4.17 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (2025.1.31) 2025-06-01T21:01:34.5053826Z Requirement already satisfied: charset-normalizer~=2.0.0 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (2.0.4) 2025-06-01T21:01:34.5067541Z Requirement already satisfied: idna<4,>=2.5 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (3.7) 2025-06-01T21:01:34.5385611Z Downloading requests-2.27.1-py2.py3-none-any.whl (63 kB) 2025-06-01T21:01:34.6041333Z ---------------------------------------- 63.1/63.1 kB 839.6 kB/s eta 0:00:00 2025-06-01T21:01:34.6103653Z Downloading PyYAML-6.0.1-cp39-cp39-win_amd64.whl (152 kB) 2025-06-01T21:01:34.6559448Z ---------------------------------------- 152.8/152.8 kB 4.5 MB/s eta 0:00:00 2025-06-01T21:01:35.9178049Z Installing collected packages: requests, pyyaml 2025-06-01T21:01:35.9178602Z Attempting uninstall: requests 2025-06-01T21:01:35.9190838Z Found existing installation: requests 2.32.3 2025-06-01T21:01:35.9264642Z Uninstalling requests-2.32.3: 2025-06-01T21:01:35.9288085Z Successfully uninstalled requests-2.32.3 2025-06-01T21:01:35.9980315Z Attempting uninstall: pyyaml 2025-06-01T21:01:35.9987798Z Found existing installation: PyYAML 6.0.2 2025-06-01T21:01:36.0069349Z Uninstalling PyYAML-6.0.2: 2025-06-01T21:01:36.0098801Z Successfully uninstalled PyYAML-6.0.2 2025-06-01T21:01:36.1219929Z Successfully installed pyyaml-6.0.1 requests-2.27.1 2025-06-01T21:01:37.0073456Z Command completed after 1 attempt(s). 2025-06-01T21:01:37.0255681Z ##[group]Run set -x 2025-06-01T21:01:37.0255934Z set -x 2025-06-01T21:01:37.0256115Z  2025-06-01T21:01:37.0256469Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-06-01T21:01:37.0256928Z # in runner workspace 2025-06-01T21:01:37.0257263Z python3 "${GITHUB_ACTION_PATH}/../../scripts/parse_ref.py" 2025-06-01T21:01:37.0276663Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T21:01:37.0277091Z env: 2025-06-01T21:01:37.0277274Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:01:37.0277668Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:01:37.0278173Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:01:37.0278643Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:01:37.0279036Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:01:37.0279314Z ##[endgroup] 2025-06-01T21:01:37.0529785Z + python3 'C:\actions-runner\_work\pytorch\pytorch\./.github/actions/filter-test-configs/../../scripts/parse_ref.py' 2025-06-01T21:01:37.1158249Z ##[group]Run echo "Workflow: ${GITHUB_WORKFLOW}" 2025-06-01T21:01:37.1158703Z echo "Workflow: ${GITHUB_WORKFLOW}" 2025-06-01T21:01:37.1159040Z echo "Job name: ${JOB_NAME}" 2025-06-01T21:01:37.1159337Z  2025-06-01T21:01:37.1159708Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-06-01T21:01:37.1160188Z # in runner workspace 2025-06-01T21:01:37.1160639Z python3 "${GITHUB_ACTION_PATH}/../../scripts/filter_test_configs.py" \ 2025-06-01T21:01:37.1161125Z  --workflow "${GITHUB_WORKFLOW}" \ 2025-06-01T21:01:37.1161452Z  --job-name "${JOB_NAME}" \ 2025-06-01T21:01:37.1161731Z  --test-matrix "" \ 2025-06-01T21:01:37.1162030Z  --selected-test-configs "" \ 2025-06-01T21:01:37.1162361Z  --pr-number "${PR_NUMBER}" \ 2025-06-01T21:01:37.1162677Z  --tag "${TAG}" \ 2025-06-01T21:01:37.1162957Z  --event-name "${EVENT_NAME}" \ 2025-06-01T21:01:37.1163237Z  --schedule "${SCHEDULE}" \ 2025-06-01T21:01:37.1163758Z  --branch "${HEAD_BRANCH}" 2025-06-01T21:01:37.1185584Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T21:01:37.1186015Z env: 2025-06-01T21:01:37.1186208Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:01:37.1186593Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:01:37.1187117Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:01:37.1187587Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:01:37.1187970Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:01:37.1188558Z GITHUB_TOKEN: *** 2025-06-01T21:01:37.1188784Z JOB_NAME: win-vs2022-cuda12.6-py3 / build 2025-06-01T21:01:37.1189065Z PR_NUMBER: 2025-06-01T21:01:37.1189253Z TAG: 2025-06-01T21:01:37.1189420Z EVENT_NAME: push 2025-06-01T21:01:37.1189615Z SCHEDULE: 2025-06-01T21:01:37.1189790Z HEAD_BRANCH: 2025-06-01T21:01:37.1190049Z ##[endgroup] 2025-06-01T21:01:37.1385516Z Workflow: trunk 2025-06-01T21:01:37.1385798Z Job name: win-vs2022-cuda12.6-py3 / build 2025-06-01T21:01:37.2619720Z C:\actions-runner\_work\pytorch\pytorch\.github\scripts\filter_test_configs.py:556: UserWarning: Invalid test matrix input '', exiting 2025-06-01T21:01:37.2621272Z warnings.warn(f"Invalid test matrix input '{args.test_matrix}', exiting") 2025-06-01T21:01:37.2889368Z ##[group]Run echo "Filtered matrix:" 2025-06-01T21:01:37.2889692Z echo "Filtered matrix:" 2025-06-01T21:01:37.2889940Z echo "" 2025-06-01T21:01:37.2890115Z  2025-06-01T21:01:37.2890283Z echo 2025-06-01T21:01:37.2890494Z echo "Is the current job unstable? " 2025-06-01T21:01:37.2890786Z  2025-06-01T21:01:37.2890945Z echo 2025-06-01T21:01:37.2891156Z echo "Is keep-going label set? " 2025-06-01T21:01:37.2891417Z  2025-06-01T21:01:37.2891582Z echo 2025-06-01T21:01:37.2891789Z echo "Renabled issues? " 2025-06-01T21:01:37.2910645Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T21:01:37.2911067Z env: 2025-06-01T21:01:37.2911263Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:01:37.2911632Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:01:37.2912169Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:01:37.2912651Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:01:37.2913040Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:01:37.2913334Z ##[endgroup] 2025-06-01T21:01:37.3104920Z Filtered matrix: 2025-06-01T21:01:37.3105719Z 2025-06-01T21:01:37.3105724Z 2025-06-01T21:01:37.3106277Z Is the current job unstable? 2025-06-01T21:01:37.3106460Z 2025-06-01T21:01:37.3106555Z Is keep-going label set? 2025-06-01T21:01:37.3106710Z 2025-06-01T21:01:37.3106795Z Renabled issues? 2025-06-01T21:01:37.3236112Z Prepare all required actions 2025-06-01T21:01:37.3236528Z Getting action download info 2025-06-01T21:01:37.4316756Z ##[group]Run ./.github/actions/pytest-cache-download 2025-06-01T21:01:37.4317076Z with: 2025-06-01T21:01:37.4317261Z cache_dir: .pytest_cache 2025-06-01T21:01:37.4317528Z job_identifier: trunk_win-vs2022-cuda12.6-py3 2025-06-01T21:01:37.4317846Z s3_bucket: gha-artifacts 2025-06-01T21:01:37.4318062Z env: 2025-06-01T21:01:37.4318236Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:01:37.4318597Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:01:37.4319127Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:01:37.4319599Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:01:37.4319987Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:01:37.4320272Z ##[endgroup] 2025-06-01T21:01:37.4414336Z ##[group]Run nick-fields/retry@v3.0.0 2025-06-01T21:01:37.4414811Z with: 2025-06-01T21:01:37.4414974Z shell: bash 2025-06-01T21:01:37.4415164Z timeout_minutes: 5 2025-06-01T21:01:37.4415366Z max_attempts: 5 2025-06-01T21:01:37.4415571Z retry_wait_seconds: 30 2025-06-01T21:01:37.4415859Z command: set -eu python3 -m pip install boto3==1.35.42 2025-06-01T21:01:37.4416218Z polling_interval_seconds: 1 2025-06-01T21:01:37.4416472Z warning_on_retry: true 2025-06-01T21:01:37.4416689Z continue_on_error: false 2025-06-01T21:01:37.4416910Z env: 2025-06-01T21:01:37.4417076Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:01:37.4417443Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:01:37.4417956Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:01:37.4418432Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:01:37.4418820Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:01:37.4419096Z ##[endgroup] 2025-06-01T21:01:38.9581722Z Collecting boto3==1.35.42 2025-06-01T21:01:39.1590873Z Downloading boto3-1.35.42-py3-none-any.whl.metadata (6.7 kB) 2025-06-01T21:01:39.9359494Z Collecting botocore<1.36.0,>=1.35.42 (from boto3==1.35.42) 2025-06-01T21:01:39.9408474Z Downloading botocore-1.35.99-py3-none-any.whl.metadata (5.7 kB) 2025-06-01T21:01:39.9523629Z 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-06-01T21:01:39.9826129Z Collecting s3transfer<0.11.0,>=0.10.0 (from boto3==1.35.42) 2025-06-01T21:01:39.9873961Z Downloading s3transfer-0.10.4-py3-none-any.whl.metadata (1.7 kB) 2025-06-01T21:01:40.0056831Z 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-06-01T21:01:40.0068905Z 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-06-01T21:01:40.1889175Z 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.16.0) 2025-06-01T21:01:40.2122230Z Downloading boto3-1.35.42-py3-none-any.whl (139 kB) 2025-06-01T21:01:40.3305587Z ---------------------------------------- 139.2/139.2 kB 1.0 MB/s eta 0:00:00 2025-06-01T21:01:40.3353629Z Downloading botocore-1.35.99-py3-none-any.whl (13.3 MB) 2025-06-01T21:01:40.4622550Z ---------------------------------------- 13.3/13.3 MB 129.4 MB/s eta 0:00:00 2025-06-01T21:01:40.4664772Z Downloading s3transfer-0.10.4-py3-none-any.whl (83 kB) 2025-06-01T21:01:40.4762373Z ---------------------------------------- 83.2/83.2 kB 2.4 MB/s eta 0:00:00 2025-06-01T21:01:41.3811019Z Installing collected packages: botocore, s3transfer, boto3 2025-06-01T21:01:41.3811926Z Attempting uninstall: botocore 2025-06-01T21:01:41.3825515Z Found existing installation: botocore 1.36.3 2025-06-01T21:01:41.5835723Z Uninstalling botocore-1.36.3: 2025-06-01T21:01:41.6665851Z Successfully uninstalled botocore-1.36.3 2025-06-01T21:01:44.8029560Z Attempting uninstall: s3transfer 2025-06-01T21:01:44.8040070Z Found existing installation: s3transfer 0.11.2 2025-06-01T21:01:44.8112971Z Uninstalling s3transfer-0.11.2: 2025-06-01T21:01:44.8135204Z Successfully uninstalled s3transfer-0.11.2 2025-06-01T21:01:44.8898456Z Attempting uninstall: boto3 2025-06-01T21:01:44.8907969Z Found existing installation: boto3 1.36.3 2025-06-01T21:01:44.9084934Z Uninstalling boto3-1.36.3: 2025-06-01T21:01:44.9140756Z Successfully uninstalled boto3-1.36.3 2025-06-01T21:01:45.0773893Z Successfully installed boto3-1.35.42 botocore-1.35.99 s3transfer-0.10.4 2025-06-01T21:01:45.6096843Z Command completed after 1 attempt(s). 2025-06-01T21:01:45.6251990Z ##[group]Run python3 .github/scripts/pytest_cache.py \ 2025-06-01T21:01:45.6252483Z python3 .github/scripts/pytest_cache.py \ 2025-06-01T21:01:45.6253018Z  --download \ 2025-06-01T21:01:45.6253326Z  --cache_dir $GITHUB_WORKSPACE/$CACHE_DIR \ 2025-06-01T21:01:45.6253721Z  --pr_identifier $GITHUB_REF \ 2025-06-01T21:01:45.6254073Z  --job_identifier $JOB_IDENTIFIER \ 2025-06-01T21:01:45.6254427Z  --temp_dir $RUNNER_TEMP \ 2025-06-01T21:01:45.6254725Z  --repo $REPO \ 2025-06-01T21:01:45.6255001Z  --bucket $BUCKET \ 2025-06-01T21:01:45.6276546Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T21:01:45.6277038Z env: 2025-06-01T21:01:45.6277261Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:01:45.6277675Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:01:45.6278257Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:01:45.6278774Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:01:45.6279236Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:01:45.6279573Z CACHE_DIR: .pytest_cache 2025-06-01T21:01:45.6279876Z JOB_IDENTIFIER: trunk_win-vs2022-cuda12.6-py3 2025-06-01T21:01:45.6280215Z REPO: pytorch/pytorch 2025-06-01T21:01:45.6280437Z BUCKET: gha-artifacts 2025-06-01T21:01:45.6280675Z ##[endgroup] 2025-06-01T21:01:46.5188475Z PR identifier for `refs/heads/main` is `96e092540d6b3c4076e3d2bc6f1f9013` 2025-06-01T21:01:46.5190119Z 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-06-01T21:01:46.5192071Z There were no files matching the prefix `pytest_cache/pytorch/pytorch/96e092540d6b3c4076e3d2bc6f1f9013/trunk_win-vs2022-cuda12_6-py3` in bucket `gha-artifacts` 2025-06-01T21:01:46.7450875Z ##[group]Run .ci/pytorch/win-build.sh 2025-06-01T21:01:46.7451260Z .ci/pytorch/win-build.sh 2025-06-01T21:01:46.7470718Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T21:01:46.7471143Z env: 2025-06-01T21:01:46.7471322Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:01:46.7471691Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:01:46.7472209Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:01:46.7472676Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:01:46.7473075Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:01:46.7473427Z PYTORCH_FINAL_PACKAGE_DIR: /c/15379340894/build-results/ 2025-06-01T21:01:46.7473752Z BRANCH: main 2025-06-01T21:01:46.7473975Z BUILD_ENVIRONMENT: win-vs2022-cuda12.6-py3 2025-06-01T21:01:46.7474253Z BUILD_WHEEL: 1 2025-06-01T21:01:46.7474437Z MAX_JOBS: 8 2025-06-01T21:01:46.7474665Z CUDA_VERSION: 12.6 2025-06-01T21:01:46.7474865Z PYTHON_VERSION: 3.9 2025-06-01T21:01:46.7475090Z SCCACHE_BUCKET: ossci-compiler-cache 2025-06-01T21:01:46.7475363Z SCCACHE_S3_KEY_PREFIX: trunk 2025-06-01T21:01:46.7475607Z SCCACHE_REGION: us-east-1 2025-06-01T21:01:46.7475931Z VC_PRODUCT: BuildTools 2025-06-01T21:01:46.7476142Z VC_VERSION: 2025-06-01T21:01:46.7476326Z VC_YEAR: 2019 2025-06-01T21:01:46.7476633Z ALPINE_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-06-01T21:01:46.7477049Z AWS_DEFAULT_REGION: us-east-1 2025-06-01T21:01:46.7477282Z PR_NUMBER: 2025-06-01T21:01:46.7477501Z SHA1: f7c09f864a6c6467a7454f1431340d3338473fd1 2025-06-01T21:01:46.7477772Z DEBUG: 0 2025-06-01T21:01:46.7477953Z TORCH_CUDA_ARCH_LIST: 8.6 2025-06-01T21:01:46.7478164Z USE_CUDA: 1 2025-06-01T21:01:46.7478340Z USE_XPU: 0 2025-06-01T21:01:46.7478517Z XPU_VERSION: 2025-06-01T21:01:46.7478706Z OUR_GITHUB_JOB_ID: 43268061396 2025-06-01T21:01:46.7479122Z ##[endgroup] 2025-06-01T21:01:46.8775242Z ++ [[ win-vs2022-cuda12.6-py3 == *rocm* ]] 2025-06-01T21:01:46.8775610Z ++ BUILD_TEST_LIBTORCH=0 2025-06-01T21:01:46.8775990Z + source /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/common-build.sh 2025-06-01T21:01:46.8777983Z ++ [[ win-vs2022-cuda12.6-py3 != *win-* ]] 2025-06-01T21:01:46.8778401Z + export TMP_DIR=/c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-06-01T21:01:46.8778872Z + TMP_DIR=/c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-06-01T21:01:46.8838667Z ++ cygpath -w /c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-06-01T21:01:46.8943158Z + TMP_DIR_WIN='C:\actions-runner\_work\pytorch\pytorch\build\win_tmp' 2025-06-01T21:01:46.8943583Z + export TMP_DIR_WIN 2025-06-01T21:01:46.8943886Z + export PYTORCH_FINAL_PACKAGE_DIR=/c/15379340894/build-results/ 2025-06-01T21:01:46.8944313Z + PYTORCH_FINAL_PACKAGE_DIR=/c/15379340894/build-results/ 2025-06-01T21:01:46.8944685Z + [[ -n /c/15379340894/build-results/ ]] 2025-06-01T21:01:46.8944988Z + mkdir -p /c/15379340894/build-results/ 2025-06-01T21:01:46.9087835Z + export SCRIPT_HELPERS_DIR=/c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-06-01T21:01:46.9088540Z + SCRIPT_HELPERS_DIR=/c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-06-01T21:01:46.9088997Z + set +ex 2025-06-01T21:01:47.9239145Z + /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/build_pytorch.bat 2025-06-01T21:01:47.9396018Z 2025-06-01T21:01:47.9398559Z C:\actions-runner\_work\pytorch\pytorch>if "0" == "1" (set BUILD_TYPE=debug ) ELSE (set BUILD_TYPE=release ) 2025-06-01T21:01:47.9402036Z 2025-06-01T21:01:47.9406507Z 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:\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:\Users\runneruser\AppData\Local\Microsoft\WindowsApps 2025-06-01T21:01:47.9409533Z 2025-06-01T21:01:47.9410419Z C:\actions-runner\_work\pytorch\pytorch>set INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-06-01T21:01:47.9419609Z 2025-06-01T21:01:47.9420343Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers\install_magma.bat 2025-06-01T21:01:47.9423935Z 2025-06-01T21:01:47.9424234Z C:\actions-runner\_work\pytorch\pytorch>if "12.6" == "cpu" ( 2025-06-01T21:01:47.9424671Z echo skip magma installation for cpu builds 2025-06-01T21:01:47.9425030Z exit /b 0 2025-06-01T21:01:47.9425237Z ) 2025-06-01T21:01:47.9427078Z 2025-06-01T21:01:47.9427399Z C:\actions-runner\_work\pytorch\pytorch>rem remove dot in cuda_version, fox example 11.1 to 111 2025-06-01T21:01:47.9428553Z 2025-06-01T21:01:47.9428857Z C:\actions-runner\_work\pytorch\pytorch>if not "1" == "1" (exit /b 0 ) 2025-06-01T21:01:47.9430125Z 2025-06-01T21:01:47.9430361Z C:\actions-runner\_work\pytorch\pytorch>if x126 == x12.6 ( 2025-06-01T21:01:47.9430864Z echo CUDA version 12.6 format isn't correct, which doesn't contain '.' 2025-06-01T21:01:47.9431311Z exit /b 1 2025-06-01T21:01:47.9431477Z ) 2025-06-01T21:01:47.9433161Z 2025-06-01T21:01:47.9433360Z C:\actions-runner\_work\pytorch\pytorch>set VERSION_SUFFIX=126 2025-06-01T21:01:47.9435286Z 2025-06-01T21:01:47.9435540Z C:\actions-runner\_work\pytorch\pytorch>set CUDA_SUFFIX=cuda126 2025-06-01T21:01:47.9439488Z 2025-06-01T21:01:47.9439744Z C:\actions-runner\_work\pytorch\pytorch>if "cuda126" == "" ( 2025-06-01T21:01:47.9452967Z echo unknown CUDA version, please set `CUDA_VERSION` higher than 10.2 2025-06-01T21:01:47.9453489Z exit /b 1 2025-06-01T21:01:47.9453656Z ) 2025-06-01T21:01:47.9453766Z 2025-06-01T21:01:47.9453914Z C:\actions-runner\_work\pytorch\pytorch>if "" == "" ( 2025-06-01T21:01:47.9455752Z 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-06-01T21:01:47.9457336Z if errorlevel 1 exit /b 2025-06-01T21:01:47.9457594Z if not errorlevel 0 exit /b 2025-06-01T21:01:47.9458262Z 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-06-01T21:01:47.9458968Z if errorlevel 1 exit /b 2025-06-01T21:01:47.9459218Z if not errorlevel 0 exit /b 2025-06-01T21:01:47.9459438Z ) 2025-06-01T21:01:50.2053884Z 2025-06-01T21:01:50.2054648Z 7-Zip 24.09 (x64) : Copyright (c) 1999-2024 Igor Pavlov : 2024-11-29 2025-06-01T21:01:50.2054970Z 2025-06-01T21:01:50.2055068Z Scanning the drive for archives: 2025-06-01T21:01:50.2055336Z 1 file, 62070579 bytes (60 MiB) 2025-06-01T21:01:50.2055493Z 2025-06-01T21:01:50.2055835Z Extracting archive: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\magma_2.5.4_cuda126_release.7z 2025-06-01T21:01:51.4975751Z -- 2025-06-01T21:01:51.4976281Z Path = C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\magma_2.5.4_cuda126_release.7z 2025-06-01T21:01:51.4976746Z Type = 7z 2025-06-01T21:01:51.4976931Z Physical Size = 62070579 2025-06-01T21:01:51.4977157Z Headers Size = 931 2025-06-01T21:01:51.4977350Z Method = LZMA2:24 2025-06-01T21:01:51.4977537Z Solid = + 2025-06-01T21:01:51.4978548Z Blocks = 1 2025-06-01T21:01:51.4978690Z 2025-06-01T21:01:51.4978778Z Everything is Ok 2025-06-01T21:01:51.4978900Z 2025-06-01T21:01:51.4978976Z Folders: 2 2025-06-01T21:01:51.4979138Z Files: 68 2025-06-01T21:01:51.4979307Z Size: 144236024 2025-06-01T21:01:51.4979506Z Compressed: 62070579 2025-06-01T21:01:51.5001174Z 2025-06-01T21:01:51.5001910Z C:\actions-runner\_work\pytorch\pytorch>set MAGMA_HOME=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\magma 2025-06-01T21:01:51.5006688Z 2025-06-01T21:01:51.5007140Z C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 goto fail 2025-06-01T21:01:51.5007950Z 2025-06-01T21:01:51.5008224Z C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 goto fail 2025-06-01T21:01:51.5009371Z 2025-06-01T21:01:51.5009983Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers\install_sccache.bat 2025-06-01T21:01:51.5023588Z 2025-06-01T21:01:51.5024028Z C:\actions-runner\_work\pytorch\pytorch>mkdir C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin 2025-06-01T21:01:51.5030295Z 2025-06-01T21:01:51.5030567Z C:\actions-runner\_work\pytorch\pytorch>if "" == "" ( 2025-06-01T21:01:51.5031051Z IF EXIST C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin\sccache.exe ( 2025-06-01T21:01:51.5031533Z taskkill /im sccache.exe /f /t || ver 1>nul 2025-06-01T21:01:51.5032022Z del C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin\sccache.exe || ver 1>nul 2025-06-01T21:01:51.5032471Z ) 2025-06-01T21:01:51.5033735Z 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-06-01T21:01:51.5035308Z ) 2025-06-01T21:01:52.8355750Z Completed 256.0 KiB/18.8 MiB (625.7 KiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8358124Z Completed 512.0 KiB/18.8 MiB (1.2 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8370525Z Completed 768.0 KiB/18.8 MiB (1.7 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8371061Z Completed 1.0 MiB/18.8 MiB (2.3 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8378764Z Completed 1.2 MiB/18.8 MiB (2.9 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8383678Z Completed 1.5 MiB/18.8 MiB (3.5 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8389797Z Completed 1.8 MiB/18.8 MiB (4.1 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8395135Z Completed 2.0 MiB/18.8 MiB (4.6 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8399418Z Completed 2.2 MiB/18.8 MiB (5.2 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8404126Z Completed 2.5 MiB/18.8 MiB (5.8 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8409186Z Completed 2.8 MiB/18.8 MiB (6.4 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8414709Z Completed 3.0 MiB/18.8 MiB (7.0 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8420211Z Completed 3.2 MiB/18.8 MiB (7.5 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8424666Z Completed 3.5 MiB/18.8 MiB (8.1 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8427836Z Completed 3.8 MiB/18.8 MiB (8.7 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8432703Z Completed 4.0 MiB/18.8 MiB (9.3 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8439676Z Completed 4.2 MiB/18.8 MiB (9.9 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8443183Z Completed 4.5 MiB/18.8 MiB (10.4 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8450912Z Completed 4.8 MiB/18.8 MiB (11.0 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8456971Z Completed 5.0 MiB/18.8 MiB (11.4 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8468402Z Completed 5.2 MiB/18.8 MiB (11.9 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8481291Z Completed 5.5 MiB/18.8 MiB (12.5 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8487632Z Completed 5.8 MiB/18.8 MiB (13.0 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8492621Z Completed 6.0 MiB/18.8 MiB (13.5 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8498000Z Completed 6.2 MiB/18.8 MiB (14.1 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8503323Z Completed 6.5 MiB/18.8 MiB (14.6 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8510519Z Completed 6.8 MiB/18.8 MiB (15.2 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8516144Z Completed 7.0 MiB/18.8 MiB (15.7 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8520451Z Completed 7.2 MiB/18.8 MiB (16.2 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8530125Z Completed 7.5 MiB/18.8 MiB (16.8 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8535287Z Completed 7.8 MiB/18.8 MiB (17.3 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8542106Z Completed 8.0 MiB/18.8 MiB (17.8 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8547494Z Completed 8.2 MiB/18.8 MiB (18.4 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8552525Z Completed 8.5 MiB/18.8 MiB (18.9 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8558106Z Completed 8.8 MiB/18.8 MiB (19.4 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8564162Z Completed 9.0 MiB/18.8 MiB (20.0 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8569950Z Completed 9.2 MiB/18.8 MiB (20.5 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8576095Z Completed 9.5 MiB/18.8 MiB (21.0 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8576799Z Completed 9.8 MiB/18.8 MiB (21.6 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8583866Z Completed 10.0 MiB/18.8 MiB (22.1 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8590483Z Completed 10.2 MiB/18.8 MiB (22.6 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8595593Z Completed 10.5 MiB/18.8 MiB (23.2 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8597733Z Completed 10.8 MiB/18.8 MiB (23.7 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8602437Z Completed 11.0 MiB/18.8 MiB (24.2 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8605676Z Completed 11.2 MiB/18.8 MiB (24.7 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8610739Z Completed 11.5 MiB/18.8 MiB (25.3 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8614907Z Completed 11.8 MiB/18.8 MiB (25.8 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8617364Z Completed 12.0 MiB/18.8 MiB (26.3 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8621666Z Completed 12.2 MiB/18.8 MiB (26.8 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8627145Z Completed 12.5 MiB/18.8 MiB (27.4 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8632802Z Completed 12.8 MiB/18.8 MiB (27.9 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8636522Z Completed 13.0 MiB/18.8 MiB (28.4 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8640052Z Completed 13.2 MiB/18.8 MiB (28.9 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8643395Z Completed 13.5 MiB/18.8 MiB (29.4 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8651862Z Completed 13.8 MiB/18.8 MiB (30.0 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8655120Z Completed 14.0 MiB/18.8 MiB (30.5 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8658933Z Completed 14.2 MiB/18.8 MiB (31.0 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8663652Z Completed 14.5 MiB/18.8 MiB (31.5 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8667545Z Completed 14.8 MiB/18.8 MiB (32.0 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8672409Z Completed 15.0 MiB/18.8 MiB (32.5 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8676386Z Completed 15.2 MiB/18.8 MiB (33.0 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8679498Z Completed 15.5 MiB/18.8 MiB (33.5 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8684841Z Completed 15.8 MiB/18.8 MiB (34.0 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.8688150Z Completed 16.0 MiB/18.8 MiB (34.6 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.9000036Z Completed 16.2 MiB/18.8 MiB (35.1 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.9228411Z Completed 16.5 MiB/18.8 MiB (33.3 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.9248650Z Completed 16.8 MiB/18.8 MiB (32.4 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.9256286Z Completed 17.0 MiB/18.8 MiB (32.8 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.9261107Z Completed 17.2 MiB/18.8 MiB (33.1 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.9266510Z Completed 17.5 MiB/18.8 MiB (33.6 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.9282951Z Completed 17.8 MiB/18.8 MiB (34.0 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:52.9283471Z Completed 18.0 MiB/18.8 MiB (34.5 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.0006019Z Completed 18.2 MiB/18.8 MiB (34.9 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.0013095Z Completed 18.5 MiB/18.8 MiB (31.3 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.0018742Z Completed 18.8 MiB/18.8 MiB (31.7 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.0026418Z Completed 18.8 MiB/18.8 MiB (31.8 MiB/s) with 1 file(s) remaining 2025-06-01T21:01:53.0026962Z download: s3://ossci-windows/sccache-v0.7.4.exe to build\win_tmp\bin\sccache.exe 2025-06-01T21:01:53.1199101Z 2025-06-01T21:01:53.1200005Z C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 goto fail 2025-06-01T21:01:53.1201338Z 2025-06-01T21:01:53.1201756Z C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 goto fail 2025-06-01T21:01:53.1203852Z 2025-06-01T21:01:53.1204116Z C:\actions-runner\_work\pytorch\pytorch>if "0" == "1" ( 2025-06-01T21:01:53.1204467Z set CUDA_VERSION=xpu 2025-06-01T21:01:53.1204983Z call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\..\windows\internal\xpu_install.bat 2025-06-01T21:01:53.1205604Z if errorlevel 1 exit /b 1 2025-06-01T21:01:53.1206122Z ) 2025-06-01T21:01:53.1206933Z 2025-06-01T21:01:53.1207521Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers\activate_miniconda3.bat 2025-06-01T21:01:53.1221117Z 2025-06-01T21:01:53.1221867Z 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-06-01T21:01:53.1225917Z 2025-06-01T21:01:53.1226314Z C:\actions-runner\_work\pytorch\pytorch>if not exist C:\Jenkins\Miniconda3 (set INSTALL_FRESH_CONDA=1 ) 2025-06-01T21:01:53.1228777Z 2025-06-01T21:01:53.1229030Z C:\actions-runner\_work\pytorch\pytorch>if "" == "1" ( 2025-06-01T21:01:53.1230214Z 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-06-01T21:01:53.1231323Z if errorlevel 1 exit /b 2025-06-01T21:01:53.1238307Z if not errorlevel 0 exit /b 2025-06-01T21:01:53.1239152Z 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-06-01T21:01:53.1239962Z if errorlevel 1 exit /b 2025-06-01T21:01:53.1240199Z if not errorlevel 0 exit /b 2025-06-01T21:01:53.1240418Z ) 2025-06-01T21:01:53.1240519Z 2025-06-01T21:01:53.1240866Z C:\actions-runner\_work\pytorch\pytorch>call C:\Jenkins\Miniconda3\Scripts\activate.bat C:\Jenkins\Miniconda3 2025-06-01T21:01:54.5229703Z Chocolatey v2.4.2 2025-06-01T21:01:54.6707093Z Upgrading the following packages: 2025-06-01T21:01:54.6712671Z cmake 2025-06-01T21:01:54.6716387Z By upgrading, you accept licenses for the packages. 2025-06-01T21:01:55.0127107Z cmake is not installed. Installing... 2025-06-01T21:01:55.7363115Z Downloading package from source 'https://community.chocolatey.org/api/v2/' 2025-06-01T21:01:56.5792112Z 2025-06-01T21:01:56.5792525Z cmake.install v3.27.9 [Approved] 2025-06-01T21:01:56.5988602Z cmake.install package files upgrade completed. Performing other installation steps. 2025-06-01T21:01:57.2475946Z Installing 64-bit cmake.install... 2025-06-01T21:02:10.8600133Z cmake.install has been installed. 2025-06-01T21:02:10.9448446Z cmake.install may be able to be automatically uninstalled. 2025-06-01T21:02:10.9496981Z Environment Vars (like PATH) have changed. Close/reopen your shell to 2025-06-01T21:02:10.9497475Z see the changes (or in powershell/cmd.exe just type `refreshenv`). 2025-06-01T21:02:11.1625701Z The upgrade of cmake.install was successful. 2025-06-01T21:02:11.1628390Z Deployed to 'C:\Program Files\CMake\' 2025-06-01T21:02:11.1662320Z Downloading package from source 'https://community.chocolatey.org/api/v2/' 2025-06-01T21:02:11.2287109Z 2025-06-01T21:02:11.2287620Z cmake v3.27.9 [Approved] 2025-06-01T21:02:11.2301784Z cmake package files upgrade completed. Performing other installation steps. 2025-06-01T21:02:11.3365807Z The upgrade of cmake was successful. 2025-06-01T21:02:11.3368803Z Deployed to 'C:\ProgramData\chocolatey\lib\cmake' 2025-06-01T21:02:11.3450919Z 2025-06-01T21:02:11.3451432Z Chocolatey upgraded 2/2 packages. 2025-06-01T21:02:11.3451890Z See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log). 2025-06-01T21:02:12.2513836Z Collecting mkl-include==2021.4.0 2025-06-01T21:02:12.4617395Z Downloading mkl_include-2021.4.0-py2.py3-none-win_amd64.whl.metadata (1.3 kB) 2025-06-01T21:02:12.4938866Z Collecting mkl-devel==2021.4.0 2025-06-01T21:02:12.4999229Z Downloading mkl_devel-2021.4.0-py2.py3-none-win_amd64.whl.metadata (1.4 kB) 2025-06-01T21:02:12.5313497Z Collecting mkl==2021.4.0 (from mkl-devel==2021.4.0) 2025-06-01T21:02:12.5372902Z Downloading mkl-2021.4.0-py2.py3-none-win_amd64.whl.metadata (1.4 kB) 2025-06-01T21:02:12.5742882Z Collecting intel-openmp==2021.* (from mkl==2021.4.0->mkl-devel==2021.4.0) 2025-06-01T21:02:12.5791916Z Downloading intel_openmp-2021.4.0-py2.py3-none-win_amd64.whl.metadata (1.2 kB) 2025-06-01T21:02:12.6067842Z Collecting tbb==2021.* (from mkl==2021.4.0->mkl-devel==2021.4.0) 2025-06-01T21:02:12.6120542Z Downloading tbb-2021.13.1-py3-none-win_amd64.whl.metadata (1.1 kB) 2025-06-01T21:02:12.6294381Z Downloading mkl_include-2021.4.0-py2.py3-none-win_amd64.whl (1.2 MB) 2025-06-01T21:02:12.7428315Z ---------------------------------------- 1.2/1.2 MB 10.9 MB/s eta 0:00:00 2025-06-01T21:02:12.7522108Z Downloading mkl_devel-2021.4.0-py2.py3-none-win_amd64.whl (9.1 MB) 2025-06-01T21:02:12.8339050Z ---------------------------------------- 9.1/9.1 MB 117.0 MB/s eta 0:00:00 2025-06-01T21:02:12.8422419Z Downloading mkl-2021.4.0-py2.py3-none-win_amd64.whl (228.5 MB) 2025-06-01T21:02:15.9655256Z ---------------------------------------- 228.5/228.5 MB 5.3 MB/s eta 0:00:00 2025-06-01T21:02:15.9737467Z Downloading intel_openmp-2021.4.0-py2.py3-none-win_amd64.whl (3.5 MB) 2025-06-01T21:02:16.0090040Z ---------------------------------------- 3.5/3.5 MB 113.1 MB/s eta 0:00:00 2025-06-01T21:02:16.0165228Z Downloading tbb-2021.13.1-py3-none-win_amd64.whl (286 kB) 2025-06-01T21:02:16.0313875Z ---------------------------------------- 286.9/286.9 kB ? eta 0:00:00 2025-06-01T21:02:17.4879608Z Installing collected packages: tbb, mkl-include, intel-openmp, mkl, mkl-devel 2025-06-01T21:02:21.8989655Z Successfully installed intel-openmp-2021.4.0 mkl-2021.4.0 mkl-devel-2021.4.0 mkl-include-2021.4.0 tbb-2021.13.1 2025-06-01T21:02:22.2487550Z ********************************************************************** 2025-06-01T21:02:22.2488012Z ** Visual Studio 2019 Developer Command Prompt v16.11.44 2025-06-01T21:02:22.2488441Z ** Copyright (c) 2021 Microsoft Corporation 2025-06-01T21:02:22.2489678Z ********************************************************************** 2025-06-01T21:02:22.9301661Z [vcvarsall.bat] Environment initialized for: 'x64' 2025-06-01T21:02:22.9336026Z 2025-06-01T21:02:22.9336829Z (base) C:\actions-runner\_work\pytorch\pytorch>popd 2025-06-01T21:02:22.9340022Z 2025-06-01T21:02:22.9340343Z (base) C:\actions-runner\_work\pytorch\pytorch>if not "1" == "1" goto cuda_build_end 2025-06-01T21:02:22.9341410Z 2025-06-01T21:02:22.9341918Z (base) C:\actions-runner\_work\pytorch\pytorch>set CUDA_PATH=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-06-01T21:02:22.9344049Z 2025-06-01T21:02:22.9344372Z (base) C:\actions-runner\_work\pytorch\pytorch>if x126 == x12.6 ( 2025-06-01T21:02:22.9344848Z echo CUDA version 12.6 format isn't correct, which doesn't contain '.' 2025-06-01T21:02:22.9345232Z goto fail 2025-06-01T21:02:22.9345403Z ) 2025-06-01T21:02:22.9345564Z 2025-06-01T21:02:22.9346402Z (base) C:\actions-runner\_work\pytorch\pytorch>rem version transformer, for example 10.1 to 10_1. 2025-06-01T21:02:22.9346912Z 2025-06-01T21:02:22.9347150Z (base) C:\actions-runner\_work\pytorch\pytorch>if x126 == x12.6 ( 2025-06-01T21:02:22.9347658Z echo CUDA version 12.6 format isn't correct, which doesn't contain '.' 2025-06-01T21:02:22.9348078Z goto fail 2025-06-01T21:02:22.9348238Z ) 2025-06-01T21:02:22.9348654Z 2025-06-01T21:02:22.9349194Z (base) C:\actions-runner\_work\pytorch\pytorch>set VERSION_SUFFIX=12_6 2025-06-01T21:02:22.9351434Z 2025-06-01T21:02:22.9351903Z (base) C:\actions-runner\_work\pytorch\pytorch>set CUDA_PATH_V12_6=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-06-01T21:02:22.9353927Z 2025-06-01T21:02:22.9354436Z (base) C:\actions-runner\_work\pytorch\pytorch>set CUDNN_LIB_DIR=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\lib\x64 2025-06-01T21:02:22.9356297Z 2025-06-01T21:02:22.9356883Z (base) C:\actions-runner\_work\pytorch\pytorch>set CUDA_TOOLKIT_ROOT_DIR=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-06-01T21:02:22.9358397Z 2025-06-01T21:02:22.9358899Z (base) C:\actions-runner\_work\pytorch\pytorch>set CUDNN_ROOT_DIR=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-06-01T21:02:22.9360848Z 2025-06-01T21:02:22.9368808Z (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\2019\BuildTools\VC\Tools\MSVC\14.29.30133\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer;C:\Program Files (x86)\Microsoft Visual Studio\2019\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\2019\BuildTools\Common7\Tools\devinit;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\2019\BuildTools\\MSBuild\Current\Bin;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2019\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:\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:\Users\runneruser\AppData\Local\Microsoft\WindowsApps 2025-06-01T21:02:22.9376656Z 2025-06-01T21:02:22.9376864Z (base) C:\actions-runner\_work\pytorch\pytorch>set DISTUTILS_USE_SDK=1 2025-06-01T21:02:22.9377167Z 2025-06-01T21:02:22.9384930Z (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\2019\BuildTools\VC\Tools\MSVC\14.29.30133\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer;C:\Program Files (x86)\Microsoft Visual Studio\2019\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\2019\BuildTools\Common7\Tools\devinit;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\2019\BuildTools\\MSBuild\Current\Bin;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2019\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:\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:\Users\runneruser\AppData\Local\Microsoft\WindowsApps 2025-06-01T21:02:22.9393538Z 2025-06-01T21:02:22.9393803Z (base) C:\actions-runner\_work\pytorch\pytorch>if "8.6" == "" set TORCH_CUDA_ARCH_LIST=8.6 2025-06-01T21:02:22.9394198Z 2025-06-01T21:02:22.9394406Z (base) C:\actions-runner\_work\pytorch\pytorch>set SCCACHE_IDLE_TIMEOUT=0 2025-06-01T21:02:22.9394722Z 2025-06-01T21:02:22.9394970Z (base) C:\actions-runner\_work\pytorch\pytorch>set SCCACHE_IGNORE_SERVER_IO_ERROR=1 2025-06-01T21:02:22.9395318Z 2025-06-01T21:02:22.9395522Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --stop-server 2025-06-01T21:02:22.9521311Z Stopping sccache server... 2025-06-01T21:02:23.9531357Z sccache: error: couldn't connect to server 2025-06-01T21:02:23.9533853Z sccache: caused by: No connection could be made because the target machine actively refused it. (os error 10061) 2025-06-01T21:02:23.9559567Z 2025-06-01T21:02:23.9560130Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --start-server 2025-06-01T21:02:23.9658088Z sccache: Starting the server... 2025-06-01T21:02:24.1084101Z 2025-06-01T21:02:24.1084641Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --zero-stats 2025-06-01T21:02:24.1205109Z Compile requests 0 2025-06-01T21:02:24.1205555Z Compile requests executed 0 2025-06-01T21:02:24.1205847Z Cache hits 0 2025-06-01T21:02:24.1206117Z Cache misses 0 2025-06-01T21:02:24.1206377Z Cache timeouts 0 2025-06-01T21:02:24.1206884Z Cache read errors 0 2025-06-01T21:02:24.1207228Z Forced recaches 0 2025-06-01T21:02:24.1207498Z Cache write errors 0 2025-06-01T21:02:24.1207809Z Compilation failures 0 2025-06-01T21:02:24.1208086Z Cache errors 0 2025-06-01T21:02:24.1208359Z Non-cacheable compilations 0 2025-06-01T21:02:24.1208703Z Non-cacheable calls 0 2025-06-01T21:02:24.1209047Z Non-compilation calls 0 2025-06-01T21:02:24.1209331Z Unsupported compiler calls 0 2025-06-01T21:02:24.1209621Z Average cache write 0.000 s 2025-06-01T21:02:24.1209915Z Average compiler 0.000 s 2025-06-01T21:02:24.1210194Z Average cache read hit 0.000 s 2025-06-01T21:02:24.1210487Z Failed distributed compilations 0 2025-06-01T21:02:24.1210871Z Cache location s3, name: ossci-compiler-cache, prefix: /trunk/ 2025-06-01T21:02:24.1211278Z Version (client) 0.7.4 2025-06-01T21:02:24.1228322Z 2025-06-01T21:02:24.1228743Z (base) C:\actions-runner\_work\pytorch\pytorch>set CMAKE_C_COMPILER_LAUNCHER=sccache 2025-06-01T21:02:24.1232162Z 2025-06-01T21:02:24.1232483Z (base) C:\actions-runner\_work\pytorch\pytorch>set CMAKE_CXX_COMPILER_LAUNCHER=sccache 2025-06-01T21:02:24.1235083Z 2025-06-01T21:02:24.1235334Z (base) C:\actions-runner\_work\pytorch\pytorch>set CMAKE_GENERATOR=Ninja 2025-06-01T21:02:24.1240268Z 2025-06-01T21:02:24.1240940Z (base) C:\actions-runner\_work\pytorch\pytorch>if "1" == "1" ( 2025-06-01T21:02:24.1241284Z 2025-06-01T21:02:24.1241434Z 2025-06-01T21:02:24.1241580Z 2025-06-01T21:02:24.1242395Z 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-06-01T21:02:24.1243325Z if errorlevel 1 goto fail 2025-06-01T21:02:24.1243620Z if not errorlevel 0 goto fail 2025-06-01T21:02:24.1245168Z 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-06-01T21:02:24.1246746Z cat C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat 2025-06-01T21:02:24.1247451Z set CUDA_NVCC_EXECUTABLE=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat 2025-06-01T21:02:24.1248431Z 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-06-01T21:02:24.1249627Z 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-06-01T21:02:24.1250434Z ) 2025-06-01T21:02:24.1250646Z The system cannot find the drive specified. 2025-06-01T21:02:24.1251046Z The system cannot find the drive specified. 2025-06-01T21:02:24.1251408Z The system cannot find the drive specified. 2025-06-01T21:02:24.8996654Z % Total % Received % Xferd Average Speed Time Time Time Current 2025-06-01T21:02:24.8997156Z Dload Upload Total Spent Left Speed 2025-06-01T21:02:24.8997403Z 2025-06-01T21:02:24.9816983Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2025-06-01T21:02:24.9817403Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2025-06-01T21:02:25.0148857Z 2025-06-01T21:02:25.0149798Z 100 303k 100 303k 0 0 2492k 0 --:--:-- --:--:-- --:--:-- 2492k 2025-06-01T21:02:25.0330585Z @"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-06-01T21:02:25.0587657Z 2025-06-01T21:02:25.0588534Z (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-06-01T21:02:25.0593136Z 2025-06-01T21:02:25.0593507Z (base) C:\actions-runner\_work\pytorch\pytorch>set 2025-06-01T21:02:25.0594001Z ACTIONS_RUNNER_HOOK_JOB_COMPLETED=C:\actions-runner\jobcompleted.ps1 2025-06-01T21:02:25.0594446Z ALLUSERSPROFILE=C:\ProgramData 2025-06-01T21:02:25.0594818Z ALPINE_IMAGE=308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-06-01T21:02:25.0595240Z APPDATA=C:\Users\runneruser\AppData\Roaming 2025-06-01T21:02:25.0595534Z AWS_DEFAULT_REGION=us-east-1 2025-06-01T21:02:25.0595827Z AWS_EXECUTION_ENV=EC2 2025-06-01T21:02:25.0596027Z BRANCH=main 2025-06-01T21:02:25.0596280Z BUILD_ENVIRONMENT=win-vs2022-cuda12.6-py3 2025-06-01T21:02:25.0596572Z BUILD_TYPE=release 2025-06-01T21:02:25.0596759Z BUILD_WHEEL=1 2025-06-01T21:02:25.0596939Z CI=true 2025-06-01T21:02:25.0597336Z CMAKE_CUDA_COMPILER=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/bin/nvcc.exe 2025-06-01T21:02:25.0598411Z 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-06-01T21:02:25.0599229Z CMAKE_CXX_COMPILER_LAUNCHER=sccache 2025-06-01T21:02:25.0599506Z CMAKE_C_COMPILER_LAUNCHER=sccache 2025-06-01T21:02:25.0599760Z CMAKE_GENERATOR=Ninja 2025-06-01T21:02:25.0599991Z CommandPromptType=Native 2025-06-01T21:02:25.0600269Z COMMONPROGRAMFILES=C:\Program Files\Common Files 2025-06-01T21:02:25.0600584Z COMPUTERNAME=EC2AMAZ-DD9BHOF 2025-06-01T21:02:25.0600841Z COMSPEC=C:\Windows\system32\cmd.exe 2025-06-01T21:02:25.0601203Z CONDA_BUILD=C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:02:25.0601630Z CONDA_DEFAULT_ENV=base 2025-06-01T21:02:25.0601881Z CONDA_EXE=C:\Jenkins\Miniconda3\Scripts\conda.exe 2025-06-01T21:02:25.0602326Z CONDA_INSTALL=C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:02:25.0602914Z CONDA_PARENT_DIR=C:\Jenkins 2025-06-01T21:02:25.0603173Z CONDA_PREFIX=C:\Jenkins\Miniconda3 2025-06-01T21:02:25.0603450Z CONDA_PROMPT_MODIFIER=(base) 2025-06-01T21:02:25.0603740Z CONDA_PYTHON_EXE=C:\Jenkins\Miniconda3\python.exe 2025-06-01T21:02:25.0604188Z CONDA_RUN=C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:02:25.0604588Z CONDA_SHLVL=1 2025-06-01T21:02:25.0605018Z CUDA_NVCC_EXECUTABLE=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat 2025-06-01T21:02:25.0605570Z CUDA_PATH=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-06-01T21:02:25.0606039Z CUDA_PATH_V11_8=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.8 2025-06-01T21:02:25.0606530Z CUDA_PATH_V12_4=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.4 2025-06-01T21:02:25.0607023Z CUDA_PATH_V12_6=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-06-01T21:02:25.0607571Z CUDA_PATH_V12_8=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.8 2025-06-01T21:02:25.0607989Z CUDA_SUFFIX=cuda126 2025-06-01T21:02:25.0608324Z CUDA_TOOLKIT_ROOT_DIR=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-06-01T21:02:25.0608729Z CUDA_VERSION=12.6 2025-06-01T21:02:25.0608957Z ChocolateyInstall=C:\ProgramData\chocolatey 2025-06-01T21:02:25.0609352Z CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files 2025-06-01T21:02:25.0609745Z CommonProgramW6432=C:\Program Files\Common Files 2025-06-01T21:02:25.0610188Z CUDNN_LIB_DIR=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\lib\x64 2025-06-01T21:02:25.0610712Z CUDNN_ROOT_DIR=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-06-01T21:02:25.0611078Z DEBUG=0 2025-06-01T21:02:25.0611425Z DevEnvDir=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\ 2025-06-01T21:02:25.0611854Z DISTUTILS_USE_SDK=1 2025-06-01T21:02:25.0612122Z DriverData=C:\Windows\System32\Drivers\DriverData 2025-06-01T21:02:25.0612580Z EC2LAUNCH_TELEMETRY=1 2025-06-01T21:02:25.0612976Z ExtensionSdkDir=C:\Program Files (x86)\Microsoft SDKs\Windows Kits\10\ExtensionSDKs 2025-06-01T21:02:25.0613464Z Framework40Version=v4.0 2025-06-01T21:02:25.0613739Z FrameworkDir=C:\Windows\Microsoft.NET\Framework64\ 2025-06-01T21:02:25.0614163Z FrameworkDir64=C:\Windows\Microsoft.NET\Framework64\ 2025-06-01T21:02:25.0614494Z FrameworkVersion=v4.0.30319 2025-06-01T21:02:25.0614757Z FrameworkVersion64=v4.0.30319 2025-06-01T21:02:25.0614992Z GITHUB_ACTION=build 2025-06-01T21:02:25.0615193Z GITHUB_ACTIONS=true 2025-06-01T21:02:25.0615378Z GITHUB_ACTION_REF= 2025-06-01T21:02:25.0615587Z GITHUB_ACTION_REPOSITORY= 2025-06-01T21:02:25.0615816Z GITHUB_ACTOR=pytorchmergebot 2025-06-01T21:02:25.0616064Z GITHUB_ACTOR_ID=97764156 2025-06-01T21:02:25.0616323Z GITHUB_API_URL=https://api.github.com 2025-06-01T21:02:25.0616590Z GITHUB_BASE_REF= 2025-06-01T21:02:25.0617036Z GITHUB_ENV=C:\actions-runner\_work\_temp\_runner_file_commands\set_env_f0fc08d9-3dc2-49f8-9823-23ce2e8c7d0b 2025-06-01T21:02:25.0617554Z GITHUB_EVENT_NAME=push 2025-06-01T21:02:25.0617916Z GITHUB_EVENT_PATH=C:\actions-runner\_work\_temp\_github_workflow\event.json 2025-06-01T21:02:25.0618368Z GITHUB_GRAPHQL_URL=https://api.github.com/graphql 2025-06-01T21:02:25.0618686Z GITHUB_HEAD_REF= 2025-06-01T21:02:25.0618871Z GITHUB_JOB=build 2025-06-01T21:02:25.0619379Z GITHUB_OUTPUT=C:\actions-runner\_work\_temp\_runner_file_commands\set_output_f0fc08d9-3dc2-49f8-9823-23ce2e8c7d0b 2025-06-01T21:02:25.0620209Z GITHUB_PATH=C:\actions-runner\_work\_temp\_runner_file_commands\add_path_f0fc08d9-3dc2-49f8-9823-23ce2e8c7d0b 2025-06-01T21:02:25.0620725Z GITHUB_REF=refs/heads/main 2025-06-01T21:02:25.0620957Z GITHUB_REF_NAME=main 2025-06-01T21:02:25.0621162Z GITHUB_REF_PROTECTED=true 2025-06-01T21:02:25.0621385Z GITHUB_REF_TYPE=branch 2025-06-01T21:02:25.0621618Z GITHUB_REPOSITORY=pytorch/pytorch 2025-06-01T21:02:25.0621882Z GITHUB_REPOSITORY_ID=65600975 2025-06-01T21:02:25.0622258Z GITHUB_REPOSITORY_OWNER=pytorch 2025-06-01T21:02:25.0622532Z GITHUB_REPOSITORY_OWNER_ID=21003710 2025-06-01T21:02:25.0622808Z GITHUB_RETENTION_DAYS=90 2025-06-01T21:02:25.0623022Z GITHUB_RUN_ATTEMPT=1 2025-06-01T21:02:25.0623226Z GITHUB_RUN_ID=15379340894 2025-06-01T21:02:25.0623437Z GITHUB_RUN_NUMBER=129555 2025-06-01T21:02:25.0623689Z GITHUB_SERVER_URL=https://github.com 2025-06-01T21:02:25.0623996Z GITHUB_SHA=f7c09f864a6c6467a7454f1431340d3338473fd1 2025-06-01T21:02:25.0624569Z GITHUB_STATE=C:\actions-runner\_work\_temp\_runner_file_commands\save_state_f0fc08d9-3dc2-49f8-9823-23ce2e8c7d0b 2025-06-01T21:02:25.0625645Z GITHUB_STEP_SUMMARY=C:\actions-runner\_work\_temp\_runner_file_commands\step_summary_f0fc08d9-3dc2-49f8-9823-23ce2e8c7d0b 2025-06-01T21:02:25.0626282Z GITHUB_TRIGGERING_ACTOR=pytorchmergebot 2025-06-01T21:02:25.0626569Z GITHUB_WORKFLOW=trunk 2025-06-01T21:02:25.0626931Z GITHUB_WORKFLOW_REF=pytorch/pytorch/.github/workflows/trunk.yml@refs/heads/main 2025-06-01T21:02:25.0627452Z GITHUB_WORKFLOW_SHA=f7c09f864a6c6467a7454f1431340d3338473fd1 2025-06-01T21:02:25.0627862Z GITHUB_WORKSPACE=C:\actions-runner\_work\pytorch\pytorch 2025-06-01T21:02:25.0628202Z GIT_DEFAULT_BRANCH=main 2025-06-01T21:02:25.0628410Z HOME=C:\Users\runneruser 2025-06-01T21:02:25.0630110Z INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um;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\shared;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\winrt;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\cppwinrt 2025-06-01T21:02:25.0632359Z INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-06-01T21:02:25.0633815Z LIB=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\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-06-01T21:02:25.0636058Z LIBPATH=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\lib\x64;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\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-06-01T21:02:25.0637600Z LOCALAPPDATA=C:\Users\runneruser\AppData\Local 2025-06-01T21:02:25.0638131Z MAGMA_HOME=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\magma 2025-06-01T21:02:25.0638508Z MAX_JOBS=8 2025-06-01T21:02:25.0638787Z NETFXSDKDir=C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\ 2025-06-01T21:02:25.0639150Z NUMBER_OF_PROCESSORS=16 2025-06-01T21:02:25.0639368Z OS=Windows_NT 2025-06-01T21:02:25.0639565Z OUR_GITHUB_JOB_ID=43268061396 2025-06-01T21:02:25.0647492Z 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\2019\BuildTools\VC\Tools\MSVC\14.29.30133\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer;C:\Program Files (x86)\Microsoft Visual Studio\2019\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\2019\BuildTools\Common7\Tools\devinit;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\2019\BuildTools\\MSBuild\Current\Bin;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2019\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:\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:\Users\runneruser\AppData\Local\Microsoft\WindowsApps 2025-06-01T21:02:25.0656474Z PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC 2025-06-01T21:02:25.0656817Z Platform=x64 2025-06-01T21:02:25.0657022Z PROCESSOR_ARCHITECTURE=AMD64 2025-06-01T21:02:25.0657403Z PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 85 Stepping 7, GenuineIntel 2025-06-01T21:02:25.0657798Z PROCESSOR_LEVEL=6 2025-06-01T21:02:25.0658006Z PROCESSOR_REVISION=5507 2025-06-01T21:02:25.0658239Z PROGRAMFILES=C:\Program Files 2025-06-01T21:02:25.0658488Z PROMPT=(base) $P$G 2025-06-01T21:02:25.0658686Z PR_NUMBER= 2025-06-01T21:02:25.0659140Z PSModulePath=C:\Windows\system32\WindowsPowerShell\v1.0\Modules;C:\Program Files\WindowsPowerShell\Modules 2025-06-01T21:02:25.0659693Z PUBLIC=C:\Users\Public 2025-06-01T21:02:25.0660212Z *** 2025-06-01T21:02:25.0660555Z PYTHON_VERSION=3.9 2025-06-01T21:02:25.0660832Z PYTORCH_FINAL_PACKAGE_DIR=C:/15379340894/build-results/ 2025-06-01T21:02:25.0661220Z ProgramData=C:\ProgramData 2025-06-01T21:02:25.0661483Z ProgramFiles(x86)=C:\Program Files (x86) 2025-06-01T21:02:25.0661777Z ProgramW6432=C:\Program Files 2025-06-01T21:02:25.0662023Z RUNNER_ARCH=X64 2025-06-01T21:02:25.0662225Z RUNNER_ENVIRONMENT=self-hosted 2025-06-01T21:02:25.0662483Z RUNNER_NAME=i-07560307e21f40fae 2025-06-01T21:02:25.0662708Z RUNNER_OS=Windows 2025-06-01T21:02:25.0662937Z RUNNER_TEMP=C:\actions-runner\_work\_temp 2025-06-01T21:02:25.0663251Z RUNNER_TOOL_CACHE=C:\actions-runner\_work\_tool 2025-06-01T21:02:25.0663638Z RUNNER_TRACKING_ID=github_30fd196a-80f2-4a86-ae0d-4d5482225893 2025-06-01T21:02:25.0664038Z RUNNER_WORKSPACE=C:\actions-runner\_work\pytorch 2025-06-01T21:02:25.0664355Z SCCACHE_BUCKET=ossci-compiler-cache 2025-06-01T21:02:25.0664628Z SCCACHE_IDLE_TIMEOUT=0 2025-06-01T21:02:25.0664848Z SCCACHE_IGNORE_SERVER_IO_ERROR=1 2025-06-01T21:02:25.0665118Z SCCACHE_REGION=us-east-1 2025-06-01T21:02:25.0665342Z SCCACHE_S3_KEY_PREFIX=trunk 2025-06-01T21:02:25.0665764Z SCRIPT_HELPERS_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-06-01T21:02:25.0666250Z SHA1=f7c09f864a6c6467a7454f1431340d3338473fd1 2025-06-01T21:02:25.0666570Z SHLVL=2 2025-06-01T21:02:25.0666811Z SSL_CERT_FILE=C:\Jenkins\Miniconda3\Library\ssl\cacert.pem 2025-06-01T21:02:25.0667185Z SYSTEMDRIVE=C: 2025-06-01T21:02:25.0667382Z SYSTEMROOT=C:\Windows 2025-06-01T21:02:25.0667619Z TEMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:02:25.0667905Z TERM=xterm-256color 2025-06-01T21:02:25.0668124Z TMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:02:25.0668434Z TMPDIR=C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:02:25.0668796Z TMP_DIR=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-06-01T21:02:25.0669240Z TMP_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp 2025-06-01T21:02:25.0669596Z TORCH_CUDA_ARCH_LIST=8.6 2025-06-01T21:02:25.0669943Z UCRTVersion=10.0.19041.0 2025-06-01T21:02:25.0670265Z UniversalCRTSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-06-01T21:02:25.0670620Z UPDATEFILE=update.finished 2025-06-01T21:02:25.0670862Z USERDOMAIN=EC2AMAZ-DD9BHOF 2025-06-01T21:02:25.0671082Z USERNAME=runneruser 2025-06-01T21:02:25.0671296Z USERPROFILE=C:\Users\runneruser 2025-06-01T21:02:25.0671520Z USE_CUDA=1 2025-06-01T21:02:25.0671697Z USE_XPU=0 2025-06-01T21:02:25.0672081Z VCIDEInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\VC\ 2025-06-01T21:02:25.0672758Z VCINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\ 2025-06-01T21:02:25.0673460Z VCToolsInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\ 2025-06-01T21:02:25.0674229Z VCToolsRedistDir=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Redist\MSVC\14.29.30133\ 2025-06-01T21:02:25.0674759Z VCToolsVersion=14.29.30133 2025-06-01T21:02:25.0674997Z VC_PRODUCT=BuildTools 2025-06-01T21:02:25.0675204Z VC_VERSION= 2025-06-01T21:02:25.0675369Z VC_YEAR=2019 2025-06-01T21:02:25.0675566Z VERBOSE_ARG='SilentlyContinue' 2025-06-01T21:02:25.0675805Z VERSION_SUFFIX=12_6 2025-06-01T21:02:25.0676017Z VisualStudioVersion=16.0 2025-06-01T21:02:25.0676444Z VS160COMNTOOLS=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\Tools\ 2025-06-01T21:02:25.0676998Z VSCMD_ARG_app_plat=Desktop 2025-06-01T21:02:25.0677235Z VSCMD_ARG_HOST_ARCH=x64 2025-06-01T21:02:25.0677446Z VSCMD_ARG_TGT_ARCH=x64 2025-06-01T21:02:25.0677656Z VSCMD_VER=16.11.44 2025-06-01T21:02:25.0678091Z VSINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\ 2025-06-01T21:02:25.0678541Z WINDIR=C:\Windows 2025-06-01T21:02:25.0679136Z 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-06-01T21:02:25.0679996Z WindowsSdkBinPath=C:\Program Files (x86)\Windows Kits\10\bin\ 2025-06-01T21:02:25.0680444Z WindowsSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-06-01T21:02:25.0680778Z WindowsSDKLibVersion=10.0.19041.0\ 2025-06-01T21:02:25.0681185Z WindowsSdkVerBinPath=C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\ 2025-06-01T21:02:25.0681606Z WindowsSDKVersion=10.0.19041.0\ 2025-06-01T21:02:25.0682111Z WindowsSDK_ExecutablePath_x64=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\ 2025-06-01T21:02:25.0682855Z WindowsSDK_ExecutablePath_x86=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\ 2025-06-01T21:02:25.0683353Z XPU_VERSION= 2025-06-01T21:02:25.0683729Z _=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/build_pytorch.bat 2025-06-01T21:02:25.0684249Z __CONDA_OPENSLL_CERT_FILE_SET="1" 2025-06-01T21:02:25.0684798Z __devinit_path=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\Tools\devinit\devinit.exe 2025-06-01T21:02:25.0685328Z __DOTNET_ADD_64BIT=1 2025-06-01T21:02:25.0685545Z __DOTNET_PREFERRED_BITNESS=64 2025-06-01T21:02:25.0688773Z __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:\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:\Users\runneruser\AppData\Local\Microsoft\WindowsApps 2025-06-01T21:02:25.0692119Z 2025-06-01T21:02:25.0692359Z (base) C:\actions-runner\_work\pytorch\pytorch>python setup.py bdist_wheel 2025-06-01T21:02:25.5179805Z Building wheel torch-2.8.0a0+gitf7c09f8 2025-06-01T21:02:25.7009000Z Cloning into 'nccl'... 2025-06-01T21:02:26.1859287Z Note: switching to '3000e3c797b4b236221188c07aa09c1f3a0170d4'. 2025-06-01T21:02:26.1859623Z 2025-06-01T21:02:26.1859833Z You are in 'detached HEAD' state. You can look around, make experimental 2025-06-01T21:02:26.1860334Z changes and commit them, and you can discard any commits you make in this 2025-06-01T21:02:26.1860889Z state without impacting any branches by switching back to a branch. 2025-06-01T21:02:26.1861225Z 2025-06-01T21:02:26.1861409Z If you want to create a new branch to retain commits you create, you may 2025-06-01T21:02:26.1861871Z do so (now or later) by using -c with the switch command. Example: 2025-06-01T21:02:26.1862136Z 2025-06-01T21:02:26.1862237Z git switch -c 2025-06-01T21:02:26.1862414Z 2025-06-01T21:02:26.1862542Z Or undo this operation with: 2025-06-01T21:02:26.1862711Z 2025-06-01T21:02:26.1862785Z git switch - 2025-06-01T21:02:26.1862899Z 2025-06-01T21:02:26.1863108Z Turn off this advice by setting config variable advice.detachedHead to false 2025-06-01T21:02:26.1863445Z 2025-06-01T21:02:30.0017434Z -- The CXX compiler identification is MSVC 19.29.30158.0 2025-06-01T21:02:30.1366864Z -- The C compiler identification is MSVC 19.29.30158.0 2025-06-01T21:02:30.1580559Z -- Detecting CXX compiler ABI info 2025-06-01T21:02:36.2588745Z -- Detecting CXX compiler ABI info - done 2025-06-01T21:02:36.2611034Z -- Check for working CXX compiler: C:/Program Files (x86)/Microsoft Visual Studio/2019/BuildTools/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/cl.exe - skipped 2025-06-01T21:02:36.2615607Z -- Detecting CXX compile features 2025-06-01T21:02:36.2628742Z -- Detecting CXX compile features - done 2025-06-01T21:02:36.2727951Z -- Detecting C compiler ABI info 2025-06-01T21:02:36.6335667Z -- Detecting C compiler ABI info - done 2025-06-01T21:02:36.6357392Z -- Check for working C compiler: C:/Program Files (x86)/Microsoft Visual Studio/2019/BuildTools/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/cl.exe - skipped 2025-06-01T21:02:36.6361353Z -- Detecting C compile features 2025-06-01T21:02:36.6371410Z -- Detecting C compile features - done 2025-06-01T21:02:36.6418849Z -- Not forcing any particular BLAS to be found 2025-06-01T21:02:36.6498956Z CMake Warning at CMakeLists.txt:413 (message): 2025-06-01T21:02:36.6499328Z TensorPipe cannot be used on Windows. Set it to OFF 2025-06-01T21:02:36.6499573Z 2025-06-01T21:02:36.6499579Z 2025-06-01T21:02:36.6499743Z CMake Warning at CMakeLists.txt:415 (message): 2025-06-01T21:02:36.6500083Z KleidiAI cannot be used on Windows. Set it to OFF 2025-06-01T21:02:36.6500357Z 2025-06-01T21:02:36.6500361Z 2025-06-01T21:02:36.6566306Z -- Performing Test C_HAS_AVX_1 2025-06-01T21:02:37.3078792Z -- Performing Test C_HAS_AVX_1 - Success 2025-06-01T21:02:37.3082899Z -- Performing Test C_HAS_AVX2_1 2025-06-01T21:02:37.6923084Z -- Performing Test C_HAS_AVX2_1 - Success 2025-06-01T21:02:37.6927091Z -- Performing Test C_HAS_AVX512_1 2025-06-01T21:02:38.0767685Z -- Performing Test C_HAS_AVX512_1 - Success 2025-06-01T21:02:38.0771699Z -- Performing Test CXX_HAS_AVX_1 2025-06-01T21:02:38.4532957Z -- Performing Test CXX_HAS_AVX_1 - Success 2025-06-01T21:02:38.4537076Z -- Performing Test CXX_HAS_AVX2_1 2025-06-01T21:02:38.8380388Z -- Performing Test CXX_HAS_AVX2_1 - Success 2025-06-01T21:02:38.8384438Z -- Performing Test CXX_HAS_AVX512_1 2025-06-01T21:02:39.2080155Z -- Performing Test CXX_HAS_AVX512_1 - Success 2025-06-01T21:02:39.2081802Z -- Current compiler supports avx2 extension. Will build perfkernels. 2025-06-01T21:02:39.2087015Z -- Performing Test CAFFE2_COMPILER_SUPPORTS_AVX512_EXTENSIONS 2025-06-01T21:02:39.6553055Z -- Performing Test CAFFE2_COMPILER_SUPPORTS_AVX512_EXTENSIONS - Success 2025-06-01T21:02:39.6553647Z -- Current compiler supports avx512f extension. Will build fbgemm. 2025-06-01T21:02:39.6574109Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY 2025-06-01T21:02:39.9658069Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY - Failed 2025-06-01T21:02:39.9679334Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY 2025-06-01T21:02:40.2826058Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY - Failed 2025-06-01T21:02:40.2834152Z -- Could not find hardware support for NEON on this machine. 2025-06-01T21:02:40.2834595Z -- No OMAP3 processor on this machine. 2025-06-01T21:02:40.2834931Z -- No OMAP4 processor on this machine. 2025-06-01T21:02:40.2835491Z -- Compiler does not support SVE extension. Will not build perfkernels. 2025-06-01T21:02:40.2915495Z -- Performing Test HAS/UTF_8 2025-06-01T21:02:40.6036741Z -- Performing Test HAS/UTF_8 - Success 2025-06-01T21:02:41.7340624Z -- Found CUDA: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6 (found version "12.6") 2025-06-01T21:02:47.0973373Z -- The CUDA compiler identification is NVIDIA 12.6.77 2025-06-01T21:02:47.1197404Z -- Detecting CUDA compiler ABI info 2025-06-01T21:02:53.5411924Z -- Detecting CUDA compiler ABI info - done 2025-06-01T21:02:53.5737455Z -- Check for working CUDA compiler: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/bin/nvcc.exe - skipped 2025-06-01T21:02:55.7816487Z -- Detecting CUDA compile features 2025-06-01T21:02:55.7827742Z -- Detecting CUDA compile features - done 2025-06-01T21:02:55.7891155Z -- Found CUDAToolkit: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/include (found version "12.6.77") 2025-06-01T21:02:56.9974369Z -- PyTorch: CUDA detected: 12.6 2025-06-01T21:02:56.9974910Z -- PyTorch: CUDA nvcc is: C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat 2025-06-01T21:02:56.9975587Z -- PyTorch: CUDA toolkit directory: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6 2025-06-01T21:02:57.4331296Z -- PyTorch: Header version is: 12.6 2025-06-01T21:02:57.8624277Z -- Found Python: C:\Jenkins\Miniconda3\python.exe (found version "3.9.19") found components: Interpreter 2025-06-01T21:02:57.8664902Z CMake Warning at cmake/public/cuda.cmake:140 (message): 2025-06-01T21:02:57.8665332Z Failed to compute shorthash for libnvrtc.so 2025-06-01T21:02:57.8665648Z Call Stack (most recent call first): 2025-06-01T21:02:57.8665953Z cmake/Dependencies.cmake:44 (include) 2025-06-01T21:02:57.8666243Z CMakeLists.txt:863 (include) 2025-06-01T21:02:57.8666427Z 2025-06-01T21:02:57.8666432Z 2025-06-01T21:02:57.8712788Z -- Found CUDNN: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cudnn.lib 2025-06-01T21:02:57.9077418Z -- Could NOT find CUSPARSELT (missing: CUSPARSELT_LIBRARY_PATH CUSPARSELT_INCLUDE_PATH) 2025-06-01T21:02:57.9077997Z CMake Warning at cmake/public/cuda.cmake:226 (message): 2025-06-01T21:02:57.9078424Z Cannot find cuSPARSELt library. Turning the option off 2025-06-01T21:02:57.9078780Z Call Stack (most recent call first): 2025-06-01T21:02:57.9079128Z cmake/Dependencies.cmake:44 (include) 2025-06-01T21:02:57.9079430Z CMakeLists.txt:863 (include) 2025-06-01T21:02:57.9079603Z 2025-06-01T21:02:57.9079607Z 2025-06-01T21:02:57.9401030Z -- Could NOT find CUDSS (missing: CUDSS_LIBRARY_PATH CUDSS_INCLUDE_PATH) 2025-06-01T21:02:57.9402063Z CMake Warning at cmake/public/cuda.cmake:242 (message): 2025-06-01T21:02:57.9402471Z Cannot find CUDSS library. Turning the option off 2025-06-01T21:02:57.9402796Z Call Stack (most recent call first): 2025-06-01T21:02:57.9403089Z cmake/Dependencies.cmake:44 (include) 2025-06-01T21:02:57.9403371Z CMakeLists.txt:863 (include) 2025-06-01T21:02:57.9403537Z 2025-06-01T21:02:57.9403553Z 2025-06-01T21:02:57.9403707Z -- USE_CUFILE is set to 0. Compiling without cuFile support 2025-06-01T21:02:57.9409069Z -- Added CUDA NVCC flags for: -gencode;arch=compute_86,code=sm_86 2025-06-01T21:02:57.9435705Z -- Building using own protobuf under third_party per request. 2025-06-01T21:02:57.9436116Z -- Use custom protobuf build. 2025-06-01T21:02:57.9462451Z CMake Deprecation Warning at third_party/protobuf/cmake/CMakeLists.txt:2 (cmake_minimum_required): 2025-06-01T21:02:57.9463231Z Compatibility with CMake < 3.5 will be removed from a future version of 2025-06-01T21:02:57.9463661Z CMake. 2025-06-01T21:02:57.9463812Z 2025-06-01T21:02:57.9464018Z Update the VERSION argument value or use a ... suffix to tell 2025-06-01T21:02:57.9464620Z CMake that the project does not need compatibility with older versions. 2025-06-01T21:02:57.9464971Z 2025-06-01T21:02:57.9464976Z 2025-06-01T21:02:57.9478616Z -- 2025-06-01T21:02:57.9478849Z -- 3.13.0.0 2025-06-01T21:02:57.9496448Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD 2025-06-01T21:02:58.0500214Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed 2025-06-01T21:02:58.0502031Z -- Looking for pthread_create in pthreads 2025-06-01T21:02:58.2254485Z -- Looking for pthread_create in pthreads - not found 2025-06-01T21:02:58.2255319Z -- Looking for pthread_create in pthread 2025-06-01T21:02:58.3926485Z -- Looking for pthread_create in pthread - not found 2025-06-01T21:02:58.3943319Z -- Found Threads: TRUE 2025-06-01T21:02:58.4439194Z -- Caffe2 protobuf include directory: $$ 2025-06-01T21:02:58.4476417Z -- Trying to find preferred BLAS backend of choice: MKL 2025-06-01T21:02:58.4502707Z -- MKL_THREADING = OMP 2025-06-01T21:02:58.4506045Z -- Looking for sys/types.h 2025-06-01T21:02:58.7600898Z -- Looking for sys/types.h - found 2025-06-01T21:02:58.7602762Z -- Looking for stdint.h 2025-06-01T21:02:59.0636853Z -- Looking for stdint.h - found 2025-06-01T21:02:59.0638666Z -- Looking for stddef.h 2025-06-01T21:02:59.3699589Z -- Looking for stddef.h - found 2025-06-01T21:02:59.3700489Z -- Check size of void* 2025-06-01T21:02:59.7071824Z -- Check size of void* - done 2025-06-01T21:02:59.7302095Z -- Looking for cblas_sgemm 2025-06-01T21:03:00.0516851Z -- Looking for cblas_sgemm - found 2025-06-01T21:03:00.0520461Z -- Looking for cblas_gemm_bf16bf16f32 2025-06-01T21:03:00.3764628Z -- Looking for cblas_gemm_bf16bf16f32 - found 2025-06-01T21:03:00.3765359Z -- Looking for cblas_gemm_f16f16f32 2025-06-01T21:03:00.6428584Z -- Looking for cblas_gemm_f16f16f32 - not found 2025-06-01T21:03:00.7203656Z -- MKL libraries: C:/Jenkins/Miniconda3/Library/lib/mkl_intel_lp64_dll.lib;C:/Jenkins/Miniconda3/Library/lib/mkl_intel_thread_dll.lib;C:/Jenkins/Miniconda3/Library/lib/mkl_core_dll.lib 2025-06-01T21:03:00.7204618Z -- MKL include directory: C:/Jenkins/Miniconda3/Library/include 2025-06-01T21:03:00.7204984Z -- MKL OpenMP type: 2025-06-01T21:03:00.7205224Z -- MKL OpenMP library: 2025-06-01T21:03:00.8961696Z -- The ASM compiler identification is MSVC 2025-06-01T21:03:00.8978069Z -- Found assembler: C:/Program Files (x86)/Microsoft Visual Studio/2019/BuildTools/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/cl.exe 2025-06-01T21:03:00.9097054Z -- Building for XNNPACK_TARGET_PROCESSOR: x86_64 2025-06-01T21:03:00.9149734Z -- Generating microkernels.cmake 2025-06-01T21:03:05.6068724Z 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-06-01T21:03:05.6070232Z 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-06-01T21:03:05.6071093Z No microkernel found in src\reference\binary-elementwise.cc 2025-06-01T21:03:05.6071516Z No microkernel found in src\reference\packing.cc 2025-06-01T21:03:05.6071903Z No microkernel found in src\reference\unary-elementwise.cc 2025-06-01T21:03:05.7262183Z -- Found Git: C:/Program Files/Git/cmd/git.exe (found version "2.47.1.windows.2") 2025-06-01T21:03:05.7745280Z -- Google Benchmark version: v1.9.3, normalized to 1.9.3 2025-06-01T21:03:05.7760240Z -- Looking for shm_open in rt 2025-06-01T21:03:05.9486505Z -- Looking for shm_open in rt - not found 2025-06-01T21:03:05.9512015Z -- Performing Test HAVE_CXX_FLAG_WX 2025-06-01T21:03:06.2600972Z -- Performing Test HAVE_CXX_FLAG_WX - Success 2025-06-01T21:03:06.2604563Z -- Compiling and running to test HAVE_STD_REGEX 2025-06-01T21:03:08.1507919Z -- Performing Test HAVE_STD_REGEX -- success 2025-06-01T21:03:08.1508763Z -- Compiling and running to test HAVE_GNU_POSIX_REGEX 2025-06-01T21:03:08.2603673Z -- Performing Test HAVE_GNU_POSIX_REGEX -- failed to compile 2025-06-01T21:03:08.2604620Z -- Compiling and running to test HAVE_POSIX_REGEX 2025-06-01T21:03:08.3566453Z -- Performing Test HAVE_POSIX_REGEX -- failed to compile 2025-06-01T21:03:08.3567408Z -- Compiling and running to test HAVE_STEADY_CLOCK 2025-06-01T21:03:08.9487092Z -- Performing Test HAVE_STEADY_CLOCK -- success 2025-06-01T21:03:08.9523324Z -- Compiling and running to test HAVE_PTHREAD_AFFINITY 2025-06-01T21:03:09.0471610Z -- Performing Test HAVE_PTHREAD_AFFINITY -- failed to compile 2025-06-01T21:03:09.0665832Z CMake Warning (dev) at third_party/fbgemm/CMakeLists.txt:97 (find_package): 2025-06-01T21:03:09.0666397Z Policy CMP0148 is not set: The FindPythonInterp and FindPythonLibs modules 2025-06-01T21:03:09.0666924Z are removed. Run "cmake --help-policy CMP0148" for policy details. Use 2025-06-01T21:03:09.0667436Z the cmake_policy command to set the policy and suppress this warning. 2025-06-01T21:03:09.0667738Z 2025-06-01T21:03:09.0667948Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-06-01T21:03:09.0668251Z 2025-06-01T21:03:09.1167985Z -- Found PythonInterp: C:/Jenkins/Miniconda3/python.exe (found version "3.9.19") 2025-06-01T21:03:09.1192926Z -- Performing Test COMPILER_SUPPORTS_AVX512 2025-06-01T21:03:09.4213094Z -- Performing Test COMPILER_SUPPORTS_AVX512 - Success 2025-06-01T21:03:09.4222981Z -- Performing Test HAVE_GNU_F2H_IEEE 2025-06-01T21:03:09.5153128Z -- Performing Test HAVE_GNU_F2H_IEEE - Failed 2025-06-01T21:03:10.5710846Z CMake Warning (dev) at C:/Program Files/CMake/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:438 (message): 2025-06-01T21:03:10.5711705Z The package name passed to `find_package_handle_standard_args` (OpenMP_C) 2025-06-01T21:03:10.5712312Z does not match the name of the calling package (OpenMP). This can lead to 2025-06-01T21:03:10.5712875Z problems in calling code that expects `find_package` result variables 2025-06-01T21:03:10.5713334Z (e.g., `_FOUND`) to follow a certain pattern. 2025-06-01T21:03:10.5713653Z Call Stack (most recent call first): 2025-06-01T21:03:10.5714056Z cmake/Modules/FindOpenMP.cmake:635 (find_package_handle_standard_args) 2025-06-01T21:03:10.5714542Z third_party/fbgemm/CMakeLists.txt:148 (find_package) 2025-06-01T21:03:10.5714986Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-06-01T21:03:10.5715306Z 2025-06-01T21:03:10.5715429Z -- Found OpenMP_C: -openmp:experimental 2025-06-01T21:03:10.9392879Z CMake Warning (dev) at C:/Program Files/CMake/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:438 (message): 2025-06-01T21:03:10.9393677Z The package name passed to `find_package_handle_standard_args` (OpenMP_CXX) 2025-06-01T21:03:10.9394224Z does not match the name of the calling package (OpenMP). This can lead to 2025-06-01T21:03:10.9394743Z problems in calling code that expects `find_package` result variables 2025-06-01T21:03:10.9395160Z (e.g., `_FOUND`) to follow a certain pattern. 2025-06-01T21:03:10.9395488Z Call Stack (most recent call first): 2025-06-01T21:03:10.9395900Z cmake/Modules/FindOpenMP.cmake:635 (find_package_handle_standard_args) 2025-06-01T21:03:10.9396387Z third_party/fbgemm/CMakeLists.txt:148 (find_package) 2025-06-01T21:03:10.9396827Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-06-01T21:03:10.9397149Z 2025-06-01T21:03:10.9397271Z -- Found OpenMP_CXX: -openmp:experimental 2025-06-01T21:03:10.9405103Z -- Found OpenMP: TRUE 2025-06-01T21:03:10.9408763Z -- OpenMP found! OpenMP_C_INCLUDE_DIRS = 2025-06-01T21:03:11.2360383Z -- ========== 2025-06-01T21:03:11.2360676Z -- CMAKE_BUILD_TYPE = Release 2025-06-01T21:03:11.2361002Z -- CMAKE_CXX_FLAGS_DEBUG is /Z7 /Ob0 /Od /RTC1 /bigobj 2025-06-01T21:03:11.2361390Z -- CMAKE_CXX_FLAGS_RELEASE is /O2 /Ob2 /DNDEBUG /bigobj 2025-06-01T21:03:11.2361702Z -- ========== 2025-06-01T21:03:11.2554519Z ** AsmJit Summary ** 2025-06-01T21:03:11.2555012Z ASMJIT_DIR=C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/asmjit 2025-06-01T21:03:11.2555503Z ASMJIT_TEST=FALSE 2025-06-01T21:03:11.2555724Z ASMJIT_TARGET_TYPE=SHARED 2025-06-01T21:03:11.2555981Z ASMJIT_DEPS= 2025-06-01T21:03:11.2556188Z ASMJIT_LIBS=asmjit 2025-06-01T21:03:11.2556412Z ASMJIT_CFLAGS= 2025-06-01T21:03:11.2556862Z ASMJIT_PRIVATE_CFLAGS=-MP;-GF;-Zc:__cplusplus;-Zc:inline;-Zc:strictStrings;-Zc:threadSafeInit-;-W4 2025-06-01T21:03:11.2557359Z ASMJIT_PRIVATE_CFLAGS_DBG=-GS 2025-06-01T21:03:11.2557692Z ASMJIT_PRIVATE_CFLAGS_REL=-GS-;-O2;-Oi 2025-06-01T21:03:11.2704411Z -- Performing Test HAS_WNO_DEPRECATED_ENUM_ENUM_CONVERSION 2025-06-01T21:03:11.3499285Z -- Performing Test HAS_WNO_DEPRECATED_ENUM_ENUM_CONVERSION - Failed 2025-06-01T21:03:11.3522494Z -- Performing Test HAS_WNO_DEPRECATED_ANON_ENUM_ENUM_CONVERSION 2025-06-01T21:03:11.4299708Z -- Performing Test HAS_WNO_DEPRECATED_ANON_ENUM_ENUM_CONVERSION - Failed 2025-06-01T21:03:11.4322660Z -- Performing Test HAS_WNO_ERROR_DEPRECATED_ENUM_ENUM_CONVERSION 2025-06-01T21:03:11.5113658Z -- Performing Test HAS_WNO_ERROR_DEPRECATED_ENUM_ENUM_CONVERSION - Failed 2025-06-01T21:03:11.5383785Z CMake Deprecation Warning at third_party/FP16/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-01T21:03:11.5384449Z Compatibility with CMake < 3.5 will be removed from a future version of 2025-06-01T21:03:11.5384838Z CMake. 2025-06-01T21:03:11.5384958Z 2025-06-01T21:03:11.5385404Z Update the VERSION argument value or use a ... suffix to tell 2025-06-01T21:03:11.5385964Z CMake that the project does not need compatibility with older versions. 2025-06-01T21:03:11.5386273Z 2025-06-01T21:03:11.5386277Z 2025-06-01T21:03:11.5452234Z CMake Deprecation Warning at third_party/psimd/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-01T21:03:11.5452831Z Compatibility with CMake < 3.5 will be removed from a future version of 2025-06-01T21:03:11.5453209Z CMake. 2025-06-01T21:03:11.5453311Z 2025-06-01T21:03:11.5453508Z Update the VERSION argument value or use a ... suffix to tell 2025-06-01T21:03:11.5454007Z CMake that the project does not need compatibility with older versions. 2025-06-01T21:03:11.5454305Z 2025-06-01T21:03:11.5454309Z 2025-06-01T21:03:11.5501194Z -- Using third party subdirectory Eigen. 2025-06-01T21:03:13.5678193Z -- Found Python: C:\Jenkins\Miniconda3\python.exe (found version "3.9.19") found components: Interpreter Development.Module NumPy 2025-06-01T21:03:13.5680424Z -- Using third_party/pybind11. 2025-06-01T21:03:13.5681645Z -- pybind11 include dirs: C:/actions-runner/_work/pytorch/pytorch/cmake/../third_party/pybind11/include 2025-06-01T21:03:13.5732569Z -- Could NOT find OpenTelemetryApi (missing: OpenTelemetryApi_INCLUDE_DIRS) 2025-06-01T21:03:13.5733097Z -- Using third_party/opentelemetry-cpp. 2025-06-01T21:03:13.5733740Z -- opentelemetry api include dirs: C:/actions-runner/_work/pytorch/pytorch/cmake/../third_party/opentelemetry-cpp/api/include 2025-06-01T21:03:14.2044879Z -- Could NOT find MPI_C (missing: MPI_C_LIB_NAMES MPI_C_HEADER_DIR MPI_C_WORKS) 2025-06-01T21:03:14.6878343Z -- Could NOT find MPI_CXX (missing: MPI_CXX_LIB_NAMES MPI_CXX_HEADER_DIR MPI_CXX_WORKS) 2025-06-01T21:03:14.6887129Z -- Could NOT find MPI (missing: MPI_C_FOUND MPI_CXX_FOUND) 2025-06-01T21:03:14.6891109Z CMake Warning at cmake/Dependencies.cmake:905 (message): 2025-06-01T21:03:14.6891613Z Not compiling with MPI. Suppress this warning with -DUSE_MPI=OFF 2025-06-01T21:03:14.6892276Z Call Stack (most recent call first): 2025-06-01T21:03:14.6892595Z CMakeLists.txt:863 (include) 2025-06-01T21:03:14.6892765Z 2025-06-01T21:03:14.6892770Z 2025-06-01T21:03:14.6948039Z -- Adding OpenMP CXX_FLAGS: -openmp:experimental 2025-06-01T21:03:14.6957175Z -- Found nvtx3: C:/actions-runner/_work/pytorch/pytorch/third_party/NVTX/c/include 2025-06-01T21:03:14.6988213Z -- Found CUB: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/include 2025-06-01T21:03:14.7010622Z -- MSVC detected 2025-06-01T21:03:14.7010861Z -- Set USE_REDIS OFF 2025-06-01T21:03:14.7011085Z -- Set USE_IBVERBS OFF 2025-06-01T21:03:14.7011316Z -- Set USE_NCCL OFF 2025-06-01T21:03:14.7011558Z -- Set USE_RCCL OFF 2025-06-01T21:03:14.7011754Z -- Set USE_LIBUV OFF 2025-06-01T21:03:14.7013355Z -- Gloo build as SHARED library 2025-06-01T21:03:14.7060560Z -- Found CUDAToolkit: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/include (found suitable version "12.6.77", minimum required is "7.0") 2025-06-01T21:03:15.8546235Z -- CUDA detected: 12.6.77 2025-06-01T21:03:15.8692154Z -- GLOO_USE_TORCH_DTYPES : 1 C:/actions-runner/_work/pytorch/pytorch;C:/actions-runner/_work/pytorch/pytorch/build 2025-06-01T21:03:16.3080091Z -- Found Python3: C:\Jenkins\Miniconda3\python.exe (found version "3.9.19") found components: Interpreter 2025-06-01T21:03:16.3093600Z -- ONNX_PROTOC_EXECUTABLE: $ 2025-06-01T21:03:16.3094053Z -- Protobuf_VERSION: Protobuf_VERSION_NOTFOUND 2025-06-01T21:03:16.3098205Z Generated: C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto 2025-06-01T21:03:16.3105523Z Generated: C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto 2025-06-01T21:03:16.3112349Z Generated: C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto 2025-06-01T21:03:16.5427109Z -- 2025-06-01T21:03:16.5427388Z -- ******** Summary ******** 2025-06-01T21:03:16.5427929Z -- CMake version : 3.27.9 2025-06-01T21:03:16.5428317Z -- CMake command : C:/Program Files/CMake/bin/cmake.exe 2025-06-01T21:03:16.5428707Z -- System : Windows 2025-06-01T21:03:16.5429327Z -- C++ compiler : C:/Program Files (x86)/Microsoft Visual Studio/2019/BuildTools/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/cl.exe 2025-06-01T21:03:16.5429967Z -- C++ compiler version : 19.29.30158.0 2025-06-01T21:03:16.5430507Z -- CXX flags : /DWIN32 /D_WINDOWS /GR /EHsc /Zc:__cplusplus /bigobj /FS /utf-8 -DUSE_PTHREADPOOL /EHsc /wd26812 2025-06-01T21:03:16.5431019Z -- Build type : Release 2025-06-01T21:03:16.5431459Z -- Compile definitions : ONNX_ML=1;ONNXIFI_ENABLE_EXT=1 2025-06-01T21:03:16.5432979Z -- 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-06-01T21:03:16.5434545Z -- CMAKE_INSTALL_PREFIX : C:/actions-runner/_work/pytorch/pytorch/torch 2025-06-01T21:03:16.5435383Z -- CMAKE_MODULE_PATH : C:/actions-runner/_work/pytorch/pytorch/cmake/Modules;C:/actions-runner/_work/pytorch/pytorch/cmake/public/../Modules_CUDA_fix 2025-06-01T21:03:16.5436061Z -- 2025-06-01T21:03:16.5436259Z -- ONNX version : 1.18.0 2025-06-01T21:03:16.5436567Z -- ONNX NAMESPACE : onnx_torch 2025-06-01T21:03:16.5436875Z -- ONNX_USE_LITE_PROTO : OFF 2025-06-01T21:03:16.5437172Z -- USE_PROTOBUF_SHARED_LIBS : OFF 2025-06-01T21:03:16.5437458Z -- ONNX_DISABLE_EXCEPTIONS : OFF 2025-06-01T21:03:16.5437758Z -- ONNX_DISABLE_STATIC_REGISTRATION : OFF 2025-06-01T21:03:16.5438179Z -- ONNX_WERROR : OFF 2025-06-01T21:03:16.5438466Z -- ONNX_BUILD_TESTS : OFF 2025-06-01T21:03:16.5438739Z -- BUILD_SHARED_LIBS : OFF 2025-06-01T21:03:16.5439000Z -- 2025-06-01T21:03:16.5439303Z -- Protobuf compiler : $ 2025-06-01T21:03:16.5439684Z -- Protobuf includes : 2025-06-01T21:03:16.5439971Z -- Protobuf libraries : 2025-06-01T21:03:16.5440252Z -- ONNX_BUILD_PYTHON : OFF 2025-06-01T21:03:16.5440647Z -- Found CUDA with FP16 support, compiling with torch.cuda.HalfTensor 2025-06-01T21:03:16.5441032Z -- Adding -DNDEBUG to compile flags 2025-06-01T21:03:16.5477818Z -- Checking prototype magma_get_sgeqrf_nb for MAGMA_V2 2025-06-01T21:03:16.6421956Z -- Checking prototype magma_get_sgeqrf_nb for MAGMA_V2 - False 2025-06-01T21:03:16.6422379Z -- Compiling with MAGMA support 2025-06-01T21:03:16.6422905Z -- MAGMA INCLUDE DIRECTORIES: C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/magma/include 2025-06-01T21:03:16.6423594Z -- MAGMA LIBRARIES: C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/magma/lib/magma.lib 2025-06-01T21:03:16.6424073Z -- MAGMA V2 check: 0 2025-06-01T21:03:16.6428135Z -- Could not find hardware support for NEON on this machine. 2025-06-01T21:03:16.6428514Z -- No OMAP3 processor on this machine. 2025-06-01T21:03:16.6428813Z -- No OMAP4 processor on this machine. 2025-06-01T21:03:16.6444184Z -- Looking for sbgemm_ 2025-06-01T21:03:16.8529580Z -- Looking for sbgemm_ - not found 2025-06-01T21:03:16.8539546Z -- Found a library with LAPACK API (mkl). 2025-06-01T21:03:16.8540984Z disabling ROCM because NOT USE_ROCM is set 2025-06-01T21:03:16.8541393Z -- MIOpen not found. Compiling without MIOpen support 2025-06-01T21:03:16.8550079Z -- Will build oneDNN UKERNEL 2025-06-01T21:03:16.8651577Z -- MKLDNN_CPU_RUNTIME = OMP 2025-06-01T21:03:16.8672089Z -- DNNL_TARGET_ARCH: X64 2025-06-01T21:03:16.8700737Z -- DNNL_LIBRARY_NAME: dnnl 2025-06-01T21:03:16.8796315Z CMake Warning (dev) at C:/Program Files/CMake/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:438 (message): 2025-06-01T21:03:16.8797102Z The package name passed to `find_package_handle_standard_args` (OpenMP_C) 2025-06-01T21:03:16.8797628Z does not match the name of the calling package (OpenMP). This can lead to 2025-06-01T21:03:16.8798128Z problems in calling code that expects `find_package` result variables 2025-06-01T21:03:16.8798549Z (e.g., `_FOUND`) to follow a certain pattern. 2025-06-01T21:03:16.8798854Z Call Stack (most recent call first): 2025-06-01T21:03:16.8799254Z cmake/Modules/FindOpenMP.cmake:635 (find_package_handle_standard_args) 2025-06-01T21:03:16.8799757Z third_party/ideep/mkl-dnn/cmake/OpenMP.cmake:41 (find_package) 2025-06-01T21:03:16.8800173Z third_party/ideep/mkl-dnn/CMakeLists.txt:89 (include) 2025-06-01T21:03:16.8800636Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-06-01T21:03:16.8800947Z 2025-06-01T21:03:16.8804361Z CMake Warning (dev) at C:/Program Files/CMake/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:438 (message): 2025-06-01T21:03:16.8805105Z The package name passed to `find_package_handle_standard_args` (OpenMP_CXX) 2025-06-01T21:03:16.8805630Z does not match the name of the calling package (OpenMP). This can lead to 2025-06-01T21:03:16.8806117Z problems in calling code that expects `find_package` result variables 2025-06-01T21:03:16.8806528Z (e.g., `_FOUND`) to follow a certain pattern. 2025-06-01T21:03:16.8806827Z Call Stack (most recent call first): 2025-06-01T21:03:16.8807225Z cmake/Modules/FindOpenMP.cmake:635 (find_package_handle_standard_args) 2025-06-01T21:03:16.8807714Z third_party/ideep/mkl-dnn/cmake/OpenMP.cmake:41 (find_package) 2025-06-01T21:03:16.8808136Z third_party/ideep/mkl-dnn/CMakeLists.txt:89 (include) 2025-06-01T21:03:16.8808582Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-06-01T21:03:16.8809085Z 2025-06-01T21:03:16.9238263Z -- Enabled testing coverage: CI 2025-06-01T21:03:16.9249742Z -- Enabled workload: TRAINING 2025-06-01T21:03:16.9250038Z -- Enabled primitives: ALL 2025-06-01T21:03:16.9250376Z -- Enabled primitive CPU ISA: ALL 2025-06-01T21:03:16.9250721Z -- Enabled primitive GPU ISA: ALL 2025-06-01T21:03:16.9251084Z -- Enabled GeMM kernels ISA: ALL 2025-06-01T21:03:16.9356287Z -- Primitive cache is enabled 2025-06-01T21:03:16.9357107Z -- Experimental functionality for ukernels is enabled 2025-06-01T21:03:17.0017691Z -- The ASM_MASM compiler identification is MSVC 2025-06-01T21:03:17.0528652Z -- Found assembler: C:/Program Files (x86)/Microsoft Visual Studio/2019/BuildTools/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/ml64.exe 2025-06-01T21:03:17.0787356Z -- Graph component is enabled 2025-06-01T21:03:17.0900454Z -- Graph compiler backend is disabled. 2025-06-01T21:03:17.1015762Z -- Found MKL-DNN: TRUE 2025-06-01T21:03:17.1104217Z -- {fmt} version: 11.2.0 2025-06-01T21:03:17.1104471Z -- Build type: Release 2025-06-01T21:03:17.1184110Z -- Using Kineto with CUPTI support 2025-06-01T21:03:17.1185207Z -- Configuring Kineto dependency: 2025-06-01T21:03:17.1185710Z -- KINETO_SOURCE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto 2025-06-01T21:03:17.1186202Z -- KINETO_BUILD_TESTS = OFF 2025-06-01T21:03:17.1186456Z -- KINETO_LIBRARY_TYPE = static 2025-06-01T21:03:17.1186854Z -- CUDA_SOURCE_DIR = C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6 2025-06-01T21:03:17.1187421Z -- CUDA_INCLUDE_DIRS = C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/include 2025-06-01T21:03:17.1190353Z -- CUPTI_INCLUDE_DIR = C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/extras/CUPTI/include 2025-06-01T21:03:17.1191124Z -- CUDA_cupti_LIBRARY = C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/extras/CUPTI/lib64/cupti.lib 2025-06-01T21:03:17.1191723Z -- Found CUPTI 2025-06-01T21:03:17.1255441Z CMake Warning (dev) at third_party/kineto/libkineto/CMakeLists.txt:15 (find_package): 2025-06-01T21:03:17.1256112Z Policy CMP0148 is not set: The FindPythonInterp and FindPythonLibs modules 2025-06-01T21:03:17.1256715Z are removed. Run "cmake --help-policy CMP0148" for policy details. Use 2025-06-01T21:03:17.1257328Z the cmake_policy command to set the policy and suppress this warning. 2025-06-01T21:03:17.1257675Z 2025-06-01T21:03:17.1257873Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-06-01T21:03:17.1258239Z 2025-06-01T21:03:17.1699670Z INFO ROCM_SOURCE_DIR = 2025-06-01T21:03:17.3013676Z -- Kineto: FMT_SOURCE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/fmt 2025-06-01T21:03:17.3014430Z INFO CUPTI_INCLUDE_DIR = C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/extras/CUPTI/include 2025-06-01T21:03:17.3015051Z INFO ROCTRACER_INCLUDE_DIR = /include/roctracer 2025-06-01T21:03:17.3015694Z INFO DYNOLOG_INCLUDE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/ 2025-06-01T21:03:17.3016702Z INFO IPCFABRIC_INCLUDE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog//dynolog/src/ipcfabric/ 2025-06-01T21:03:17.3017569Z -- Kineto: FMT_INCLUDE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/fmt/include 2025-06-01T21:03:17.3043236Z -- Configured Kineto 2025-06-01T21:03:17.3093692Z -- Performing Test HAS/WD4624 2025-06-01T21:03:17.6215163Z -- Performing Test HAS/WD4624 - Success 2025-06-01T21:03:17.6237820Z -- Performing Test HAS/WD4068 2025-06-01T21:03:17.9423536Z -- Performing Test HAS/WD4068 - Success 2025-06-01T21:03:17.9445891Z -- Performing Test HAS/WD4067 2025-06-01T21:03:18.2661938Z -- Performing Test HAS/WD4067 - Success 2025-06-01T21:03:18.2684330Z -- Performing Test HAS/WD4267 2025-06-01T21:03:18.5871992Z -- Performing Test HAS/WD4267 - Success 2025-06-01T21:03:18.5894287Z -- Performing Test HAS/WD4661 2025-06-01T21:03:18.9038066Z -- Performing Test HAS/WD4661 - Success 2025-06-01T21:03:18.9060146Z -- Performing Test HAS/WD4717 2025-06-01T21:03:19.2197618Z -- Performing Test HAS/WD4717 - Success 2025-06-01T21:03:19.2220315Z -- Performing Test HAS/WD4244 2025-06-01T21:03:19.5255500Z -- Performing Test HAS/WD4244 - Success 2025-06-01T21:03:19.5277819Z -- Performing Test HAS/WD4804 2025-06-01T21:03:19.8374440Z -- Performing Test HAS/WD4804 - Success 2025-06-01T21:03:19.8397245Z -- Performing Test HAS/WD4273 2025-06-01T21:03:20.1820134Z -- Performing Test HAS/WD4273 - Success 2025-06-01T21:03:20.1844095Z -- Performing Test HAS_WNO_STRINGOP_OVERFLOW 2025-06-01T21:03:20.2653764Z -- Performing Test HAS_WNO_STRINGOP_OVERFLOW - Failed 2025-06-01T21:03:21.3921637Z -- 2025-06-01T21:03:21.3922341Z -- Architecture: x64 2025-06-01T21:03:21.3925587Z -- Use the C++ compiler to compile (MI_USE_CXX=ON) 2025-06-01T21:03:21.3931980Z -- 2025-06-01T21:03:21.3932204Z -- Library name : mimalloc 2025-06-01T21:03:21.3932533Z -- Version : 2.2.3 2025-06-01T21:03:21.3932787Z -- Build type : release 2025-06-01T21:03:21.3933403Z -- C++ Compiler : C:/Program Files (x86)/Microsoft Visual Studio/2019/BuildTools/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/cl.exe 2025-06-01T21:03:21.3934033Z -- Compiler flags : /Zc:__cplusplus 2025-06-01T21:03:21.3934424Z -- Compiler defines : MI_CMAKE_BUILD_TYPE=release;MI_BUILD_RELEASE 2025-06-01T21:03:21.3935860Z -- Link libraries : psapi;shell32;user32;advapi32;bcrypt 2025-06-01T21:03:21.3936227Z -- Build targets : static 2025-06-01T21:03:21.3936477Z -- 2025-06-01T21:03:21.4023866Z -- don't use NUMA 2025-06-01T21:03:21.4079187Z -- Looking for backtrace 2025-06-01T21:03:21.5054489Z -- Looking for backtrace - not found 2025-06-01T21:03:21.5143274Z -- Could NOT find Backtrace (missing: Backtrace_LIBRARY Backtrace_INCLUDE_DIR) 2025-06-01T21:03:26.0768719Z -- headers outputs: 2025-06-01T21:03:28.3331708Z -- sources outputs: 2025-06-01T21:03:30.0321695Z -- declarations_yaml outputs: 2025-06-01T21:03:30.0402447Z -- Performing Test COMPILER_SUPPORTS_NO_AVX256_SPLIT 2025-06-01T21:03:35.4287979Z -- Performing Test COMPILER_SUPPORTS_NO_AVX256_SPLIT - Failed 2025-06-01T21:03:35.6550490Z -- Using ATen parallel backend: OMP 2025-06-01T21:03:36.2283887Z -- Found OpenSSL: C:/Jenkins/Miniconda3/Library/lib/libcrypto.lib (found version "3.0.15") 2025-06-01T21:03:36.3249894Z -- Check size of long double 2025-06-01T21:03:36.7017708Z -- Check size of long double - done 2025-06-01T21:03:36.7022496Z -- Performing Test COMPILER_SUPPORTS_FLOAT128 2025-06-01T21:03:36.8204007Z -- Performing Test COMPILER_SUPPORTS_FLOAT128 - Failed 2025-06-01T21:03:36.8207003Z -- Performing Test COMPILER_SUPPORTS_SSE2 2025-06-01T21:03:37.2257547Z -- Performing Test COMPILER_SUPPORTS_SSE2 - Success 2025-06-01T21:03:37.2260342Z -- Performing Test COMPILER_SUPPORTS_SSE4 2025-06-01T21:03:37.6382579Z -- Performing Test COMPILER_SUPPORTS_SSE4 - Success 2025-06-01T21:03:37.6385557Z -- Performing Test COMPILER_SUPPORTS_AVX 2025-06-01T21:03:38.0613187Z -- Performing Test COMPILER_SUPPORTS_AVX - Success 2025-06-01T21:03:38.0616124Z -- Performing Test COMPILER_SUPPORTS_FMA4 2025-06-01T21:03:38.4755390Z -- Performing Test COMPILER_SUPPORTS_FMA4 - Success 2025-06-01T21:03:38.4758417Z -- Performing Test COMPILER_SUPPORTS_AVX2 2025-06-01T21:03:38.8975839Z -- Performing Test COMPILER_SUPPORTS_AVX2 - Success 2025-06-01T21:03:38.8978982Z -- Performing Test COMPILER_SUPPORTS_AVX512F 2025-06-01T21:03:39.3091595Z -- Performing Test COMPILER_SUPPORTS_AVX512F - Success 2025-06-01T21:03:39.3133578Z -- Found OpenMP_C: -openmp:experimental (found version "2.0") 2025-06-01T21:03:39.3143653Z -- Found OpenMP_CXX: -openmp:experimental (found version "2.0") 2025-06-01T21:03:39.3152795Z -- Found OpenMP: TRUE (found version "2.0") 2025-06-01T21:03:39.3157378Z -- Performing Test COMPILER_SUPPORTS_OPENMP 2025-06-01T21:03:39.7164062Z -- Performing Test COMPILER_SUPPORTS_OPENMP - Success 2025-06-01T21:03:39.7166263Z -- Performing Test COMPILER_SUPPORTS_OMP_SIMD 2025-06-01T21:03:39.8340290Z -- Performing Test COMPILER_SUPPORTS_OMP_SIMD - Failed 2025-06-01T21:03:39.8342850Z -- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES 2025-06-01T21:03:39.9936449Z -- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES - Failed 2025-06-01T21:03:39.9939236Z -- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH 2025-06-01T21:03:40.1973373Z -- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH - Failed 2025-06-01T21:03:40.1975749Z -- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM 2025-06-01T21:03:40.2922982Z -- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM - Failed 2025-06-01T21:03:40.3841946Z Target system: Windows-10.0.17763 2025-06-01T21:03:40.3842398Z -- Configuring build for SLEEF-v3.8.0 2025-06-01T21:03:40.3842832Z Target processor: AMD64 2025-06-01T21:03:40.3843264Z -- Using option `/D_CRT_SECURE_NO_WARNINGS /D_CRT_NONSTDC_NO_DEPRECATE ` to compile libsleef 2025-06-01T21:03:40.3843785Z Host system: Windows-10.0.17763 2025-06-01T21:03:40.3844071Z Host processor: AMD64 2025-06-01T21:03:40.3844680Z Detected C compiler: MSVC @ C:/Program Files (x86)/Microsoft Visual Studio/2019/BuildTools/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/cl.exe 2025-06-01T21:03:40.3845316Z CMake: 3.27.9 2025-06-01T21:03:40.3845579Z Make program: C:/Jenkins/Miniconda3/Library/bin/ninja.exe 2025-06-01T21:03:40.3845931Z -- Building shared libs : OFF 2025-06-01T21:03:40.3846183Z -- Building static test bins: OFF 2025-06-01T21:03:40.3846445Z -- MPFR : LIB_MPFR-NOTFOUND 2025-06-01T21:03:40.3846672Z -- GMP : LIBGMP-NOTFOUND 2025-06-01T21:03:40.3846892Z -- RT : 2025-06-01T21:03:40.3847078Z -- FFTW3 : LIBFFTW3-NOTFOUND 2025-06-01T21:03:40.3847308Z -- OPENSSL : 3.0.15 2025-06-01T21:03:40.3847522Z -- SDE : SDE_COMMAND-NOTFOUND 2025-06-01T21:03:40.3847812Z -- COMPILER_SUPPORTS_OPENMP : FALSE 2025-06-01T21:03:40.4371769Z AT_INSTALL_INCLUDE_DIR include/ATen/core 2025-06-01T21:03:40.4372692Z core header install: C:/actions-runner/_work/pytorch/pytorch/build/aten/src/ATen/core/aten_interned_strings.h 2025-06-01T21:03:40.4373520Z core header install: C:/actions-runner/_work/pytorch/pytorch/build/aten/src/ATen/core/enum_tag.h 2025-06-01T21:03:40.4374236Z core header install: C:/actions-runner/_work/pytorch/pytorch/build/aten/src/ATen/core/TensorBody.h 2025-06-01T21:03:41.0988330Z -- Performing Test HAS_WNO_UNUSED_PRIVATE_FIELD 2025-06-01T21:03:41.1819400Z -- Performing Test HAS_WNO_UNUSED_PRIVATE_FIELD - Failed 2025-06-01T21:03:41.1824292Z -- Generating sources for unboxing kernels Python::Interpreter;-m;torchgen.gen_executorch;--source-path=C:/actions-runner/_work/pytorch/pytorch/test/edge/../../test/edge;--install-dir=C:/actions-runner/_work/pytorch/pytorch/build/out;--tags-path=C:/actions-runner/_work/pytorch/pytorch/test/edge/../../aten/src/ATen/native/tags.yaml;--aten-yaml-path=C:/actions-runner/_work/pytorch/pytorch/test/edge/../../aten/src/ATen/native/native_functions.yaml;--use-aten-lib;--op-selection-yaml-path=C:/actions-runner/_work/pytorch/pytorch/test/edge/../../test/edge/selected_operators.yaml;--custom-ops-yaml-path=C:/actions-runner/_work/pytorch/pytorch/test/edge/../../test/edge/custom_ops.yaml 2025-06-01T21:03:41.3881340Z CMake Warning at CMakeLists.txt:1276 (message): 2025-06-01T21:03:41.3881918Z Generated cmake files are only fully tested if one builds with system glog, 2025-06-01T21:03:41.3882535Z gflags, and protobuf. Other settings may generate files that are not well 2025-06-01T21:03:41.3882967Z tested. 2025-06-01T21:03:41.3883068Z 2025-06-01T21:03:41.3883073Z 2025-06-01T21:03:41.3904134Z -- 2025-06-01T21:03:41.3904376Z -- ******** Summary ******** 2025-06-01T21:03:41.3904622Z -- General: 2025-06-01T21:03:41.3904808Z -- CMake version : 3.27.9 2025-06-01T21:03:41.3905156Z -- CMake command : C:/Program Files/CMake/bin/cmake.exe 2025-06-01T21:03:41.3905506Z -- System : Windows 2025-06-01T21:03:41.3906140Z -- C++ compiler : C:/Program Files (x86)/Microsoft Visual Studio/2019/BuildTools/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/cl.exe 2025-06-01T21:03:41.3907076Z -- C++ compiler id : MSVC 2025-06-01T21:03:41.3907381Z -- C++ compiler version : 19.29.30158.0 2025-06-01T21:03:41.3907669Z -- Using ccache if found : OFF 2025-06-01T21:03:41.3908914Z -- CXX flags : /DWIN32 /D_WINDOWS /GR /EHsc /Zc:__cplusplus /bigobj /FS /utf-8 -DUSE_PTHREADPOOL -DNDEBUG -DUSE_KINETO -DLIBKINETO_NOROCTRACER -DLIBKINETO_NOXPUPTI=ON -DUSE_FBGEMM -DUSE_XNNPACK -DSYMBOLICATE_MOBILE_DEBUG_HANDLE /wd4624 /wd4068 /wd4067 /wd4267 /wd4661 /wd4717 /wd4244 /wd4804 /wd4273 2025-06-01T21:03:41.3910224Z -- Shared LD flags : /machine:x64 /ignore:4049 /ignore:4217 /ignore:4099 2025-06-01T21:03:41.3910714Z -- Static LD flags : /machine:x64 /ignore:4049 /ignore:4217 /ignore:4099 2025-06-01T21:03:41.3911170Z -- Module LD flags : /machine:x64 /ignore:4049 /ignore:4217 /ignore:4099 2025-06-01T21:03:41.3911552Z -- Build type : Release 2025-06-01T21:03:41.3912620Z -- 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-06-01T21:03:41.3914835Z -- 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-06-01T21:03:41.3916358Z -- CMAKE_INSTALL_PREFIX : C:/actions-runner/_work/pytorch/pytorch/torch 2025-06-01T21:03:41.3916745Z -- USE_GOLD_LINKER : OFF 2025-06-01T21:03:41.3916975Z -- 2025-06-01T21:03:41.3917142Z -- TORCH_VERSION : 2.8.0 2025-06-01T21:03:41.3917598Z -- BUILD_STATIC_RUNTIME_BENCHMARK: OFF 2025-06-01T21:03:41.3917904Z -- BUILD_BINARY : OFF 2025-06-01T21:03:41.3918204Z -- BUILD_CUSTOM_PROTOBUF : ON 2025-06-01T21:03:41.3918503Z -- Link local protobuf : ON 2025-06-01T21:03:41.3918748Z -- BUILD_PYTHON : True 2025-06-01T21:03:41.3918999Z -- Python version : 3.9.19 2025-06-01T21:03:41.3919317Z -- Python executable : C:\Jenkins\Miniconda3\python.exe 2025-06-01T21:03:41.3919750Z -- Python library : C:/Jenkins/Miniconda3/libs/python39.lib 2025-06-01T21:03:41.3920152Z -- Python includes : C:/Jenkins/Miniconda3/include 2025-06-01T21:03:41.3920569Z -- Python site-package : C:\Jenkins\Miniconda3\Lib\site-packages 2025-06-01T21:03:41.3920938Z -- BUILD_SHARED_LIBS : ON 2025-06-01T21:03:41.3921202Z -- CAFFE2_USE_MSVC_STATIC_RUNTIME : OFF 2025-06-01T21:03:41.3921490Z -- BUILD_TEST : True 2025-06-01T21:03:41.3921725Z -- BUILD_JNI : OFF 2025-06-01T21:03:41.3921982Z -- BUILD_MOBILE_AUTOGRAD : OFF 2025-06-01T21:03:41.3922240Z -- BUILD_LITE_INTERPRETER: OFF 2025-06-01T21:03:41.3922488Z -- INTERN_BUILD_MOBILE : 2025-06-01T21:03:41.3922726Z -- TRACING_BASED : OFF 2025-06-01T21:03:41.3922965Z -- USE_BLAS : 1 2025-06-01T21:03:41.3923231Z -- BLAS : mkl 2025-06-01T21:03:41.3923457Z -- BLAS_HAS_SBGEMM : 2025-06-01T21:03:41.3923703Z -- USE_LAPACK : 1 2025-06-01T21:03:41.3923924Z -- LAPACK : mkl 2025-06-01T21:03:41.3924163Z -- USE_ASAN : OFF 2025-06-01T21:03:41.3924396Z -- USE_TSAN : OFF 2025-06-01T21:03:41.3924643Z -- USE_CPP_CODE_COVERAGE : OFF 2025-06-01T21:03:41.3924887Z -- USE_CUDA : 1 2025-06-01T21:03:41.3925114Z -- Split CUDA : 2025-06-01T21:03:41.3925359Z -- CUDA static link : OFF 2025-06-01T21:03:41.3925597Z -- USE_CUDNN : ON 2025-06-01T21:03:41.3925837Z -- USE_CUSPARSELT : OFF 2025-06-01T21:03:41.3926224Z -- USE_CUDSS : OFF 2025-06-01T21:03:41.3926466Z -- USE_CUFILE : OFF 2025-06-01T21:03:41.3926709Z -- CUDA version : 12.6 2025-06-01T21:03:41.3926961Z -- USE_FLASH_ATTENTION : OFF 2025-06-01T21:03:41.3927218Z -- USE_MEM_EFF_ATTENTION : ON 2025-06-01T21:03:41.3927469Z -- cuDNN version : 9.7.1 2025-06-01T21:03:41.3927868Z -- CUDA root directory : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6 2025-06-01T21:03:41.3928470Z -- CUDA library : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cuda.lib 2025-06-01T21:03:41.3929129Z -- cudart library : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cudart.lib 2025-06-01T21:03:41.3929797Z -- cublas library : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cublas.lib 2025-06-01T21:03:41.3930461Z -- cufft library : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cufft.lib 2025-06-01T21:03:41.3931129Z -- curand library : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/curand.lib 2025-06-01T21:03:41.3931812Z -- cusparse library : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cusparse.lib 2025-06-01T21:03:41.3932489Z -- cuDNN library : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cudnn.lib 2025-06-01T21:03:41.3933102Z -- nvrtc : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/nvrtc.lib 2025-06-01T21:03:41.3933778Z -- CUDA include path : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/include 2025-06-01T21:03:41.3934489Z -- NVCC executable : C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat 2025-06-01T21:03:41.3935113Z -- CUDA compiler : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/bin/nvcc.exe 2025-06-01T21:03:41.3939042Z -- 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-06-01T21:03:41.3942681Z -- CUDA host compiler : 2025-06-01T21:03:41.3942944Z -- CUDA --device-c : OFF 2025-06-01T21:03:41.3943194Z -- USE_TENSORRT : 2025-06-01T21:03:41.3943441Z -- USE_XPU : 0 2025-06-01T21:03:41.3943668Z -- USE_ROCM : OFF 2025-06-01T21:03:41.3943919Z -- BUILD_NVFUSER : 2025-06-01T21:03:41.3944155Z -- USE_EIGEN_FOR_BLAS : 2025-06-01T21:03:41.3944394Z -- USE_FBGEMM : ON 2025-06-01T21:03:41.3944628Z -- USE_FAKELOWP : OFF 2025-06-01T21:03:41.3944880Z -- USE_KINETO : ON 2025-06-01T21:03:41.3945117Z -- USE_GFLAGS : OFF 2025-06-01T21:03:41.3945358Z -- USE_GLOG : OFF 2025-06-01T21:03:41.3945599Z -- USE_LITE_PROTO : OFF 2025-06-01T21:03:41.3945834Z -- USE_PYTORCH_METAL : OFF 2025-06-01T21:03:41.3946102Z -- USE_PYTORCH_METAL_EXPORT : OFF 2025-06-01T21:03:41.3946365Z -- USE_MPS : OFF 2025-06-01T21:03:41.3946606Z -- CAN_COMPILE_METAL : 2025-06-01T21:03:41.3946837Z -- USE_MKL : ON 2025-06-01T21:03:41.3947102Z -- USE_STATIC_MKL : OFF 2025-06-01T21:03:41.3947447Z -- USE_MKLDNN : ON 2025-06-01T21:03:41.3947704Z -- USE_MKLDNN_ACL : OFF 2025-06-01T21:03:41.3947948Z -- USE_MKLDNN_CBLAS : OFF 2025-06-01T21:03:41.3948272Z -- USE_UCC : OFF 2025-06-01T21:03:41.3948508Z -- USE_ITT : ON 2025-06-01T21:03:41.3948767Z -- USE_XCCL : OFF 2025-06-01T21:03:41.3949004Z -- USE_NCCL : OFF 2025-06-01T21:03:41.3949252Z -- USE_NNPACK : OFF 2025-06-01T21:03:41.3949507Z -- USE_NUMPY : ON 2025-06-01T21:03:41.3949743Z -- USE_OBSERVERS : ON 2025-06-01T21:03:41.3949998Z -- USE_OPENCL : OFF 2025-06-01T21:03:41.3950239Z -- USE_OPENMP : ON 2025-06-01T21:03:41.3950492Z -- USE_MIMALLOC : ON 2025-06-01T21:03:41.3950742Z -- USE_MIMALLOC_ON_MKL : OFF 2025-06-01T21:03:41.3951012Z -- USE_VULKAN : OFF 2025-06-01T21:03:41.3951247Z -- USE_PROF : OFF 2025-06-01T21:03:41.3951520Z -- USE_PYTORCH_QNNPACK : OFF 2025-06-01T21:03:41.3951765Z -- USE_XNNPACK : ON 2025-06-01T21:03:41.3952026Z -- USE_DISTRIBUTED : ON 2025-06-01T21:03:41.3952288Z -- USE_MPI : OFF 2025-06-01T21:03:41.3952554Z -- USE_GLOO : ON 2025-06-01T21:03:41.3952821Z -- USE_GLOO_WITH_OPENSSL : OFF 2025-06-01T21:03:41.3953081Z -- USE_GLOO_IBVERBS : OFF 2025-06-01T21:03:41.3953352Z -- USE_TENSORPIPE : OFF 2025-06-01T21:03:41.3953656Z -- Public Dependencies : caffe2::mkl 2025-06-01T21:03:41.3954436Z -- Private Dependencies : Threads::Threads;pthreadpool;cpuinfo;XNNPACK;microkernels-prod;fbgemm;ittnotify;fp16;caffe2::openmp;gloo;fmt::fmt-header-only;kineto 2025-06-01T21:03:41.3955220Z -- Public CUDA Deps. : 2025-06-01T21:03:41.3957115Z -- Private CUDA Deps. : caffe2::curand;caffe2::cufft;caffe2::cublas;torch::cudnn;gloo_cuda;fmt::fmt-header-only;C:/Jenkins/Miniconda3/Library/lib/mkl_intel_lp64_dll.lib;C:/Jenkins/Miniconda3/Library/lib/mkl_intel_thread_dll.lib;C:/Jenkins/Miniconda3/Library/lib/mkl_core_dll.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-06-01T21:03:41.3958951Z -- USE_COREML_DELEGATE : OFF 2025-06-01T21:03:41.3959225Z -- BUILD_LAZY_TS_BACKEND : ON 2025-06-01T21:03:41.3959502Z -- USE_ROCM_KERNEL_ASSERT : OFF 2025-06-01T21:03:41.4020549Z -- Performing Test HAS_WMISSING_PROTOTYPES 2025-06-01T21:03:41.4821467Z -- Performing Test HAS_WMISSING_PROTOTYPES - Failed 2025-06-01T21:03:41.4845077Z -- Performing Test HAS_WERROR_MISSING_PROTOTYPES 2025-06-01T21:03:41.5634486Z -- Performing Test HAS_WERROR_MISSING_PROTOTYPES - Failed 2025-06-01T21:03:41.5721042Z -- Configuring done (75.4s) 2025-06-01T21:03:48.5679422Z -- Generating done (5.8s) 2025-06-01T21:03:48.8232194Z CMake Warning: 2025-06-01T21:03:48.8232580Z Manually-specified variables were not used by the project: 2025-06-01T21:03:48.8232932Z 2025-06-01T21:03:48.8233018Z BUILD_ENVIRONMENT 2025-06-01T21:03:48.8233246Z BUILD_TYPE 2025-06-01T21:03:48.8233428Z BUILD_WHEEL 2025-06-01T21:03:48.8233562Z 2025-06-01T21:03:48.8233567Z 2025-06-01T21:03:48.8261320Z -- Build files have been written to: C:/actions-runner/_work/pytorch/pytorch/build 2025-06-01T21:03:54.8965388Z [1/4] Generating ATen declarations_yaml 2025-06-01T21:04:02.3977173Z [2/4] Generating ATen headers 2025-06-01T21:04:03.0102844Z [3/4] Generating ATen sources 2025-06-01T21:04:08.7092202Z [1/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_message_table_driven_lite.cc.obj 2025-06-01T21:04:08.7181053Z [2/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\coded_stream.cc.obj 2025-06-01T21:04:08.7196936Z [3/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\any_lite.cc.obj 2025-06-01T21:04:08.7260073Z [4/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\arena.cc.obj 2025-06-01T21:04:08.7275251Z [5/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_enum_util.cc.obj 2025-06-01T21:04:08.7289209Z [6/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\implicit_weak_message.cc.obj 2025-06-01T21:04:08.7363672Z [7/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_message_util.cc.obj 2025-06-01T21:04:08.7378509Z [8/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\extension_set.cc.obj 2025-06-01T21:04:08.9651044Z [9/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\strtod.cc.obj 2025-06-01T21:04:08.9716392Z [10/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\zero_copy_stream.cc.obj 2025-06-01T21:04:08.9781068Z [11/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\zero_copy_stream_impl_lite.cc.obj 2025-06-01T21:04:08.9874393Z [12/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\zero_copy_stream_impl.cc.obj 2025-06-01T21:04:09.0017852Z [13/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\repeated_field.cc.obj 2025-06-01T21:04:09.0394615Z [14/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\message_lite.cc.obj 2025-06-01T21:04:09.0585252Z [15/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\parse_context.cc.obj 2025-06-01T21:04:09.2068755Z [16/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\bytestream.cc.obj 2025-06-01T21:04:09.2468493Z [17/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\status.cc.obj 2025-06-01T21:04:09.2528709Z [18/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\statusor.cc.obj 2025-06-01T21:04:09.2623541Z [19/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\int128.cc.obj 2025-06-01T21:04:09.2679510Z [20/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\stringpiece.cc.obj 2025-06-01T21:04:09.2869132Z [21/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\stringprintf.cc.obj 2025-06-01T21:04:09.4239450Z [22/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\structurally_valid.cc.obj 2025-06-01T21:04:09.4844012Z [23/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\time.cc.obj 2025-06-01T21:04:09.5027687Z [24/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\common.cc.obj 2025-06-01T21:04:09.5082698Z [25/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\strutil.cc.obj 2025-06-01T21:04:09.5354851Z [26/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\io_win32.cc.obj 2025-06-01T21:04:09.5563030Z [27/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\any.cc.obj 2025-06-01T21:04:09.5840563Z [28/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\wire_format_lite.cc.obj 2025-06-01T21:04:09.6023684Z [29/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\any.pb.cc.obj 2025-06-01T21:04:09.7571378Z [30/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\api.pb.cc.obj 2025-06-01T21:04:09.8368972Z [31/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\compiler\importer.cc.obj 2025-06-01T21:04:09.8813346Z [32/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\compiler\parser.cc.obj 2025-06-01T21:04:09.9080130Z [33/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\descriptor.cc.obj 2025-06-01T21:04:09.9189771Z [34/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\duration.pb.cc.obj 2025-06-01T21:04:09.9436316Z [35/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\descriptor_database.cc.obj 2025-06-01T21:04:09.9607071Z [36/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\dynamic_message.cc.obj 2025-06-01T21:04:09.9624427Z [37/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\descriptor.pb.cc.obj 2025-06-01T21:04:10.0082544Z [38/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\gzip_stream.cc.obj 2025-06-01T21:04:10.0775996Z [39/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\empty.pb.cc.obj 2025-06-01T21:04:10.1986693Z [40/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\extension_set_heavy.cc.obj 2025-06-01T21:04:10.2020267Z [41/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\field_mask.pb.cc.obj 2025-06-01T21:04:10.2099020Z [42/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\printer.cc.obj 2025-06-01T21:04:10.2289600Z [43/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\tokenizer.cc.obj 2025-06-01T21:04:10.2412535Z [44/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_message_table_driven.cc.obj 2025-06-01T21:04:10.2917071Z [45/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_message_reflection.cc.obj 2025-06-01T21:04:10.3485309Z [46/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\map_field.cc.obj 2025-06-01T21:04:10.4476511Z [47/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\service.cc.obj 2025-06-01T21:04:10.4537344Z [48/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\message.cc.obj 2025-06-01T21:04:10.4934535Z [49/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\substitute.cc.obj 2025-06-01T21:04:10.5483223Z [50/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\source_context.pb.cc.obj 2025-06-01T21:04:10.5623986Z [51/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\reflection_ops.cc.obj 2025-06-01T21:04:10.5789868Z [52/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\struct.pb.cc.obj 2025-06-01T21:04:10.6795770Z [53/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\text_format.cc.obj 2025-06-01T21:04:10.6885019Z [54/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\timestamp.pb.cc.obj 2025-06-01T21:04:10.7536291Z [55/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\unknown_field_set.cc.obj 2025-06-01T21:04:10.7742208Z [56/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\delimited_message_util.cc.obj 2025-06-01T21:04:10.8033487Z [57/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\type.pb.cc.obj 2025-06-01T21:04:10.8532532Z [58/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\field_comparator.cc.obj 2025-06-01T21:04:10.9027950Z [59/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\field_mask_util.cc.obj 2025-06-01T21:04:10.9254046Z [60/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\datapiece.cc.obj 2025-06-01T21:04:10.9534026Z [61/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\error_listener.cc.obj 2025-06-01T21:04:11.0281459Z [62/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\json_escaping.cc.obj 2025-06-01T21:04:11.0439824Z [63/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\default_value_objectwriter.cc.obj 2025-06-01T21:04:11.1047932Z [64/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\json_stream_parser.cc.obj 2025-06-01T21:04:11.1145413Z [65/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\field_mask_utility.cc.obj 2025-06-01T21:04:11.1392875Z [66/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\json_objectwriter.cc.obj 2025-06-01T21:04:11.2518601Z [67/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\object_writer.cc.obj 2025-06-01T21:04:11.3175860Z [68/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\proto_writer.cc.obj 2025-06-01T21:04:11.3250219Z [69/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\protostream_objectsource.cc.obj 2025-06-01T21:04:11.3784064Z [70/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\type_info.cc.obj 2025-06-01T21:04:11.3891718Z [71/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\protostream_objectwriter.cc.obj 2025-06-01T21:04:11.4739477Z [72/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\type_info_test_helper.cc.obj 2025-06-01T21:04:11.4924346Z [73/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\utility.cc.obj 2025-06-01T21:04:11.4999379Z [74/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\json_util.cc.obj 2025-06-01T21:04:11.5070050Z [75/7616] Building RC object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\version.rc.res 2025-06-01T21:04:11.6118776Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-06-01T21:04:11.6119126Z 2025-06-01T21:04:11.6119131Z 2025-06-01T21:04:11.6119311Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-06-01T21:04:11.6119581Z 2025-06-01T21:04:11.6119585Z 2025-06-01T21:04:11.6119589Z 2025-06-01T21:04:11.6119592Z 2025-06-01T21:04:11.6120187Z [76/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\message_differencer.cc.obj 2025-06-01T21:04:11.7011639Z [77/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\type_resolver_util.cc.obj 2025-06-01T21:04:11.7126513Z [78/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\wrappers.pb.cc.obj 2025-06-01T21:04:11.7605819Z [79/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\wire_format.cc.obj 2025-06-01T21:04:11.8398229Z [80/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\code_generator.cc.obj 2025-06-01T21:04:11.8542499Z [81/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_enum.cc.obj 2025-06-01T21:04:11.9488472Z [82/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_enum_field.cc.obj 2025-06-01T21:04:12.0560632Z [83/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_extension.cc.obj 2025-06-01T21:04:12.0711162Z [84/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\command_line_interface.cc.obj 2025-06-01T21:04:12.0728430Z [85/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_field.cc.obj 2025-06-01T21:04:12.1121218Z [86/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_file.cc.obj 2025-06-01T21:04:12.1955323Z [87/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_generator.cc.obj 2025-06-01T21:04:12.2511535Z [88/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_helpers.cc.obj 2025-06-01T21:04:12.3019645Z [89/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_map_field.cc.obj 2025-06-01T21:04:12.4244397Z [90/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_padding_optimizer.cc.obj 2025-06-01T21:04:12.4339515Z [91/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_message.cc.obj 2025-06-01T21:04:12.4404412Z [92/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_message_field.cc.obj 2025-06-01T21:04:12.4586902Z [93/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_primitive_field.cc.obj 2025-06-01T21:04:12.5520426Z [94/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_service.cc.obj 2025-06-01T21:04:12.5813496Z [95/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_doc_comment.cc.obj 2025-06-01T21:04:12.6062323Z [96/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_string_field.cc.obj 2025-06-01T21:04:12.7577663Z [97/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\time_util.cc.obj 2025-06-01T21:04:12.7896807Z [98/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_enum.cc.obj 2025-06-01T21:04:12.7920471Z [99/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_enum_field.cc.obj 2025-06-01T21:04:12.8115482Z [100/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_field_base.cc.obj 2025-06-01T21:04:12.8375836Z [101/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_generator.cc.obj 2025-06-01T21:04:12.9056115Z [102/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_helpers.cc.obj 2025-06-01T21:04:12.9285409Z [103/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_map_field.cc.obj 2025-06-01T21:04:12.9874594Z [104/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_message.cc.obj 2025-06-01T21:04:13.0559712Z [105/7616] Linking CXX static library lib\libprotobuf.lib 2025-06-01T21:04:13.1610861Z [106/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_message_field.cc.obj 2025-06-01T21:04:13.1719411Z [107/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_primitive_field.cc.obj 2025-06-01T21:04:13.1851724Z [108/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_reflection_class.cc.obj 2025-06-01T21:04:13.2162039Z [109/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_repeated_enum_field.cc.obj 2025-06-01T21:04:13.2539240Z [110/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_repeated_message_field.cc.obj 2025-06-01T21:04:13.2790136Z [111/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_repeated_primitive_field.cc.obj 2025-06-01T21:04:13.3463077Z [112/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_source_generator_base.cc.obj 2025-06-01T21:04:13.4359452Z [113/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_wrapper_field.cc.obj 2025-06-01T21:04:13.4376713Z [114/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_doc_comment.cc.obj 2025-06-01T21:04:13.5217042Z [115/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_enum.cc.obj 2025-06-01T21:04:13.5235166Z [116/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_context.cc.obj 2025-06-01T21:04:13.5808417Z [117/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_enum_field.cc.obj 2025-06-01T21:04:13.6134112Z [118/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_enum_field_lite.cc.obj 2025-06-01T21:04:13.6387248Z [119/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_enum_lite.cc.obj 2025-06-01T21:04:13.7073292Z [120/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_extension.cc.obj 2025-06-01T21:04:13.7846345Z [121/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_extension_lite.cc.obj 2025-06-01T21:04:13.7933123Z [122/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_field.cc.obj 2025-06-01T21:04:13.8933565Z [123/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_generator.cc.obj 2025-06-01T21:04:13.9042907Z [124/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_file.cc.obj 2025-06-01T21:04:13.9466472Z [125/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_generator_factory.cc.obj 2025-06-01T21:04:13.9795617Z [126/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_helpers.cc.obj 2025-06-01T21:04:14.0082263Z [127/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_map_field.cc.obj 2025-06-01T21:04:14.0734247Z [128/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_map_field_lite.cc.obj 2025-06-01T21:04:14.1651856Z [129/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_builder.cc.obj 2025-06-01T21:04:14.1670030Z [130/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message.cc.obj 2025-06-01T21:04:14.2586126Z [131/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_builder_lite.cc.obj 2025-06-01T21:04:14.2647210Z [132/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_field.cc.obj 2025-06-01T21:04:14.3090683Z [133/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_field_lite.cc.obj 2025-06-01T21:04:14.3616511Z [134/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_lite.cc.obj 2025-06-01T21:04:14.3703606Z [135/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_name_resolver.cc.obj 2025-06-01T21:04:14.4349425Z [136/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_primitive_field.cc.obj 2025-06-01T21:04:14.4406340Z [137/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\js\well_known_types_embed.cc.obj 2025-06-01T21:04:14.5337132Z [138/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_service.cc.obj 2025-06-01T21:04:14.5505716Z [139/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_primitive_field_lite.cc.obj 2025-06-01T21:04:14.6218473Z [140/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_shared_code_generator.cc.obj 2025-06-01T21:04:14.6312495Z [141/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_string_field.cc.obj 2025-06-01T21:04:14.6692867Z [142/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_string_field_lite.cc.obj 2025-06-01T21:04:14.7568527Z [143/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\js\js_generator.cc.obj 2025-06-01T21:04:14.7891824Z [144/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_enum.cc.obj 2025-06-01T21:04:14.7986712Z [145/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_enum_field.cc.obj 2025-06-01T21:04:14.9127432Z [146/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_field.cc.obj 2025-06-01T21:04:14.9395474Z [147/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_extension.cc.obj 2025-06-01T21:04:14.9918248Z [148/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_generator.cc.obj 2025-06-01T21:04:15.0061700Z [149/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_file.cc.obj 2025-06-01T21:04:15.0534749Z [150/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_helpers.cc.obj 2025-06-01T21:04:15.1114124Z [151/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_map_field.cc.obj 2025-06-01T21:04:15.1390437Z [152/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_message_field.cc.obj 2025-06-01T21:04:15.1692656Z [153/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_message.cc.obj 2025-06-01T21:04:15.2639264Z [154/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_oneof.cc.obj 2025-06-01T21:04:15.3005987Z [155/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_primitive_field.cc.obj 2025-06-01T21:04:15.3116977Z [156/7616] Building RC object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\version.rc.res 2025-06-01T21:04:15.3555862Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-06-01T21:04:15.3556385Z 2025-06-01T21:04:15.3556394Z 2025-06-01T21:04:15.3556642Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-06-01T21:04:15.3556973Z 2025-06-01T21:04:15.3556979Z 2025-06-01T21:04:15.3556984Z 2025-06-01T21:04:15.3556991Z 2025-06-01T21:04:15.3558639Z [157/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\php\php_generator.cc.obj 2025-06-01T21:04:15.3674939Z [158/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\plugin.cc.obj 2025-06-01T21:04:15.3686897Z [159/7616] Building RC object third_party\protobuf\cmake\CMakeFiles\protoc.dir\version.rc.res 2025-06-01T21:04:15.4312214Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-06-01T21:04:15.4312575Z 2025-06-01T21:04:15.4312580Z 2025-06-01T21:04:15.4312748Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-06-01T21:04:15.4313061Z 2025-06-01T21:04:15.4313069Z 2025-06-01T21:04:15.4313073Z 2025-06-01T21:04:15.4313079Z 2025-06-01T21:04:15.4313594Z [160/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\plugin.pb.cc.obj 2025-06-01T21:04:15.4804378Z [161/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\python\python_generator.cc.obj 2025-06-01T21:04:15.4973031Z [162/7616] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\legacy-api.c.obj 2025-06-01T21:04:15.5270253Z [163/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\zip_writer.cc.obj 2025-06-01T21:04:15.5294814Z [164/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\ruby\ruby_generator.cc.obj 2025-06-01T21:04:15.5723598Z [165/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\protoc.dir\__\src\google\protobuf\compiler\main.cc.obj 2025-06-01T21:04:15.6117791Z [166/7616] Building C object sleef\src\libm\CMakeFiles\mkrename.dir\mkrename.c.obj 2025-06-01T21:04:15.6196322Z [167/7616] Building C object sleef\src\libm\CMakeFiles\mkalias.dir\mkalias.c.obj 2025-06-01T21:04:15.6387498Z [168/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\subprocess.cc.obj 2025-06-01T21:04:15.6564472Z [169/7616] Building C object sleef\src\libm\CMakeFiles\mkdisp.dir\mkdisp.c.obj 2025-06-01T21:04:15.8766621Z [170/7616] Linking CXX static library lib\libprotoc.lib 2025-06-01T21:04:15.8995177Z [171/7616] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\portable-api.c.obj 2025-06-01T21:04:15.9127787Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:04:15.9128726Z [172/7616] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\api.c.obj 2025-06-01T21:04:15.9248389Z [173/7616] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\cache.c.obj 2025-06-01T21:04:15.9859155Z [174/7616] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\info.c.obj 2025-06-01T21:04:15.9883043Z [175/7616] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\memory.c.obj 2025-06-01T21:04:15.9974096Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:04:15.9975731Z [176/7616] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\init.c.obj 2025-06-01T21:04:16.0298992Z [177/7616] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\init.c.obj 2025-06-01T21:04:16.0467583Z [178/7616] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\fastpath.c.obj 2025-06-01T21:04:16.0479702Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:04:16.0480586Z [179/7616] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\uarch.c.obj 2025-06-01T21:04:16.0661414Z [180/7616] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\vendor.c.obj 2025-06-01T21:04:16.0758124Z [181/7616] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\windows.c.obj 2025-06-01T21:04:16.1040770Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:04:16.1041637Z [182/7616] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\name.c.obj 2025-06-01T21:04:16.1199422Z [183/7616] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\topology.c.obj 2025-06-01T21:04:16.1246786Z [184/7616] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\isa.c.obj 2025-06-01T21:04:16.1294820Z [185/7616] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\cache\descriptor.c.obj 2025-06-01T21:04:16.1322197Z [186/7616] Linking C static library lib\pthreadpool.lib 2025-06-01T21:04:16.1395906Z [187/7616] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\cache\init.c.obj 2025-06-01T21:04:16.1927728Z [188/7616] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\cache\deterministic.c.obj 2025-06-01T21:04:16.2093581Z [189/7616] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\log.c.obj 2025-06-01T21:04:16.2300577Z [190/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-avgpool\f16-avgpool-9x-minmax-f16c-c8.c.obj 2025-06-01T21:04:16.2428526Z [191/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-avgpool\f16-avgpool-9p8x-minmax-f16c-c8.c.obj 2025-06-01T21:04:16.2488131Z [192/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-dwconv\gen\f16-dwconv-25p8c-minmax-fma3-acc2.c.obj 2025-06-01T21:04:16.2547806Z [193/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-dwconv\gen\f16-dwconv-3p16c-minmax-fma3.c.obj 2025-06-01T21:04:16.3341968Z [194/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-dwconv\gen\f16-dwconv-4p16c-minmax-fma3.c.obj 2025-06-01T21:04:16.3594008Z [195/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int16-u16.c.obj 2025-06-01T21:04:16.3648838Z [196/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-dwconv\gen\f16-dwconv-9p16c-minmax-fma3.c.obj 2025-06-01T21:04:16.3786301Z [197/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-f16c-u16.c.obj 2025-06-01T21:04:16.3799853Z [198/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx512skx-u16.c.obj 2025-06-01T21:04:16.3858756Z [199/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-scalar-u1.c.obj 2025-06-01T21:04:16.4089044Z [200/7616] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\windows\init.c.obj 2025-06-01T21:04:16.4316238Z [201/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-scalar-u4.c.obj 2025-06-01T21:04:16.4669875Z [202/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int16-u16.c.obj 2025-06-01T21:04:16.4742404Z [203/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int16-u32.c.obj 2025-06-01T21:04:16.5015650Z [204/7616] 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-06-01T21:04:16.5123980Z [205/7616] 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-06-01T21:04:16.5267432Z [206/7616] Linking CXX executable bin\protoc.exe 2025-06-01T21:04:16.5371192Z [207/7616] 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-06-01T21:04:16.5429664Z [208/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-avx512skx-c64.c.obj 2025-06-01T21:04:16.5492521Z [209/7616] 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-06-01T21:04:16.5765637Z [210/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u64-acc4.c.obj 2025-06-01T21:04:16.5781294Z [211/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-f16c-c32.c.obj 2025-06-01T21:04:16.6061579Z [212/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-f16c-u32-acc4.c.obj 2025-06-01T21:04:16.6118686Z [213/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-ibilinear\gen\f16-ibilinear-fma3-c8.c.obj 2025-06-01T21:04:16.6196994Z [214/7616] Running gen_proto.py on onnx/onnx.in.proto 2025-06-01T21:04:16.6458694Z Processing C:\actions-runner\_work\pytorch\pytorch\third_party\onnx\onnx\onnx.in.proto 2025-06-01T21:04:16.6459164Z 2025-06-01T21:04:16.6459507Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_onnx_torch-ml.proto 2025-06-01T21:04:16.6459975Z 2025-06-01T21:04:16.6460379Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_onnx_torch-ml.proto3 2025-06-01T21:04:16.6460893Z 2025-06-01T21:04:16.6461173Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-ml.pb.h 2025-06-01T21:04:16.6461606Z 2025-06-01T21:04:16.6461907Z generating C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_pb.py 2025-06-01T21:04:16.6462296Z 2025-06-01T21:04:16.6462758Z [215/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-pavgpool\f16-pavgpool-9x-minmax-avx2-c8.c.obj 2025-06-01T21:04:16.6478421Z [216/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-pavgpool\f16-pavgpool-9p8x-minmax-avx2-c8.c.obj 2025-06-01T21:04:16.6542019Z [217/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-maxpool\f16-maxpool-9p8x-minmax-f16c-c8.c.obj 2025-06-01T21:04:16.6848914Z [218/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-qu8-vcvt\gen\f16-qu8-vcvt-scalar-imagic-u4.c.obj 2025-06-01T21:04:16.6996804Z [219/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-imagic-u4.c.obj 2025-06-01T21:04:16.7118524Z [220/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u32.c.obj 2025-06-01T21:04:16.7326434Z [221/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\f16-rmax-f16c-u32.c.obj 2025-06-01T21:04:16.7527807Z [222/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u64-acc4.c.obj 2025-06-01T21:04:16.7592331Z [223/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\gen\f16-rmax-scalar-u2-acc2.c.obj 2025-06-01T21:04:16.7608311Z [224/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u64-acc4.c.obj 2025-06-01T21:04:16.7848625Z [225/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u2-acc2.c.obj 2025-06-01T21:04:16.8106003Z [226/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vadd-f16c-u16.c.obj 2025-06-01T21:04:16.8565298Z [227/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vdiv-f16c-u8.c.obj 2025-06-01T21:04:16.8631113Z [228/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vdivc-f16c-u8.c.obj 2025-06-01T21:04:16.8643989Z [229/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vaddc-f16c-u16.c.obj 2025-06-01T21:04:16.8773702Z [230/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmaxc-f16c-u16.c.obj 2025-06-01T21:04:16.8942945Z [231/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmin-f16c-u16.c.obj 2025-06-01T21:04:16.8962854Z [232/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmax-f16c-u16.c.obj 2025-06-01T21:04:16.9175002Z [233/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vminc-f16c-u16.c.obj 2025-06-01T21:04:16.9761487Z [234/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmul-f16c-u16.c.obj 2025-06-01T21:04:16.9825374Z [235/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmulc-f16c-u16.c.obj 2025-06-01T21:04:16.9840647Z [236/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vprelu-f16c-u16.c.obj 2025-06-01T21:04:17.0006891Z [237/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vpreluc-f16c-u16.c.obj 2025-06-01T21:04:17.0057041Z [238/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vrdivc-f16c-u8.c.obj 2025-06-01T21:04:17.0114870Z [239/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vrpreluc-f16c-u16.c.obj 2025-06-01T21:04:17.0313548Z [240/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vrsubc-f16c-u16.c.obj 2025-06-01T21:04:17.0995092Z [241/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vsub-f16c-u16.c.obj 2025-06-01T21:04:17.1006509Z [242/7616] Running C++ protocol buffer compiler on C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto 2025-06-01T21:04:17.1130223Z [243/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vsqrdiff-f16c-u16.c.obj 2025-06-01T21:04:17.1198376Z [244/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vsubc-f16c-u16.c.obj 2025-06-01T21:04:17.1323145Z [245/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vsqrdiffc-f16c-u16.c.obj 2025-06-01T21:04:17.1405486Z [246/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vclamp\gen\f16-vclamp-f16c-u16.c.obj 2025-06-01T21:04:17.1621117Z [247/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vhswish\gen\f16-vhswish-f16c-u16.c.obj 2025-06-01T21:04:17.1639335Z [248/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-velu\gen\f16-velu-avx2-rr1-p3-u16.c.obj 2025-06-01T21:04:17.2040768Z [249/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vmulcaddc\gen\f16-vmulcaddc-c8-minmax-fma3-2x.c.obj 2025-06-01T21:04:17.2099141Z [250/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vlrelu\gen\f16-vlrelu-f16c-u16.c.obj 2025-06-01T21:04:17.2260369Z [251/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrnd\gen\f16-vrndd-f16c-u16.c.obj 2025-06-01T21:04:17.2322512Z [252/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrnd\gen\f16-vrndne-f16c-u16.c.obj 2025-06-01T21:04:17.2515586Z [253/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrnd\gen\f16-vrndu-f16c-u16.c.obj 2025-06-01T21:04:17.2707642Z [254/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrnd\gen\f16-vrndz-f16c-u16.c.obj 2025-06-01T21:04:17.2828283Z [255/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrsqrt\gen\f16-vrsqrt-f16c-rsqrt-u32.c.obj 2025-06-01T21:04:17.2914382Z [256/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-rcp-u32.c.obj 2025-06-01T21:04:17.3274240Z [257/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-rsqrt-u32.c.obj 2025-06-01T21:04:17.3287716Z [258/7616] 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-06-01T21:04:17.3466200Z [259/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vtanh\gen\f16-vtanh-fma3-polynomial-p19h9t2-u32.c.obj 2025-06-01T21:04:17.3524102Z [260/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vunary\gen\f16-vabs-sse2-u16.c.obj 2025-06-01T21:04:17.3694279Z [261/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vunary\gen\f16-vneg-sse2-u16.c.obj 2025-06-01T21:04:17.3820017Z [262/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-4x-sse2-c4.c.obj 2025-06-01T21:04:17.3879922Z [263/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-4x-scalar-c1.c.obj 2025-06-01T21:04:17.4030317Z [264/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vunary\gen\f16-vsqr-f16c-u16.c.obj 2025-06-01T21:04:17.4079652Z [265/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-9p8x-sse2-c4.c.obj 2025-06-01T21:04:17.4282618Z [266/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-9x-sse2-c4.c.obj 2025-06-01T21:04:17.4490969Z [267/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-9p8x-scalar-c1.c.obj 2025-06-01T21:04:17.4687452Z [268/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-9x-scalar-c1.c.obj 2025-06-01T21:04:17.4857263Z [269/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-avgpool\f32-avgpool-9p8x-minmax-scalar-c1.c.obj 2025-06-01T21:04:17.5060260Z [270/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-avgpool\f32-avgpool-9p8x-minmax-sse-c4.c.obj 2025-06-01T21:04:17.5359277Z [271/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-avgpool\f32-avgpool-9x-minmax-scalar-c1.c.obj 2025-06-01T21:04:17.5544908Z [272/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-avgpool\f32-avgpool-9x-minmax-sse-c4.c.obj 2025-06-01T21:04:17.5770877Z [273/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-conv-hwc2chw\f32-conv-hwc2chw-3x3s2p1c3x4-scalar-1x1.c.obj 2025-06-01T21:04:17.6259550Z [274/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-conv-hwc2chw\f32-conv-hwc2chw-3x3s2p1c3x4-sse-2x2.c.obj 2025-06-01T21:04:17.6463627Z [275/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-avx512f.c.obj 2025-06-01T21:04:17.6660964Z [276/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p1c-minmax-scalar-acc2.c.obj 2025-06-01T21:04:17.6873475Z [277/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p1c-scalar-acc2.c.obj 2025-06-01T21:04:17.7440275Z [278/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-avx.c.obj 2025-06-01T21:04:17.7605732Z [279/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-fma3.c.obj 2025-06-01T21:04:17.7811577Z [280/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-sse.c.obj 2025-06-01T21:04:17.8009496Z [281/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l4c1s1r-minmax-scalar-acc2.c.obj 2025-06-01T21:04:17.8209067Z [282/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-avx.c.obj 2025-06-01T21:04:17.8396790Z [283/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-avx512f.c.obj 2025-06-01T21:04:17.8566880Z [284/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-fma3.c.obj 2025-06-01T21:04:17.8776038Z [285/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p1c-minmax-scalar-acc2.c.obj 2025-06-01T21:04:17.9013313Z [286/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p1c-scalar-acc2.c.obj 2025-06-01T21:04:17.9203157Z [287/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-sse.c.obj 2025-06-01T21:04:17.9374206Z [288/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-avx.c.obj 2025-06-01T21:04:17.9603238Z [289/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-avx512f.c.obj 2025-06-01T21:04:17.9781925Z [290/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-fma3.c.obj 2025-06-01T21:04:18.0088123Z [291/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p1c-minmax-scalar-acc2.c.obj 2025-06-01T21:04:18.0252628Z [292/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p1c-scalar-acc2.c.obj 2025-06-01T21:04:18.0409257Z [293/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-sse.c.obj 2025-06-01T21:04:18.0595445Z [294/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l32c16s1r-minmax-avx512f.c.obj 2025-06-01T21:04:18.0858575Z [295/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c8s4r-minmax-fma3.c.obj 2025-06-01T21:04:18.1050146Z [296/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l8c8s4r-minmax-avx.c.obj 2025-06-01T21:04:18.1267798Z [297/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l16c4s4r-minmax-sse.c.obj 2025-06-01T21:04:18.1429827Z [298/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-avx.c.obj 2025-06-01T21:04:18.1636894Z [299/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-avx512f.c.obj 2025-06-01T21:04:18.1829891Z [300/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-fma3.c.obj 2025-06-01T21:04:18.2026785Z [301/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p1c-minmax-scalar-acc2.c.obj 2025-06-01T21:04:18.2210924Z [302/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p1c-scalar-acc2.c.obj 2025-06-01T21:04:18.2638725Z [303/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-sse.c.obj 2025-06-01T21:04:18.2819254Z [304/7616] 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-06-01T21:04:18.2988806Z [305/7616] 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-06-01T21:04:18.3165517Z [306/7616] 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-06-01T21:04:18.3352212Z [307/7616] 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-06-01T21:04:18.3537483Z [308/7616] 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-06-01T21:04:18.3779244Z [309/7616] 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-06-01T21:04:18.3995150Z [310/7616] 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-06-01T21:04:18.4190389Z [311/7616] 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-06-01T21:04:18.4497999Z [312/7616] 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-06-01T21:04:18.4931976Z [313/7616] 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-06-01T21:04:18.5101942Z [314/7616] 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-06-01T21:04:18.5293572Z [315/7616] 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-06-01T21:04:18.5476662Z [316/7616] 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-06-01T21:04:18.5653523Z [317/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx-u24.c.obj 2025-06-01T21:04:21.2181630Z [318/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx512skx-u16.c.obj 2025-06-01T21:04:21.2520770Z [319/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-f16c-u16.c.obj 2025-06-01T21:04:21.2747188Z [320/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-bitcast-u4.c.obj 2025-06-01T21:04:21.2974004Z [321/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-fabsf-u2.c.obj 2025-06-01T21:04:21.3158665Z [322/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse2-u16.c.obj 2025-06-01T21:04:21.3348161Z [323/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse41-u8.c.obj 2025-06-01T21:04:21.3537845Z [324/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x16-minmax-avx-broadcast.c.obj 2025-06-01T21:04:21.3713202Z [325/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x32-minmax-avx512f-broadcast.c.obj 2025-06-01T21:04:21.3922924Z [326/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x4-minmax-scalar.c.obj 2025-06-01T21:04:21.3989294Z [327/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x16s4-minmax-fma3-broadcast.c.obj 2025-06-01T21:04:21.4003656Z [328/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x16-minmax-fma3-broadcast.c.obj 2025-06-01T21:04:21.4150554Z [329/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x4-relu-scalar.c.obj 2025-06-01T21:04:21.4427270Z [330/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x4-scalar.c.obj 2025-06-01T21:04:21.4621941Z [331/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x8-minmax-sse-load1.c.obj 2025-06-01T21:04:21.4775760Z [332/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-2x4-minmax-scalar.c.obj 2025-06-01T21:04:21.5156566Z [333/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-2x4-relu-scalar.c.obj 2025-06-01T21:04:21.5326697Z [334/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x16s4-minmax-fma3-broadcast.c.obj 2025-06-01T21:04:21.5564127Z [335/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-2x4-scalar.c.obj 2025-06-01T21:04:21.5580179Z [336/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x2-scalar.c.obj 2025-06-01T21:04:21.5636331Z [337/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x2-minmax-scalar.c.obj 2025-06-01T21:04:21.5719830Z [338/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x2c4-minmax-sse.c.obj 2025-06-01T21:04:21.5840937Z [339/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x4-minmax-scalar.c.obj 2025-06-01T21:04:21.6123259Z [340/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x4-relu-scalar.c.obj 2025-06-01T21:04:21.6500069Z [341/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x4-scalar.c.obj 2025-06-01T21:04:21.6725315Z [342/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x8-minmax-sse-load1.c.obj 2025-06-01T21:04:21.6815434Z [343/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-ibilinear-chw\gen\f32-ibilinear-chw-scalar-p4.c.obj 2025-06-01T21:04:21.6872279Z [344/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-ibilinear-chw\gen\f32-ibilinear-chw-sse-p8.c.obj 2025-06-01T21:04:21.6920062Z [345/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-5x16-minmax-avx-broadcast.c.obj 2025-06-01T21:04:21.7023225Z [346/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-7x32-minmax-avx512f-broadcast.c.obj 2025-06-01T21:04:21.7097074Z [347/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-ibilinear\gen\f32-ibilinear-scalar-c2.c.obj 2025-06-01T21:04:21.7425450Z [348/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-ibilinear\gen\f32-ibilinear-sse-c8.c.obj 2025-06-01T21:04:21.7438940Z [349/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-5x16-minmax-fma3-broadcast.c.obj 2025-06-01T21:04:21.7853298Z [350/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x16-minmax-avx-broadcast.c.obj 2025-06-01T21:04:21.7949944Z [351/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x16-minmax-fma3-broadcast.c.obj 2025-06-01T21:04:21.8031708Z [352/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x16s4-minmax-fma3-broadcast.c.obj 2025-06-01T21:04:21.8083694Z [353/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x32-minmax-avx512f-broadcast.c.obj 2025-06-01T21:04:21.8204079Z [354/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x4-minmax-scalar.c.obj 2025-06-01T21:04:21.8423224Z [355/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x4-relu-scalar.c.obj 2025-06-01T21:04:21.8628478Z [356/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x8-minmax-sse-load1.c.obj 2025-06-01T21:04:21.8890124Z [357/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x4-scalar.c.obj 2025-06-01T21:04:21.9155777Z [358/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-2x4-minmax-scalar.c.obj 2025-06-01T21:04:21.9242647Z [359/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-2x4-scalar.c.obj 2025-06-01T21:04:21.9357465Z [360/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x16s4-minmax-fma3-broadcast.c.obj 2025-06-01T21:04:21.9377383Z [361/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x2-minmax-scalar.c.obj 2025-06-01T21:04:21.9427976Z [362/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-2x4-relu-scalar.c.obj 2025-06-01T21:04:21.9603710Z [363/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x2-scalar.c.obj 2025-06-01T21:04:21.9806289Z [364/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x2c4-minmax-sse.c.obj 2025-06-01T21:04:22.0129048Z [365/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x4-minmax-scalar.c.obj 2025-06-01T21:04:22.0443612Z [366/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x4-scalar.c.obj 2025-06-01T21:04:22.0457436Z [367/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x4-relu-scalar.c.obj 2025-06-01T21:04:22.0587799Z [368/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x8-minmax-sse-load1.c.obj 2025-06-01T21:04:22.0670139Z [369/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-5x16-minmax-avx-broadcast.c.obj 2025-06-01T21:04:22.0726311Z [370/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-7x32-minmax-avx512f-broadcast.c.obj 2025-06-01T21:04:22.0802655Z [371/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-maxpool\f32-maxpool-9p8x-minmax-scalar-c1.c.obj 2025-06-01T21:04:22.1204407Z [372/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-5x16-minmax-fma3-broadcast-prfm.c.obj 2025-06-01T21:04:22.1443272Z [373/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-maxpool\f32-maxpool-9p8x-minmax-sse-c4.c.obj 2025-06-01T21:04:22.1493728Z [374/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-pavgpool\f32-pavgpool-9p8x-minmax-scalar-c1.c.obj 2025-06-01T21:04:22.1639131Z [375/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-pavgpool\f32-pavgpool-9p8x-minmax-sse-c4.c.obj 2025-06-01T21:04:22.1653054Z [376/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-pavgpool\f32-pavgpool-9x-minmax-sse-c4.c.obj 2025-06-01T21:04:22.1708492Z [377/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-pavgpool\f32-pavgpool-9x-minmax-scalar-c1.c.obj 2025-06-01T21:04:22.1924071Z [378/7616] 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-06-01T21:04:22.2170755Z [379/7616] 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-06-01T21:04:22.2480638Z [380/7616] 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-06-01T21:04:22.2769944Z [381/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-1x4-minmax-scalar.c.obj 2025-06-01T21:04:22.2866309Z [382/7616] 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-06-01T21:04:22.3071171Z [383/7616] 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-06-01T21:04:22.3103251Z [384/7616] 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-06-01T21:04:22.3228302Z [385/7616] 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-06-01T21:04:22.3326501Z [386/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-4x4-minmax-scalar.c.obj 2025-06-01T21:04:22.3546935Z [387/7616] 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-06-01T21:04:22.3811057Z [388/7616] 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-06-01T21:04:22.4236780Z [389/7616] 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-06-01T21:04:22.4454471Z [390/7616] 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-06-01T21:04:22.4523054Z [391/7616] 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-06-01T21:04:22.4537600Z [392/7616] 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-06-01T21:04:22.4694874Z [393/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x4-minmax-scalar.c.obj 2025-06-01T21:04:22.4749693Z [394/7616] 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-06-01T21:04:22.5087610Z [395/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x4-minmax-scalar.c.obj 2025-06-01T21:04:22.5279241Z [396/7616] 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-06-01T21:04:22.5662495Z [397/7616] 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-06-01T21:04:22.5838991Z [398/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx-u32.c.obj 2025-06-01T21:04:22.6035905Z [399/7616] 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-06-01T21:04:22.6050179Z [400/7616] 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-06-01T21:04:22.6063770Z [401/7616] 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-06-01T21:04:22.6129896Z [402/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx2-u64.c.obj 2025-06-01T21:04:22.6313128Z [403/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx512skx-u128.c.obj 2025-06-01T21:04:22.6383748Z [404/7616] 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-06-01T21:04:22.6885107Z [405/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-imagic-u4.c.obj 2025-06-01T21:04:22.7064447Z [406/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-imagic-u1.c.obj 2025-06-01T21:04:22.7129657Z [407/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse2-u32.c.obj 2025-06-01T21:04:22.7211947Z [408/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse41-u32.c.obj 2025-06-01T21:04:22.7341843Z [409/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx2-u64.c.obj 2025-06-01T21:04:22.7437617Z [410/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx512skx-u128.c.obj 2025-06-01T21:04:22.7677168Z [411/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx-u32.c.obj 2025-06-01T21:04:22.7691724Z [412/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-lrintf-u4.c.obj 2025-06-01T21:04:22.7970714Z [413/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-imagic-u1.c.obj 2025-06-01T21:04:22.8128992Z [414/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-lrintf-u4.c.obj 2025-06-01T21:04:22.8292207Z [415/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-sse2-u32.c.obj 2025-06-01T21:04:22.8351186Z [416/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-imagic-u4.c.obj 2025-06-01T21:04:22.8367672Z [417/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr2-p5-u32-acc2.c.obj 2025-06-01T21:04:22.8654710Z [418/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx256skx-rr2-p5-u32-acc2.c.obj 2025-06-01T21:04:22.8942656Z [419/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-p5-u4-acc2.c.obj 2025-06-01T21:04:22.9140087Z [420/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr2-p5-u64-acc2.c.obj 2025-06-01T21:04:22.9209415Z [421/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx-c32.c.obj 2025-06-01T21:04:22.9484132Z [422/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-sse2-rr2-p5-u16-acc2.c.obj 2025-06-01T21:04:22.9537367Z [423/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-scalar.c.obj 2025-06-01T21:04:22.9594034Z [424/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx512f-c64.c.obj 2025-06-01T21:04:22.9629370Z [425/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-sse-c16.c.obj 2025-06-01T21:04:22.9791987Z [426/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rmax-avx-u32-acc4.c.obj 2025-06-01T21:04:22.9921483Z [427/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u64-acc4.c.obj 2025-06-01T21:04:23.0109697Z [428/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rmax-scalar-u4-acc4.c.obj 2025-06-01T21:04:23.0686007Z [429/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rmax-sse-u16-acc4.c.obj 2025-06-01T21:04:23.0736409Z [430/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u4-acc4.c.obj 2025-06-01T21:04:23.0789306Z [431/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rminmax-avx-u32-acc4.c.obj 2025-06-01T21:04:23.0802350Z [432/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rsum\gen\f32-rsum-avx-u32-acc4.c.obj 2025-06-01T21:04:23.0858810Z [433/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u64-acc4.c.obj 2025-06-01T21:04:23.0876357Z [434/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rsum\gen\f32-rsum-avx512f-u64-acc4.c.obj 2025-06-01T21:04:23.1030567Z [435/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rminmax-sse-u16-acc4.c.obj 2025-06-01T21:04:23.1098540Z [436/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rsum\gen\f32-rsum-scalar-u4-acc4.c.obj 2025-06-01T21:04:23.1923314Z [437/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-spmm\gen\f32-spmm-8x2-minmax-scalar.c.obj 2025-06-01T21:04:23.2045710Z [438/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-spmm\gen\f32-spmm-8x4-minmax-scalar.c.obj 2025-06-01T21:04:23.2058773Z [439/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rsum\gen\f32-rsum-sse-u16-acc4.c.obj 2025-06-01T21:04:23.2150397Z [440/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vadd-avx512f-u32.c.obj 2025-06-01T21:04:23.2208951Z [441/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-spmm\gen\f32-spmm-32x1-minmax-sse.c.obj 2025-06-01T21:04:23.2221366Z [442/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-spmm\gen\f32-spmm-8x1-minmax-scalar.c.obj 2025-06-01T21:04:23.2285998Z [443/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vadd-scalar-u8.c.obj 2025-06-01T21:04:23.2504207Z [444/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vadd-avx-u16.c.obj 2025-06-01T21:04:23.3309676Z [445/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vaddc-scalar-u8.c.obj 2025-06-01T21:04:23.3503081Z [446/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vaddc-avx-u16.c.obj 2025-06-01T21:04:23.3560116Z [447/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vaddc-avx512f-u32.c.obj 2025-06-01T21:04:23.3615475Z [448/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdiv-scalar-u2.c.obj 2025-06-01T21:04:23.3629925Z [449/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdiv-avx-u16.c.obj 2025-06-01T21:04:23.3720228Z [450/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vadd-sse-u8.c.obj 2025-06-01T21:04:23.3768064Z [451/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdiv-avx512f-u32.c.obj 2025-06-01T21:04:23.3934216Z [452/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vaddc-sse-u8.c.obj 2025-06-01T21:04:23.4719550Z [453/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdiv-sse-u8.c.obj 2025-06-01T21:04:23.4792171Z [454/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdivc-avx512f-u32.c.obj 2025-06-01T21:04:23.4852516Z [455/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdivc-avx-u16.c.obj 2025-06-01T21:04:23.4909209Z [456/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmax-avx512f-u32.c.obj 2025-06-01T21:04:23.4922841Z [457/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmax-avx-u16.c.obj 2025-06-01T21:04:23.5014301Z [458/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdivc-scalar-u2.c.obj 2025-06-01T21:04:23.5079524Z [459/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdivc-sse-u8.c.obj 2025-06-01T21:04:23.5141267Z [460/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmax-scalar-u8.c.obj 2025-06-01T21:04:23.6026872Z [461/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmaxc-avx-u16.c.obj 2025-06-01T21:04:23.6083361Z [462/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmaxc-avx512f-u32.c.obj 2025-06-01T21:04:23.6130835Z [463/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmaxc-scalar-u8.c.obj 2025-06-01T21:04:23.6216477Z [464/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmax-sse-u8.c.obj 2025-06-01T21:04:23.6296559Z [465/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmaxc-sse-u8.c.obj 2025-06-01T21:04:23.6310839Z [466/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmin-avx-u16.c.obj 2025-06-01T21:04:23.6324983Z [467/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmin-scalar-u8.c.obj 2025-06-01T21:04:23.6512908Z [468/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmin-avx512f-u32.c.obj 2025-06-01T21:04:23.7366085Z [469/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vminc-avx-u16.c.obj 2025-06-01T21:04:23.7418770Z [470/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vminc-scalar-u8.c.obj 2025-06-01T21:04:23.7433921Z [471/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmul-avx-u16.c.obj 2025-06-01T21:04:23.7446618Z [472/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmin-sse-u8.c.obj 2025-06-01T21:04:23.7501339Z [473/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vminc-sse-u8.c.obj 2025-06-01T21:04:23.7553600Z [474/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmul-avx512f-u32.c.obj 2025-06-01T21:04:23.7611561Z [475/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vminc-avx512f-u32.c.obj 2025-06-01T21:04:23.7749298Z [476/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmul-scalar-u8.c.obj 2025-06-01T21:04:23.8583895Z [477/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmul-sse-u8.c.obj 2025-06-01T21:04:23.8644240Z [478/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmulc-avx-u16.c.obj 2025-06-01T21:04:23.8658286Z [479/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmulc-scalar-u8.c.obj 2025-06-01T21:04:23.8676753Z [480/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmulc-avx512f-u32.c.obj 2025-06-01T21:04:23.8734043Z [481/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vprelu-avx-u16.c.obj 2025-06-01T21:04:23.8817769Z [482/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vprelu-avx512f-u32.c.obj 2025-06-01T21:04:23.8831324Z [483/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmulc-sse-u8.c.obj 2025-06-01T21:04:23.8906302Z [484/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vprelu-scalar-u8.c.obj 2025-06-01T21:04:23.9757194Z [485/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vprelu-sse2-u8.c.obj 2025-06-01T21:04:23.9845224Z [486/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vpreluc-avx512f-u32.c.obj 2025-06-01T21:04:23.9858397Z [487/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vpreluc-avx-u16.c.obj 2025-06-01T21:04:23.9871229Z [488/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vpreluc-scalar-u8.c.obj 2025-06-01T21:04:23.9954297Z [489/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vpreluc-sse2-u8.c.obj 2025-06-01T21:04:24.0022062Z [490/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrdivc-avx512f-u32.c.obj 2025-06-01T21:04:24.0034914Z [491/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrdivc-avx-u16.c.obj 2025-06-01T21:04:24.0047422Z [492/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrdivc-scalar-u2.c.obj 2025-06-01T21:04:24.0985950Z [493/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrdivc-sse-u8.c.obj 2025-06-01T21:04:24.1041278Z [494/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrpreluc-avx-u16.c.obj 2025-06-01T21:04:24.1093862Z [495/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrpreluc-avx512f-u32.c.obj 2025-06-01T21:04:24.1207313Z [496/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrsubc-avx-u16.c.obj 2025-06-01T21:04:24.1222687Z [497/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrsubc-scalar-u8.c.obj 2025-06-01T21:04:24.1288513Z [498/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrsubc-avx512f-u32.c.obj 2025-06-01T21:04:24.1346010Z [499/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrpreluc-sse2-u8.c.obj 2025-06-01T21:04:24.1428435Z [500/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrpreluc-scalar-u8.c.obj 2025-06-01T21:04:24.2155050Z [501/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrsubc-sse-u8.c.obj 2025-06-01T21:04:24.2211432Z [502/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiff-avx-u16.c.obj 2025-06-01T21:04:24.2355702Z [503/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiff-scalar-u8.c.obj 2025-06-01T21:04:24.2472693Z [504/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiff-avx512f-u32.c.obj 2025-06-01T21:04:24.2486405Z [505/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiff-sse-u8.c.obj 2025-06-01T21:04:24.2552508Z [506/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiffc-scalar-u8.c.obj 2025-06-01T21:04:24.2568704Z [507/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiffc-avx-u16.c.obj 2025-06-01T21:04:24.2625244Z [508/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiffc-avx512f-u32.c.obj 2025-06-01T21:04:24.3340263Z [509/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiffc-sse-u8.c.obj 2025-06-01T21:04:24.3404457Z [510/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsub-avx-u16.c.obj 2025-06-01T21:04:24.3652535Z [511/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsubc-avx-u16.c.obj 2025-06-01T21:04:24.3713404Z [512/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsub-scalar-u8.c.obj 2025-06-01T21:04:24.3726675Z [513/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsubc-avx512f-u32.c.obj 2025-06-01T21:04:24.3785728Z [514/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsubc-scalar-u8.c.obj 2025-06-01T21:04:24.3848351Z [515/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsub-sse-u8.c.obj 2025-06-01T21:04:24.4078073Z [516/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsub-avx512f-u32.c.obj 2025-06-01T21:04:24.4469499Z [517/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsubc-sse-u8.c.obj 2025-06-01T21:04:24.4780068Z [518/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vclamp\gen\f32-vclamp-avx-u16.c.obj 2025-06-01T21:04:24.4828290Z [519/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vclamp\gen\f32-vclamp-avx512f-u16.c.obj 2025-06-01T21:04:24.4884599Z [520/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vclamp\gen\f32-vclamp-sse-u8.c.obj 2025-06-01T21:04:24.4898481Z [521/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vclamp\gen\f32-vclamp-scalar-u4.c.obj 2025-06-01T21:04:24.4972837Z [522/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcmul\gen\f32-vcmul-avx512f-u32.c.obj 2025-06-01T21:04:24.4992753Z [523/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcmul\gen\f32-vcmul-fma3-u16.c.obj 2025-06-01T21:04:24.5260201Z [524/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcmul\gen\f32-vcmul-scalar-u4.c.obj 2025-06-01T21:04:24.5642201Z [525/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcmul\gen\f32-vcmul-sse-u8.c.obj 2025-06-01T21:04:24.5944586Z [526/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysign-avx.c.obj 2025-06-01T21:04:24.6089280Z [527/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysign-scalar.c.obj 2025-06-01T21:04:24.6104003Z [528/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysign-sse2.c.obj 2025-06-01T21:04:24.6166486Z [529/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysignc-avx.c.obj 2025-06-01T21:04:24.6311647Z [530/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysignc-avx512f.c.obj 2025-06-01T21:04:24.6327685Z [531/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysign-avx512f.c.obj 2025-06-01T21:04:24.6411860Z [532/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysignc-scalar.c.obj 2025-06-01T21:04:24.6713571Z [533/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysignc-sse2.c.obj 2025-06-01T21:04:24.7042858Z [534/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vrcopysignc-avx.c.obj 2025-06-01T21:04:24.7274155Z [535/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vrcopysignc-avx512f.c.obj 2025-06-01T21:04:24.7336826Z [536/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vrcopysignc-scalar.c.obj 2025-06-01T21:04:24.7393743Z [537/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vrcopysignc-sse2.c.obj 2025-06-01T21:04:24.7517753Z [538/7616] 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-06-01T21:04:24.7536517Z [539/7616] 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-06-01T21:04:24.7624450Z [540/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-p6-u64.c.obj 2025-06-01T21:04:24.7967705Z [541/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u2.c.obj 2025-06-01T21:04:24.8253794Z [542/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u4.c.obj 2025-06-01T21:04:24.8377013Z [543/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-velu\gen\f32-velu-sse2-rr2-lut16-p3-u12.c.obj 2025-06-01T21:04:24.8582481Z [544/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vgelu\gen\f32-vgelu-avx-rational-12-10-div.c.obj 2025-06-01T21:04:24.8659453Z [545/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vgelu\gen\f32-vgelu-fma3-rational-12-10-div.c.obj 2025-06-01T21:04:24.8726609Z [546/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vgelu\gen\f32-vgelu-avx512f-rational-12-10-nr.c.obj 2025-06-01T21:04:24.8828510Z [547/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vexp\gen\f32-vexp-scalar-exp.c.obj 2025-06-01T21:04:24.8843349Z [548/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vgelu\gen\f32-vgelu-scalar-rational-12-10-div.c.obj 2025-06-01T21:04:24.9123415Z [549/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vgelu\gen\f32-vgelu-sse2-rational-12-10-div.c.obj 2025-06-01T21:04:24.9366950Z [550/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-avx-u16.c.obj 2025-06-01T21:04:24.9553638Z [551/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-avx512f-u16.c.obj 2025-06-01T21:04:24.9745782Z [552/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-fma3-u16.c.obj 2025-06-01T21:04:24.9881889Z [553/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-scalar-u4.c.obj 2025-06-01T21:04:24.9950031Z [554/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-sse-u8.c.obj 2025-06-01T21:04:25.0060773Z [555/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlog\gen\f32-vlog-avx2-rational-3-3-div.c.obj 2025-06-01T21:04:25.0077929Z [556/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlog\gen\f32-vlog-avx512f-rational-3-3-div.c.obj 2025-06-01T21:04:25.0211867Z [557/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlog\gen\f32-vlog-fma3-rational-3-3-div.c.obj 2025-06-01T21:04:25.0537521Z [558/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlog\gen\f32-vlog-scalar-rational-3-3-div.c.obj 2025-06-01T21:04:25.0688089Z [559/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlog\gen\f32-vlog-sse2-rational-3-3-div.c.obj 2025-06-01T21:04:25.0898839Z [560/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-avx-u16.c.obj 2025-06-01T21:04:25.1007698Z [561/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-avx512f-u16.c.obj 2025-06-01T21:04:25.1095166Z [562/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-scalar-u4.c.obj 2025-06-01T21:04:25.1198906Z [563/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-sse-u8.c.obj 2025-06-01T21:04:25.1261884Z [564/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-sse41-u8.c.obj 2025-06-01T21:04:25.1319806Z [565/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vmulcaddc\gen\f32-vmulcaddc-c1-minmax-scalar-2x.c.obj 2025-06-01T21:04:25.1607095Z [566/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vmulcaddc\gen\f32-vmulcaddc-c4-minmax-sse-2x.c.obj 2025-06-01T21:04:25.1842321Z [567/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrelu\gen\f32-vrelu-scalar-u8.c.obj 2025-06-01T21:04:25.2028615Z [568/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-avx-u16.c.obj 2025-06-01T21:04:25.2149389Z [569/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-avx512f-u16.c.obj 2025-06-01T21:04:25.2256516Z [570/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-scalar-libm-u1.c.obj 2025-06-01T21:04:25.2508691Z [571/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-sse41-u8.c.obj 2025-06-01T21:04:25.2523237Z [572/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-scalar-libm-u4.c.obj 2025-06-01T21:04:25.2723580Z [573/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-avx-u16.c.obj 2025-06-01T21:04:25.2741317Z [574/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-sse2-u8.c.obj 2025-06-01T21:04:25.2887134Z [575/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-avx512f-u16.c.obj 2025-06-01T21:04:25.3143283Z [576/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-scalar-libm-u1.c.obj 2025-06-01T21:04:25.3370439Z [577/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-scalar-libm-u4.c.obj 2025-06-01T21:04:25.3465161Z [578/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-sse2-u8.c.obj 2025-06-01T21:04:25.3649975Z [579/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-sse41-u8.c.obj 2025-06-01T21:04:25.3702796Z [580/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-avx-u16.c.obj 2025-06-01T21:04:25.3880637Z [581/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-scalar-libm-u1.c.obj 2025-06-01T21:04:25.3897468Z [582/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-avx512f-u16.c.obj 2025-06-01T21:04:25.4149677Z [583/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-scalar-libm-u4.c.obj 2025-06-01T21:04:25.4476956Z [584/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-sse2-u8.c.obj 2025-06-01T21:04:25.4492468Z [585/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-sse41-u8.c.obj 2025-06-01T21:04:25.4572119Z [586/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-avx-u16.c.obj 2025-06-01T21:04:25.4750053Z [587/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-avx512f-u16.c.obj 2025-06-01T21:04:25.4897987Z [588/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-scalar-libm-u1.c.obj 2025-06-01T21:04:25.5041544Z [589/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-sse2-u8.c.obj 2025-06-01T21:04:25.5121651Z [590/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-scalar-libm-u4.c.obj 2025-06-01T21:04:25.5248374Z [591/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-sse41-u8.c.obj 2025-06-01T21:04:25.5632041Z [592/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx512f-rsqrt-u32.c.obj 2025-06-01T21:04:25.5749551Z [593/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx-rsqrt-u16.c.obj 2025-06-01T21:04:25.5765899Z [594/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-fma3-rsqrt-u16.c.obj 2025-06-01T21:04:25.5891106Z [595/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-scalar-rsqrt-u1.c.obj 2025-06-01T21:04:25.6007552Z [596/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-scalar-rsqrt-u4.c.obj 2025-06-01T21:04:25.6148047Z [597/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-sse-rsqrt-u8.c.obj 2025-06-01T21:04:25.6212963Z [598/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-nr2-u16.c.obj 2025-06-01T21:04:25.6332461Z [599/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-div-u16.c.obj 2025-06-01T21:04:25.6744105Z [600/7616] 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-06-01T21:04:25.6895864Z [601/7616] 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-06-01T21:04:25.6979693Z [602/7616] 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-06-01T21:04:25.7185565Z [603/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-rsqrt-u16.c.obj 2025-06-01T21:04:25.7331871Z [604/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-fma3-rsqrt-u16.c.obj 2025-06-01T21:04:25.7347056Z [605/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-avx512f-rsqrt-u16.c.obj 2025-06-01T21:04:25.7427773Z [606/7616] 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-06-01T21:04:25.7500430Z [607/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-scalar-sqrt-u1.c.obj 2025-06-01T21:04:25.8020042Z [608/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-rsqrt-u12.c.obj 2025-06-01T21:04:25.8086883Z [609/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vtanh\gen\f32-vtanh-avx512f-rational-9-8-nr.c.obj 2025-06-01T21:04:25.8279825Z [610/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vtanh\gen\f32-vtanh-fma3-rational-9-8-div.c.obj 2025-06-01T21:04:25.8484745Z [611/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vtanh\gen\f32-vtanh-sse2-rational-9-8-div.c.obj 2025-06-01T21:04:25.8497471Z [612/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vtanh\gen\f32-vtanh-avx-rational-9-8-div.c.obj 2025-06-01T21:04:25.8510019Z [613/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vtanh\gen\f32-vtanh-scalar-rational-9-8-div.c.obj 2025-06-01T21:04:25.8559820Z [614/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vabs-avx.c.obj 2025-06-01T21:04:25.8626375Z [615/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vabs-avx512f.c.obj 2025-06-01T21:04:25.9151169Z [616/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vabs-scalar.c.obj 2025-06-01T21:04:25.9215546Z [617/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vabs-sse2.c.obj 2025-06-01T21:04:25.9405285Z [618/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vneg-avx.c.obj 2025-06-01T21:04:25.9646064Z [619/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vneg-sse2.c.obj 2025-06-01T21:04:25.9705538Z [620/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vneg-avx512f.c.obj 2025-06-01T21:04:25.9761742Z [621/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vsqr-avx.c.obj 2025-06-01T21:04:25.9780888Z [622/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vsqr-avx512f.c.obj 2025-06-01T21:04:25.9835050Z [623/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vneg-scalar.c.obj 2025-06-01T21:04:26.0419823Z [624/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vsqr-sse2.c.obj 2025-06-01T21:04:26.0436173Z [625/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vsqr-scalar.c.obj 2025-06-01T21:04:26.0783207Z [626/7616] 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-06-01T21:04:26.1020855Z [627/7616] 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-06-01T21:04:26.1079667Z [628/7616] 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-06-01T21:04:26.1097284Z [629/7616] 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-06-01T21:04:26.1162763Z [630/7616] 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-06-01T21:04:26.1282525Z [631/7616] 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-06-01T21:04:26.1684228Z [632/7616] 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-06-01T21:04:26.1861132Z [633/7616] 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-06-01T21:04:26.2094770Z [634/7616] 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-06-01T21:04:26.2415119Z [635/7616] 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-06-01T21:04:26.2463605Z [636/7616] 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-06-01T21:04:26.2479463Z [637/7616] 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-06-01T21:04:26.2878103Z [638/7616] 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-06-01T21:04:26.3160026Z [639/7616] 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-06-01T21:04:26.3239172Z [640/7616] 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-06-01T21:04:26.3251936Z [641/7616] 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-06-01T21:04:26.3486454Z [642/7616] 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-06-01T21:04:26.3536959Z [643/7616] 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-06-01T21:04:26.3656637Z [644/7616] 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-06-01T21:04:26.3938790Z [645/7616] 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-06-01T21:04:26.4137918Z [646/7616] 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-06-01T21:04:26.4433116Z [647/7616] 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-06-01T21:04:26.4630542Z [648/7616] 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-06-01T21:04:26.4798145Z [649/7616] 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-06-01T21:04:26.4896434Z [650/7616] 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-06-01T21:04:26.4911539Z [651/7616] 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-06-01T21:04:26.4968841Z [652/7616] 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-06-01T21:04:26.5142176Z [653/7616] 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-06-01T21:04:26.5464217Z [654/7616] 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-06-01T21:04:26.6010182Z [655/7616] 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-06-01T21:04:26.6126982Z [656/7616] 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-06-01T21:04:26.6182057Z [657/7616] 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-06-01T21:04:26.6234932Z [658/7616] 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-06-01T21:04:26.6332912Z [659/7616] 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-06-01T21:04:26.6427909Z [660/7616] 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-06-01T21:04:26.6480528Z [661/7616] 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-06-01T21:04:26.6677519Z [662/7616] 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-06-01T21:04:26.7365842Z [663/7616] 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-06-01T21:04:26.7661169Z [664/7616] 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-06-01T21:04:26.7714217Z [665/7616] 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-06-01T21:04:26.7725846Z [666/7616] 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-06-01T21:04:26.7793946Z [667/7616] 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-06-01T21:04:26.7858872Z [668/7616] 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-06-01T21:04:26.7874059Z [669/7616] 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-06-01T21:04:26.8065926Z [670/7616] 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-06-01T21:04:26.8706198Z [671/7616] 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-06-01T21:04:26.9099661Z [672/7616] 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-06-01T21:04:26.9173509Z [673/7616] 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-06-01T21:04:26.9185637Z [674/7616] 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-06-01T21:04:26.9238001Z [675/7616] 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-06-01T21:04:26.9343364Z [676/7616] 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-06-01T21:04:26.9355829Z [677/7616] 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-06-01T21:04:26.9470383Z [678/7616] 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-06-01T21:04:27.0005819Z [679/7616] 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-06-01T21:04:27.0371093Z [680/7616] 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-06-01T21:04:27.0480729Z [681/7616] 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-06-01T21:04:27.0493737Z [682/7616] 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-06-01T21:04:27.0504988Z [683/7616] 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-06-01T21:04:27.0643420Z [684/7616] 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-06-01T21:04:27.0807452Z [685/7616] 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-06-01T21:04:27.1121815Z [686/7616] 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-06-01T21:04:27.1241103Z [687/7616] 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-06-01T21:04:27.1696799Z [688/7616] 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-06-01T21:04:27.1865516Z [689/7616] 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-06-01T21:04:27.1878727Z [690/7616] 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-06-01T21:04:27.1925860Z [691/7616] 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-06-01T21:04:27.1990736Z [692/7616] 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-06-01T21:04:27.2004048Z [693/7616] 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-06-01T21:04:27.2430927Z [694/7616] 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-06-01T21:04:27.2655448Z [695/7616] 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-06-01T21:04:27.3066139Z [696/7616] 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-06-01T21:04:27.3078648Z [697/7616] 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-06-01T21:04:27.3158540Z [698/7616] 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-06-01T21:04:27.3213025Z [699/7616] 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-06-01T21:04:27.3403785Z [700/7616] 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-06-01T21:04:27.3458481Z [701/7616] 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-06-01T21:04:27.3861846Z [702/7616] 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-06-01T21:04:27.3920846Z [703/7616] 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-06-01T21:04:27.4327859Z [704/7616] 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-06-01T21:04:27.4343188Z [705/7616] 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-06-01T21:04:27.4424118Z [706/7616] 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-06-01T21:04:27.4566825Z [707/7616] 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-06-01T21:04:27.4634172Z [708/7616] 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-06-01T21:04:27.4649604Z [709/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:04:27.5118000Z [710/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:04:27.5195144Z [711/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:04:27.5586209Z [712/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.obj 2025-06-01T21:04:27.5638553Z [713/7616] 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-06-01T21:04:27.5698890Z [714/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:04:27.5808751Z [715/7616] 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-06-01T21:04:27.5824443Z [716/7616] 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-06-01T21:04:27.5882491Z [717/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:04:27.6307602Z [718/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:04:27.6468196Z [719/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:04:27.6845432Z [720/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:04:27.6934982Z [721/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx-u32.c.obj 2025-06-01T21:04:27.6948643Z [722/7616] 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-06-01T21:04:27.6962407Z [723/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.obj 2025-06-01T21:04:27.7026228Z [724/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f16-vcvt\gen\qs8-f16-vcvt-avx2-u16.c.obj 2025-06-01T21:04:27.7040776Z [725/7616] 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-06-01T21:04:27.7323261Z [726/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx2-u16.c.obj 2025-06-01T21:04:27.7860162Z [727/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx512skx-u32.c.obj 2025-06-01T21:04:27.7993769Z [728/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-scalar-u4.c.obj 2025-06-01T21:04:27.8006046Z [729/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-scalar-u1.c.obj 2025-06-01T21:04:27.8016879Z [730/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse41-u16.c.obj 2025-06-01T21:04:27.8066367Z [731/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse2-u32.c.obj 2025-06-01T21:04:27.8118296Z [732/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-packw\gen\qs8-packw-x16c8-gemm-goi-avx256vnni-prfm.c.obj 2025-06-01T21:04:27.8136493Z [733/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-packw\gen\qs8-packw-x16c8-gemm-goi-scalar.c.obj 2025-06-01T21:04:27.8401122Z [734/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-packw\gen\qs8-packw-x64c4-gemm-goi-scalar.c.obj 2025-06-01T21:04:27.8959474Z [735/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-packw\gen\qs8-packw-x8c8-gemm-goi-avx256vnni-prfm.c.obj 2025-06-01T21:04:27.9215954Z [736/7616] 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-06-01T21:04:27.9268154Z [737/7616] 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-06-01T21:04:27.9321948Z [738/7616] 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-06-01T21:04:27.9334036Z [739/7616] 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-06-01T21:04:27.9439376Z [740/7616] 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-06-01T21:04:27.9618802Z [741/7616] 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-06-01T21:04:27.9685824Z [742/7616] 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-06-01T21:04:28.0195419Z [743/7616] 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-06-01T21:04:28.0414079Z [744/7616] 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-06-01T21:04:28.0429258Z [745/7616] 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-06-01T21:04:28.0597155Z [746/7616] 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-06-01T21:04:28.0646958Z [747/7616] 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-06-01T21:04:28.0835993Z [748/7616] 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-06-01T21:04:28.0849395Z [749/7616] 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-06-01T21:04:28.0904894Z [750/7616] 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-06-01T21:04:28.1366601Z [751/7616] 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-06-01T21:04:28.1627115Z [752/7616] 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-06-01T21:04:28.1690954Z [753/7616] 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-06-01T21:04:28.1825567Z [754/7616] 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-06-01T21:04:28.1882376Z [755/7616] 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-06-01T21:04:28.2108624Z [756/7616] 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-06-01T21:04:28.2124287Z [757/7616] 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-06-01T21:04:28.2139951Z [758/7616] 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-06-01T21:04:28.2566431Z [759/7616] 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-06-01T21:04:28.2968581Z [760/7616] 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-06-01T21:04:28.3043819Z [761/7616] 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-06-01T21:04:28.3232183Z [762/7616] 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-06-01T21:04:28.3282395Z [763/7616] 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-06-01T21:04:28.3438377Z [764/7616] 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-06-01T21:04:28.3455161Z [765/7616] 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-06-01T21:04:28.3510256Z [766/7616] 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-06-01T21:04:28.3908906Z [767/7616] 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-06-01T21:04:28.4308777Z [768/7616] 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-06-01T21:04:28.4366854Z [769/7616] 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-06-01T21:04:28.4631087Z [770/7616] 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-06-01T21:04:28.4689266Z [771/7616] 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-06-01T21:04:28.4900300Z [772/7616] 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-06-01T21:04:28.4913085Z [773/7616] 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-06-01T21:04:28.4962786Z [774/7616] 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-06-01T21:04:28.5205980Z [775/7616] 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-06-01T21:04:28.5655103Z [776/7616] 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-06-01T21:04:28.5772214Z [777/7616] 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-06-01T21:04:28.5936783Z [778/7616] 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-06-01T21:04:28.5995531Z [779/7616] 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-06-01T21:04:28.6170772Z [780/7616] 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-06-01T21:04:28.6239180Z [781/7616] 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-06-01T21:04:28.6293782Z [782/7616] 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-06-01T21:04:28.6447057Z [783/7616] 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-06-01T21:04:28.6974031Z [784/7616] 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-06-01T21:04:28.7134467Z [785/7616] 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-06-01T21:04:28.7312669Z [786/7616] 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-06-01T21:04:28.7325604Z [787/7616] 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-06-01T21:04:28.7338340Z [788/7616] 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-06-01T21:04:28.7550374Z [789/7616] 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-06-01T21:04:28.7607201Z [790/7616] 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-06-01T21:04:28.7662998Z [791/7616] 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-06-01T21:04:28.8258792Z [792/7616] 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-06-01T21:04:28.8516069Z [793/7616] 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-06-01T21:04:28.8528806Z [794/7616] 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-06-01T21:04:28.8653715Z [795/7616] 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-06-01T21:04:28.8722207Z [796/7616] 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-06-01T21:04:28.8733707Z [797/7616] 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-06-01T21:04:28.8785644Z [798/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-avx2-c64.c.obj 2025-06-01T21:04:28.8910009Z [799/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-avx512skx-c64.c.obj 2025-06-01T21:04:28.9380728Z [800/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-sse41-c64.c.obj 2025-06-01T21:04:28.9604586Z [801/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rdsum\gen\qs8-rdsum-minmax-fp32-scalar-u1-acc1.c.obj 2025-06-01T21:04:28.9651632Z [802/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-avx256skx-u64-acc2.c.obj 2025-06-01T21:04:28.9713371Z [803/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-avx2-u64-acc2.c.obj 2025-06-01T21:04:28.9808150Z [804/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-scalar-u4.c.obj 2025-06-01T21:04:28.9819731Z [805/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-avx512skx-u128-acc2.c.obj 2025-06-01T21:04:28.9832265Z [806/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-avx512vnni-u128-acc2.c.obj 2025-06-01T21:04:28.9994022Z [807/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-ssse3-u32-acc2.c.obj 2025-06-01T21:04:29.0564951Z [808/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul32-ld32-u8.c.obj 2025-06-01T21:04:29.0712048Z [809/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx2-mul32-ld64-u16.c.obj 2025-06-01T21:04:29.0833509Z [810/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-scalar-u1.c.obj 2025-06-01T21:04:29.0957259Z [811/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul16-ld64-u8.c.obj 2025-06-01T21:04:29.1008458Z [812/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx512skx-mul32-ld128-u16.c.obj 2025-06-01T21:04:29.1073720Z [813/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse2-mul16-ld64-u8.c.obj 2025-06-01T21:04:29.1087871Z [814/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-scalar-u4.c.obj 2025-06-01T21:04:29.1148018Z [815/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul32-ld32-u8.c.obj 2025-06-01T21:04:29.1676375Z [816/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx2-mul32-ld64-u16.c.obj 2025-06-01T21:04:29.1908944Z [817/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx512skx-mul32-ld128-u16.c.obj 2025-06-01T21:04:29.1981297Z [818/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-scalar-u1.c.obj 2025-06-01T21:04:29.2106274Z [819/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-avx-u32.c.obj 2025-06-01T21:04:29.2195695Z [820/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-scalar-u4.c.obj 2025-06-01T21:04:29.2211337Z [821/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul16-ld64-u8.c.obj 2025-06-01T21:04:29.2223674Z [822/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-avx2-u32.c.obj 2025-06-01T21:04:29.2713864Z [823/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-scalar-u1.c.obj 2025-06-01T21:04:29.2731491Z [824/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse2-mul16-ld64-u8.c.obj 2025-06-01T21:04:29.2915781Z [825/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-scalar-u4.c.obj 2025-06-01T21:04:29.2979805Z [826/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-sse2-u32.c.obj 2025-06-01T21:04:29.3132411Z [827/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-sse41-u32.c.obj 2025-06-01T21:04:29.3302102Z [828/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx-u32.c.obj 2025-06-01T21:04:29.3316119Z [829/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-ssse3-u32.c.obj 2025-06-01T21:04:29.3375263Z [830/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx2-u32.c.obj 2025-06-01T21:04:29.3874623Z [831/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-andxor-u4.c.obj 2025-06-01T21:04:29.3889451Z [832/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-select-u4.c.obj 2025-06-01T21:04:29.4150259Z [833/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse41-u32.c.obj 2025-06-01T21:04:29.4168705Z [834/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse2-u32.c.obj 2025-06-01T21:04:29.4328317Z [835/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-ssse3-u32.c.obj 2025-06-01T21:04:29.4417220Z [836/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vmul\gen\qs8-vmul-minmax-fp32-scalar-u4.c.obj 2025-06-01T21:04:29.4505543Z [837/7616] 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-06-01T21:04:29.4570626Z [838/7616] 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-06-01T21:04:29.5013777Z [839/7616] 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-06-01T21:04:29.5076826Z [840/7616] 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-06-01T21:04:29.5244665Z [841/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vmulc\gen\qs8-vmulc-minmax-fp32-scalar-u4.c.obj 2025-06-01T21:04:29.5414725Z [842/7616] 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-06-01T21:04:29.5431148Z [843/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-avgpool\qu8-avgpool-9p8x-minmax-fp32-scalar-imagic-c1.c.obj 2025-06-01T21:04:29.5528492Z [844/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-avgpool\qu8-avgpool-9p8x-minmax-fp32-sse2-c8.c.obj 2025-06-01T21:04:29.5587177Z [845/7616] 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-06-01T21:04:29.5645900Z [846/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-avgpool\qu8-avgpool-9x-minmax-fp32-scalar-imagic-c1.c.obj 2025-06-01T21:04:29.6041787Z [847/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-avgpool\qu8-avgpool-9x-minmax-fp32-sse2-c8.c.obj 2025-06-01T21:04:29.6193078Z [848/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-avx-mul16.c.obj 2025-06-01T21:04:29.6674573Z [849/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:04:29.6692947Z [850/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:04:29.6705176Z [851/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:04:29.6761854Z [852/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:04:29.6775751Z [853/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.obj 2025-06-01T21:04:29.6892946Z [854/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-sse2-mul16.c.obj 2025-06-01T21:04:29.7184508Z [855/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-sse41-mul16.c.obj 2025-06-01T21:04:29.7368628Z [856/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-avx-mul16.c.obj 2025-06-01T21:04:29.7848999Z [857/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:04:29.7957946Z [858/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:04:29.8018192Z [859/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:04:29.8158791Z [860/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-sse2-mul16.c.obj 2025-06-01T21:04:29.8437837Z [861/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-sse41-mul16.c.obj 2025-06-01T21:04:29.8500365Z [862/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx-u32.c.obj 2025-06-01T21:04:29.8568227Z [863/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.obj 2025-06-01T21:04:29.8583598Z [864/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:04:29.8840262Z [865/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx2-u16.c.obj 2025-06-01T21:04:29.9073749Z [866/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-scalar-u1.c.obj 2025-06-01T21:04:29.9087045Z [867/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx512skx-u32.c.obj 2025-06-01T21:04:29.9155973Z [868/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-scalar-u4.c.obj 2025-06-01T21:04:29.9482665Z [869/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse2-u32.c.obj 2025-06-01T21:04:29.9573808Z [870/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse41-u16.c.obj 2025-06-01T21:04:29.9974628Z [871/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-06-01T21:04:30.0040954Z [872/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x2-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:04:30.0239952Z [873/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x4-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:04:30.0433976Z [874/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:04:30.0494221Z [875/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:04:30.0548967Z [876/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:04:30.0848967Z [877/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x8c8-minmax-fp32-avx2.c.obj 2025-06-01T21:04:30.0924838Z [878/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-2x2-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:04:30.1304163Z [879/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:04:30.1365569Z [880/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-3x4-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:04:30.1707448Z [881/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:04:30.1760451Z [882/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:04:30.1828055Z [883/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-3x8c8-minmax-fp32-avx2.c.obj 2025-06-01T21:04:30.1884569Z [884/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-7x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-06-01T21:04:30.2053332Z [885/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-06-01T21:04:30.2239206Z [886/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x2-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:04:30.2514507Z [887/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:04:30.2656113Z [888/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x4-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:04:30.2922499Z [889/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:04:30.3023770Z [890/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:04:30.3084632Z [891/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x8c8-minmax-fp32-avx2.c.obj 2025-06-01T21:04:30.3303658Z [892/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-2x2-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:04:30.3357924Z [893/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:04:30.3560615Z [894/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-3x4-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:04:30.3785512Z [895/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:04:30.3958338Z [896/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:04:30.4121700Z [897/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rdsum\gen\qu8-rdsum-7p7x-ssse3-c64.c.obj 2025-06-01T21:04:30.4138113Z [898/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-3x8c8-minmax-fp32-avx2.c.obj 2025-06-01T21:04:30.4195742Z [899/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-7x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-06-01T21:04:30.4391767Z [900/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rdsum\gen\qu8-rdsum-scalar.c.obj 2025-06-01T21:04:30.4443826Z [901/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rsum\gen\qu8-rsum-avx2-u64-acc2.c.obj 2025-06-01T21:04:30.4591328Z [902/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rsum\gen\qu8-rsum-scalar-u4.c.obj 2025-06-01T21:04:30.4818536Z [903/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rsum\gen\qu8-rsum-sse2-u32-acc2.c.obj 2025-06-01T21:04:30.5152339Z [904/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx-mul32-ld32-u8.c.obj 2025-06-01T21:04:30.5232288Z [905/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx2-mul32-ld64-u16.c.obj 2025-06-01T21:04:30.5246034Z [906/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx512skx-mul32-ld128-u16.c.obj 2025-06-01T21:04:30.5306924Z [907/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-scalar-u1.c.obj 2025-06-01T21:04:30.5521436Z [908/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse2-mul16-ld64-u8.c.obj 2025-06-01T21:04:30.5737953Z [909/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-scalar-u4.c.obj 2025-06-01T21:04:30.5762084Z [910/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse41-mul16-ld64-u8.c.obj 2025-06-01T21:04:30.5971979Z [911/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx-mul32-ld32-u8.c.obj 2025-06-01T21:04:30.6294021Z [912/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx2-mul32-ld64-u16.c.obj 2025-06-01T21:04:30.6313948Z [913/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx512skx-mul32-ld128-u16.c.obj 2025-06-01T21:04:30.6380379Z [914/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-scalar-u4.c.obj 2025-06-01T21:04:30.6444379Z [915/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-scalar-u1.c.obj 2025-06-01T21:04:30.6644272Z [916/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse2-mul16-ld64-u8.c.obj 2025-06-01T21:04:30.6805424Z [917/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-avx-u32.c.obj 2025-06-01T21:04:30.6871286Z [918/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse41-mul16-ld64-u8.c.obj 2025-06-01T21:04:30.7030551Z [919/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-avx2-u32.c.obj 2025-06-01T21:04:30.7398097Z [920/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-scalar-u1.c.obj 2025-06-01T21:04:30.7455026Z [921/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-sse2-u32.c.obj 2025-06-01T21:04:30.7525340Z [922/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-scalar-u4.c.obj 2025-06-01T21:04:30.7577758Z [923/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-sse41-u32.c.obj 2025-06-01T21:04:30.7713470Z [924/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-ssse3-u32.c.obj 2025-06-01T21:04:30.7974198Z [925/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx-u32.c.obj 2025-06-01T21:04:30.8024886Z [926/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx2-u32.c.obj 2025-06-01T21:04:30.8161170Z [927/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-andxor-u4.c.obj 2025-06-01T21:04:30.8515990Z [928/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-select-u4.c.obj 2025-06-01T21:04:30.8616931Z [929/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse41-u32.c.obj 2025-06-01T21:04:30.8673601Z [930/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse2-u32.c.obj 2025-06-01T21:04:30.8859048Z [931/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-ssse3-u32.c.obj 2025-06-01T21:04:30.9041293Z [932/7616] 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-06-01T21:04:30.9055711Z [933/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vmul\gen\qu8-vmul-minmax-fp32-scalar-u4.c.obj 2025-06-01T21:04:30.9188845Z [934/7616] 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-06-01T21:04:30.9270688Z [935/7616] 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-06-01T21:04:30.9609667Z [936/7616] 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-06-01T21:04:30.9833385Z [937/7616] 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-06-01T21:04:30.9925913Z [938/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vmulc\gen\qu8-vmulc-minmax-fp32-scalar-u4.c.obj 2025-06-01T21:04:31.0026626Z [939/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s32-f32-vcvt\gen\s32-f32-vcvt-avx2.c.obj 2025-06-01T21:04:31.0106964Z [940/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s32-f32-vcvt\gen\s32-f32-vcvt-avx512f.c.obj 2025-06-01T21:04:31.0179629Z [941/7616] 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-06-01T21:04:31.0240374Z [942/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-ibilinear\gen\s8-ibilinear-scalar-c1.c.obj 2025-06-01T21:04:31.0253190Z [943/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s32-f32-vcvt\gen\s32-f32-vcvt-scalar.c.obj 2025-06-01T21:04:31.0579458Z [944/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-ibilinear\gen\s8-ibilinear-sse2-c8.c.obj 2025-06-01T21:04:31.0852292Z [945/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-ibilinear\gen\s8-ibilinear-sse41-c16.c.obj 2025-06-01T21:04:31.1012541Z [946/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-maxpool\s8-maxpool-9p8x-minmax-scalar-c1.c.obj 2025-06-01T21:04:31.1096658Z [947/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-maxpool\s8-maxpool-9p8x-minmax-sse41-c16.c.obj 2025-06-01T21:04:31.1155678Z [948/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-maxpool\s8-maxpool-9p8x-minmax-sse2-c16.c.obj 2025-06-01T21:04:31.1370969Z [949/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-avx2-u128.c.obj 2025-06-01T21:04:31.1427210Z [950/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-avx512skx-u256.c.obj 2025-06-01T21:04:31.1484841Z [951/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-scalar-u4.c.obj 2025-06-01T21:04:31.1737780Z [952/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-sse2-u64.c.obj 2025-06-01T21:04:31.1992997Z [953/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-ibilinear\gen\u8-ibilinear-scalar-c1.c.obj 2025-06-01T21:04:31.2055239Z [954/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-sse41-u64.c.obj 2025-06-01T21:04:31.2113420Z [955/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-ibilinear\gen\u8-ibilinear-sse2-c8.c.obj 2025-06-01T21:04:31.2136085Z [956/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-ibilinear\gen\u8-ibilinear-sse41-c16.c.obj 2025-06-01T21:04:31.2299580Z [957/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-lut32norm\u8-lut32norm-scalar.c.obj 2025-06-01T21:04:31.2450461Z [958/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-maxpool\u8-maxpool-9p8x-minmax-scalar-c1.c.obj 2025-06-01T21:04:31.2523095Z [959/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-maxpool\u8-maxpool-9p8x-minmax-sse2-c16.c.obj 2025-06-01T21:04:31.2768068Z [960/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-rmax\u8-rmax-scalar-u2.c.obj 2025-06-01T21:04:31.3199173Z [961/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-vclamp\u8-vclamp-avx2-u128.c.obj 2025-06-01T21:04:31.3260630Z [962/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-vclamp\u8-vclamp-scalar-u4.c.obj 2025-06-01T21:04:31.3275205Z [963/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-vclamp\u8-vclamp-avx512skx-u256.c.obj 2025-06-01T21:04:31.3348352Z [964/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-rmax\u8-rmax-sse2-u16.c.obj 2025-06-01T21:04:31.3445684Z [965/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-vclamp\u8-vclamp-sse2-u64.c.obj 2025-06-01T21:04:31.3499229Z [966/7616] 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-06-01T21:04:31.3568105Z [967/7616] 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-06-01T21:04:31.3708849Z [968/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x16-transposec\gen\x16-transposec-16x16-reuse-switch-avx2.c.obj 2025-06-01T21:04:31.4160550Z [969/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x16-transposec\gen\x16-transposec-2x4-scalar-int.c.obj 2025-06-01T21:04:31.4280458Z [970/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x16-transposec\gen\x16-transposec-8x8-reuse-multi-sse2.c.obj 2025-06-01T21:04:31.4337233Z [971/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x24-transposec\gen\x24-transposec-1x2-scalar.c.obj 2025-06-01T21:04:31.4494561Z [972/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx-u8.c.obj 2025-06-01T21:04:31.4547889Z [973/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x24-transposec\x24-transposec-4x4-ssse3.c.obj 2025-06-01T21:04:31.4604817Z [974/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-avx-u4.c.obj 2025-06-01T21:04:31.4667162Z [975/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x16s4-gemm-goi-avx-u4.c.obj 2025-06-01T21:04:31.4680779Z [976/7616] 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-06-01T21:04:31.5225582Z [977/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x2c4-gemm-goi-sse2-u4.c.obj 2025-06-01T21:04:31.5392347Z [978/7616] 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-06-01T21:04:31.5611750Z [979/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-transposec\gen\x32-transposec-2x4-scalar-int.c.obj 2025-06-01T21:04:31.5623928Z [980/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x8-gemm-goi-sse2-u4.c.obj 2025-06-01T21:04:31.5674136Z [981/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx512f-u8.c.obj 2025-06-01T21:04:31.5685301Z [982/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-transposec\x32-transposec-4x4-sse.c.obj 2025-06-01T21:04:31.5853475Z [983/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-unpool\x32-unpool-scalar.c.obj 2025-06-01T21:04:31.5901095Z [984/7616] 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-06-01T21:04:31.6025081Z [985/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-transposec\gen\x32-transposec-8x8-reuse-multi-avx.c.obj 2025-06-01T21:04:31.6122868Z [986/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-unpool\x32-unpool-sse2.c.obj 2025-06-01T21:04:31.6257098Z [987/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x2-scalar.c.obj 2025-06-01T21:04:31.6271409Z [988/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x2-sse2.c.obj 2025-06-01T21:04:31.6325523Z [989/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x3-sse2.c.obj 2025-06-01T21:04:31.6336538Z [990/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x3-scalar.c.obj 2025-06-01T21:04:31.6575775Z [991/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x4-sse2.c.obj 2025-06-01T21:04:31.6621356Z [992/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-xm-scalar.c.obj 2025-06-01T21:04:31.6793002Z [993/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-xm-sse2.c.obj 2025-06-01T21:04:31.6847723Z [994/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x4-scalar.c.obj 2025-06-01T21:04:31.7142569Z [995/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-avx-u64.c.obj 2025-06-01T21:04:31.7192965Z [996/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x64-transposec\gen\x64-transposec-2x2-multi-mov-sse2.c.obj 2025-06-01T21:04:31.7243725Z [997/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x64-transposec\gen\x64-transposec-4x2-scalar-int.c.obj 2025-06-01T21:04:31.7291940Z [998/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x64-transposec\gen\x64-transposec-4x4-reuse-multi-avx.c.obj 2025-06-01T21:04:31.7364933Z [999/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-avx2-u128.c.obj 2025-06-01T21:04:31.7423850Z [1000/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-avx512skx-vpshufb-u64.c.obj 2025-06-01T21:04:31.7473717Z [1001/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-scalar-u4.c.obj 2025-06-01T21:04:31.7603572Z [1002/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-avx512vbmi-vpermx2b-u128.c.obj 2025-06-01T21:04:31.8239081Z [1003/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-packq\x8-packq-scalar-f32qp8-u1.c.obj 2025-06-01T21:04:31.8288448Z [1004/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-packw\gen\x8-packw-x16-gemm-goi-scalar-u2.c.obj 2025-06-01T21:04:31.8337575Z [1005/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-packw\gen\x8-packw-x32-gemm-goi-scalar-u2.c.obj 2025-06-01T21:04:31.8387747Z [1006/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-packw\gen\x8-packw-x4-gemm-goi-scalar-u2.c.obj 2025-06-01T21:04:31.8457450Z [1007/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-transposec\gen\x8-transposec-2x4-scalar-int.c.obj 2025-06-01T21:04:31.8469972Z [1008/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-packw\gen\x8-packw-x8-gemm-goi-scalar-u2.c.obj 2025-06-01T21:04:31.8481345Z [1009/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-transposec\gen\x8-transposec-16x16-reuse-mov-sse2.c.obj 2025-06-01T21:04:31.8617369Z [1010/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-transposec\gen\x8-transposec-32x32-reuse-switch-avx2.c.obj 2025-06-01T21:04:31.8910437Z [1011/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x2-scalar.c.obj 2025-06-01T21:04:31.8923171Z [1012/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x3-scalar.c.obj 2025-06-01T21:04:31.8968027Z [1013/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x2-sse2.c.obj 2025-06-01T21:04:31.9048772Z [1014/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x3-sse2.c.obj 2025-06-01T21:04:31.9113911Z [1015/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x4-scalar.c.obj 2025-06-01T21:04:31.9125491Z [1016/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-xm-scalar.c.obj 2025-06-01T21:04:31.9136984Z [1017/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x4-sse2.c.obj 2025-06-01T21:04:31.9290125Z [1018/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-xm-sse2.c.obj 2025-06-01T21:04:31.9569267Z [1019/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-fill\xx-fill-scalar-u16.c.obj 2025-06-01T21:04:31.9631484Z [1020/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-fill\xx-fill-sse2-u64.c.obj 2025-06-01T21:04:31.9728417Z [1021/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-pad\xx-pad-p16-sse2-u16.c.obj 2025-06-01T21:04:31.9784368Z [1022/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-pad\xx-pad-p4-scalar-u16.c.obj 2025-06-01T21:04:31.9796371Z [1023/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2-k-over-64.c.obj 2025-06-01T21:04:31.9842599Z [1024/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2-k-over-2048.c.obj 2025-06-01T21:04:31.9967160Z [1025/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-copy\xx-copy-scalar-memcpy.c.obj 2025-06-01T21:04:32.0022824Z [1026/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-transposev\xx-transposev-1x1-scalar-memcpy.c.obj 2025-06-01T21:04:32.0203397Z [1027/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-4.c.obj 2025-06-01T21:04:32.0245020Z [1028/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-8.c.obj 2025-06-01T21:04:32.0336706Z [1029/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-16.c.obj 2025-06-01T21:04:32.0386906Z [1030/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-32.c.obj 2025-06-01T21:04:32.0400541Z [1031/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-64.c.obj 2025-06-01T21:04:32.0456792Z [1032/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-2048.c.obj 2025-06-01T21:04:32.0722665Z [1033/7616] Linking C static library lib\cpuinfo.lib 2025-06-01T21:04:32.0735561Z [1034/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\vlog.c.obj 2025-06-01T21:04:32.0816971Z [1035/7616] Running gen_proto.py on onnx/onnx-operators.in.proto 2025-06-01T21:04:32.0817653Z Processing C:\actions-runner\_work\pytorch\pytorch\third_party\onnx\onnx\onnx-operators.in.proto 2025-06-01T21:04:32.0818455Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-operators_onnx_torch-ml.proto 2025-06-01T21:04:32.0819323Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-operators_onnx_torch-ml.proto3 2025-06-01T21:04:32.0820128Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-operators-ml.pb.h 2025-06-01T21:04:32.0993451Z generating C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_operators_pb.py 2025-06-01T21:04:32.0994202Z 2025-06-01T21:04:32.0994432Z [1036/7616] Linking C executable sleef\bin\mkrename.exe 2025-06-01T21:04:32.1009670Z [1037/7616] Running gen_proto.py on onnx/onnx-data.in.proto 2025-06-01T21:04:32.1097162Z Processing C:\actions-runner\_work\pytorch\pytorch\third_party\onnx\onnx\onnx-data.in.proto 2025-06-01T21:04:32.1097996Z 2025-06-01T21:04:32.1098649Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-data_onnx_torch.proto 2025-06-01T21:04:32.1099568Z 2025-06-01T21:04:32.1100180Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-data_onnx_torch.proto3 2025-06-01T21:04:32.1101005Z 2025-06-01T21:04:32.1101646Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-data.pb.h 2025-06-01T21:04:32.1102370Z 2025-06-01T21:04:32.1112528Z generating C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_data_pb.py 2025-06-01T21:04:32.1113782Z 2025-06-01T21:04:32.1114071Z [1038/7616] Linking C executable sleef\bin\mkalias.exe 2025-06-01T21:04:32.1127077Z [1039/7616] Linking C executable sleef\bin\mkdisp.exe 2025-06-01T21:04:32.1479883Z [1040/7616] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\allocation-type.c.obj 2025-06-01T21:04:32.1647468Z [1041/7616] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\microkernel-type.c.obj 2025-06-01T21:04:32.1964582Z [1042/7616] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\operator-type.c.obj 2025-06-01T21:04:32.1976580Z [1043/7616] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\datatype-strings.c.obj 2025-06-01T21:04:32.2045400Z [1044/7616] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\node-type.c.obj 2025-06-01T21:04:32.2340968Z [1045/7616] Building C object confu-deps\XNNPACK\CMakeFiles\indirection.dir\src\indirection.c.obj 2025-06-01T21:04:32.2670169Z [1046/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microparams-init.dir\src\microparams-init.c.obj 2025-06-01T21:04:32.2906978Z [1047/7616] Building C object confu-deps\XNNPACK\CMakeFiles\allocator.dir\src\allocator.c.obj 2025-06-01T21:04:32.3250096Z [1048/7616] Building C object confu-deps\XNNPACK\CMakeFiles\normalization.dir\src\normalization.c.obj 2025-06-01T21:04:32.3775805Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:32.3777118Z [1049/7616] Building C object confu-deps\XNNPACK\CMakeFiles\hardware-config.dir\src\configs\hardware-config.c.obj 2025-06-01T21:04:32.3790782Z [1050/7616] Linking C static library lib\microkernels-prod.lib 2025-06-01T21:04:32.3852098Z [1051/7616] Building C object confu-deps\XNNPACK\CMakeFiles\datatype.dir\src\datatype.c.obj 2025-06-01T21:04:32.3922085Z [1052/7616] Building CXX object confu-deps\XNNPACK\CMakeFiles\packing.dir\src\reference\packing.cc.obj 2025-06-01T21:04:32.3923809Z 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-06-01T21:04:32.3925426Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-06-01T21:04:32.3927199Z 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-06-01T21:04:32.3928525Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-06-01T21:04:32.3929861Z 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-06-01T21:04:32.3931095Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-06-01T21:04:32.3933056Z 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-06-01T21:04:32.3935221Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-06-01T21:04:32.3937502Z 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-06-01T21:04:32.3939272Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-06-01T21:04:32.3940529Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\xutility(4528): warning C4244: '=': conversion from 'const _Ty' to 'float', possible loss of data 2025-06-01T21:04:32.3941310Z with 2025-06-01T21:04:32.3941589Z [ 2025-06-01T21:04:32.3941760Z _Ty=int 2025-06-01T21:04:32.3941986Z ] 2025-06-01T21:04:32.3942982Z 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-06-01T21:04:32.3944166Z with 2025-06-01T21:04:32.3944369Z [ 2025-06-01T21:04:32.3944582Z _OutIt=float *, 2025-06-01T21:04:32.3944809Z Dst=float, 2025-06-01T21:04:32.3945006Z _Diff=size_t, 2025-06-01T21:04:32.3945218Z _Ty=int 2025-06-01T21:04:32.3945385Z ] 2025-06-01T21:04:32.3946233Z 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-06-01T21:04:32.3947156Z with 2025-06-01T21:04:32.3947317Z [ 2025-06-01T21:04:32.3947483Z Src=float, 2025-06-01T21:04:32.3947671Z Dst=float 2025-06-01T21:04:32.3947860Z ] 2025-06-01T21:04:32.3948594Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\xutility(4528): warning C4244: 'argument': conversion from 'const _Ty' to 'float', possible loss of data 2025-06-01T21:04:32.3949404Z with 2025-06-01T21:04:32.3949572Z [ 2025-06-01T21:04:32.3949724Z _Ty=int 2025-06-01T21:04:32.3949897Z ] 2025-06-01T21:04:32.3950744Z 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-06-01T21:04:32.4265246Z with 2025-06-01T21:04:32.4265558Z [ 2025-06-01T21:04:32.4265876Z _OutIt=xnn_float16 *, 2025-06-01T21:04:32.4266159Z Dst=xnn_float16, 2025-06-01T21:04:32.4266386Z _Diff=size_t, 2025-06-01T21:04:32.4266626Z _Ty=int 2025-06-01T21:04:32.4266798Z ] 2025-06-01T21:04:32.4268646Z 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-06-01T21:04:32.4270435Z with 2025-06-01T21:04:32.4270815Z [ 2025-06-01T21:04:32.4271081Z Src=float, 2025-06-01T21:04:32.4271461Z Dst=xnn_float16 2025-06-01T21:04:32.4271809Z ] 2025-06-01T21:04:32.4272552Z [1053/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernel-utils.dir\src\microkernel-utils.c.obj 2025-06-01T21:04:32.4604362Z [1054/7616] Building C object confu-deps\XNNPACK\CMakeFiles\cache.dir\src\cache.c.obj 2025-06-01T21:04:32.4888902Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:32.4889464Z [1055/7616] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\log.c.obj 2025-06-01T21:04:32.4943314Z [1056/7616] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operator-delete.c.obj 2025-06-01T21:04:32.4955621Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:32.4956375Z [1057/7616] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\argmax-pooling-nhwc.c.obj 2025-06-01T21:04:32.5053181Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operators\argmax-pooling-nhwc.c(252): warning C4090: 'function': different 'const' qualifiers 2025-06-01T21:04:32.5054749Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:32.5055965Z [1058/7616] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\average-pooling-nhwc.c.obj 2025-06-01T21:04:32.5132183Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operators\average-pooling-nhwc.c(519): warning C4090: 'function': different 'const' qualifiers 2025-06-01T21:04:32.5133033Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:32.5133631Z [1059/7616] Building C object confu-deps\XNNPACK\CMakeFiles\memory.dir\src\memory.c.obj 2025-06-01T21:04:32.5723442Z [1060/7616] Building C object confu-deps\XNNPACK\CMakeFiles\mutex.dir\src\mutex.c.obj 2025-06-01T21:04:32.5779803Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:32.5780900Z [1061/7616] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\binary-elementwise-nd.c.obj 2025-06-01T21:04:32.6007733Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:32.6008406Z [1062/7616] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\constant-pad-nd.c.obj 2025-06-01T21:04:32.6024009Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:32.6024746Z [1063/7616] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\channel-shuffle-nc.c.obj 2025-06-01T21:04:32.6695597Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:32.6696790Z [1064/7616] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\batch-matrix-multiply-nc.c.obj 2025-06-01T21:04:32.6936438Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:32.6937278Z [1065/7616] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\dynamic-fully-connected-nc.c.obj 2025-06-01T21:04:32.7093774Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:32.7094913Z [1066/7616] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\pack-lh.c.obj 2025-06-01T21:04:32.7206849Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:32.7207556Z [1067/7616] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\max-pooling-nhwc.c.obj 2025-06-01T21:04:32.7440130Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operators\max-pooling-nhwc.c(491): warning C4090: 'function': different 'const' qualifiers 2025-06-01T21:04:32.7441229Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:32.7441881Z [1068/7616] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\convolution-nchw.c.obj 2025-06-01T21:04:32.7543863Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:32.7544563Z [1069/7616] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\convolution-nhwc.c.obj 2025-06-01T21:04:32.7637021Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operators\convolution-nhwc.c(2491): warning C4090: 'function': different 'const' qualifiers 2025-06-01T21:04:32.7638550Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:32.7639641Z [1070/7616] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\deconvolution-nhwc.c.obj 2025-06-01T21:04:32.7985362Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operators\deconvolution-nhwc.c(1260): warning C4090: 'function': different 'const' qualifiers 2025-06-01T21:04:32.7986710Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operators\deconvolution-nhwc.c(1548): warning C4090: 'function': different 'const' qualifiers 2025-06-01T21:04:32.7987567Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:32.7988198Z [1071/7616] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\reduce-nd.c.obj 2025-06-01T21:04:32.8100421Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:32.8101141Z [1072/7616] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\resize-bilinear-nchw.c.obj 2025-06-01T21:04:32.8198684Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operators\resize-bilinear-nchw.c(206): warning C4090: 'function': different 'const' qualifiers 2025-06-01T21:04:32.8199564Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:32.8200233Z [1073/7616] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\fully-connected-nc.c.obj 2025-06-01T21:04:32.8269832Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:32.8270589Z [1074/7616] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\resize-bilinear-nhwc.c.obj 2025-06-01T21:04:32.8337159Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operators\resize-bilinear-nhwc.c(272): warning C4090: 'function': different 'const' qualifiers 2025-06-01T21:04:32.8338611Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:32.8339603Z [1075/7616] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\rope-nthc.c.obj 2025-06-01T21:04:32.8502949Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:32.8503710Z [1076/7616] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\scaled-dot-product-attention-nhtc.c.obj 2025-06-01T21:04:32.8576011Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:32.8576710Z [1077/7616] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\slice-nd.c.obj 2025-06-01T21:04:32.8765246Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:32.8766390Z [1078/7616] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\softmax-nc.c.obj 2025-06-01T21:04:32.9192949Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:32.9194816Z [1079/7616] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\transpose-nd.c.obj 2025-06-01T21:04:32.9286287Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:32.9287048Z [1080/7616] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\unpooling-nhwc.c.obj 2025-06-01T21:04:32.9351273Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operators\unpooling-nhwc.c(208): warning C4090: 'function': different 'const' qualifiers 2025-06-01T21:04:32.9353106Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:32.9354346Z [1081/7616] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\unary-elementwise-nc.c.obj 2025-06-01T21:04:32.9474070Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:32.9474807Z [1082/7616] Building C object confu-deps\XNNPACK\CMakeFiles\operator-utils.dir\src\operator-utils.c.obj 2025-06-01T21:04:32.9530843Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operator-utils.c(162): warning C4090: 'function': different 'const' qualifiers 2025-06-01T21:04:32.9532146Z [1083/7616] Building C object confu-deps\XNNPACK\CMakeFiles\operator-run.dir\src\operator-run.c.obj 2025-06-01T21:04:32.9533111Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\operator-run.c(1425): warning C4090: 'initializing': different 'const' qualifiers 2025-06-01T21:04:32.9534238Z 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-06-01T21:04:32.9535539Z 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-06-01T21:04:33.0390088Z 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-06-01T21:04:33.0391378Z 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-06-01T21:04:33.0392430Z [1084/7616] Building CXX object confu-deps\XNNPACK\CMakeFiles\reference-ukernels.dir\src\reference\unary-elementwise.cc.obj 2025-06-01T21:04:33.0393731Z 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-06-01T21:04:33.0395209Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-06-01T21:04:33.0396559Z 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-06-01T21:04:33.0397732Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-06-01T21:04:33.0398969Z 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-06-01T21:04:33.0400194Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-06-01T21:04:33.0401391Z 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-06-01T21:04:33.0402585Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-06-01T21:04:33.0508414Z 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-06-01T21:04:33.0509652Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-06-01T21:04:33.0510665Z [1085/7616] Building CXX object confu-deps\XNNPACK\CMakeFiles\reference-ukernels.dir\src\reference\binary-elementwise.cc.obj 2025-06-01T21:04:33.0512361Z 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-06-01T21:04:33.0514556Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-06-01T21:04:33.0517060Z 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-06-01T21:04:33.0519116Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-06-01T21:04:33.0520659Z 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-06-01T21:04:33.0521901Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-06-01T21:04:33.0523263Z 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-06-01T21:04:33.0524553Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-06-01T21:04:33.1191109Z 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-06-01T21:04:33.1193077Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-06-01T21:04:33.1194008Z [1086/7616] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\memory-planner.c.obj 2025-06-01T21:04:33.1693294Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:33.1694275Z [1087/7616] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\argmax-pooling-2d.c.obj 2025-06-01T21:04:33.1746894Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:33.1747476Z [1088/7616] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\runtime.c.obj 2025-06-01T21:04:33.1823314Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:33.1823932Z [1089/7616] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph.c.obj 2025-06-01T21:04:33.1928800Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:33.1930334Z [1090/7616] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\average-pooling-2d.c.obj 2025-06-01T21:04:33.2073956Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:33.2074748Z [1091/7616] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\batch-matrix-multiply.c.obj 2025-06-01T21:04:33.2782977Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:33.2783680Z [1092/7616] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\binary.c.obj 2025-06-01T21:04:33.2919926Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:33.2921030Z [1093/7616] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\concatenate.c.obj 2025-06-01T21:04:33.3559756Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:33.3561144Z [1094/7616] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\convolution-2d.c.obj 2025-06-01T21:04:33.4027064Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:33.4028267Z [1095/7616] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\deconvolution-2d.c.obj 2025-06-01T21:04:33.4086987Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:33.4087844Z [1096/7616] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\copy.c.obj 2025-06-01T21:04:33.4262765Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:33.4263458Z [1097/7616] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\depth-to-space-2d.c.obj 2025-06-01T21:04:33.4398946Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:33.4399864Z [1098/7616] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\deprecated.c.obj 2025-06-01T21:04:33.4518404Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:33.4519572Z [1099/7616] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\depthwise-convolution-2d.c.obj 2025-06-01T21:04:33.5280305Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:33.5281140Z [1100/7616] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\even-split.c.obj 2025-06-01T21:04:33.5297951Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:33.5299192Z [1101/7616] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\fully-connected-sparse.c.obj 2025-06-01T21:04:33.6028673Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:33.6029899Z [1102/7616] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\fully-connected.c.obj 2025-06-01T21:04:33.6447188Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:33.6448208Z [1103/7616] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\max-pooling-2d.c.obj 2025-06-01T21:04:33.6526935Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:33.6527571Z [1104/7616] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\pack-lh.c.obj 2025-06-01T21:04:33.6544772Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:33.6547131Z [1105/7616] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\reshape-helpers.c.obj 2025-06-01T21:04:33.6832079Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:33.6834024Z [1106/7616] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\softmax.c.obj 2025-06-01T21:04:33.6903823Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:33.6904670Z [1107/7616] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\scaled-dot-product-attention.c.obj 2025-06-01T21:04:33.7598837Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:33.7599679Z [1108/7616] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\space-to-depth-2d.c.obj 2025-06-01T21:04:33.7771861Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:33.7772647Z [1109/7616] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-constant-pad.c.obj 2025-06-01T21:04:33.8476011Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:33.8476818Z [1110/7616] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-reduce.c.obj 2025-06-01T21:04:33.8955770Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:33.8956476Z [1111/7616] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-resize-bilinear-2d.c.obj 2025-06-01T21:04:33.8972016Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:33.8973083Z [1112/7616] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-slice.c.obj 2025-06-01T21:04:33.9040184Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:33.9040918Z [1113/7616] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-transpose.c.obj 2025-06-01T21:04:33.9136759Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:33.9137218Z [1114/7616] Generating sleeflibm_AVX.h.tmp 2025-06-01T21:04:33.9184859Z [1115/7616] Generating sleeflibm_AVX2.h.tmp 2025-06-01T21:04:33.9220058Z [1116/7616] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\unpooling-2d.c.obj 2025-06-01T21:04:33.9283310Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:33.9283819Z [1117/7616] Generating sleeflibm_AVX2128.h.tmp 2025-06-01T21:04:33.9303618Z [1118/7616] Running C++ protocol buffer compiler on C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto 2025-06-01T21:04:33.9323519Z [1119/7616] Generating sleeflibm_AVX512F.h.tmp 2025-06-01T21:04:33.9367808Z [1120/7616] Generating sleeflibm_AVX512FNOFMA.h.tmp 2025-06-01T21:04:33.9424185Z [1121/7616] Generating sleeflibm_AVX512F_.h.tmp 2025-06-01T21:04:33.9435162Z [1122/7616] Generating sleeflibm_AVX_.h.tmp 2025-06-01T21:04:33.9451046Z [1123/7616] Generating sleeflibm_DSP_SCALAR.h.tmp 2025-06-01T21:04:33.9500881Z [1124/7616] Generating sleeflibm_FMA4.h.tmp 2025-06-01T21:04:33.9520620Z [1125/7616] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\unary.c.obj 2025-06-01T21:04:33.9558095Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:33.9558545Z [1126/7616] Generating sleeflibm_PURECFMA_SCALAR.h.tmp 2025-06-01T21:04:33.9571867Z [1127/7616] Generating sleeflibm_PUREC_SCALAR.h.tmp 2025-06-01T21:04:33.9586170Z [1128/7616] Generating sleeflibm_SSE2.h.tmp 2025-06-01T21:04:33.9661165Z [1129/7616] Generating sleeflibm_SSE4.h.tmp 2025-06-01T21:04:33.9661898Z [1130/7616] Generating sleeflibm_SSE_.h.tmp 2025-06-01T21:04:33.9730747Z [1131/7616] Generating alias_AVX512F_dp.h.tmp 2025-06-01T21:04:33.9745311Z [1132/7616] Generating alias_AVX512F_sp.h.tmp 2025-06-01T21:04:33.9760793Z [1133/7616] Generating dispscalar.c.body 2025-06-01T21:04:33.9786473Z [1134/7616] Generating dispsse.c.tmp 2025-06-01T21:04:33.9798893Z [1135/7616] Generating dispavx.c.tmp 2025-06-01T21:04:33.9979908Z [1136/7616] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\tensor.c.obj 2025-06-01T21:04:33.9996431Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:33.9997248Z [1137/7616] Running C++ protocol buffer compiler on C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto 2025-06-01T21:04:34.0114655Z [1138/7616] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\validation.c.obj 2025-06-01T21:04:34.1792427Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:34.1792847Z [1139/7616] Generating build_identifier.c 2025-06-01T21:04:34.3201084Z [1140/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\assembler.cpp.obj 2025-06-01T21:04:34.3300007Z [1141/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\codewriter.cpp.obj 2025-06-01T21:04:34.3377090Z [1142/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\builder.cpp.obj 2025-06-01T21:04:34.3397780Z [1143/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\constpool.cpp.obj 2025-06-01T21:04:34.3586507Z [1144/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\archtraits.cpp.obj 2025-06-01T21:04:34.3587707Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:34.3589657Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:34.3591762Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:34.3593810Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:34.3595831Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:34.3597263Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:34.3598657Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:34.3662583Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:34.3665202Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:34.3667720Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:34.3669740Z [1145/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\compiler.cpp.obj 2025-06-01T21:04:34.3835638Z [1146/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\codeholder.cpp.obj 2025-06-01T21:04:34.4899550Z [1147/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\cpuinfo.cpp.obj 2025-06-01T21:04:34.6675144Z [1148/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\environment.cpp.obj 2025-06-01T21:04:34.6752482Z [1149/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\emithelper.cpp.obj 2025-06-01T21:04:34.6769967Z [1150/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\emitter.cpp.obj 2025-06-01T21:04:34.6863201Z [1151/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\emitterutils.cpp.obj 2025-06-01T21:04:34.7248147Z [1152/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\func.cpp.obj 2025-06-01T21:04:34.7385080Z [1153/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\formatter.cpp.obj 2025-06-01T21:04:34.7523356Z [1154/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\errorhandler.cpp.obj 2025-06-01T21:04:34.8494820Z [1155/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\funcargscontext.cpp.obj 2025-06-01T21:04:34.9877318Z [1156/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\instdb.cpp.obj 2025-06-01T21:04:34.9934313Z [1157/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\globals.cpp.obj 2025-06-01T21:04:35.0201590Z [1158/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\inst.cpp.obj 2025-06-01T21:04:35.0450166Z [1159/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\jitallocator.cpp.obj 2025-06-01T21:04:35.0673326Z [1160/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\jitruntime.cpp.obj 2025-06-01T21:04:35.0743506Z [1161/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\operand.cpp.obj 2025-06-01T21:04:35.1258411Z [1162/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\logger.cpp.obj 2025-06-01T21:04:35.1584546Z [1163/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\osutils.cpp.obj 2025-06-01T21:04:35.3250410Z [1164/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\ralocal.cpp.obj 2025-06-01T21:04:35.3374747Z [1165/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\rastack.cpp.obj 2025-06-01T21:04:35.3512752Z [1166/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\rapass.cpp.obj 2025-06-01T21:04:35.3596734Z [1167/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\string.cpp.obj 2025-06-01T21:04:35.3737992Z [1168/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\support.cpp.obj 2025-06-01T21:04:35.4177683Z [1169/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\target.cpp.obj 2025-06-01T21:04:35.4307183Z [1170/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\type.cpp.obj 2025-06-01T21:04:35.4926147Z [1171/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\virtmem.cpp.obj 2025-06-01T21:04:35.6458051Z [1172/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\zone.cpp.obj 2025-06-01T21:04:35.6611901Z [1173/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\zonehash.cpp.obj 2025-06-01T21:04:35.6697147Z [1174/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\zonestack.cpp.obj 2025-06-01T21:04:35.6954090Z [1175/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\zonelist.cpp.obj 2025-06-01T21:04:35.7024827Z [1176/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\zonetree.cpp.obj 2025-06-01T21:04:35.7671931Z [1177/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\zonevector.cpp.obj 2025-06-01T21:04:35.7818818Z [1178/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\armformatter.cpp.obj 2025-06-01T21:04:35.7821813Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:35.7824094Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:35.7825773Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:35.7827188Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:35.7828752Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:35.7830361Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:35.7831973Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:35.9025472Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:35.9028674Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:35.9031499Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:35.9033694Z [1179/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64assembler.cpp.obj 2025-06-01T21:04:35.9035867Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:35.9038419Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:35.9041277Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:35.9043862Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:35.9046470Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:35.9049030Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:35.9052228Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:35.9994108Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:35.9995734Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:35.9997397Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:35.9998641Z [1180/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64builder.cpp.obj 2025-06-01T21:04:35.9999769Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0001243Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0002641Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0004156Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0005857Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0007320Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0008875Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0284211Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0286984Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0289698Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0291739Z [1181/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64func.cpp.obj 2025-06-01T21:04:36.0293858Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0296456Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0299157Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0302087Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0304711Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0307767Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0309611Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0370419Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0372034Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0373538Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0374664Z [1182/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64compiler.cpp.obj 2025-06-01T21:04:36.0375895Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0378238Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0379694Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0381665Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0383060Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0384880Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0387442Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0446914Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0448398Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0449919Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0451383Z [1183/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64emithelper.cpp.obj 2025-06-01T21:04:36.0452511Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0453978Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0455363Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0456831Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0458280Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0459831Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0461510Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0635877Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0638821Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0641421Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0643547Z [1184/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64formatter.cpp.obj 2025-06-01T21:04:36.0645737Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0648408Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0651071Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0653736Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0656373Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0659044Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.0661859Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.1109384Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.1112414Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.1115266Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.1117468Z [1185/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64instapi.cpp.obj 2025-06-01T21:04:36.1119846Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.1122578Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.1125440Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.1128099Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.1130612Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.1132938Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.1134464Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.1535764Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.1537533Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.1539210Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.1540567Z [1186/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64instdb.cpp.obj 2025-06-01T21:04:36.1541976Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.1543552Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.1545727Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.1547797Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.1549680Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.1551280Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.1552825Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.2404292Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.2406951Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.2409425Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.2411399Z [1187/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64operand.cpp.obj 2025-06-01T21:04:36.2413369Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.2415897Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.2419100Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.2422017Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.2424732Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.2427413Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.2430138Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.3714211Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.3716872Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.3719572Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.3721644Z [1188/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64rapass.cpp.obj 2025-06-01T21:04:36.3723771Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.3726703Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.3729787Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.3732568Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.3735281Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.3737949Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.3740615Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.4316876Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.4318519Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.4320314Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-06-01T21:04:36.4321479Z [1189/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86assembler.cpp.obj 2025-06-01T21:04:36.4322733Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(244): warning C5054: operator '==': deprecated between enumerations of different types 2025-06-01T21:04:36.4324356Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(252): note: see reference to class template instantiation 'asmjit::_abi_1_13::x86::X86CDisp8SHL_T<0>' being compiled 2025-06-01T21:04:36.4325959Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(245): warning C5054: operator '==': deprecated between enumerations of different types 2025-06-01T21:04:36.4327427Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(246): warning C5054: operator '==': deprecated between enumerations of different types 2025-06-01T21:04:36.4328870Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(247): warning C5054: operator '==': deprecated between enumerations of different types 2025-06-01T21:04:36.4330245Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(276): warning C5054: operator '==': deprecated between enumerations of different types 2025-06-01T21:04:36.4332215Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(284): note: see reference to class template instantiation 'asmjit::_abi_1_13::x86::X86Mod16BaseIndexTable_T<0>' being compiled 2025-06-01T21:04:36.4335085Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(276): warning C5054: operator '==': deprecated between enumerations of different types 2025-06-01T21:04:36.4337850Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(276): warning C5054: operator '==': deprecated between enumerations of different types 2025-06-01T21:04:36.4339966Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(276): warning C5054: operator '==': deprecated between enumerations of different types 2025-06-01T21:04:36.4341469Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(277): warning C5054: operator '==': deprecated between enumerations of different types 2025-06-01T21:04:36.4343803Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(277): warning C5054: operator '==': deprecated between enumerations of different types 2025-06-01T21:04:36.4346455Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(277): warning C5054: operator '==': deprecated between enumerations of different types 2025-06-01T21:04:36.4349288Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(277): warning C5054: operator '==': deprecated between enumerations of different types 2025-06-01T21:04:36.4351907Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(278): warning C5054: operator '==': deprecated between enumerations of different types 2025-06-01T21:04:36.4354376Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(278): warning C5054: operator '==': deprecated between enumerations of different types 2025-06-01T21:04:36.4357705Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(278): warning C5054: operator '==': deprecated between enumerations of different types 2025-06-01T21:04:36.4360835Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(278): warning C5054: operator '==': deprecated between enumerations of different types 2025-06-01T21:04:36.4363500Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(279): warning C5054: operator '==': deprecated between enumerations of different types 2025-06-01T21:04:36.4366147Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(279): warning C5054: operator '==': deprecated between enumerations of different types 2025-06-01T21:04:36.4397419Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(279): warning C5054: operator '==': deprecated between enumerations of different types 2025-06-01T21:04:36.4399962Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(279): warning C5054: operator '==': deprecated between enumerations of different types 2025-06-01T21:04:36.4402047Z [1190/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86builder.cpp.obj 2025-06-01T21:04:36.4683872Z [1191/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86compiler.cpp.obj 2025-06-01T21:04:36.4997544Z [1192/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86emithelper.cpp.obj 2025-06-01T21:04:36.5261641Z [1193/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86formatter.cpp.obj 2025-06-01T21:04:36.5322003Z [1194/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86func.cpp.obj 2025-06-01T21:04:36.6404605Z [1195/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86instdb.cpp.obj 2025-06-01T21:04:36.7284272Z [1196/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86instapi.cpp.obj 2025-06-01T21:04:36.7952679Z [1197/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86operand.cpp.obj 2025-06-01T21:04:36.8363106Z [1198/7616] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86rapass.cpp.obj 2025-06-01T21:04:36.8917131Z [1199/7616] Building CXX object third_party\onnx\CMakeFiles\onnx_proto.dir\onnx\onnx-operators_onnx_torch-ml.pb.cc.obj 2025-06-01T21:04:36.9214250Z [1200/7616] Building CXX object third_party\onnx\CMakeFiles\onnx_proto.dir\onnx\onnx_onnx_torch-ml.pb.cc.obj 2025-06-01T21:04:36.9279918Z [1201/7616] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\alloc.c.obj 2025-06-01T21:04:36.9983248Z [1202/7616] Building CXX object third_party\onnx\CMakeFiles\onnx_proto.dir\onnx\onnx-data_onnx_torch.pb.cc.obj 2025-06-01T21:04:37.0449560Z [1203/7616] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\alloc-aligned.c.obj 2025-06-01T21:04:37.1237775Z [1204/7616] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\alloc-posix.c.obj 2025-06-01T21:04:37.1645440Z [1205/7616] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\arena.c.obj 2025-06-01T21:04:37.2166920Z [1206/7616] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\bitmap.c.obj 2025-06-01T21:04:37.2456328Z [1207/7616] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\heap.c.obj 2025-06-01T21:04:37.2835506Z [1208/7616] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\libc.c.obj 2025-06-01T21:04:37.3216044Z [1209/7616] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\init.c.obj 2025-06-01T21:04:37.4258424Z [1210/7616] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\os.c.obj 2025-06-01T21:04:37.4405949Z [1211/7616] Generating include/renameavx512fnofma.h 2025-06-01T21:04:37.4560246Z Generating renameavx512fnofma.h: mkrename "cinz_" "8" "16" "avx512fnofma" 2025-06-01T21:04:37.4560869Z 2025-06-01T21:04:37.4561070Z [1212/7616] Generating include/renameavx512f.h 2025-06-01T21:04:37.4703716Z Generating renameavx512f.h: mkrename "finz_" "8" "16" "avx512f" 2025-06-01T21:04:37.4704070Z 2025-06-01T21:04:37.4704181Z [1213/7616] Generating include/renameavx2.h 2025-06-01T21:04:37.4833540Z Generating renameavx2.h: mkrename "finz_" "4" "8" "avx2" 2025-06-01T21:04:37.4833880Z 2025-06-01T21:04:37.4834031Z [1214/7616] Generating include/renameavx2128.h 2025-06-01T21:04:37.4963407Z Generating renameavx2128.h: mkrename "finz_" "2" "4" "avx2128" 2025-06-01T21:04:37.4963966Z 2025-06-01T21:04:37.4964147Z [1215/7616] Generating include/renamefma4.h 2025-06-01T21:04:37.5100669Z Generating renamefma4.h: mkrename "finz_" "4" "8" "fma4" 2025-06-01T21:04:37.5101051Z 2025-06-01T21:04:37.5101175Z [1216/7616] Generating include/renameavx.h 2025-06-01T21:04:37.5177691Z Generating renameavx.h: mkrename "cinz_" "4" "8" "avx" 2025-06-01T21:04:37.5178009Z 2025-06-01T21:04:37.5178324Z [1217/7616] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\page.c.obj 2025-06-01T21:04:37.5240679Z [1218/7616] Generating include/renamesse4.h 2025-06-01T21:04:37.5307902Z Generating renamesse4.h: mkrename "cinz_" "2" "4" "sse4" 2025-06-01T21:04:37.5308429Z 2025-06-01T21:04:37.5308623Z [1219/7616] Generating include/renamesse2.h 2025-06-01T21:04:37.5369209Z Generating renamesse2.h: mkrename "cinz_" "2" "4" "sse2" 2025-06-01T21:04:37.5369736Z 2025-06-01T21:04:37.5369955Z [1220/7616] Generating include/renamepurec_scalar.h 2025-06-01T21:04:37.5441447Z Generating renamepurec_scalar.h: mkrename "cinz_" "1" "1" "purec" 2025-06-01T21:04:37.5441820Z 2025-06-01T21:04:37.5442024Z [1221/7616] Generating include/renamepurecfma_scalar.h 2025-06-01T21:04:37.5505021Z Generating renamepurecfma_scalar.h: mkrename "finz_" "1" "1" "purecfma" 2025-06-01T21:04:37.5505685Z 2025-06-01T21:04:37.5505840Z [1222/7616] Generating include/renamecuda.h 2025-06-01T21:04:37.5568504Z Generating renamecuda.h: mkrename "finz_" "1" "1" "cuda" 2025-06-01T21:04:37.5568871Z 2025-06-01T21:04:37.5569284Z [1223/7616] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\random.c.obj 2025-06-01T21:04:37.5724588Z [1224/7616] Generating ../../../include/sleef.h 2025-06-01T21:04:37.5749662Z [1225/7616] Generating include/alias_avx512f.h 2025-06-01T21:04:37.5807728Z [1226/7616] Generating dispscalar.c 2025-06-01T21:04:37.5849205Z [1227/7616] Generating include/renamedspscalar.h 2025-06-01T21:04:37.5927132Z [1228/7616] Generating include/renamedsp128.h 2025-06-01T21:04:37.5979900Z [1229/7616] Generating dispsse.c 2025-06-01T21:04:37.6062773Z [1230/7616] Generating include/renamedsp256.h 2025-06-01T21:04:37.6083358Z [1231/7616] Generating dispavx.c 2025-06-01T21:04:37.6253390Z [1232/7616] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\segment.c.obj 2025-06-01T21:04:37.6327222Z [1233/7616] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\segment-map.c.obj 2025-06-01T21:04:37.6769794Z [1234/7616] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\stats.c.obj 2025-06-01T21:04:37.7629218Z [1235/7616] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\prim\prim.c.obj 2025-06-01T21:04:37.9881684Z [1236/7616] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\argmaxpool-config.c.obj 2025-06-01T21:04:37.9957500Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:37.9958212Z [1237/7616] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\conv-hwc2chw-config.c.obj 2025-06-01T21:04:37.9973027Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:37.9973859Z [1238/7616] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\avgpool-config.c.obj 2025-06-01T21:04:38.0077637Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:38.0078481Z [1239/7616] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\binary-elementwise-config.c.obj 2025-06-01T21:04:38.0136427Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:38.0137555Z [1240/7616] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\cmul-config.c.obj 2025-06-01T21:04:38.0190288Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:38.0191054Z [1241/7616] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\options.c.obj 2025-06-01T21:04:38.0410057Z [1242/7616] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\dwconv-config.c.obj 2025-06-01T21:04:38.0461713Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:38.0463344Z [1243/7616] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\experiments-config.c.obj 2025-06-01T21:04:38.1595460Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:38.1596312Z [1244/7616] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\dwconv2d-chw-config.c.obj 2025-06-01T21:04:38.3713307Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:38.3713997Z [1245/7616] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\ibilinear-chw-config.c.obj 2025-06-01T21:04:38.3962845Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:38.3963508Z [1246/7616] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\maxpool-config.c.obj 2025-06-01T21:04:38.3978348Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:38.3978960Z [1247/7616] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\ibilinear-config.c.obj 2025-06-01T21:04:38.4049224Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:38.4050188Z [1248/7616] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\lut32norm-config.c.obj 2025-06-01T21:04:38.4211617Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:38.4212360Z [1249/7616] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\pavgpool-config.c.obj 2025-06-01T21:04:38.4306628Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:38.4307829Z [1250/7616] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\gemm-config.c.obj 2025-06-01T21:04:38.4328217Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:38.4328898Z [1251/7616] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\pack-lh-config.c.obj 2025-06-01T21:04:38.5358971Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:38.5359958Z [1252/7616] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\raddstoreexpminusmax-config.c.obj 2025-06-01T21:04:38.7459037Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:38.7459710Z [1253/7616] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\reduce-config.c.obj 2025-06-01T21:04:38.7551139Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:38.7552222Z [1254/7616] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\rmax-config.c.obj 2025-06-01T21:04:38.7775464Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:38.7776262Z [1255/7616] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\spmm-config.c.obj 2025-06-01T21:04:38.8057288Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:38.8057943Z [1256/7616] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\unpool-config.c.obj 2025-06-01T21:04:38.8190419Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:38.8191393Z [1257/7616] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\vmulcaddc-config.c.obj 2025-06-01T21:04:38.8254258Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:38.8255298Z [1258/7616] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\transpose-config.c.obj 2025-06-01T21:04:38.8327159Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:38.8328937Z [1259/7616] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\unary-elementwise-config.c.obj 2025-06-01T21:04:38.8901848Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:38.8902499Z [1260/7616] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\params.c.obj 2025-06-01T21:04:38.8981875Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:38.8982975Z [1261/7616] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\build_identifier.c.obj 2025-06-01T21:04:38.9095269Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:38.9096179Z [1262/7616] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\xx-fill-config.c.obj 2025-06-01T21:04:38.9539702Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:38.9541009Z [1263/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\ExecuteKernel.cc.obj 2025-06-01T21:04:39.1306522Z [1264/7616] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\x8-lut-config.c.obj 2025-06-01T21:04:39.1411571Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:39.1412374Z [1265/7616] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\xx-pad-config.c.obj 2025-06-01T21:04:39.1525865Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:39.1527232Z [1266/7616] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\zip-config.c.obj 2025-06-01T21:04:39.1915240Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:39.1915798Z [1267/7616] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\init.c.obj 2025-06-01T21:04:39.3691402Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-06-01T21:04:39.3692077Z [1268/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\EmbeddingSpMDMNBit.cc.obj 2025-06-01T21:04:39.3713497Z [1269/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\EmbeddingSpMDM.cc.obj 2025-06-01T21:04:39.3775716Z [1270/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmBfloat16Convert.cc.obj 2025-06-01T21:04:39.3898307Z [1271/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\Fbgemm.cc.obj 2025-06-01T21:04:39.3900287Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.3901760Z with 2025-06-01T21:04:39.3901932Z [ 2025-06-01T21:04:39.3902119Z inpType=uint8_t 2025-06-01T21:04:39.3902332Z ] 2025-06-01T21:04:39.3903109Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-06-01T21:04:39.3905001Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.3907202Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-06-01T21:04:39.3909194Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,int8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.3910535Z with 2025-06-01T21:04:39.3910702Z [ 2025-06-01T21:04:39.3910881Z inpType=int8_t 2025-06-01T21:04:39.3911085Z ] 2025-06-01T21:04:39.3912294Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,int8_t,int32_t>::PackMatrix' 2025-06-01T21:04:39.3915652Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,int8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.3919094Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,int8_t,int32_t>::packedBufferSize' 2025-06-01T21:04:39.3922736Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.3924447Z with 2025-06-01T21:04:39.3924630Z [ 2025-06-01T21:04:39.3924844Z inpType=uint8_t 2025-06-01T21:04:39.3925263Z ] 2025-06-01T21:04:39.3926061Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-06-01T21:04:39.3927948Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.3930702Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-06-01T21:04:39.3933799Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,int8_t,int16_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.3935232Z with 2025-06-01T21:04:39.3935412Z [ 2025-06-01T21:04:39.3935593Z inpType=int8_t 2025-06-01T21:04:39.3935801Z ] 2025-06-01T21:04:39.3936669Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,int8_t,int16_t>::PackMatrix' 2025-06-01T21:04:39.3939182Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,int8_t,int16_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.3941347Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,int8_t,int16_t>::packedBufferSize' 2025-06-01T21:04:39.3943380Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.3944732Z with 2025-06-01T21:04:39.3944900Z [ 2025-06-01T21:04:39.3945082Z inpType=uint8_t 2025-06-01T21:04:39.3945301Z ] 2025-06-01T21:04:39.3946163Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-06-01T21:04:39.3948275Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.3950323Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-06-01T21:04:39.3952912Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.3954296Z with 2025-06-01T21:04:39.3954465Z [ 2025-06-01T21:04:39.3955540Z inpType=uint8_t 2025-06-01T21:04:39.3955753Z ] 2025-06-01T21:04:39.3956602Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-06-01T21:04:39.3958805Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.3960789Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-06-01T21:04:39.3962810Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.3964151Z with 2025-06-01T21:04:39.3964316Z [ 2025-06-01T21:04:39.3964562Z inpType=uint8_t 2025-06-01T21:04:39.3964847Z ] 2025-06-01T21:04:39.3966209Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-06-01T21:04:39.3968852Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.3971006Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-06-01T21:04:39.3973077Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.3974504Z with 2025-06-01T21:04:39.3974797Z [ 2025-06-01T21:04:39.3975109Z inpType=uint8_t 2025-06-01T21:04:39.3975465Z ] 2025-06-01T21:04:39.3976473Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-06-01T21:04:39.3979077Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.3981138Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-06-01T21:04:39.3983142Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.3984548Z with 2025-06-01T21:04:39.3984867Z [ 2025-06-01T21:04:39.3985051Z inpType=uint8_t 2025-06-01T21:04:39.3985261Z ] 2025-06-01T21:04:39.3986070Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-06-01T21:04:39.3987997Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.3990002Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-06-01T21:04:39.3992006Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.3993391Z with 2025-06-01T21:04:39.3993557Z [ 2025-06-01T21:04:39.3993737Z inpType=uint8_t 2025-06-01T21:04:39.3993948Z ] 2025-06-01T21:04:39.3994752Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-06-01T21:04:39.3996839Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.3998815Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-06-01T21:04:39.4001330Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.4003244Z with 2025-06-01T21:04:39.4003414Z [ 2025-06-01T21:04:39.4003615Z inpType=uint8_t 2025-06-01T21:04:39.4003823Z ] 2025-06-01T21:04:39.4004630Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-06-01T21:04:39.4006655Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.4008616Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-06-01T21:04:39.4010600Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.4012147Z with 2025-06-01T21:04:39.4012332Z [ 2025-06-01T21:04:39.4012511Z inpType=uint8_t 2025-06-01T21:04:39.4012731Z ] 2025-06-01T21:04:39.4013585Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-06-01T21:04:39.4015521Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.4017474Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-06-01T21:04:39.4019515Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.4021122Z with 2025-06-01T21:04:39.4021303Z [ 2025-06-01T21:04:39.4021526Z inpType=uint8_t 2025-06-01T21:04:39.4021737Z ] 2025-06-01T21:04:39.4022717Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-06-01T21:04:39.4025231Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.4027790Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-06-01T21:04:39.4029750Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.4031039Z with 2025-06-01T21:04:39.4031208Z [ 2025-06-01T21:04:39.4031378Z inpType=uint8_t 2025-06-01T21:04:39.4031600Z ] 2025-06-01T21:04:39.4032512Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-06-01T21:04:39.4034518Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.4036526Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-06-01T21:04:39.4038413Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(113): warning C4661: 'fbgemm::PackMatrix,int8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.4039801Z with 2025-06-01T21:04:39.4039972Z [ 2025-06-01T21:04:39.4040142Z inpType=int8_t 2025-06-01T21:04:39.4040355Z ] 2025-06-01T21:04:39.4041111Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,int8_t,int32_t>::PackMatrix' 2025-06-01T21:04:39.4042992Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(113): warning C4661: 'int fbgemm::PackMatrix,int8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.4044832Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,int8_t,int32_t>::packedBufferSize' 2025-06-01T21:04:39.4046772Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.4048102Z with 2025-06-01T21:04:39.4048274Z [ 2025-06-01T21:04:39.4048439Z inpType=uint8_t 2025-06-01T21:04:39.4048653Z ] 2025-06-01T21:04:39.4049556Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-06-01T21:04:39.4051565Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.4053620Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-06-01T21:04:39.4055545Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(113): warning C4661: 'fbgemm::PackMatrix,int8_t,int16_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.4056985Z with 2025-06-01T21:04:39.4057156Z [ 2025-06-01T21:04:39.4057323Z inpType=int8_t 2025-06-01T21:04:39.4057538Z ] 2025-06-01T21:04:39.4058300Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,int8_t,int16_t>::PackMatrix' 2025-06-01T21:04:39.4060118Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(113): warning C4661: 'int fbgemm::PackMatrix,int8_t,int16_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.4062104Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,int8_t,int16_t>::packedBufferSize' 2025-06-01T21:04:39.4064075Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.4065427Z with 2025-06-01T21:04:39.4065597Z [ 2025-06-01T21:04:39.4065894Z inpType=uint8_t 2025-06-01T21:04:39.4066124Z ] 2025-06-01T21:04:39.4066932Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-06-01T21:04:39.4070227Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.4074291Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-06-01T21:04:39.4078118Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.4080765Z with 2025-06-01T21:04:39.4081092Z [ 2025-06-01T21:04:39.4081420Z inpType=uint8_t 2025-06-01T21:04:39.4081824Z ] 2025-06-01T21:04:39.4083403Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-06-01T21:04:39.4087227Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.4091316Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-06-01T21:04:39.4094374Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.4095753Z with 2025-06-01T21:04:39.4095927Z [ 2025-06-01T21:04:39.4096104Z inpType=uint8_t 2025-06-01T21:04:39.4096366Z ] 2025-06-01T21:04:39.4097259Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-06-01T21:04:39.4099227Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.4101226Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-06-01T21:04:39.4103249Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.4104606Z with 2025-06-01T21:04:39.4104804Z [ 2025-06-01T21:04:39.4105108Z inpType=uint8_t 2025-06-01T21:04:39.4105329Z ] 2025-06-01T21:04:39.4106217Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-06-01T21:04:39.4108157Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.4110216Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-06-01T21:04:39.4112268Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.4113557Z with 2025-06-01T21:04:39.4113731Z [ 2025-06-01T21:04:39.4113900Z inpType=uint8_t 2025-06-01T21:04:39.4114119Z ] 2025-06-01T21:04:39.4114982Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-06-01T21:04:39.4116965Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.4120016Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-06-01T21:04:39.4122239Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.4123597Z with 2025-06-01T21:04:39.4123775Z [ 2025-06-01T21:04:39.4123947Z inpType=uint8_t 2025-06-01T21:04:39.4124169Z ] 2025-06-01T21:04:39.4124963Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-06-01T21:04:39.4126910Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.4129025Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-06-01T21:04:39.4131084Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.4132359Z with 2025-06-01T21:04:39.4132542Z [ 2025-06-01T21:04:39.4132836Z inpType=uint8_t 2025-06-01T21:04:39.4133098Z ] 2025-06-01T21:04:39.4133938Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-06-01T21:04:39.4136005Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.4138040Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-06-01T21:04:39.4140132Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.4141508Z with 2025-06-01T21:04:39.4141685Z [ 2025-06-01T21:04:39.4141866Z inpType=uint8_t 2025-06-01T21:04:39.4142147Z ] 2025-06-01T21:04:39.4142992Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-06-01T21:04:39.4145096Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.4147350Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-06-01T21:04:39.4149473Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.4150983Z with 2025-06-01T21:04:39.4151211Z [ 2025-06-01T21:04:39.4151385Z inpType=uint8_t 2025-06-01T21:04:39.4151604Z ] 2025-06-01T21:04:39.4152511Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-06-01T21:04:39.4154757Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\Fbgemm.cc(116): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.4157246Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-06-01T21:04:39.4160552Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:39.4164432Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:39.4168448Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:39.4172211Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:39.4175609Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:39.4179293Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:39.4183417Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:39.4187418Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:39.4191291Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:39.4195194Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(150) : warning C4717: 'fbgemm::PackMatrix,signed char,short>::getRowOffsetBuffer': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:39.4199233Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:39.4203585Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(150) : warning C4717: 'fbgemm::PackMatrix,signed char,int>::getRowOffsetBuffer': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:39.4252573Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:39.4255250Z [1272/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmConv.cc.obj 2025-06-01T21:04:39.4258202Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.4260965Z with 2025-06-01T21:04:39.4261276Z [ 2025-06-01T21:04:39.4261552Z T=uint8_t, 2025-06-01T21:04:39.4261900Z accT=int32_t, 2025-06-01T21:04:39.4262252Z inpType=uint8_t 2025-06-01T21:04:39.4262595Z ] 2025-06-01T21:04:39.4264241Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:39.4265802Z with 2025-06-01T21:04:39.4266120Z [ 2025-06-01T21:04:39.4266437Z T=uint8_t, 2025-06-01T21:04:39.4266801Z accT=int32_t 2025-06-01T21:04:39.4267153Z ] 2025-06-01T21:04:39.4269368Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.4271947Z with 2025-06-01T21:04:39.4272262Z [ 2025-06-01T21:04:39.4272551Z T=uint8_t, 2025-06-01T21:04:39.4272912Z accT=int32_t 2025-06-01T21:04:39.4273268Z ] 2025-06-01T21:04:39.4274714Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:39.4276560Z with 2025-06-01T21:04:39.4276863Z [ 2025-06-01T21:04:39.4277181Z T=uint8_t, 2025-06-01T21:04:39.4277549Z accT=int32_t 2025-06-01T21:04:39.4277942Z ] 2025-06-01T21:04:39.4280625Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.4283177Z with 2025-06-01T21:04:39.4283470Z [ 2025-06-01T21:04:39.4283771Z T=int8_t, 2025-06-01T21:04:39.4284110Z accT=int32_t, 2025-06-01T21:04:39.4284515Z inpType=int8_t 2025-06-01T21:04:39.4284897Z ] 2025-06-01T21:04:39.4286290Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:39.4287792Z with 2025-06-01T21:04:39.4288086Z [ 2025-06-01T21:04:39.4288398Z T=int8_t, 2025-06-01T21:04:39.4288798Z accT=int32_t 2025-06-01T21:04:39.4289200Z ] 2025-06-01T21:04:39.4291510Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.4293917Z with 2025-06-01T21:04:39.4294236Z [ 2025-06-01T21:04:39.4294534Z T=int8_t, 2025-06-01T21:04:39.4294887Z accT=int32_t 2025-06-01T21:04:39.4295284Z ] 2025-06-01T21:04:39.4296669Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:39.4298311Z with 2025-06-01T21:04:39.4298617Z [ 2025-06-01T21:04:39.4298927Z T=int8_t, 2025-06-01T21:04:39.4299274Z accT=int32_t 2025-06-01T21:04:39.4299645Z ] 2025-06-01T21:04:39.4302110Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.4304995Z with 2025-06-01T21:04:39.4305324Z [ 2025-06-01T21:04:39.4305624Z ACC_T=int32_t, 2025-06-01T21:04:39.4306047Z T=uint8_t, 2025-06-01T21:04:39.4306433Z accT=int32_t, 2025-06-01T21:04:39.4306860Z inpType=uint8_t 2025-06-01T21:04:39.4307270Z ] 2025-06-01T21:04:39.4308819Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:39.4310529Z with 2025-06-01T21:04:39.4310863Z [ 2025-06-01T21:04:39.4311175Z ACC_T=int32_t, 2025-06-01T21:04:39.4311592Z T=uint8_t, 2025-06-01T21:04:39.4311975Z accT=int32_t 2025-06-01T21:04:39.4312392Z ] 2025-06-01T21:04:39.4314852Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.4317315Z with 2025-06-01T21:04:39.4317623Z [ 2025-06-01T21:04:39.4317934Z ACC_T=int32_t, 2025-06-01T21:04:39.4318314Z T=uint8_t, 2025-06-01T21:04:39.4318683Z accT=int32_t 2025-06-01T21:04:39.4319112Z ] 2025-06-01T21:04:39.4320936Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:39.4322703Z with 2025-06-01T21:04:39.4323014Z [ 2025-06-01T21:04:39.4323542Z ACC_T=int32_t, 2025-06-01T21:04:39.4323953Z T=uint8_t, 2025-06-01T21:04:39.4324322Z accT=int32_t 2025-06-01T21:04:39.4324679Z ] 2025-06-01T21:04:39.4327148Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.4329674Z with 2025-06-01T21:04:39.4329977Z [ 2025-06-01T21:04:39.4330285Z ACC_T=int32_t, 2025-06-01T21:04:39.4330680Z T=uint8_t, 2025-06-01T21:04:39.4331026Z accT=int32_t, 2025-06-01T21:04:39.4331439Z inpType=uint8_t 2025-06-01T21:04:39.4331823Z ] 2025-06-01T21:04:39.4333371Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:39.4334932Z with 2025-06-01T21:04:39.4335240Z [ 2025-06-01T21:04:39.4335558Z ACC_T=int32_t, 2025-06-01T21:04:39.4335954Z T=uint8_t, 2025-06-01T21:04:39.4336326Z accT=int32_t 2025-06-01T21:04:39.4336686Z ] 2025-06-01T21:04:39.4339080Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.4341655Z with 2025-06-01T21:04:39.4341965Z [ 2025-06-01T21:04:39.4342275Z ACC_T=int32_t, 2025-06-01T21:04:39.4342667Z T=uint8_t, 2025-06-01T21:04:39.4343037Z accT=int32_t 2025-06-01T21:04:39.4343389Z ] 2025-06-01T21:04:39.4344905Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:39.4346770Z with 2025-06-01T21:04:39.4347093Z [ 2025-06-01T21:04:39.4347398Z ACC_T=int32_t, 2025-06-01T21:04:39.4347794Z T=uint8_t, 2025-06-01T21:04:39.4348160Z accT=int32_t 2025-06-01T21:04:39.4348517Z ] 2025-06-01T21:04:39.4350983Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.4353509Z with 2025-06-01T21:04:39.4353823Z [ 2025-06-01T21:04:39.4354134Z ACC_T=int32_t, 2025-06-01T21:04:39.4354535Z T=uint8_t, 2025-06-01T21:04:39.4354943Z accT=int32_t, 2025-06-01T21:04:39.4355329Z inpType=uint8_t 2025-06-01T21:04:39.4355718Z ] 2025-06-01T21:04:39.4357184Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:39.4358758Z with 2025-06-01T21:04:39.4359055Z [ 2025-06-01T21:04:39.4359338Z ACC_T=int32_t, 2025-06-01T21:04:39.4359695Z T=uint8_t, 2025-06-01T21:04:39.4360021Z accT=int32_t 2025-06-01T21:04:39.4360328Z ] 2025-06-01T21:04:39.4362495Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:39.4365147Z with 2025-06-01T21:04:39.4365454Z [ 2025-06-01T21:04:39.4365810Z ACC_T=int32_t, 2025-06-01T21:04:39.4366210Z T=uint8_t, 2025-06-01T21:04:39.4366584Z accT=int32_t 2025-06-01T21:04:39.4366942Z ] 2025-06-01T21:04:39.4368470Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:39.4370147Z with 2025-06-01T21:04:39.4370462Z [ 2025-06-01T21:04:39.4370784Z ACC_T=int32_t, 2025-06-01T21:04:39.4371173Z T=uint8_t, 2025-06-01T21:04:39.4371533Z accT=int32_t 2025-06-01T21:04:39.4371901Z ] 2025-06-01T21:04:39.4374057Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:39.4378060Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:39.4382053Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:39.5155308Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:39.5158790Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(150) : warning C4717: 'fbgemm::PackMatrix,signed char,int>::getRowOffsetBuffer': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:39.5160361Z [1273/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmFPCommon.cc.obj 2025-06-01T21:04:39.5332833Z [1274/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmFP16.cc.obj 2025-06-01T21:04:39.5881428Z [1275/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\ExecuteKernelU8S8.cc.obj 2025-06-01T21:04:39.5967212Z [1276/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmFloat16Convert.cc.obj 2025-06-01T21:04:39.5983876Z [1277/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmI8Spmdm.cc.obj 2025-06-01T21:04:39.7663597Z [1278/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmPackMatrixB.cc.obj 2025-06-01T21:04:39.7732663Z [1279/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmSparseDense.cc.obj 2025-06-01T21:04:39.8140953Z [1280/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmI64.cc.obj 2025-06-01T21:04:39.9689316Z [1281/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernelDirectConvU8S8S32ACC32.cc.obj 2025-06-01T21:04:39.9844200Z [1282/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernel.cc.obj 2025-06-01T21:04:40.0130520Z [1283/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernelU8S8S32ACC16Avx512VNNI.cc.obj 2025-06-01T21:04:40.0210135Z [1284/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernelU8S8S32ACC16.cc.obj 2025-06-01T21:04:40.0407084Z [1285/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernelU8S8S32ACC16Avx512.cc.obj 2025-06-01T21:04:40.2048864Z [1286/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernelU8S8S32ACC32Avx512VNNI.cc.obj 2025-06-01T21:04:40.2380231Z [1287/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernelU8S8S32ACC32.cc.obj 2025-06-01T21:04:40.2656902Z [1288/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GroupwiseConv.cc.obj 2025-06-01T21:04:40.2870400Z [1289/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackAMatrix.cc.obj 2025-06-01T21:04:40.2872757Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.2874228Z with 2025-06-01T21:04:40.2874490Z [ 2025-06-01T21:04:40.2874691Z T=uint8_t, 2025-06-01T21:04:40.2874961Z accT=int32_t, 2025-06-01T21:04:40.2875176Z inpType=uint8_t 2025-06-01T21:04:40.2875392Z ] 2025-06-01T21:04:40.2876186Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:40.2877072Z with 2025-06-01T21:04:40.2877278Z [ 2025-06-01T21:04:40.2877506Z T=uint8_t, 2025-06-01T21:04:40.2877773Z accT=int32_t 2025-06-01T21:04:40.2878018Z ] 2025-06-01T21:04:40.2879284Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.2881008Z with 2025-06-01T21:04:40.2881194Z [ 2025-06-01T21:04:40.2881363Z T=uint8_t, 2025-06-01T21:04:40.2881825Z accT=int32_t 2025-06-01T21:04:40.2882374Z ] 2025-06-01T21:04:40.2883907Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:40.2885534Z with 2025-06-01T21:04:40.2885851Z [ 2025-06-01T21:04:40.2886149Z T=uint8_t, 2025-06-01T21:04:40.2886513Z accT=int32_t 2025-06-01T21:04:40.2886887Z ] 2025-06-01T21:04:40.2889287Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.2891931Z with 2025-06-01T21:04:40.2892239Z [ 2025-06-01T21:04:40.2892550Z T=uint8_t, 2025-06-01T21:04:40.2892932Z accT=int16_t, 2025-06-01T21:04:40.2893347Z inpType=uint8_t 2025-06-01T21:04:40.2893747Z ] 2025-06-01T21:04:40.2895211Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:40.2896813Z with 2025-06-01T21:04:40.2897130Z [ 2025-06-01T21:04:40.2897440Z T=uint8_t, 2025-06-01T21:04:40.2897798Z accT=int16_t 2025-06-01T21:04:40.2898186Z ] 2025-06-01T21:04:40.2900889Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.2903425Z with 2025-06-01T21:04:40.2903748Z [ 2025-06-01T21:04:40.2904070Z T=uint8_t, 2025-06-01T21:04:40.2904446Z accT=int16_t 2025-06-01T21:04:40.2904814Z ] 2025-06-01T21:04:40.2906343Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:40.2908047Z with 2025-06-01T21:04:40.2908363Z [ 2025-06-01T21:04:40.2908659Z T=uint8_t, 2025-06-01T21:04:40.2909035Z accT=int16_t 2025-06-01T21:04:40.2909399Z ] 2025-06-01T21:04:40.2911824Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAMatrix.cc(29): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.2914316Z with 2025-06-01T21:04:40.2914615Z [ 2025-06-01T21:04:40.2914914Z T=uint8_t, 2025-06-01T21:04:40.2915276Z accT=int32_t, 2025-06-01T21:04:40.2915690Z inpType=uint8_t 2025-06-01T21:04:40.2916077Z ] 2025-06-01T21:04:40.2917528Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:40.2919133Z with 2025-06-01T21:04:40.2919426Z [ 2025-06-01T21:04:40.2919730Z T=uint8_t, 2025-06-01T21:04:40.2920090Z accT=int32_t 2025-06-01T21:04:40.2920465Z ] 2025-06-01T21:04:40.2922731Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAMatrix.cc(29): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.2925210Z with 2025-06-01T21:04:40.2925513Z [ 2025-06-01T21:04:40.2925805Z T=uint8_t, 2025-06-01T21:04:40.2926164Z accT=int32_t 2025-06-01T21:04:40.2926530Z ] 2025-06-01T21:04:40.2928028Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:40.2929624Z with 2025-06-01T21:04:40.2929941Z [ 2025-06-01T21:04:40.2930238Z T=uint8_t, 2025-06-01T21:04:40.2930613Z accT=int32_t 2025-06-01T21:04:40.2930982Z ] 2025-06-01T21:04:40.2933278Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAMatrix.cc(29): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.2935695Z with 2025-06-01T21:04:40.2935991Z [ 2025-06-01T21:04:40.2936298Z T=uint8_t, 2025-06-01T21:04:40.2936661Z accT=int16_t, 2025-06-01T21:04:40.2937065Z inpType=uint8_t 2025-06-01T21:04:40.2937445Z ] 2025-06-01T21:04:40.2939073Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:40.2940755Z with 2025-06-01T21:04:40.2941062Z [ 2025-06-01T21:04:40.2941356Z T=uint8_t, 2025-06-01T21:04:40.2941708Z accT=int16_t 2025-06-01T21:04:40.2942073Z ] 2025-06-01T21:04:40.2944508Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAMatrix.cc(29): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.2946893Z with 2025-06-01T21:04:40.2947218Z [ 2025-06-01T21:04:40.2947521Z T=uint8_t, 2025-06-01T21:04:40.2947892Z accT=int16_t 2025-06-01T21:04:40.2948249Z ] 2025-06-01T21:04:40.2949722Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:40.2951337Z with 2025-06-01T21:04:40.2951634Z [ 2025-06-01T21:04:40.2951914Z T=uint8_t, 2025-06-01T21:04:40.2952286Z accT=int16_t 2025-06-01T21:04:40.2952673Z ] 2025-06-01T21:04:40.3042467Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:40.3066528Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:40.3069146Z [1290/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackAWithIm2Col.cc.obj 2025-06-01T21:04:40.3072123Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.3074778Z with 2025-06-01T21:04:40.3075080Z [ 2025-06-01T21:04:40.3075373Z T=uint8_t, 2025-06-01T21:04:40.3075715Z accT=int32_t, 2025-06-01T21:04:40.3076105Z inpType=uint8_t 2025-06-01T21:04:40.3076476Z ] 2025-06-01T21:04:40.3077909Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:40.3079451Z with 2025-06-01T21:04:40.3079739Z [ 2025-06-01T21:04:40.3080035Z T=uint8_t, 2025-06-01T21:04:40.3080373Z accT=int32_t 2025-06-01T21:04:40.3080719Z ] 2025-06-01T21:04:40.3082917Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.3085316Z with 2025-06-01T21:04:40.3085620Z [ 2025-06-01T21:04:40.3085906Z T=uint8_t, 2025-06-01T21:04:40.3086258Z accT=int32_t 2025-06-01T21:04:40.3086608Z ] 2025-06-01T21:04:40.3088408Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:40.3090095Z with 2025-06-01T21:04:40.3090414Z [ 2025-06-01T21:04:40.3090712Z T=uint8_t, 2025-06-01T21:04:40.3091082Z accT=int32_t 2025-06-01T21:04:40.3091401Z ] 2025-06-01T21:04:40.3093950Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.3096461Z with 2025-06-01T21:04:40.3096739Z [ 2025-06-01T21:04:40.3097035Z T=uint8_t, 2025-06-01T21:04:40.3097357Z accT=int16_t, 2025-06-01T21:04:40.3097746Z inpType=uint8_t 2025-06-01T21:04:40.3098126Z ] 2025-06-01T21:04:40.3099485Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:40.3101031Z with 2025-06-01T21:04:40.3101314Z [ 2025-06-01T21:04:40.3101587Z T=uint8_t, 2025-06-01T21:04:40.3101927Z accT=int16_t 2025-06-01T21:04:40.3102265Z ] 2025-06-01T21:04:40.3104206Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.3106819Z with 2025-06-01T21:04:40.3107149Z [ 2025-06-01T21:04:40.3107417Z T=uint8_t, 2025-06-01T21:04:40.3107776Z accT=int16_t 2025-06-01T21:04:40.3108122Z ] 2025-06-01T21:04:40.3109569Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:40.3111163Z with 2025-06-01T21:04:40.3111476Z [ 2025-06-01T21:04:40.3111755Z T=uint8_t, 2025-06-01T21:04:40.3112096Z accT=int16_t 2025-06-01T21:04:40.3112459Z ] 2025-06-01T21:04:40.3114753Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.3117449Z with 2025-06-01T21:04:40.3117739Z [ 2025-06-01T21:04:40.3118035Z T=uint8_t, 2025-06-01T21:04:40.3118393Z accT=int32_t, 2025-06-01T21:04:40.3118775Z inpType=uint8_t 2025-06-01T21:04:40.3119161Z ] 2025-06-01T21:04:40.3120462Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:40.3121395Z with 2025-06-01T21:04:40.3121571Z [ 2025-06-01T21:04:40.3121780Z T=uint8_t, 2025-06-01T21:04:40.3122064Z accT=int32_t 2025-06-01T21:04:40.3122370Z ] 2025-06-01T21:04:40.3124476Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.3127234Z with 2025-06-01T21:04:40.3127542Z [ 2025-06-01T21:04:40.3127824Z T=uint8_t, 2025-06-01T21:04:40.3128187Z accT=int32_t 2025-06-01T21:04:40.3128555Z ] 2025-06-01T21:04:40.3130036Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:40.3132555Z with 2025-06-01T21:04:40.3132891Z [ 2025-06-01T21:04:40.3133195Z T=uint8_t, 2025-06-01T21:04:40.3133670Z accT=int32_t 2025-06-01T21:04:40.3135743Z ] 2025-06-01T21:04:40.3138555Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.3140956Z with 2025-06-01T21:04:40.3141242Z [ 2025-06-01T21:04:40.3141518Z T=uint8_t, 2025-06-01T21:04:40.3141879Z accT=int16_t, 2025-06-01T21:04:40.3142542Z inpType=uint8_t 2025-06-01T21:04:40.3142794Z ] 2025-06-01T21:04:40.3143686Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:40.3144670Z with 2025-06-01T21:04:40.3144894Z [ 2025-06-01T21:04:40.3145128Z T=uint8_t, 2025-06-01T21:04:40.3145403Z accT=int16_t 2025-06-01T21:04:40.3145600Z ] 2025-06-01T21:04:40.3146942Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.3148300Z with 2025-06-01T21:04:40.3148487Z [ 2025-06-01T21:04:40.3148663Z T=uint8_t, 2025-06-01T21:04:40.3148868Z accT=int16_t 2025-06-01T21:04:40.3149131Z ] 2025-06-01T21:04:40.3150081Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:40.3151040Z with 2025-06-01T21:04:40.3151257Z [ 2025-06-01T21:04:40.3151461Z T=uint8_t, 2025-06-01T21:04:40.3152526Z accT=int16_t 2025-06-01T21:04:40.3152732Z ] 2025-06-01T21:04:40.3155124Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.3157357Z with 2025-06-01T21:04:40.3157602Z [ 2025-06-01T21:04:40.3157901Z T=uint8_t, 2025-06-01T21:04:40.3158195Z accT=int32_t, 2025-06-01T21:04:40.3158518Z inpType=uint8_t 2025-06-01T21:04:40.3158824Z ] 2025-06-01T21:04:40.3160411Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:40.3162097Z with 2025-06-01T21:04:40.3162446Z [ 2025-06-01T21:04:40.3162747Z T=uint8_t, 2025-06-01T21:04:40.3163131Z accT=int32_t 2025-06-01T21:04:40.3163510Z ] 2025-06-01T21:04:40.3165836Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.3168327Z with 2025-06-01T21:04:40.3168637Z [ 2025-06-01T21:04:40.3168942Z T=uint8_t, 2025-06-01T21:04:40.3169292Z accT=int32_t 2025-06-01T21:04:40.3169665Z ] 2025-06-01T21:04:40.3171163Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:40.3173067Z with 2025-06-01T21:04:40.3173391Z [ 2025-06-01T21:04:40.3173693Z T=uint8_t, 2025-06-01T21:04:40.3174057Z accT=int32_t 2025-06-01T21:04:40.3174417Z ] 2025-06-01T21:04:40.3176790Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.3179106Z with 2025-06-01T21:04:40.3179410Z [ 2025-06-01T21:04:40.3179723Z T=uint8_t, 2025-06-01T21:04:40.3180074Z accT=int16_t, 2025-06-01T21:04:40.3180559Z inpType=uint8_t 2025-06-01T21:04:40.3180943Z ] 2025-06-01T21:04:40.3182418Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:40.3184047Z with 2025-06-01T21:04:40.3184346Z [ 2025-06-01T21:04:40.3184653Z T=uint8_t, 2025-06-01T21:04:40.3185018Z accT=int16_t 2025-06-01T21:04:40.3185700Z ] 2025-06-01T21:04:40.3187968Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.3190388Z with 2025-06-01T21:04:40.3190698Z [ 2025-06-01T21:04:40.3191005Z T=uint8_t, 2025-06-01T21:04:40.3191367Z accT=int16_t 2025-06-01T21:04:40.3191733Z ] 2025-06-01T21:04:40.3193099Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:40.3194363Z with 2025-06-01T21:04:40.3194539Z [ 2025-06-01T21:04:40.3194702Z T=uint8_t, 2025-06-01T21:04:40.3194904Z accT=int16_t 2025-06-01T21:04:40.3195100Z ] 2025-06-01T21:04:40.3196419Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.3197926Z with 2025-06-01T21:04:40.3198093Z [ 2025-06-01T21:04:40.3198265Z T=uint8_t, 2025-06-01T21:04:40.3198469Z accT=int32_t, 2025-06-01T21:04:40.3198698Z inpType=uint8_t 2025-06-01T21:04:40.3198908Z ] 2025-06-01T21:04:40.3199754Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:40.3200881Z with 2025-06-01T21:04:40.3201047Z [ 2025-06-01T21:04:40.3201218Z T=uint8_t, 2025-06-01T21:04:40.3201413Z accT=int32_t 2025-06-01T21:04:40.3201613Z ] 2025-06-01T21:04:40.3203194Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.3205639Z with 2025-06-01T21:04:40.3205949Z [ 2025-06-01T21:04:40.3206229Z T=uint8_t, 2025-06-01T21:04:40.3206598Z accT=int32_t 2025-06-01T21:04:40.3206954Z ] 2025-06-01T21:04:40.3208683Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:40.3210277Z with 2025-06-01T21:04:40.3210479Z [ 2025-06-01T21:04:40.3210694Z T=uint8_t, 2025-06-01T21:04:40.3210980Z accT=int32_t 2025-06-01T21:04:40.3211178Z ] 2025-06-01T21:04:40.3212465Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.3214793Z with 2025-06-01T21:04:40.3215104Z [ 2025-06-01T21:04:40.3215391Z T=uint8_t, 2025-06-01T21:04:40.3215724Z accT=int16_t, 2025-06-01T21:04:40.3216102Z inpType=uint8_t 2025-06-01T21:04:40.3216490Z ] 2025-06-01T21:04:40.3218137Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:40.3219832Z with 2025-06-01T21:04:40.3220135Z [ 2025-06-01T21:04:40.3220558Z T=uint8_t, 2025-06-01T21:04:40.3220932Z accT=int16_t 2025-06-01T21:04:40.3221303Z ] 2025-06-01T21:04:40.3223618Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.3226056Z with 2025-06-01T21:04:40.3226372Z [ 2025-06-01T21:04:40.3226665Z T=uint8_t, 2025-06-01T21:04:40.3227040Z accT=int16_t 2025-06-01T21:04:40.3227632Z ] 2025-06-01T21:04:40.3229155Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:40.3230830Z with 2025-06-01T21:04:40.3231136Z [ 2025-06-01T21:04:40.3231435Z T=uint8_t, 2025-06-01T21:04:40.3231798Z accT=int16_t 2025-06-01T21:04:40.3232168Z ] 2025-06-01T21:04:40.3234543Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.3237263Z with 2025-06-01T21:04:40.3239334Z [ 2025-06-01T21:04:40.3240490Z T=uint8_t, 2025-06-01T21:04:40.3240913Z accT=int32_t, 2025-06-01T21:04:40.3241492Z inpType=uint8_t 2025-06-01T21:04:40.3241746Z ] 2025-06-01T21:04:40.3243158Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:40.3244413Z with 2025-06-01T21:04:40.3244613Z [ 2025-06-01T21:04:40.3244891Z T=uint8_t, 2025-06-01T21:04:40.3245145Z accT=int32_t 2025-06-01T21:04:40.3245350Z ] 2025-06-01T21:04:40.3246662Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.3248028Z with 2025-06-01T21:04:40.3248242Z [ 2025-06-01T21:04:40.3248632Z T=uint8_t, 2025-06-01T21:04:40.3248846Z accT=int32_t 2025-06-01T21:04:40.3249093Z ] 2025-06-01T21:04:40.3249967Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:40.3251368Z with 2025-06-01T21:04:40.3251651Z [ 2025-06-01T21:04:40.3251928Z T=uint8_t, 2025-06-01T21:04:40.3252193Z accT=int32_t 2025-06-01T21:04:40.3252399Z ] 2025-06-01T21:04:40.3253823Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.3255123Z with 2025-06-01T21:04:40.3255366Z [ 2025-06-01T21:04:40.3255605Z T=uint8_t, 2025-06-01T21:04:40.3255836Z accT=int16_t, 2025-06-01T21:04:40.3256051Z inpType=uint8_t 2025-06-01T21:04:40.3256265Z ] 2025-06-01T21:04:40.3257153Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:40.3258099Z with 2025-06-01T21:04:40.3258256Z [ 2025-06-01T21:04:40.3258489Z T=uint8_t, 2025-06-01T21:04:40.3258694Z accT=int16_t 2025-06-01T21:04:40.3258927Z ] 2025-06-01T21:04:40.3260219Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.3261791Z with 2025-06-01T21:04:40.3261973Z [ 2025-06-01T21:04:40.3262130Z T=uint8_t, 2025-06-01T21:04:40.3262385Z accT=int16_t 2025-06-01T21:04:40.3262623Z ] 2025-06-01T21:04:40.3263573Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:40.3264545Z with 2025-06-01T21:04:40.3264705Z [ 2025-06-01T21:04:40.3264882Z T=uint8_t, 2025-06-01T21:04:40.3265075Z accT=int16_t 2025-06-01T21:04:40.3265277Z ] 2025-06-01T21:04:40.3266607Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.3268065Z with 2025-06-01T21:04:40.3268228Z [ 2025-06-01T21:04:40.3268434Z T=uint8_t, 2025-06-01T21:04:40.3268709Z accT=int32_t, 2025-06-01T21:04:40.3268981Z inpType=uint8_t 2025-06-01T21:04:40.3269254Z ] 2025-06-01T21:04:40.3270092Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:40.3270930Z with 2025-06-01T21:04:40.3271093Z [ 2025-06-01T21:04:40.3271271Z T=uint8_t, 2025-06-01T21:04:40.3271551Z accT=int32_t 2025-06-01T21:04:40.3271828Z ] 2025-06-01T21:04:40.3273179Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.3274454Z with 2025-06-01T21:04:40.3274697Z [ 2025-06-01T21:04:40.3274940Z T=uint8_t, 2025-06-01T21:04:40.3275189Z accT=int32_t 2025-06-01T21:04:40.3275389Z ] 2025-06-01T21:04:40.3276193Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:40.3277165Z with 2025-06-01T21:04:40.3277355Z [ 2025-06-01T21:04:40.3277520Z T=uint8_t, 2025-06-01T21:04:40.3277709Z accT=int32_t 2025-06-01T21:04:40.3277914Z ] 2025-06-01T21:04:40.3279133Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.3280528Z with 2025-06-01T21:04:40.3280731Z [ 2025-06-01T21:04:40.3280946Z T=uint8_t, 2025-06-01T21:04:40.3281178Z accT=int16_t, 2025-06-01T21:04:40.3281395Z inpType=uint8_t 2025-06-01T21:04:40.3281610Z ] 2025-06-01T21:04:40.3282370Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:40.3283281Z with 2025-06-01T21:04:40.3283445Z [ 2025-06-01T21:04:40.3283621Z T=uint8_t, 2025-06-01T21:04:40.3283818Z accT=int16_t 2025-06-01T21:04:40.3284363Z ] 2025-06-01T21:04:40.3286822Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.3289452Z with 2025-06-01T21:04:40.3289763Z [ 2025-06-01T21:04:40.3290055Z T=uint8_t, 2025-06-01T21:04:40.3290414Z accT=int16_t 2025-06-01T21:04:40.3290770Z ] 2025-06-01T21:04:40.3292296Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:40.3293969Z with 2025-06-01T21:04:40.3294269Z [ 2025-06-01T21:04:40.3294582Z T=uint8_t, 2025-06-01T21:04:40.3294939Z accT=int16_t 2025-06-01T21:04:40.3295316Z ] 2025-06-01T21:04:40.3297451Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:40.3302110Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:40.3306203Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:40.3310822Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:40.3314849Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:40.3319002Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:40.3321640Z [1291/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackAWithQuantRowOffset.cc.obj 2025-06-01T21:04:40.3324827Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.3327303Z with 2025-06-01T21:04:40.3327588Z [ 2025-06-01T21:04:40.3327878Z T=uint8_t, 2025-06-01T21:04:40.3328262Z accT=int32_t, 2025-06-01T21:04:40.3328672Z inpType=uint8_t 2025-06-01T21:04:40.3329068Z ] 2025-06-01T21:04:40.3330491Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:40.3332101Z with 2025-06-01T21:04:40.3332389Z [ 2025-06-01T21:04:40.3332668Z T=uint8_t, 2025-06-01T21:04:40.3332996Z accT=int32_t 2025-06-01T21:04:40.3333322Z ] 2025-06-01T21:04:40.3335672Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.3338668Z with 2025-06-01T21:04:40.3338995Z [ 2025-06-01T21:04:40.3339267Z T=uint8_t, 2025-06-01T21:04:40.3377877Z accT=int32_t 2025-06-01T21:04:40.3378416Z ] 2025-06-01T21:04:40.3380066Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:40.3381983Z with 2025-06-01T21:04:40.3382245Z [ 2025-06-01T21:04:40.3382492Z T=uint8_t, 2025-06-01T21:04:40.3382778Z accT=int32_t 2025-06-01T21:04:40.3383124Z ] 2025-06-01T21:04:40.3384835Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithQuantRowOffset.cc(36): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.3386622Z with 2025-06-01T21:04:40.3386793Z [ 2025-06-01T21:04:40.3386963Z T=uint8_t, 2025-06-01T21:04:40.3387198Z accT=int32_t, 2025-06-01T21:04:40.3387414Z inpType=uint8_t 2025-06-01T21:04:40.3387670Z ] 2025-06-01T21:04:40.3388584Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:40.3390152Z with 2025-06-01T21:04:40.3390433Z [ 2025-06-01T21:04:40.3390746Z T=uint8_t, 2025-06-01T21:04:40.3392227Z accT=int32_t 2025-06-01T21:04:40.3392647Z ] 2025-06-01T21:04:40.3395248Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithQuantRowOffset.cc(36): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.3398029Z with 2025-06-01T21:04:40.3398338Z [ 2025-06-01T21:04:40.3398676Z T=uint8_t, 2025-06-01T21:04:40.3399062Z accT=int32_t 2025-06-01T21:04:40.3399458Z ] 2025-06-01T21:04:40.3401068Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:40.3402815Z with 2025-06-01T21:04:40.3403125Z [ 2025-06-01T21:04:40.3403437Z T=uint8_t, 2025-06-01T21:04:40.3403804Z accT=int32_t 2025-06-01T21:04:40.3404157Z ] 2025-06-01T21:04:40.4041583Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:40.4044597Z [1292/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GroupwiseConvAcc32Avx2.cc.obj 2025-06-01T21:04:40.4047409Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4050619Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::getOrCreate' 2025-06-01T21:04:40.4054178Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4057552Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::genForTopOrBottomEdge' 2025-06-01T21:04:40.4060788Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4063766Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::initResultRegs' 2025-06-01T21:04:40.4066812Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4070191Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::genCoreInsts' 2025-06-01T21:04:40.4072109Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4074861Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::genForSingleOutput' 2025-06-01T21:04:40.4076994Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4080405Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::getOrCreate' 2025-06-01T21:04:40.4083783Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4087197Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::genForTopOrBottomEdge' 2025-06-01T21:04:40.4090465Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4093506Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::initResultRegs' 2025-06-01T21:04:40.4096624Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4100006Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::genCoreInsts' 2025-06-01T21:04:40.4103406Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4106946Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::genForSingleOutput' 2025-06-01T21:04:40.4109744Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4112537Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::getOrCreate' 2025-06-01T21:04:40.4115731Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4119218Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::genForTopOrBottomEdge' 2025-06-01T21:04:40.4122880Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4126096Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::initResultRegs' 2025-06-01T21:04:40.4129402Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4132476Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::genCoreInsts' 2025-06-01T21:04:40.4134591Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4139780Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::genForSingleOutput' 2025-06-01T21:04:40.4143419Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4146818Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::getOrCreate' 2025-06-01T21:04:40.4148894Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4152787Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::genForTopOrBottomEdge' 2025-06-01T21:04:40.4156089Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4159760Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::initResultRegs' 2025-06-01T21:04:40.4163075Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4166328Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::genCoreInsts' 2025-06-01T21:04:40.4169294Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4171727Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::genForSingleOutput' 2025-06-01T21:04:40.4174334Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4178929Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::getOrCreate' 2025-06-01T21:04:40.4182679Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4186408Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::genForTopOrBottomEdge' 2025-06-01T21:04:40.4189101Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4192605Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::initResultRegs' 2025-06-01T21:04:40.4195875Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4199256Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::genCoreInsts' 2025-06-01T21:04:40.4202975Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4205979Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::genForSingleOutput' 2025-06-01T21:04:40.4208045Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4210107Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::getOrCreate' 2025-06-01T21:04:40.4212162Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4213947Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::genForTopOrBottomEdge' 2025-06-01T21:04:40.4216008Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4218054Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::initResultRegs' 2025-06-01T21:04:40.4219858Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4221974Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::genCoreInsts' 2025-06-01T21:04:40.4227124Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4230466Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::genForSingleOutput' 2025-06-01T21:04:40.4232534Z [1293/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GroupwiseConvAcc32Avx512.cc.obj 2025-06-01T21:04:40.4234542Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4236856Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::getOrCreate' 2025-06-01T21:04:40.4240367Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4243750Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::genForTopOrBottomEdge' 2025-06-01T21:04:40.4247007Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4250344Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::initResultRegs' 2025-06-01T21:04:40.4253747Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4256923Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::genCoreInsts' 2025-06-01T21:04:40.4260622Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4264526Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::genForSingleOutput' 2025-06-01T21:04:40.4267471Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4270437Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::getOrCreate' 2025-06-01T21:04:40.4273674Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4276745Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::genForTopOrBottomEdge' 2025-06-01T21:04:40.4279111Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4281493Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::initResultRegs' 2025-06-01T21:04:40.4283530Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4285824Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::genCoreInsts' 2025-06-01T21:04:40.4287739Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4289881Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::genForSingleOutput' 2025-06-01T21:04:40.4291799Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4293517Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::getOrCreate' 2025-06-01T21:04:40.4297108Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4299827Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::genForTopOrBottomEdge' 2025-06-01T21:04:40.4301943Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4303701Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::initResultRegs' 2025-06-01T21:04:40.4305481Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4307263Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::genCoreInsts' 2025-06-01T21:04:40.4310704Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4314177Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::genForSingleOutput' 2025-06-01T21:04:40.4317422Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4320675Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::getOrCreate' 2025-06-01T21:04:40.4324101Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4327724Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::genForTopOrBottomEdge' 2025-06-01T21:04:40.4331015Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4334553Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::initResultRegs' 2025-06-01T21:04:40.4338045Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4341927Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::genCoreInsts' 2025-06-01T21:04:40.4345562Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4348602Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::genForSingleOutput' 2025-06-01T21:04:40.4351479Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4354360Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::getOrCreate' 2025-06-01T21:04:40.4357578Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4360335Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::genForTopOrBottomEdge' 2025-06-01T21:04:40.4362395Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4365865Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::initResultRegs' 2025-06-01T21:04:40.4377727Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4379894Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::genCoreInsts' 2025-06-01T21:04:40.4382164Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4384416Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::genForSingleOutput' 2025-06-01T21:04:40.4386830Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4390229Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::getOrCreate' 2025-06-01T21:04:40.4393655Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4397275Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::genForTopOrBottomEdge' 2025-06-01T21:04:40.4400812Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4404092Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::initResultRegs' 2025-06-01T21:04:40.4407400Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4410743Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::genCoreInsts' 2025-06-01T21:04:40.4414213Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4417718Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::genForSingleOutput' 2025-06-01T21:04:40.4421181Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4424520Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::getOrCreate' 2025-06-01T21:04:40.4426893Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4429646Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::genForTopOrBottomEdge' 2025-06-01T21:04:40.4431753Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4433865Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::initResultRegs' 2025-06-01T21:04:40.4437619Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4441307Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::genCoreInsts' 2025-06-01T21:04:40.4443602Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4445679Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::genForSingleOutput' 2025-06-01T21:04:40.4447763Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4449714Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::getOrCreate' 2025-06-01T21:04:40.4451682Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4453768Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::genForTopOrBottomEdge' 2025-06-01T21:04:40.4455796Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4457773Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::initResultRegs' 2025-06-01T21:04:40.4459977Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4462069Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::genCoreInsts' 2025-06-01T21:04:40.4464139Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4467105Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::genForSingleOutput' 2025-06-01T21:04:40.4469291Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4471150Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::getOrCreate' 2025-06-01T21:04:40.4474006Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4477539Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::genForTopOrBottomEdge' 2025-06-01T21:04:40.4481096Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4484448Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::initResultRegs' 2025-06-01T21:04:40.4487867Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4491315Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::genCoreInsts' 2025-06-01T21:04:40.4495003Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4498320Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::genForSingleOutput' 2025-06-01T21:04:40.4501715Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4504970Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::getOrCreate' 2025-06-01T21:04:40.4508523Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4513173Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::genForTopOrBottomEdge' 2025-06-01T21:04:40.4516844Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4520264Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::initResultRegs' 2025-06-01T21:04:40.4524069Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4527495Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::genCoreInsts' 2025-06-01T21:04:40.4531074Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4534893Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::genForSingleOutput' 2025-06-01T21:04:40.4538270Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4541613Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::getOrCreate' 2025-06-01T21:04:40.4545048Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4547982Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::genForTopOrBottomEdge' 2025-06-01T21:04:40.4551383Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4554782Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::initResultRegs' 2025-06-01T21:04:40.4558109Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4561606Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::genCoreInsts' 2025-06-01T21:04:40.4564680Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4566741Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::genForSingleOutput' 2025-06-01T21:04:40.4570186Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'fbgemm::jit_conv_kernel_fp fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::getOrCreate(void)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4573504Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(244): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::getOrCreate' 2025-06-01T21:04:40.4577013Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4580684Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(276): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::genForTopOrBottomEdge' 2025-06-01T21:04:40.4584359Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4586476Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(278): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::initResultRegs' 2025-06-01T21:04:40.4588537Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4590594Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(280): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::genCoreInsts' 2025-06-01T21:04:40.4592613Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4956214Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(282): note: see declaration of 'fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::genForSingleOutput' 2025-06-01T21:04:40.4957622Z [1294/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackAWithRowOffset.cc.obj 2025-06-01T21:04:40.4959644Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4962605Z with 2025-06-01T21:04:40.4962945Z [ 2025-06-01T21:04:40.4963244Z T=uint8_t, 2025-06-01T21:04:40.4963628Z accT=int32_t, 2025-06-01T21:04:40.4964034Z inpType=uint8_t 2025-06-01T21:04:40.4964423Z ] 2025-06-01T21:04:40.4966199Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:40.4967871Z with 2025-06-01T21:04:40.4968190Z [ 2025-06-01T21:04:40.4968487Z T=uint8_t, 2025-06-01T21:04:40.4968856Z accT=int32_t 2025-06-01T21:04:40.4969212Z ] 2025-06-01T21:04:40.4971670Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4974165Z with 2025-06-01T21:04:40.4974474Z [ 2025-06-01T21:04:40.4974769Z T=uint8_t, 2025-06-01T21:04:40.4975125Z accT=int32_t 2025-06-01T21:04:40.4975468Z ] 2025-06-01T21:04:40.4977002Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:40.4978675Z with 2025-06-01T21:04:40.4978978Z [ 2025-06-01T21:04:40.4979280Z T=uint8_t, 2025-06-01T21:04:40.4979648Z accT=int32_t 2025-06-01T21:04:40.4980011Z ] 2025-06-01T21:04:40.4982763Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4985056Z with 2025-06-01T21:04:40.4985251Z [ 2025-06-01T21:04:40.4985462Z T=uint8_t, 2025-06-01T21:04:40.4985676Z accT=int16_t, 2025-06-01T21:04:40.4985896Z inpType=uint8_t 2025-06-01T21:04:40.4986175Z ] 2025-06-01T21:04:40.4986959Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:40.4987950Z with 2025-06-01T21:04:40.4988150Z [ 2025-06-01T21:04:40.4988372Z T=uint8_t, 2025-06-01T21:04:40.4988614Z accT=int16_t 2025-06-01T21:04:40.4988875Z ] 2025-06-01T21:04:40.4991226Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.4993827Z with 2025-06-01T21:04:40.4994137Z [ 2025-06-01T21:04:40.4994435Z T=uint8_t, 2025-06-01T21:04:40.4994790Z accT=int16_t 2025-06-01T21:04:40.4995156Z ] 2025-06-01T21:04:40.4996243Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:40.4997314Z with 2025-06-01T21:04:40.4997567Z [ 2025-06-01T21:04:40.4998218Z T=uint8_t, 2025-06-01T21:04:40.4998762Z accT=int16_t 2025-06-01T21:04:40.4999180Z ] 2025-06-01T21:04:40.5001919Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithRowOffset.cc(32): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.5004184Z with 2025-06-01T21:04:40.5004617Z [ 2025-06-01T21:04:40.5004932Z T=uint8_t, 2025-06-01T21:04:40.5005282Z accT=int32_t, 2025-06-01T21:04:40.5005695Z inpType=uint8_t 2025-06-01T21:04:40.5005963Z ] 2025-06-01T21:04:40.5007486Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:40.5009656Z with 2025-06-01T21:04:40.5009856Z [ 2025-06-01T21:04:40.5010024Z T=uint8_t, 2025-06-01T21:04:40.5010243Z accT=int32_t 2025-06-01T21:04:40.5010440Z ] 2025-06-01T21:04:40.5012700Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithRowOffset.cc(32): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.5015091Z with 2025-06-01T21:04:40.5015276Z [ 2025-06-01T21:04:40.5015525Z T=uint8_t, 2025-06-01T21:04:40.5015763Z accT=int32_t 2025-06-01T21:04:40.5015968Z ] 2025-06-01T21:04:40.5016952Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:40.5018898Z with 2025-06-01T21:04:40.5019225Z [ 2025-06-01T21:04:40.5019513Z T=uint8_t, 2025-06-01T21:04:40.5019878Z accT=int32_t 2025-06-01T21:04:40.5020205Z ] 2025-06-01T21:04:40.5022771Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithRowOffset.cc(32): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.5025240Z with 2025-06-01T21:04:40.5025543Z [ 2025-06-01T21:04:40.5025839Z T=uint8_t, 2025-06-01T21:04:40.5026169Z accT=int16_t, 2025-06-01T21:04:40.5026556Z inpType=uint8_t 2025-06-01T21:04:40.5026890Z ] 2025-06-01T21:04:40.5028650Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:40.5030315Z with 2025-06-01T21:04:40.5030630Z [ 2025-06-01T21:04:40.5030926Z T=uint8_t, 2025-06-01T21:04:40.5031337Z accT=int16_t 2025-06-01T21:04:40.5031716Z ] 2025-06-01T21:04:40.5034026Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithRowOffset.cc(32): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.5035539Z with 2025-06-01T21:04:40.5035736Z [ 2025-06-01T21:04:40.5035916Z T=uint8_t, 2025-06-01T21:04:40.5036171Z accT=int16_t 2025-06-01T21:04:40.5036382Z ] 2025-06-01T21:04:40.5037278Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:40.5038471Z with 2025-06-01T21:04:40.5038658Z [ 2025-06-01T21:04:40.5038818Z T=uint8_t, 2025-06-01T21:04:40.5039288Z accT=int16_t 2025-06-01T21:04:40.5039559Z ] 2025-06-01T21:04:40.5040859Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:40.5343447Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:40.5346343Z [1295/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackBMatrix.cc.obj 2025-06-01T21:04:40.5349607Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.5352276Z with 2025-06-01T21:04:40.5352614Z [ 2025-06-01T21:04:40.5352935Z T=int8_t, 2025-06-01T21:04:40.5353335Z accT=int32_t, 2025-06-01T21:04:40.5353757Z inpType=int8_t 2025-06-01T21:04:40.5354183Z ] 2025-06-01T21:04:40.5355488Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:40.5356831Z with 2025-06-01T21:04:40.5357097Z [ 2025-06-01T21:04:40.5357375Z T=int8_t, 2025-06-01T21:04:40.5357717Z accT=int32_t 2025-06-01T21:04:40.5358043Z ] 2025-06-01T21:04:40.5360449Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.5362811Z with 2025-06-01T21:04:40.5363159Z [ 2025-06-01T21:04:40.5363480Z T=int8_t, 2025-06-01T21:04:40.5363866Z accT=int32_t 2025-06-01T21:04:40.5364224Z ] 2025-06-01T21:04:40.5365679Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:40.5367363Z with 2025-06-01T21:04:40.5367666Z [ 2025-06-01T21:04:40.5367948Z T=int8_t, 2025-06-01T21:04:40.5368269Z accT=int32_t 2025-06-01T21:04:40.5368596Z ] 2025-06-01T21:04:40.5370119Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.5372095Z with 2025-06-01T21:04:40.5372404Z [ 2025-06-01T21:04:40.5372704Z T=int8_t, 2025-06-01T21:04:40.5373070Z accT=int16_t, 2025-06-01T21:04:40.5373495Z inpType=int8_t 2025-06-01T21:04:40.5373833Z ] 2025-06-01T21:04:40.5375222Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:40.5376693Z with 2025-06-01T21:04:40.5376994Z [ 2025-06-01T21:04:40.5377289Z T=int8_t, 2025-06-01T21:04:40.5377593Z accT=int16_t 2025-06-01T21:04:40.5377934Z ] 2025-06-01T21:04:40.5380340Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.5382563Z with 2025-06-01T21:04:40.5382842Z [ 2025-06-01T21:04:40.5383118Z T=int8_t, 2025-06-01T21:04:40.5383447Z accT=int16_t 2025-06-01T21:04:40.5383783Z ] 2025-06-01T21:04:40.5385120Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:40.5386273Z with 2025-06-01T21:04:40.5386446Z [ 2025-06-01T21:04:40.5386618Z T=int8_t, 2025-06-01T21:04:40.5386811Z accT=int16_t 2025-06-01T21:04:40.5387014Z ] 2025-06-01T21:04:40.5388525Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackBMatrix.cc(182): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.5390732Z with 2025-06-01T21:04:40.5391011Z [ 2025-06-01T21:04:40.5391282Z T=int8_t, 2025-06-01T21:04:40.5391716Z accT=int32_t, 2025-06-01T21:04:40.5392129Z inpType=int8_t 2025-06-01T21:04:40.5392503Z ] 2025-06-01T21:04:40.5393785Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:40.5396353Z with 2025-06-01T21:04:40.5397160Z [ 2025-06-01T21:04:40.5400273Z T=int8_t, 2025-06-01T21:04:40.5400860Z accT=int32_t 2025-06-01T21:04:40.5402118Z ] 2025-06-01T21:04:40.5404078Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackBMatrix.cc(182): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.5406369Z with 2025-06-01T21:04:40.5406712Z [ 2025-06-01T21:04:40.5407017Z T=int8_t, 2025-06-01T21:04:40.5407383Z accT=int32_t 2025-06-01T21:04:40.5407726Z ] 2025-06-01T21:04:40.5409098Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:40.5410661Z with 2025-06-01T21:04:40.5410965Z [ 2025-06-01T21:04:40.5411267Z T=int8_t, 2025-06-01T21:04:40.5411619Z accT=int32_t 2025-06-01T21:04:40.5412015Z ] 2025-06-01T21:04:40.5414289Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackBMatrix.cc(182): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.5415727Z with 2025-06-01T21:04:40.5415922Z [ 2025-06-01T21:04:40.5416147Z T=int8_t, 2025-06-01T21:04:40.5416363Z accT=int16_t, 2025-06-01T21:04:40.5416638Z inpType=int8_t 2025-06-01T21:04:40.5416943Z ] 2025-06-01T21:04:40.5417800Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:40.5418618Z with 2025-06-01T21:04:40.5418786Z [ 2025-06-01T21:04:40.5418950Z T=int8_t, 2025-06-01T21:04:40.5419381Z accT=int16_t 2025-06-01T21:04:40.5419590Z ] 2025-06-01T21:04:40.5421154Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackBMatrix.cc(182): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.5422387Z with 2025-06-01T21:04:40.5422571Z [ 2025-06-01T21:04:40.5422739Z T=int8_t, 2025-06-01T21:04:40.5422933Z accT=int16_t 2025-06-01T21:04:40.5423195Z ] 2025-06-01T21:04:40.5424028Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:40.5424995Z with 2025-06-01T21:04:40.5425156Z [ 2025-06-01T21:04:40.5425319Z T=int8_t, 2025-06-01T21:04:40.5425578Z accT=int16_t 2025-06-01T21:04:40.5425796Z ] 2025-06-01T21:04:40.5436298Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(150) : warning C4717: 'fbgemm::PackMatrix,signed char,short>::getRowOffsetBuffer': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:40.5439784Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(150) : warning C4717: 'fbgemm::PackMatrix,signed char,int>::getRowOffsetBuffer': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:40.5442195Z [1296/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackWeightsForConv.cc.obj 2025-06-01T21:04:40.5445019Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.5447169Z with 2025-06-01T21:04:40.5447428Z [ 2025-06-01T21:04:40.5447624Z T=int8_t, 2025-06-01T21:04:40.5447887Z accT=int32_t, 2025-06-01T21:04:40.5448194Z inpType=int8_t 2025-06-01T21:04:40.5448437Z ] 2025-06-01T21:04:40.5449182Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-06-01T21:04:40.5449960Z with 2025-06-01T21:04:40.5450131Z [ 2025-06-01T21:04:40.5450294Z T=int8_t, 2025-06-01T21:04:40.5450574Z accT=int32_t 2025-06-01T21:04:40.5450861Z ] 2025-06-01T21:04:40.5452121Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-06-01T21:04:40.5453411Z with 2025-06-01T21:04:40.5453579Z [ 2025-06-01T21:04:40.5453753Z T=int8_t, 2025-06-01T21:04:40.5453996Z accT=int32_t 2025-06-01T21:04:40.5454208Z ] 2025-06-01T21:04:40.5455001Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-06-01T21:04:40.5455934Z with 2025-06-01T21:04:40.5456109Z [ 2025-06-01T21:04:40.5456266Z T=int8_t, 2025-06-01T21:04:40.5456508Z accT=int32_t 2025-06-01T21:04:40.5456707Z ] 2025-06-01T21:04:40.5508632Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(150) : warning C4717: 'fbgemm::PackMatrix,signed char,int>::getRowOffsetBuffer': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:40.5511643Z [1297/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackMatrix.cc.obj 2025-06-01T21:04:40.5514342Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(150) : warning C4717: 'fbgemm::PackMatrix,signed char,short>::getRowOffsetBuffer': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:40.5518375Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:40.5523709Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:40.5527536Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:40.5531514Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:40.5534980Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:40.5539170Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:40.5543319Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:40.5547606Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:40.5551536Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:40.5557576Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:40.5561757Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:40.6943081Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(150) : warning C4717: 'fbgemm::PackMatrix,signed char,int>::getRowOffsetBuffer': recursive on all control paths, function will cause runtime stack overflow 2025-06-01T21:04:40.6945852Z [1298/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\QuantUtils.cc.obj 2025-06-01T21:04:40.7304009Z [1299/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackWeightMatrixForGConv.cc.obj 2025-06-01T21:04:40.7428921Z [1300/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\TransposeUtils.cc.obj 2025-06-01T21:04:40.7586490Z [1301/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackWeightsForDirectConv.cc.obj 2025-06-01T21:04:40.8764360Z [1302/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\RowWiseSparseAdagradFused.cc.obj 2025-06-01T21:04:40.8851075Z [1303/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\spmmUtils.cc.obj 2025-06-01T21:04:40.9402314Z [1304/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\SparseAdagrad.cc.obj 2025-06-01T21:04:40.9753748Z [1305/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\RefImplementations.cc.obj 2025-06-01T21:04:40.9879132Z [1306/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmBfloat16ConvertAvx2.cc.obj 2025-06-01T21:04:40.9976177Z [1307/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateI8Depthwise.cc.obj 2025-06-01T21:04:40.9992446Z [1308/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\Utils.cc.obj 2025-06-01T21:04:41.0058962Z [1309/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\EmbeddingSpMDMAvx2.cc.obj 2025-06-01T21:04:41.0986768Z [1310/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmFloat16ConvertAvx2.cc.obj 2025-06-01T21:04:41.1094516Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\FbgemmFloat16ConvertAvx2.cc(23): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:04:41.1095860Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\FbgemmFloat16ConvertAvx2.cc(39): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:04:41.1096936Z [1311/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\OptimizedKernelsAvx2.cc.obj 2025-06-01T21:04:41.1281310Z [1312/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmI8Depthwise3DAvx2.cc.obj 2025-06-01T21:04:41.1668163Z [1313/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmI8DepthwiseAvx2.cc.obj 2025-06-01T21:04:41.2220851Z [1314/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\PackDepthwiseConvMatrixAvx2.cc.obj 2025-06-01T21:04:41.2285269Z [1315/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\UtilsAvx2.cc.obj 2025-06-01T21:04:41.2377320Z [1316/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmSparseDenseAvx2.cc.obj 2025-06-01T21:04:41.2880178Z [1317/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmI8DepthwisePerChannelQuantAvx2.cc.obj 2025-06-01T21:04:41.3014981Z [1318/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmSparseDenseInt8Avx2.cc.obj 2025-06-01T21:04:41.3086298Z [1319/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\spmmUtilsAvx2.cc.obj 2025-06-01T21:04:41.3146830Z [1320/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\QuantUtilsAvx2.cc.obj 2025-06-01T21:04:41.3148293Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(1556): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:04:41.3149815Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(2038): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:04:41.3151509Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(2202): note: see reference to function template instantiation 'void fbgemm::FusedNBitRowwiseQuantizedSBHalfToFloatOrHalfAvx2(const uint8_t *,size_t,int,float *)' being compiled 2025-06-01T21:04:41.3153265Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(2042): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:04:41.3154576Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(2046): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:04:41.3155786Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(2050): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:04:41.3156977Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(2103): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:04:41.3158161Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(2108): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:04:41.3159392Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(2113): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:04:41.3161830Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(2118): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:04:41.3164294Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(2171): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:04:41.4343664Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(2224): note: see reference to function template instantiation 'void fbgemm::Fused8BitRowwiseQuantizedSBFloatToFloatOrHalfAvx2(const uint8_t *,size_t,int,float *)' being compiled 2025-06-01T21:04:41.4345664Z [1321/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmBfloat16ConvertAvx512.cc.obj 2025-06-01T21:04:41.4545931Z [1322/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmFloat16ConvertAvx512.cc.obj 2025-06-01T21:04:41.4775258Z [1323/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\EmbeddingSpMDMAvx512.cc.obj 2025-06-01T21:04:41.5211699Z [1324/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmFP16UKernelsIntrinsicAvx2.cc.obj 2025-06-01T21:04:41.5272048Z [1325/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmSparseDenseAvx512.cc.obj 2025-06-01T21:04:41.5431388Z [1326/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\UtilsAvx512.cc.obj 2025-06-01T21:04:41.5559990Z [1327/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\QuantUtilsAvx512.cc.obj 2025-06-01T21:04:41.5617024Z [1328/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmSparseDenseInt8Avx512.cc.obj 2025-06-01T21:04:41.5766058Z [1329/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmSparseDenseVectorInt8Avx512.cc.obj 2025-06-01T21:04:41.5788687Z [1330/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_autovec.dir\src\EmbeddingSpMDMAutovec.cc.obj 2025-06-01T21:04:41.6966530Z [1331/7616] Linking CXX shared library bin\asmjit.dll 2025-06-01T21:04:41.7788051Z [1332/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmFP16UKernelsIntrinsicAvx512.cc.obj 2025-06-01T21:04:41.7855725Z [1333/7616] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\algorithm.cc.obj 2025-06-01T21:04:41.8069842Z [1334/7616] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmFP16UKernelsIntrinsicAvx512_256.cc.obj 2025-06-01T21:04:41.8250364Z [1335/7616] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\allgatherv.cc.obj 2025-06-01T21:04:41.8554192Z [1336/7616] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\allgather.cc.obj 2025-06-01T21:04:42.0074381Z [1337/7616] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\allreduce_local.cc.obj 2025-06-01T21:04:42.0146786Z [1338/7616] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\alltoall.cc.obj 2025-06-01T21:04:42.0165849Z [1339/7616] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\allreduce.cc.obj 2025-06-01T21:04:42.0749737Z [1340/7616] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\alltoallv.cc.obj 2025-06-01T21:04:42.0763850Z [1341/7616] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\broadcast.cc.obj 2025-06-01T21:04:42.0822798Z [1342/7616] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\barrier.cc.obj 2025-06-01T21:04:42.2580479Z [1343/7616] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\gatherv.cc.obj 2025-06-01T21:04:42.2841510Z [1344/7616] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\gather.cc.obj 2025-06-01T21:04:42.2954832Z [1345/7616] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\types.cc.obj 2025-06-01T21:04:42.3081656Z [1346/7616] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\context.cc.obj 2025-06-01T21:04:42.3243612Z [1347/7616] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\reduce.cc.obj 2025-06-01T21:04:42.3391120Z [1348/7616] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\scatter.cc.obj 2025-06-01T21:04:42.4810920Z [1349/7616] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\common\logging.cc.obj 2025-06-01T21:04:42.5065233Z [1350/7616] Building C object third_party\ittapi\CMakeFiles\ittnotify.dir\src\ittnotify\jitprofiling.c.obj 2025-06-01T21:04:42.5196322Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:04:42.5197827Z [1351/7616] Building C object third_party\ittapi\CMakeFiles\ittnotify.dir\src\ittnotify\ittnotify_static.c.obj 2025-06-01T21:04:42.5687383Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:04:42.5688283Z [1352/7616] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\store.cc.obj 2025-06-01T21:04:42.5912256Z [1353/7616] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\hash_store.cc.obj 2025-06-01T21:04:42.6020247Z [1354/7616] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\context.cc.obj 2025-06-01T21:04:42.6091089Z [1355/7616] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\file_store.cc.obj 2025-06-01T21:04:42.6356152Z [1356/7616] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\buffer.cc.obj 2025-06-01T21:04:42.7203677Z [1357/7616] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\address.cc.obj 2025-06-01T21:04:42.7218673Z [1358/7616] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\prefix_store.cc.obj 2025-06-01T21:04:42.7698299Z [1359/7616] Linking CXX static library lib\onnx_proto.lib 2025-06-01T21:04:42.7931000Z [1360/7616] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\common\utils.cc.obj 2025-06-01T21:04:42.7995884Z [1361/7616] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\unbound_buffer.cc.obj 2025-06-01T21:04:42.8318622Z [1362/7616] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\pair.cc.obj 2025-06-01T21:04:42.8550281Z [1363/7616] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\context.cc.obj 2025-06-01T21:04:42.8612860Z [1364/7616] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\device.cc.obj 2025-06-01T21:04:42.8679183Z [1365/7616] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\common\win.cc.obj 2025-06-01T21:04:42.9375987Z [1366/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\assertions.cc.obj 2025-06-01T21:04:43.0542647Z [1367/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\interned_strings.cc.obj 2025-06-01T21:04:43.0764083Z [1368/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\status.cc.obj 2025-06-01T21:04:43.2139246Z [1369/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\model_helpers.cc.obj 2025-06-01T21:04:43.2568729Z [1370/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\ir_pb_converter.cc.obj 2025-06-01T21:04:43.3286521Z [1371/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\attr_proto_util.cc.obj 2025-06-01T21:04:43.4106874Z [1372/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\controlflow\defs.cc.obj 2025-06-01T21:04:43.5006231Z [1373/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\controlflow\utils.cc.obj 2025-06-01T21:04:43.5360485Z [1374/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\controlflow\old.cc.obj 2025-06-01T21:04:43.5563545Z [1375/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\checker.cc.obj 2025-06-01T21:04:43.5929820Z [1376/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\path.cc.obj 2025-06-01T21:04:43.6618723Z [1377/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\data_type_utils.cc.obj 2025-06-01T21:04:43.6959082Z [1378/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\function.cc.obj 2025-06-01T21:04:43.7690026Z [1379/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\generator\defs.cc.obj 2025-06-01T21:04:43.8305545Z [1380/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\generator\old.cc.obj 2025-06-01T21:04:43.9039814Z [1381/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\generator\utils.cc.obj 2025-06-01T21:04:43.9895181Z [1382/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\image\defs.cc.obj 2025-06-01T21:04:44.0178629Z [1383/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\logical\defs.cc.obj 2025-06-01T21:04:44.0695078Z [1384/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\logical\old.cc.obj 2025-06-01T21:04:44.1207327Z [1385/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\math\utils.cc.obj 2025-06-01T21:04:44.1418360Z [1386/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\math\old.cc.obj 2025-06-01T21:04:44.1443340Z [1387/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\math\defs.cc.obj 2025-06-01T21:04:44.3275520Z [1388/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\nn\defs.cc.obj 2025-06-01T21:04:44.4063462Z [1389/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\nn\old.cc.obj 2025-06-01T21:04:44.4208343Z [1390/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\object_detection\defs.cc.obj 2025-06-01T21:04:44.4883464Z [1391/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\optional\defs.cc.obj 2025-06-01T21:04:44.5161887Z [1392/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\optional\old.cc.obj 2025-06-01T21:04:44.5331326Z [1393/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\object_detection\old.cc.obj 2025-06-01T21:04:44.5425167Z [1394/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\parser.cc.obj 2025-06-01T21:04:44.5442634Z [1395/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\printer.cc.obj 2025-06-01T21:04:44.8002240Z [1396/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\quantization\defs.cc.obj 2025-06-01T21:04:44.8597361Z [1397/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\quantization\old.cc.obj 2025-06-01T21:04:44.9041524Z [1398/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\reduction\defs.cc.obj 2025-06-01T21:04:44.9120972Z [1399/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\reduction\utils.cc.obj 2025-06-01T21:04:44.9471014Z [1400/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\reduction\old.cc.obj 2025-06-01T21:04:44.9662972Z [1401/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\rnn\defs.cc.obj 2025-06-01T21:04:44.9809441Z [1402/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\rnn\old.cc.obj 2025-06-01T21:04:45.0067308Z [1403/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\schema.cc.obj 2025-06-01T21:04:45.2550754Z [1404/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\sequence\defs.cc.obj 2025-06-01T21:04:45.2874629Z [1405/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\shape_inference.cc.obj 2025-06-01T21:04:45.3794419Z [1406/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor\defs.cc.obj 2025-06-01T21:04:45.3876768Z [1407/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor\utils.cc.obj 2025-06-01T21:04:45.3999421Z [1408/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor_proto_util.cc.obj 2025-06-01T21:04:45.4087834Z [1409/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor_util.cc.obj 2025-06-01T21:04:45.4527511Z [1410/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor\old.cc.obj 2025-06-01T21:04:45.4955139Z [1411/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\text\defs.cc.obj 2025-06-01T21:04:45.5272504Z [1412/7616] Building RC object third_party\ideep\mkl-dnn\src\CMakeFiles\dnnl.dir\version.rc.res 2025-06-01T21:04:45.7103488Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-06-01T21:04:45.7103820Z 2025-06-01T21:04:45.7103825Z 2025-06-01T21:04:45.7103993Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-06-01T21:04:45.7104269Z 2025-06-01T21:04:45.7104272Z 2025-06-01T21:04:45.7104276Z 2025-06-01T21:04:45.7104280Z 2025-06-01T21:04:45.7104653Z [1413/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\traditionalml\old.cc.obj 2025-06-01T21:04:45.7190375Z [1414/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\traditionalml\defs.cc.obj 2025-06-01T21:04:45.8342146Z [1415/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\version_converter\helper.cc.obj 2025-06-01T21:04:45.8430217Z [1416/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\training\defs.cc.obj 2025-06-01T21:04:45.8795642Z [1417/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\version_converter\convert.cc.obj 2025-06-01T21:04:45.8886323Z [1418/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\inliner\inliner.cc.obj 2025-06-01T21:04:45.9548602Z [1419/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\bfloat16.cpp.obj 2025-06-01T21:04:46.1940653Z [1420/7616] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\shape_inference\implementation.cc.obj 2025-06-01T21:04:46.3419766Z [1421/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\batch_normalization.cpp.obj 2025-06-01T21:04:46.5858064Z [1422/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\binary.cpp.obj 2025-06-01T21:04:46.6375363Z [1423/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\broadcast_strategy.cpp.obj 2025-06-01T21:04:46.6874012Z [1424/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\dnnl_debug_autogenerated.cpp.obj 2025-06-01T21:04:46.7031904Z [1425/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\dnnl_threadpool.cpp.obj 2025-06-01T21:04:46.7986855Z [1426/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\convolution.cpp.obj 2025-06-01T21:04:46.8080945Z [1427/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\cache_blob_id.cpp.obj 2025-06-01T21:04:46.8186452Z [1428/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\convolution_pd.cpp.obj 2025-06-01T21:04:46.8983908Z [1429/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\concat.cpp.obj 2025-06-01T21:04:47.0078149Z [1430/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\deconvolution.cpp.obj 2025-06-01T21:04:47.1517859Z [1431/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\dnnl_debug.cpp.obj 2025-06-01T21:04:47.1575651Z [1432/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\experimental.cpp.obj 2025-06-01T21:04:47.1763849Z [1433/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\float4.cpp.obj 2025-06-01T21:04:47.2001111Z [1434/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\float8.cpp.obj 2025-06-01T21:04:47.2610128Z [1435/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\fpmath_mode.cpp.obj 2025-06-01T21:04:47.5344933Z [1436/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\eltwise.cpp.obj 2025-06-01T21:04:47.5573760Z [1437/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\ittnotify.cpp.obj 2025-06-01T21:04:47.6194825Z [1438/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\engine.cpp.obj 2025-06-01T21:04:47.9014179Z [1439/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\gemm.cpp.obj 2025-06-01T21:04:48.0455371Z [1440/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\kernel_cache.cpp.obj 2025-06-01T21:04:48.0545713Z [1441/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\group_normalization.cpp.obj 2025-06-01T21:04:48.1386170Z [1442/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\layer_normalization.cpp.obj 2025-06-01T21:04:48.2638384Z [1443/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\inner_product.cpp.obj 2025-06-01T21:04:48.4546314Z [1444/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\lrn.cpp.obj 2025-06-01T21:04:48.4937014Z [1445/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory.cpp.obj 2025-06-01T21:04:48.5190822Z [1446/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\matmul.cpp.obj 2025-06-01T21:04:48.6236841Z [1447/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_debug.cpp.obj 2025-06-01T21:04:48.8947184Z [1448/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_desc.cpp.obj 2025-06-01T21:04:48.9696040Z [1449/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_storage.cpp.obj 2025-06-01T21:04:49.0778724Z [1450/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_desc_wrapper.cpp.obj 2025-06-01T21:04:49.0855492Z [1451/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_tracking.cpp.obj 2025-06-01T21:04:49.3568486Z [1452/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_zero_pad.cpp.obj 2025-06-01T21:04:49.3862935Z [1453/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\pooling.cpp.obj 2025-06-01T21:04:49.4106031Z [1454/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\prelu.cpp.obj 2025-06-01T21:04:49.6698425Z [1455/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive.cpp.obj 2025-06-01T21:04:49.8361701Z [1456/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_attr.cpp.obj 2025-06-01T21:04:49.9070575Z [1457/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_desc_iface.cpp.obj 2025-06-01T21:04:49.9591733Z [1458/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_exec_types.cpp.obj 2025-06-01T21:04:50.0877998Z [1459/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_cache.cpp.obj 2025-06-01T21:04:50.1969975Z [1460/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_hashing.cpp.obj 2025-06-01T21:04:50.2526161Z [1461/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\query.cpp.obj 2025-06-01T21:04:50.4542291Z [1462/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_iface.cpp.obj 2025-06-01T21:04:50.5188027Z [1463/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\reduction.cpp.obj 2025-06-01T21:04:50.7180138Z [1464/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\reorder.cpp.obj 2025-06-01T21:04:50.7953750Z [1465/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\rnn.cpp.obj 2025-06-01T21:04:50.8553684Z [1466/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\resampling.cpp.obj 2025-06-01T21:04:50.9093151Z [1467/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\rw_mutex.cpp.obj 2025-06-01T21:04:50.9970472Z [1468/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\scratchpad.cpp.obj 2025-06-01T21:04:51.0988358Z [1469/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\scratchpad_debug.cpp.obj 2025-06-01T21:04:51.3444450Z [1470/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\serialization.cpp.obj 2025-06-01T21:04:51.4100262Z [1471/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\shuffle.cpp.obj 2025-06-01T21:04:51.6227895Z [1472/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\softmax.cpp.obj 2025-06-01T21:04:51.6310964Z [1473/7616] Building ASM_MASM object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\ittnotify\ittptmark64.asm.obj 2025-06-01T21:04:51.6790301Z Microsoft (R) Macro Assembler (x64) Version 14.29.30158.0 2025-06-01T21:04:51.6790607Z 2025-06-01T21:04:51.6790774Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-06-01T21:04:51.6791054Z 2025-06-01T21:04:51.6791059Z 2025-06-01T21:04:51.6791063Z 2025-06-01T21:04:51.6791443Z Assembling: C:\actions-runner\_work\pytorch\pytorch\third_party\ideep\mkl-dnn\src\common\ittnotify\ittptmark64.asm 2025-06-01T21:04:51.6791931Z 2025-06-01T21:04:51.6792274Z [1474/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\stream.cpp.obj 2025-06-01T21:04:51.7549648Z [1475/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\stream_profiler.cpp.obj 2025-06-01T21:04:51.8049107Z [1476/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\sum.cpp.obj 2025-06-01T21:04:51.9309973Z [1477/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\utils.cpp.obj 2025-06-01T21:04:51.9531749Z [1478/7616] Building C object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\ittnotify\ittnotify_static.c.obj 2025-06-01T21:04:51.9625519Z [1479/7616] Building C object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\ittnotify\jitprofiling.c.obj 2025-06-01T21:04:52.1561786Z [1480/7616] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\verbose.cpp.obj 2025-06-01T21:04:52.5752301Z [1481/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\bfloat16.cpp.obj 2025-06-01T21:04:52.6304639Z [1482/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\binary_injector_utils.cpp.obj 2025-06-01T21:04:52.7391105Z [1483/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_batch_normalization_utils.cpp.obj 2025-06-01T21:04:52.7700117Z [1484/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_batch_normalization_list.cpp.obj 2025-06-01T21:04:53.0072805Z [1485/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_concat.cpp.obj 2025-06-01T21:04:53.0755348Z [1486/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_binary_list.cpp.obj 2025-06-01T21:04:53.1401784Z [1487/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_convolution_list.cpp.obj 2025-06-01T21:04:53.3177997Z [1488/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_deconvolution_list.cpp.obj 2025-06-01T21:04:53.4793491Z [1489/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_eltwise_list.cpp.obj 2025-06-01T21:04:53.4878612Z [1490/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_engine.cpp.obj 2025-06-01T21:04:53.7582948Z [1491/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_group_normalization_list.cpp.obj 2025-06-01T21:04:53.7754752Z [1492/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_inner_product_list.cpp.obj 2025-06-01T21:04:54.0844163Z [1493/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_layer_normalization_list.cpp.obj 2025-06-01T21:04:54.1195162Z [1494/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_lrn_list.cpp.obj 2025-06-01T21:04:54.1893073Z [1495/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_pooling_list.cpp.obj 2025-06-01T21:04:54.4273695Z [1496/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_prelu_list.cpp.obj 2025-06-01T21:04:54.5504667Z [1497/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_resampling_list.cpp.obj 2025-06-01T21:04:54.5603655Z [1498/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_reduction_list.cpp.obj 2025-06-01T21:04:54.9011851Z [1499/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_rnn_list.cpp.obj 2025-06-01T21:04:54.9095009Z [1500/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_shuffle_list.cpp.obj 2025-06-01T21:04:55.0960926Z [1501/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_sum.cpp.obj 2025-06-01T21:04:55.1342289Z [1502/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\float16.cpp.obj 2025-06-01T21:04:55.1472767Z [1503/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_softmax_list.cpp.obj 2025-06-01T21:04:55.3727959Z [1504/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_convolution.cpp.obj 2025-06-01T21:04:55.6095822Z [1505/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_inner_product.cpp.obj 2025-06-01T21:04:55.6258005Z [1506/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_convolution_utils.cpp.obj 2025-06-01T21:04:55.9213807Z [1507/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_inner_product_utils.cpp.obj 2025-06-01T21:04:55.9581708Z [1508/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_x8s8s32x_conv_zp_src_pad_comp.cpp.obj 2025-06-01T21:04:56.1320443Z [1509/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_x8s8s32x_inner_product.cpp.obj 2025-06-01T21:04:56.1349370Z [1510/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_x8s8s32x_convolution_utils.cpp.obj 2025-06-01T21:04:56.1619635Z [1511/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_x8s8s32x_convolution.cpp.obj 2025-06-01T21:04:56.3777749Z [1512/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\nchw_pooling.cpp.obj 2025-06-01T21:04:56.6358540Z [1513/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ncsp_batch_normalization.cpp.obj 2025-06-01T21:04:56.6513379Z [1514/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ncsp_group_normalization.cpp.obj 2025-06-01T21:04:56.9496941Z [1515/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\nhwc_pooling.cpp.obj 2025-06-01T21:04:56.9564937Z [1516/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\nspc_batch_normalization.cpp.obj 2025-06-01T21:04:57.0927951Z [1517/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\primitive_attr_postops.cpp.obj 2025-06-01T21:04:57.1239496Z [1518/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\platform.cpp.obj 2025-06-01T21:04:57.1928916Z [1519/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_batch_normalization.cpp.obj 2025-06-01T21:04:57.3422936Z [1520/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_binary.cpp.obj 2025-06-01T21:04:57.5635262Z [1521/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_convolution_int8.cpp.obj 2025-06-01T21:04:57.6316110Z [1522/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_convolution.cpp.obj 2025-06-01T21:04:57.9647542Z [1523/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_eltwise.cpp.obj 2025-06-01T21:04:57.9845821Z [1524/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_deconvolution.cpp.obj 2025-06-01T21:04:58.0705534Z [1525/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_group_normalization.cpp.obj 2025-06-01T21:04:58.0805741Z [1526/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_inner_product.cpp.obj 2025-06-01T21:04:58.1163326Z [1527/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_inner_product_int8.cpp.obj 2025-06-01T21:04:58.3008958Z [1528/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_layer_normalization.cpp.obj 2025-06-01T21:04:58.5611347Z [1529/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_pooling.cpp.obj 2025-06-01T21:04:58.5765021Z [1530/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_lrn.cpp.obj 2025-06-01T21:04:58.9531671Z [1531/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_reduction.cpp.obj 2025-06-01T21:04:58.9550336Z [1532/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_prelu.cpp.obj 2025-06-01T21:04:59.0162939Z [1533/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_shuffle.cpp.obj 2025-06-01T21:04:59.0260327Z [1534/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_softmax.cpp.obj 2025-06-01T21:04:59.1493861Z [1535/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_resampling.cpp.obj 2025-06-01T21:04:59.1832292Z [1536/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\scale_utils.cpp.obj 2025-06-01T21:04:59.3985252Z [1537/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\bf16\ref_gemm_bf16.cpp.obj 2025-06-01T21:04:59.5194896Z [1538/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\f32\gemm_utils_f32.cpp.obj 2025-06-01T21:04:59.5794329Z [1539/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\simple_concat.cpp.obj 2025-06-01T21:04:59.5918249Z [1540/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\simple_layer_normalization.cpp.obj 2025-06-01T21:04:59.6158826Z [1541/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\f32\ref_gemm_f32.cpp.obj 2025-06-01T21:04:59.8415838Z [1542/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\zero_point_utils.cpp.obj 2025-06-01T21:04:59.8883724Z [1543/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\simple_sum.cpp.obj 2025-06-01T21:04:59.9924270Z [1544/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\simple_resampling.cpp.obj 2025-06-01T21:05:00.3171278Z [1545/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\gemm.cpp.obj 2025-06-01T21:05:00.4568800Z [1546/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\gemm_pack.cpp.obj 2025-06-01T21:05:00.5613451Z [1547/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\s8x8s32\ref_gemm_s8x8s32.cpp.obj 2025-06-01T21:05:00.5914056Z [1548/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\s8x8s32\simple_gemm_s8s8s32.cpp.obj 2025-06-01T21:05:00.6961704Z [1549/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\cpu_matmul_list.cpp.obj 2025-06-01T21:05:00.9110124Z [1550/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\gemm_bf16_matmul.cpp.obj 2025-06-01T21:05:00.9842840Z [1551/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\gemm_f32_matmul.cpp.obj 2025-06-01T21:05:01.0543091Z [1552/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\gemm_x8s8s32x_matmul.cpp.obj 2025-06-01T21:05:01.2802394Z [1553/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\ref_matmul.cpp.obj 2025-06-01T21:05:01.5229847Z [1554/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\ref_matmul_int8.cpp.obj 2025-06-01T21:05:01.5250056Z [1555/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\ref_sparse_matmul.cpp.obj 2025-06-01T21:05:01.5625068Z [1556/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder.cpp.obj 2025-06-01T21:05:01.7559506Z [1557/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_comp_bf16_s8.cpp.obj 2025-06-01T21:05:01.9910023Z [1558/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_comp_f32_s8.cpp.obj 2025-06-01T21:05:02.0433410Z [1559/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_comp_s8_s8.cpp.obj 2025-06-01T21:05:02.1953053Z [1560/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_bf16.cpp.obj 2025-06-01T21:05:02.4485985Z [1561/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f16.cpp.obj 2025-06-01T21:05:02.6357197Z [1562/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_f16.cpp.obj 2025-06-01T21:05:02.6673180Z [1563/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_bf16.cpp.obj 2025-06-01T21:05:02.7246629Z [1564/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_f32.cpp.obj 2025-06-01T21:05:02.9065994Z [1565/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_fp8.cpp.obj 2025-06-01T21:05:03.0174150Z [1566/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_s32.cpp.obj 2025-06-01T21:05:03.1937208Z [1567/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_s8.cpp.obj 2025-06-01T21:05:03.2273844Z [1568/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_u8.cpp.obj 2025-06-01T21:05:03.4494837Z [1569/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_fp4.cpp.obj 2025-06-01T21:05:03.6528671Z [1570/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_fp8.cpp.obj 2025-06-01T21:05:03.7883409Z [1571/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_s32.cpp.obj 2025-06-01T21:05:03.8157472Z [1572/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_s4.cpp.obj 2025-06-01T21:05:04.0942995Z [1573/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_u4.cpp.obj 2025-06-01T21:05:04.1265658Z [1574/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_s8.cpp.obj 2025-06-01T21:05:04.3089268Z [1575/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\brgemm_cell_common.cpp.obj 2025-06-01T21:05:04.3314535Z [1576/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_u8.cpp.obj 2025-06-01T21:05:04.4725420Z [1577/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\cell_common.cpp.obj 2025-06-01T21:05:04.7029217Z [1578/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\cell_gru.cpp.obj 2025-06-01T21:05:04.8181751Z [1579/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\cell_gru_lbr.cpp.obj 2025-06-01T21:05:04.8293133Z [1580/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_gru.cpp.obj 2025-06-01T21:05:04.8890448Z [1581/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\jit_utils\linux_perf\linux_perf.cpp.obj 2025-06-01T21:05:05.1041579Z [1582/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_lstm.cpp.obj 2025-06-01T21:05:05.1138257Z [1583/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_gru_lbr.cpp.obj 2025-06-01T21:05:05.3018943Z [1584/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_lstm_projection.cpp.obj 2025-06-01T21:05:05.3468626Z [1585/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_rnn.cpp.obj 2025-06-01T21:05:05.7022879Z [1586/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_rnn.cpp.obj 2025-06-01T21:05:05.7078606Z [1587/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\jit_utils\jit_utils.cpp.obj 2025-06-01T21:05:05.7890885Z [1588/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\rnn_utils.cpp.obj 2025-06-01T21:05:05.8517683Z [1589/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\amx_tile_configure.cpp.obj 2025-06-01T21:05:06.0664981Z [1590/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\brgemm.cpp.obj 2025-06-01T21:05:06.1174580Z [1591/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\brgemm_containers.cpp.obj 2025-06-01T21:05:06.2516638Z [1592/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\brgemm_utils.cpp.obj 2025-06-01T21:05:06.3094252Z [1593/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\capi\brgemm_api.cpp.obj 2025-06-01T21:05:06.7293275Z [1594/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\jit_brdgmm_kernel.cpp.obj 2025-06-01T21:05:06.7381824Z [1595/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\jit_brgemm_amx_uker.cpp.obj 2025-06-01T21:05:06.7904964Z [1596/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\cpu_barrier.cpp.obj 2025-06-01T21:05:06.8320681Z [1597/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\jit_brgemm_kernel.cpp.obj 2025-06-01T21:05:06.9655522Z [1598/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\cpu_isa_traits.cpp.obj 2025-06-01T21:05:07.0597290Z [1599/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\cpu_reducer.cpp.obj 2025-06-01T21:05:07.2181385Z [1600/7616] 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-06-01T21:05:07.3274788Z [1601/7616] 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-06-01T21:05:07.7338723Z [1602/7616] 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-06-01T21:05:07.7430966Z [1603/7616] 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-06-01T21:05:07.7916842Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:07.7917705Z [1604/7616] 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-06-01T21:05:07.8307819Z [1605/7616] 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-06-01T21:05:07.8904624Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:07.8905694Z [1606/7616] 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-06-01T21:05:08.0075774Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:08.0077440Z [1607/7616] 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-06-01T21:05:08.1883574Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:08.1884415Z [1608/7616] 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-06-01T21:05:08.2549513Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:08.2550721Z [1609/7616] 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-06-01T21:05:08.7200632Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:08.7201404Z [1610/7616] 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-06-01T21:05:08.7640333Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:08.7641903Z [1611/7616] 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-06-01T21:05:08.7737035Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:08.7738277Z [1612/7616] 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-06-01T21:05:08.7952335Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:08.7953140Z [1613/7616] 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-06-01T21:05:08.9222532Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:08.9224011Z [1614/7616] 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-06-01T21:05:08.9535127Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:08.9536577Z [1615/7616] 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-06-01T21:05:09.0846566Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:09.0848028Z [1616/7616] 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-06-01T21:05:09.2118167Z [1617/7616] 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-06-01T21:05:09.6752182Z [1618/7616] 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-06-01T21:05:09.6994186Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:09.6995081Z [1619/7616] 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-06-01T21:05:09.7644605Z [1620/7616] 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-06-01T21:05:09.7858121Z [1621/7616] 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-06-01T21:05:09.8371500Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:09.8372409Z [1622/7616] 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-06-01T21:05:09.9745656Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:09.9746566Z [1623/7616] 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-06-01T21:05:10.0956123Z [1624/7616] 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-06-01T21:05:10.1542592Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:10.1543459Z [1625/7616] 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-06-01T21:05:10.6317047Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:10.6317932Z [1626/7616] 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-06-01T21:05:10.6563061Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:10.6563960Z [1627/7616] 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-06-01T21:05:10.8163337Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:10.8164175Z [1628/7616] 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-06-01T21:05:10.8260886Z [1629/7616] 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-06-01T21:05:10.9045356Z [1630/7616] 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-06-01T21:05:10.9448166Z [1631/7616] 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-06-01T21:05:11.0790456Z [1632/7616] 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-06-01T21:05:11.1496569Z [1633/7616] 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-06-01T21:05:11.5875159Z [1634/7616] 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-06-01T21:05:11.6914163Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:11.6915621Z [1635/7616] 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-06-01T21:05:11.7059833Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:11.7061289Z [1636/7616] 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-06-01T21:05:11.7903162Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:11.7903974Z [1637/7616] 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-06-01T21:05:11.8807583Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:11.8808918Z [1638/7616] 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-06-01T21:05:11.9704224Z [1639/7616] 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-06-01T21:05:11.9790278Z [1640/7616] 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-06-01T21:05:12.1331904Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:12.1332796Z [1641/7616] 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-06-01T21:05:12.5860978Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:12.5862379Z [1642/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\gemm_driver.cpp.obj 2025-06-01T21:05:12.5989342Z [1643/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\gemm_pack.cpp.obj 2025-06-01T21:05:12.6707544Z [1644/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\gemm_info.cpp.obj 2025-06-01T21:05:12.7960488Z [1645/7616] 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-06-01T21:05:12.8392939Z [1646/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\gemv_driver.cpp.obj 2025-06-01T21:05:12.8656510Z [1647/7616] 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-06-01T21:05:12.9205031Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:12.9205879Z [1648/7616] 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-06-01T21:05:13.2250614Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:13.2251420Z [1649/7616] 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-06-01T21:05:13.4618993Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:13.4619810Z [1650/7616] 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-06-01T21:05:13.5156376Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:13.5157700Z [1651/7616] 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-06-01T21:05:13.7272812Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:13.7274336Z [1652/7616] 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-06-01T21:05:13.7365659Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:13.7366951Z [1653/7616] 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-06-01T21:05:13.7953128Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:13.7953947Z [1654/7616] 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-06-01T21:05:13.8517339Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:13.8518187Z [1655/7616] 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-06-01T21:05:13.8813994Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:13.8814902Z [1656/7616] 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-06-01T21:05:14.2108060Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:14.2108937Z [1657/7616] 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-06-01T21:05:14.3820621Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:14.3821659Z [1658/7616] 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-06-01T21:05:14.5147374Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:14.5149070Z [1659/7616] 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-06-01T21:05:14.6670993Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:14.6672533Z [1660/7616] 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-06-01T21:05:14.7743164Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:14.7744016Z [1661/7616] 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-06-01T21:05:14.7838785Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:14.7839612Z [1662/7616] 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-06-01T21:05:14.7890573Z [1663/7616] 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-06-01T21:05:14.8304414Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:14.8305416Z [1664/7616] 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-06-01T21:05:15.2714902Z [1665/7616] 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-06-01T21:05:15.3502422Z [1666/7616] 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-06-01T21:05:15.3681063Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:15.3682259Z [1667/7616] 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-06-01T21:05:15.5867293Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:15.5868261Z [1668/7616] 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-06-01T21:05:15.7158167Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:15.7159012Z [1669/7616] 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-06-01T21:05:15.7506172Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:15.7507139Z [1670/7616] 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-06-01T21:05:15.7835474Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:15.7837132Z [1671/7616] 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-06-01T21:05:15.8029250Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:15.8030153Z [1672/7616] 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-06-01T21:05:16.2425716Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:16.2426573Z [1673/7616] 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-06-01T21:05:16.2693776Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:16.2695403Z [1674/7616] 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-06-01T21:05:16.4236090Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:16.4237020Z [1675/7616] 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-06-01T21:05:16.5820210Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:16.5821185Z [1676/7616] 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-06-01T21:05:16.6328422Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:16.6329288Z [1677/7616] 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-06-01T21:05:16.6673963Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:16.6675504Z [1678/7616] 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-06-01T21:05:16.6993659Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:16.6994580Z [1679/7616] 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-06-01T21:05:16.8449467Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:16.8450986Z [1680/7616] 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-06-01T21:05:17.2268780Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:17.2270437Z [1681/7616] 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-06-01T21:05:17.2626551Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:17.2627380Z [1682/7616] 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-06-01T21:05:17.4626856Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:17.4627652Z [1683/7616] 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-06-01T21:05:17.5997222Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:17.5998028Z [1684/7616] 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-06-01T21:05:17.6567086Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:17.6567980Z [1685/7616] 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-06-01T21:05:17.6658085Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:17.6658887Z [1686/7616] 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-06-01T21:05:17.7101956Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:17.7103416Z [1687/7616] 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-06-01T21:05:17.8326954Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:17.8327765Z [1688/7616] 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-06-01T21:05:18.1247572Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:18.1248857Z [1689/7616] 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-06-01T21:05:18.2823009Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:18.2823980Z [1690/7616] 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-06-01T21:05:18.4439565Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:18.4440477Z [1691/7616] 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-06-01T21:05:18.5153854Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:18.5155428Z [1692/7616] 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-06-01T21:05:18.6712020Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:18.6712866Z [1693/7616] 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-06-01T21:05:18.6887955Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:18.6889398Z [1694/7616] 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-06-01T21:05:18.6983689Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:18.6984542Z [1695/7616] 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-06-01T21:05:18.7337542Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:18.7338783Z [1696/7616] 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-06-01T21:05:19.1005957Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:19.1006791Z [1697/7616] 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-06-01T21:05:19.1918822Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:19.1919702Z [1698/7616] 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-06-01T21:05:19.3913081Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:19.3913911Z [1699/7616] 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-06-01T21:05:19.4752966Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:19.4754408Z [1700/7616] 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-06-01T21:05:19.6521836Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:19.6522673Z [1701/7616] 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-06-01T21:05:19.6792026Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:19.6793408Z [1702/7616] 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-06-01T21:05:19.7280414Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:19.7281282Z [1703/7616] 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-06-01T21:05:19.7843240Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:19.7844619Z [1704/7616] 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-06-01T21:05:20.0485158Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:20.0486111Z [1705/7616] 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-06-01T21:05:20.2820847Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-06-01T21:05:20.2821610Z [1706/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm_bf16_convolution.cpp.obj 2025-06-01T21:05:20.4624549Z [1707/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm_bf16_inner_product.cpp.obj 2025-06-01T21:05:20.4973381Z [1708/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\injectors\injector_utils.cpp.obj 2025-06-01T21:05:20.6687545Z [1709/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\ip_convolution.cpp.obj 2025-06-01T21:05:20.6810626Z [1710/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\injectors\jit_uni_binary_injector.cpp.obj 2025-06-01T21:05:20.7084585Z [1711/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\injectors\jit_uni_postops_injector.cpp.obj 2025-06-01T21:05:20.7714450Z [1712/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\injectors\jit_uni_eltwise_injector.cpp.obj 2025-06-01T21:05:21.0072413Z [1713/7616] 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-06-01T21:05:21.3640573Z [1714/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx2_1x1_convolution.cpp.obj 2025-06-01T21:05:21.4592254Z [1715/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx2_conv_kernel_f32.cpp.obj 2025-06-01T21:05:21.4953804Z [1716/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx2_convolution.cpp.obj 2025-06-01T21:05:21.6979440Z [1717/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_common_1x1_convolution.cpp.obj 2025-06-01T21:05:21.7429385Z [1718/7616] 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-06-01T21:05:21.7606050Z [1719/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_common_conv_kernel.cpp.obj 2025-06-01T21:05:21.8441038Z [1720/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_common_convolution.cpp.obj 2025-06-01T21:05:21.9486741Z [1721/7616] 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-06-01T21:05:22.4246873Z [1722/7616] 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-06-01T21:05:22.5083477Z [1723/7616] 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-06-01T21:05:22.5507542Z [1724/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_amx_convolution.cpp.obj 2025-06-01T21:05:22.6914645Z [1725/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_amx_deconvolution.cpp.obj 2025-06-01T21:05:22.8082652Z [1726/7616] 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-06-01T21:05:22.8810758Z [1727/7616] 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-06-01T21:05:22.8981498Z [1728/7616] 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-06-01T21:05:23.1045677Z [1729/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_bf16_convolution.cpp.obj 2025-06-01T21:05:23.3971686Z [1730/7616] 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-06-01T21:05:23.4489324Z [1731/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_fp16cvt.cpp.obj 2025-06-01T21:05:23.4939928Z [1732/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_fp8cvt.cpp.obj 2025-06-01T21:05:23.7853924Z [1733/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_resampling.cpp.obj 2025-06-01T21:05:23.7871576Z [1734/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_scale_precompute.cpp.obj 2025-06-01T21:05:23.9705828Z [1735/7616] 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-06-01T21:05:23.9799877Z [1736/7616] 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-06-01T21:05:24.0724665Z [1737/7616] 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-06-01T21:05:24.4359589Z [1738/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_sparse_decompress_kernel.cpp.obj 2025-06-01T21:05:24.4806534Z [1739/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_x8s8s32x_convolution.cpp.obj 2025-06-01T21:05:24.5257120Z [1740/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_x8s8s32x_deconvolution.cpp.obj 2025-06-01T21:05:24.8816475Z [1741/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brdgmm_dw_conv.cpp.obj 2025-06-01T21:05:24.9581718Z [1742/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_1x1_conv.cpp.obj 2025-06-01T21:05:24.9940321Z [1743/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_bwd.cpp.obj 2025-06-01T21:05:25.1081498Z [1744/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv.cpp.obj 2025-06-01T21:05:25.1731714Z [1745/7616] 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-06-01T21:05:25.4626198Z [1746/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_bwd_strided.cpp.obj 2025-06-01T21:05:25.4924682Z [1747/7616] 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-06-01T21:05:25.5603660Z [1748/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_bwd_utils.cpp.obj 2025-06-01T21:05:25.9080492Z [1749/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_bwd_w.cpp.obj 2025-06-01T21:05:25.9692954Z [1750/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_trans_kernel.cpp.obj 2025-06-01T21:05:25.9941177Z [1751/7616] 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-06-01T21:05:26.1898431Z [1752/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_utils.cpp.obj 2025-06-01T21:05:26.1994908Z [1753/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_deconv.cpp.obj 2025-06-01T21:05:26.5344667Z [1754/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_post_ops.cpp.obj 2025-06-01T21:05:26.5473177Z [1755/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_inner_product_utils.cpp.obj 2025-06-01T21:05:26.5606306Z [1756/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_inner_product.cpp.obj 2025-06-01T21:05:26.8909708Z [1757/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_primitive_conf.cpp.obj 2025-06-01T21:05:27.0065100Z [1758/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_transpose_utils.cpp.obj 2025-06-01T21:05:27.0890594Z [1759/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_gemm_inner_product_utils.cpp.obj 2025-06-01T21:05:27.1918822Z [1760/7616] 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-06-01T21:05:27.2406035Z [1761/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_gemm_x8s8s32x_convolution_utils.cpp.obj 2025-06-01T21:05:27.4198178Z [1762/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_generator.cpp.obj 2025-06-01T21:05:27.5278583Z [1763/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_sse41_1x1_convolution.cpp.obj 2025-06-01T21:05:27.6543630Z [1764/7616] 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-06-01T21:05:27.8990282Z [1765/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_sse41_conv_kernel_f32.cpp.obj 2025-06-01T21:05:28.0031108Z [1766/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_sse41_convolution.cpp.obj 2025-06-01T21:05:28.1099909Z [1767/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_transpose_utils.cpp.obj 2025-06-01T21:05:28.2284295Z [1768/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_batch_normalization_s8.cpp.obj 2025-06-01T21:05:28.2872456Z [1769/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_batch_normalization.cpp.obj 2025-06-01T21:05:28.5146380Z [1770/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_binary.cpp.obj 2025-06-01T21:05:28.5274730Z [1771/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_binary_kernel.cpp.obj 2025-06-01T21:05:28.6121739Z [1772/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_convert_xf16.cpp.obj 2025-06-01T21:05:28.8799388Z [1773/7616] 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-06-01T21:05:29.0528848Z [1774/7616] 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-06-01T21:05:29.1421045Z [1775/7616] 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-06-01T21:05:29.2673911Z [1776/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_dw_convolution.cpp.obj 2025-06-01T21:05:29.4202108Z [1777/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_eltwise.cpp.obj 2025-06-01T21:05:29.5114177Z [1778/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_group_normalization.cpp.obj 2025-06-01T21:05:29.5731681Z [1779/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_eltwise_int.cpp.obj 2025-06-01T21:05:29.6888124Z [1780/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_i8i8_pooling.cpp.obj 2025-06-01T21:05:29.9511383Z [1781/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_instance_normalization.cpp.obj 2025-06-01T21:05:30.0460825Z [1782/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_layer_normalization.cpp.obj 2025-06-01T21:05:30.1272271Z [1783/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_ncsp_convolution.cpp.obj 2025-06-01T21:05:30.2558580Z [1784/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_pool_kernel.cpp.obj 2025-06-01T21:05:30.4859834Z [1785/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_reduction.cpp.obj 2025-06-01T21:05:30.5300023Z [1786/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_reduction_kernel.cpp.obj 2025-06-01T21:05:30.5434351Z [1787/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_pooling.cpp.obj 2025-06-01T21:05:30.7204822Z [1788/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_reorder.cpp.obj 2025-06-01T21:05:30.9403363Z [1789/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_reorder_utils.cpp.obj 2025-06-01T21:05:30.9943717Z [1790/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_reorder_direct_copy.cpp.obj 2025-06-01T21:05:31.1935658Z [1791/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_resampling.cpp.obj 2025-06-01T21:05:31.2331133Z [1792/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_resampling_kernel.cpp.obj 2025-06-01T21:05:31.5666311Z [1793/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_tbb_batch_normalization.cpp.obj 2025-06-01T21:05:31.5956514Z [1794/7616] 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-06-01T21:05:31.6280122Z [1795/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_softmax.cpp.obj 2025-06-01T21:05:31.8189384Z [1796/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_x8s8s32x_1x1_convolution.cpp.obj 2025-06-01T21:05:31.9500000Z [1797/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_x8s8s32x_conv_kernel.cpp.obj 2025-06-01T21:05:32.0622331Z [1798/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_x8s8s32x_convolution.cpp.obj 2025-06-01T21:05:32.2087333Z [1799/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_xf16_sum.cpp.obj 2025-06-01T21:05:32.2197778Z [1800/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_x8s8s32x_deconvolution.cpp.obj 2025-06-01T21:05:32.5696808Z [1801/7616] 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-06-01T21:05:32.6380982Z [1802/7616] 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-06-01T21:05:32.6766714Z [1803/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\lrn\jit_avx512_common_lrn.cpp.obj 2025-06-01T21:05:32.7491544Z [1804/7616] 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-06-01T21:05:32.8619776Z [1805/7616] 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-06-01T21:05:32.9798522Z [1806/7616] 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-06-01T21:05:33.0936293Z [1807/7616] 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-06-01T21:05:33.2886475Z [1808/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\lrn\jit_uni_lrn.cpp.obj 2025-06-01T21:05:33.5766103Z [1809/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\lrn\jit_uni_lrn_kernel.cpp.obj 2025-06-01T21:05:33.6439718Z [1810/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\matmul\brgemm_matmul_copy_utils.cpp.obj 2025-06-01T21:05:33.7238137Z [1811/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\matmul\brgemm_matmul.cpp.obj 2025-06-01T21:05:33.7989578Z [1812/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\matmul\brgemm_matmul_reorders.cpp.obj 2025-06-01T21:05:33.9351438Z [1813/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\matmul\brgemm_matmul_utils.cpp.obj 2025-06-01T21:05:34.0314929Z [1814/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\matmul\jit_uni_sparse_matmul.cpp.obj 2025-06-01T21:05:34.1437526Z [1815/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_prelu_backward.cpp.obj 2025-06-01T21:05:34.2003050Z [1816/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_prelu_base_kernel.cpp.obj 2025-06-01T21:05:34.5625004Z [1817/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_prelu_utils.cpp.obj 2025-06-01T21:05:34.6391628Z [1818/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_prelu_reduction_kernel.cpp.obj 2025-06-01T21:05:34.6569008Z [1819/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_prelu_forward.cpp.obj 2025-06-01T21:05:34.7209502Z [1820/7616] 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-06-01T21:05:34.9702389Z [1821/7616] 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-06-01T21:05:35.0181988Z [1822/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\brgemm_cell_common_bwd.cpp.obj 2025-06-01T21:05:35.0889765Z [1823/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\brgemm_cell_common_reorders.cpp.obj 2025-06-01T21:05:35.1694402Z [1824/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\brgemm_cell_common_fwd.cpp.obj 2025-06-01T21:05:35.3810031Z [1825/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\brgemm_cell_common_utils.cpp.obj 2025-06-01T21:05:35.6049447Z [1826/7616] 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-06-01T21:05:35.6612212Z [1827/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\jit_diff_weights_peephole.cpp.obj 2025-06-01T21:05:35.6725005Z [1828/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\jit_gates_reduction.cpp.obj 2025-06-01T21:05:35.9459482Z [1829/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\rnn_brgemm_utils.cpp.obj 2025-06-01T21:05:35.9705078Z [1830/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\shuffle\jit_uni_shuffle.cpp.obj 2025-06-01T21:05:36.1514852Z [1831/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\utils\jit_io_helper.cpp.obj 2025-06-01T21:05:36.1647512Z [1832/7616] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\shuffle\jit_uni_shuffle_kernel.cpp.obj 2025-06-01T21:05:36.2650720Z [1833/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\allocator.cpp.obj 2025-06-01T21:05:36.5384562Z [1834/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\backend.cpp.obj 2025-06-01T21:05:36.6799385Z [1835/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\constant_tensor_cache.cpp.obj 2025-06-01T21:05:36.6800626Z [1836/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\graph.cpp.obj 2025-06-01T21:05:36.8467822Z [1837/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\logical_tensor.cpp.obj 2025-06-01T21:05:36.9484233Z [1838/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\op.cpp.obj 2025-06-01T21:05:37.0321211Z [1839/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\op_def_constraint.cpp.obj 2025-06-01T21:05:37.1333125Z [1840/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\op_schema.cpp.obj 2025-06-01T21:05:37.3422376Z [1841/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\partition.cpp.obj 2025-06-01T21:05:37.5185764Z [1842/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\partition_cache.cpp.obj 2025-06-01T21:05:37.5837529Z [1843/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\partition_hashing.cpp.obj 2025-06-01T21:05:37.6893500Z [1844/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\partition_impl.cpp.obj 2025-06-01T21:05:37.8090600Z [1845/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\tensor.cpp.obj 2025-06-01T21:05:37.8183244Z [1846/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\shape_infer.cpp.obj 2025-06-01T21:05:37.9306852Z [1847/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\value.cpp.obj 2025-06-01T21:05:38.0552599Z [1848/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\fake\CMakeFiles\dnnl_graph_backend_fake.dir\fake_backend.cpp.obj 2025-06-01T21:05:38.3552437Z [1849/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\common.cpp.obj 2025-06-01T21:05:38.5659410Z [1850/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\dnnl_partition_impl.cpp.obj 2025-06-01T21:05:38.6587484Z [1851/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\dnnl_backend.cpp.obj 2025-06-01T21:05:38.6721783Z [1852/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\dnnl_shape_infer.cpp.obj 2025-06-01T21:05:38.7911579Z [1853/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\fusion_info.cpp.obj 2025-06-01T21:05:38.8291179Z [1854/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\layout_id_mgr.cpp.obj 2025-06-01T21:05:38.9686786Z [1855/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\layout_propagator.cpp.obj 2025-06-01T21:05:39.1036143Z [1856/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\op_executable.cpp.obj 2025-06-01T21:05:39.2290684Z [1857/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\platform.cpp.obj 2025-06-01T21:05:39.5651284Z [1858/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\subgraph.cpp.obj 2025-06-01T21:05:39.6951411Z [1859/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\binary.cpp.obj 2025-06-01T21:05:39.7194554Z [1860/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\batch_norm.cpp.obj 2025-06-01T21:05:39.8412054Z [1861/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\concat.cpp.obj 2025-06-01T21:05:39.8797977Z [1862/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\conv.cpp.obj 2025-06-01T21:05:39.9725021Z [1863/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\conv_base.cpp.obj 2025-06-01T21:05:40.1466330Z [1864/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\conv_transpose.cpp.obj 2025-06-01T21:05:40.3041242Z [1865/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\dummy.cpp.obj 2025-06-01T21:05:40.6399408Z [1866/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\eltwise.cpp.obj 2025-06-01T21:05:40.6726626Z [1867/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\group_norm.cpp.obj 2025-06-01T21:05:40.7718461Z [1868/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\gen_index.cpp.obj 2025-06-01T21:05:40.8557202Z [1869/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\kernel_base.cpp.obj 2025-06-01T21:05:40.8785879Z [1870/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\large_partition.cpp.obj 2025-06-01T21:05:41.0125405Z [1871/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\layer_norm.cpp.obj 2025-06-01T21:05:41.1083253Z [1872/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\log_softmax.cpp.obj 2025-06-01T21:05:41.3110351Z [1873/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\matmul.cpp.obj 2025-06-01T21:05:41.6877892Z [1874/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\mqa_decomp.cpp.obj 2025-06-01T21:05:41.6977643Z [1875/7616] 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-06-01T21:05:41.8017273Z [1876/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\pool.cpp.obj 2025-06-01T21:05:41.9290255Z [1877/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\prelu.cpp.obj 2025-06-01T21:05:41.9950176Z [1878/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\quantize.cpp.obj 2025-06-01T21:05:42.0473212Z [1879/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\reduction.cpp.obj 2025-06-01T21:05:42.1715453Z [1880/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\reorder.cpp.obj 2025-06-01T21:05:42.3113633Z [1881/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\resampling.cpp.obj 2025-06-01T21:05:42.7286512Z [1882/7616] 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-06-01T21:05:42.8105454Z [1883/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\sdp_primitive.cpp.obj 2025-06-01T21:05:42.8707541Z [1884/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\sdp_decomp.cpp.obj 2025-06-01T21:05:42.9569713Z [1885/7616] 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-06-01T21:05:43.0312833Z [1886/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\select.cpp.obj 2025-06-01T21:05:43.1068403Z [1887/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\shuffle.cpp.obj 2025-06-01T21:05:43.2150316Z [1888/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\softmax.cpp.obj 2025-06-01T21:05:43.2418767Z [1889/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\sum.cpp.obj 2025-06-01T21:05:43.7813311Z [1890/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\compile_ops.cpp.obj 2025-06-01T21:05:43.8412553Z [1891/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\insert_ops.cpp.obj 2025-06-01T21:05:43.8561749Z [1892/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\constant_propagation.cpp.obj 2025-06-01T21:05:43.9949722Z [1893/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\layout_propagation.cpp.obj 2025-06-01T21:05:44.0268645Z [1894/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\lower.cpp.obj 2025-06-01T21:05:44.1801463Z [1895/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\memory_planning.cpp.obj 2025-06-01T21:05:44.1961145Z [1896/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\transform.cpp.obj 2025-06-01T21:05:44.2064579Z [1897/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\utils.cpp.obj 2025-06-01T21:05:44.8908454Z [1898/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\binary_fusion.cpp.obj 2025-06-01T21:05:44.9055005Z [1899/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\concat_fusion.cpp.obj 2025-06-01T21:05:44.9087676Z [1900/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\bn_fusion.cpp.obj 2025-06-01T21:05:44.9993806Z [1901/7616] 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-06-01T21:05:45.0275042Z [1902/7616] 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-06-01T21:05:45.2080869Z [1903/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\eltwise_fusion.cpp.obj 2025-06-01T21:05:45.2465340Z [1904/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\convtranspose_fusion.cpp.obj 2025-06-01T21:05:45.3573905Z [1905/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\groupnorm_fusion.cpp.obj 2025-06-01T21:05:45.8659214Z [1906/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\interpolate_fusion.cpp.obj 2025-06-01T21:05:45.8933899Z [1907/7616] 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-06-01T21:05:45.9034483Z [1908/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\layernorm_fusion.cpp.obj 2025-06-01T21:05:46.0861380Z [1909/7616] 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-06-01T21:05:46.0963655Z [1910/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\mlp.cpp.obj 2025-06-01T21:05:46.2390479Z [1911/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\reduction_fusion.cpp.obj 2025-06-01T21:05:46.2499144Z [1912/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\quantize_fusion.cpp.obj 2025-06-01T21:05:46.3373617Z [1913/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\reorder_fusion.cpp.obj 2025-06-01T21:05:46.5408407Z [1914/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\id.cpp.obj 2025-06-01T21:05:46.5461114Z [1915/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\debug.cpp.obj 2025-06-01T21:05:46.6307459Z [1916/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\ocl_usm_utils.cpp.obj 2025-06-01T21:05:46.6840345Z [1917/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\alloc.cpp.obj 2025-06-01T21:05:46.9408572Z [1918/7616] 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-06-01T21:05:46.9597363Z [1919/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\shuffle_fusion.cpp.obj 2025-06-01T21:05:47.0147537Z [1920/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\sdp.cpp.obj 2025-06-01T21:05:47.1622786Z [1921/7616] 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-06-01T21:05:47.1731094Z [1922/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\sum_fusion.cpp.obj 2025-06-01T21:05:47.4173577Z [1923/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\pm\nested_matcher.cpp.obj 2025-06-01T21:05:47.5727913Z [1924/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\pm\pass_base.cpp.obj 2025-06-01T21:05:47.5872092Z [1925/7616] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_api.dir\src\libkineto_api.cpp.obj 2025-06-01T21:05:47.6423073Z [1926/7616] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_api.dir\src\ThreadUtil.cpp.obj 2025-06-01T21:05:47.6424486Z C:\actions-runner\_work\pytorch\pytorch\third_party\kineto\libkineto\src\ThreadUtil.cpp(21): warning C4005: 'WIN32_LEAN_AND_MEAN': macro redefinition 2025-06-01T21:05:47.6425796Z C:\actions-runner\_work\pytorch\pytorch\third_party\kineto\libkineto\src\ThreadUtil.cpp: note: see previous definition of 'WIN32_LEAN_AND_MEAN' 2025-06-01T21:05:47.6426877Z C:\actions-runner\_work\pytorch\pytorch\third_party\kineto\libkineto\src\ThreadUtil.cpp(22): warning C4005: 'NOGDI': macro redefinition 2025-06-01T21:05:47.6973344Z C:\actions-runner\_work\pytorch\pytorch\third_party\kineto\libkineto\src\ThreadUtil.cpp: note: see previous definition of 'NOGDI' 2025-06-01T21:05:47.6975216Z [1927/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\pm\pass_manager.cpp.obj 2025-06-01T21:05:47.8106424Z [1928/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\utils.cpp.obj 2025-06-01T21:05:47.8402958Z [1929/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\pm\pbuilder.cpp.obj 2025-06-01T21:05:47.9545501Z [1930/7616] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\verbose.cpp.obj 2025-06-01T21:05:48.1504310Z [1931/7616] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiActivityApi.cpp.obj 2025-06-01T21:05:48.2354213Z [1932/7616] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiRangeProfilerConfig.cpp.obj 2025-06-01T21:05:48.2570216Z [1933/7616] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiEventApi.cpp.obj 2025-06-01T21:05:48.2730086Z [1934/7616] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiCallbackApi.cpp.obj 2025-06-01T21:05:48.2920093Z [1935/7616] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiNvPerfMetric.cpp.obj 2025-06-01T21:05:48.3138970Z [1936/7616] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\Demangle.cpp.obj 2025-06-01T21:05:48.3238447Z [1937/7616] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiMetricApi.cpp.obj 2025-06-01T21:05:48.3391578Z [1938/7616] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiRangeProfiler.cpp.obj 2025-06-01T21:05:48.3760659Z [1939/7616] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiRangeProfilerApi.cpp.obj 2025-06-01T21:05:48.4363909Z [1940/7616] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\WeakSymbols.cpp.obj 2025-06-01T21:05:48.6204027Z [1941/7616] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\cupti_strings.cpp.obj 2025-06-01T21:05:48.6488071Z [1942/7616] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ApproximateClock.cpp.obj 2025-06-01T21:05:48.7501509Z [1943/7616] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\AbstractConfig.cpp.obj 2025-06-01T21:05:48.8127335Z [1944/7616] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\EventProfilerController.cpp.obj 2025-06-01T21:05:48.8777019Z [1945/7616] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\EventProfiler.cpp.obj 2025-06-01T21:05:48.8779004Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\numeric(34): warning C4244: '=': conversion from '_Ty' to '_Ty', possible loss of data 2025-06-01T21:05:48.8780485Z with 2025-06-01T21:05:48.8780805Z [ 2025-06-01T21:05:48.8781127Z _Ty=int64_t 2025-06-01T21:05:48.8781507Z ] 2025-06-01T21:05:48.8781800Z and 2025-06-01T21:05:48.8782111Z [ 2025-06-01T21:05:48.8782428Z _Ty=unsigned long 2025-06-01T21:05:48.8782835Z ] 2025-06-01T21:05:48.8786835Z C:\actions-runner\_work\pytorch\pytorch\third_party\kineto\libkineto\src\EventProfiler.cpp(68): 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-06-01T21:05:48.8791144Z with 2025-06-01T21:05:48.8791495Z [ 2025-06-01T21:05:48.8791838Z _Ty=unsigned long, 2025-06-01T21:05:48.8849659Z _InIt=std::_List_const_iterator>>, 2025-06-01T21:05:48.8851115Z _Fn=libkineto::Event::sumInstance:: 2025-06-01T21:05:48.8851975Z ] 2025-06-01T21:05:48.8852925Z [1946/7616] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\DaemonConfigLoader.cpp.obj 2025-06-01T21:05:48.9821765Z [1947/7616] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiActivityProfiler.cpp.obj 2025-06-01T21:05:49.0059372Z [1948/7616] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ActivityType.cpp.obj 2025-06-01T21:05:49.0530610Z [1949/7616] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ActivityProfilerController.cpp.obj 2025-06-01T21:05:49.0647437Z [1950/7616] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\Config.cpp.obj 2025-06-01T21:05:49.1312720Z [1951/7616] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ConfigLoader.cpp.obj 2025-06-01T21:05:49.1439682Z [1952/7616] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ActivityProfilerProxy.cpp.obj 2025-06-01T21:05:49.2089629Z [1953/7616] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\IpcFabricConfigClient.cpp.obj 2025-06-01T21:05:49.2695449Z [1954/7616] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\GenericTraceActivity.cpp.obj 2025-06-01T21:05:49.3628393Z [1955/7616] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ILoggerObserver.cpp.obj 2025-06-01T21:05:49.3691758Z [1956/7616] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\LoggingAPI.cpp.obj 2025-06-01T21:05:49.3957338Z [1957/7616] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\DeviceUtil.cpp.obj 2025-06-01T21:05:49.3998604Z [1958/7616] Linking CXX static library lib\mimalloc.lib 2025-06-01T21:05:49.4455125Z [1959/7616] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\Logger.cpp.obj 2025-06-01T21:05:49.4833279Z [1960/7616] Building CXX object c10\CMakeFiles\c10.dir\core\AutogradState.cpp.obj 2025-06-01T21:05:49.5514288Z [1961/7616] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\output_csv.cpp.obj 2025-06-01T21:05:49.5628518Z [1962/7616] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\DeviceProperties.cpp.obj 2025-06-01T21:05:49.6933906Z [1963/7616] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\output_json.cpp.obj 2025-06-01T21:05:49.7620890Z [1964/7616] Building CXX object c10\CMakeFiles\c10.dir\core\Allocator.cpp.obj 2025-06-01T21:05:49.7924646Z [1965/7616] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\init.cpp.obj 2025-06-01T21:05:49.8367093Z [1966/7616] Building CXX object c10\CMakeFiles\c10.dir\core\CPUAllocator.cpp.obj 2025-06-01T21:05:49.9386574Z [1967/7616] Building CXX object c10\CMakeFiles\c10.dir\core\ConstantSymNodeImpl.cpp.obj 2025-06-01T21:05:49.9579894Z [1968/7616] Building CXX object c10\CMakeFiles\c10.dir\core\CopyBytes.cpp.obj 2025-06-01T21:05:50.0267350Z [1969/7616] Building CXX object c10\CMakeFiles\c10.dir\core\Device.cpp.obj 2025-06-01T21:05:50.1047956Z [1970/7616] Building CXX object c10\CMakeFiles\c10.dir\core\DefaultDtype.cpp.obj 2025-06-01T21:05:50.1563974Z [1971/7616] Building CXX object c10\CMakeFiles\c10.dir\core\GradMode.cpp.obj 2025-06-01T21:05:50.2265899Z [1972/7616] Building CXX object c10\CMakeFiles\c10.dir\core\DeviceType.cpp.obj 2025-06-01T21:05:50.3132148Z [1973/7616] Building CXX object c10\CMakeFiles\c10.dir\core\DispatchKey.cpp.obj 2025-06-01T21:05:50.3803389Z [1974/7616] Building CXX object c10\CMakeFiles\c10.dir\core\DispatchKeySet.cpp.obj 2025-06-01T21:05:50.4742584Z [1975/7616] Building CXX object c10\CMakeFiles\c10.dir\core\GeneratorImpl.cpp.obj 2025-06-01T21:05:50.4976725Z [1976/7616] Building CXX object c10\CMakeFiles\c10.dir\core\InferenceMode.cpp.obj 2025-06-01T21:05:50.5777873Z [1977/7616] Building CXX object c10\CMakeFiles\c10.dir\core\RefcountedDeleter.cpp.obj 2025-06-01T21:05:50.6486890Z [1978/7616] Building CXX object c10\CMakeFiles\c10.dir\core\SafePyObject.cpp.obj 2025-06-01T21:05:50.7048811Z [1979/7616] Building CXX object c10\CMakeFiles\c10.dir\core\Scalar.cpp.obj 2025-06-01T21:05:50.7855744Z [1980/7616] Building CXX object c10\CMakeFiles\c10.dir\core\ScalarType.cpp.obj 2025-06-01T21:05:50.8585979Z [1981/7616] Building CXX object c10\CMakeFiles\c10.dir\core\Storage.cpp.obj 2025-06-01T21:05:53.3355472Z [1982/7616] Building CXX object c10\CMakeFiles\c10.dir\core\StorageImpl.cpp.obj 2025-06-01T21:05:53.3582928Z [1983/7616] Building CXX object c10\CMakeFiles\c10.dir\core\Stream.cpp.obj 2025-06-01T21:05:53.3597414Z [1984/7616] Building CXX object c10\CMakeFiles\c10.dir\core\SymBool.cpp.obj 2025-06-01T21:05:53.3876018Z [1985/7616] Building CXX object c10\CMakeFiles\c10.dir\core\SymFloat.cpp.obj 2025-06-01T21:05:53.4116878Z [1986/7616] Building CXX object c10\CMakeFiles\c10.dir\core\SymInt.cpp.obj 2025-06-01T21:05:53.4296818Z [1987/7616] Building CXX object c10\CMakeFiles\c10.dir\core\SymIntArrayRef.cpp.obj 2025-06-01T21:05:53.4407215Z [1988/7616] Building CXX object c10\CMakeFiles\c10.dir\core\SymNodeImpl.cpp.obj 2025-06-01T21:05:53.4649696Z [1989/7616] Building CXX object c10\CMakeFiles\c10.dir\core\SymbolicShapeMeta.cpp.obj 2025-06-01T21:05:53.8489123Z [1990/7616] Building CXX object c10\CMakeFiles\c10.dir\core\WrapDimMinimal.cpp.obj 2025-06-01T21:05:53.8543367Z [1991/7616] Building CXX object c10\CMakeFiles\c10.dir\core\impl\DeviceGuardImplInterface.cpp.obj 2025-06-01T21:05:53.8883545Z [1992/7616] Building CXX object c10\CMakeFiles\c10.dir\core\UndefinedTensorImpl.cpp.obj 2025-06-01T21:05:53.8897102Z [1993/7616] Building CXX object c10\CMakeFiles\c10.dir\core\impl\COWDeleter.cpp.obj 2025-06-01T21:05:53.9279526Z [1994/7616] Building CXX object c10\CMakeFiles\c10.dir\core\TensorOptions.cpp.obj 2025-06-01T21:05:53.9422110Z [1995/7616] Building CXX object c10\CMakeFiles\c10.dir\core\impl\COW.cpp.obj 2025-06-01T21:05:53.9485011Z [1996/7616] Building CXX object c10\CMakeFiles\c10.dir\core\impl\GPUTrace.cpp.obj 2025-06-01T21:05:53.9705371Z [1997/7616] Building CXX object c10\CMakeFiles\c10.dir\core\TensorImpl.cpp.obj 2025-06-01T21:05:54.0370307Z [1998/7616] Building CXX object c10\CMakeFiles\c10.dir\core\impl\HermeticPyObjectTLS.cpp.obj 2025-06-01T21:05:54.2218730Z [1999/7616] Building CXX object c10\CMakeFiles\c10.dir\core\impl\LocalDispatchKeySet.cpp.obj 2025-06-01T21:05:54.3696335Z [2000/7616] Building CXX object c10\CMakeFiles\c10.dir\core\impl\SizesAndStrides.cpp.obj 2025-06-01T21:05:54.3963005Z [2001/7616] Building CXX object c10\CMakeFiles\c10.dir\core\impl\PyObjectSlot.cpp.obj 2025-06-01T21:05:54.4487369Z C:\actions-runner\_work\pytorch\pytorch\c10\core\impl\PyObjectSlot.cpp(70): warning C4805: '|': unsafe mix of type 'uintptr_t' and type 'bool' in operation 2025-06-01T21:05:54.4489126Z [2002/7616] Building CXX object c10\CMakeFiles\c10.dir\core\impl\TorchDispatchModeTLS.cpp.obj 2025-06-01T21:05:54.4568280Z [2003/7616] Building CXX object c10\CMakeFiles\c10.dir\core\impl\alloc_cpu.cpp.obj 2025-06-01T21:05:54.4768508Z [2004/7616] Building CXX object c10\CMakeFiles\c10.dir\core\impl\PythonDispatcherTLS.cpp.obj 2025-06-01T21:05:54.4968809Z [2005/7616] Building CXX object c10\CMakeFiles\c10.dir\core\impl\PyInterpreter.cpp.obj 2025-06-01T21:05:54.5329555Z [2006/7616] Building CXX object c10\CMakeFiles\c10.dir\core\thread_pool.cpp.obj 2025-06-01T21:05:54.6230042Z [2007/7616] Building CXX object c10\CMakeFiles\c10.dir\mobile\CPUCachingAllocator.cpp.obj 2025-06-01T21:05:54.7494533Z [2008/7616] Building CXX object c10\CMakeFiles\c10.dir\util\Bfloat16.cpp.obj 2025-06-01T21:05:54.7678552Z [2009/7616] Building CXX object c10\CMakeFiles\c10.dir\util\C++17.cpp.obj 2025-06-01T21:05:54.8351293Z [2010/7616] Building CXX object c10\CMakeFiles\c10.dir\mobile\CPUProfilingAllocator.cpp.obj 2025-06-01T21:05:54.8664771Z [2011/7616] Building CXX object c10\CMakeFiles\c10.dir\util\DynamicCounter.cpp.obj 2025-06-01T21:05:54.8731525Z [2012/7616] Building CXX object c10\CMakeFiles\c10.dir\util\ApproximateClock.cpp.obj 2025-06-01T21:05:54.8884002Z [2013/7616] Building CXX object c10\CMakeFiles\c10.dir\util\DeadlockDetection.cpp.obj 2025-06-01T21:05:55.0951583Z [2014/7616] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e4m3fn.cpp.obj 2025-06-01T21:05:55.1116275Z [2015/7616] Building CXX object c10\CMakeFiles\c10.dir\util\Exception.cpp.obj 2025-06-01T21:05:55.1322193Z [2016/7616] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e4m3fnuz.cpp.obj 2025-06-01T21:05:55.2172120Z [2017/7616] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e8m0fnu.cpp.obj 2025-06-01T21:05:55.2185851Z [2018/7616] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e5m2.cpp.obj 2025-06-01T21:05:55.2244154Z [2019/7616] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e5m2fnuz.cpp.obj 2025-06-01T21:05:55.2523601Z [2020/7616] Building CXX object c10\CMakeFiles\c10.dir\util\Gauge.cpp.obj 2025-06-01T21:05:55.2860728Z [2021/7616] Building CXX object c10\CMakeFiles\c10.dir\util\Backtrace.cpp.obj 2025-06-01T21:05:55.3908006Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:05:55.3908921Z [2022/7616] Building CXX object c10\CMakeFiles\c10.dir\util\LeftRight.cpp.obj 2025-06-01T21:05:55.4260651Z [2023/7616] Building CXX object c10\CMakeFiles\c10.dir\util\ParallelGuard.cpp.obj 2025-06-01T21:05:55.4348695Z [2024/7616] Building CXX object c10\CMakeFiles\c10.dir\util\Half.cpp.obj 2025-06-01T21:05:55.4997258Z [2025/7616] Building CXX object c10\CMakeFiles\c10.dir\util\Optional.cpp.obj 2025-06-01T21:05:55.5136638Z [2026/7616] Building CXX object c10\CMakeFiles\c10.dir\util\Metaprogramming.cpp.obj 2025-06-01T21:05:55.5305261Z [2027/7616] Building CXX object c10\CMakeFiles\c10.dir\util\MathConstants.cpp.obj 2025-06-01T21:05:55.6442215Z [2028/7616] Building CXX object c10\CMakeFiles\c10.dir\util\Logging.cpp.obj 2025-06-01T21:05:55.7479936Z [2029/7616] Building CXX object c10\CMakeFiles\c10.dir\util\NetworkFlow.cpp.obj 2025-06-01T21:05:55.7993318Z [2030/7616] Building CXX object c10\CMakeFiles\c10.dir\util\SmallVector.cpp.obj 2025-06-01T21:05:55.8176708Z [2031/7616] Building CXX object c10\CMakeFiles\c10.dir\util\TypeList.cpp.obj 2025-06-01T21:05:55.8419790Z [2032/7616] Building CXX object c10\CMakeFiles\c10.dir\util\ThreadLocalDebugInfo.cpp.obj 2025-06-01T21:05:55.8541686Z [2033/7616] Building CXX object c10\CMakeFiles\c10.dir\util\TypeTraits.cpp.obj 2025-06-01T21:05:55.8616967Z [2034/7616] Building CXX object c10\CMakeFiles\c10.dir\util\TypeCast.cpp.obj 2025-06-01T21:05:55.9190252Z [2035/7616] Building CXX object c10\CMakeFiles\c10.dir\util\Type_demangle.cpp.obj 2025-06-01T21:05:55.9870717Z [2036/7616] Building CXX object c10\CMakeFiles\c10.dir\util\Type_no_demangle.cpp.obj 2025-06-01T21:05:56.0421892Z [2037/7616] Building CXX object c10\CMakeFiles\c10.dir\util\UniqueVoidPtr.cpp.obj 2025-06-01T21:05:56.1107370Z [2038/7616] Building CXX object c10\CMakeFiles\c10.dir\util\flags_use_gflags.cpp.obj 2025-06-01T21:05:56.1743926Z [2039/7616] Building CXX object c10\CMakeFiles\c10.dir\util\StringUtil.cpp.obj 2025-06-01T21:05:56.1931953Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:05:56.1932812Z [2040/7616] Building CXX object c10\CMakeFiles\c10.dir\util\complex_math.cpp.obj 2025-06-01T21:05:56.2106394Z [2041/7616] Building CXX object c10\CMakeFiles\c10.dir\util\error.cpp.obj 2025-06-01T21:05:56.2370957Z [2042/7616] Building CXX object c10\CMakeFiles\c10.dir\util\WaitCounter.cpp.obj 2025-06-01T21:05:56.3981723Z [2043/7616] Building CXX object c10\CMakeFiles\c10.dir\util\env.cpp.obj 2025-06-01T21:05:56.4138538Z [2044/7616] Building CXX object c10\CMakeFiles\c10.dir\util\flags_use_no_gflags.cpp.obj 2025-06-01T21:05:56.4730900Z [2045/7616] Building CXX object c10\CMakeFiles\c10.dir\util\Unicode.cpp.obj 2025-06-01T21:05:56.5471506Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:05:56.5472711Z [2046/7616] Building CXX object c10\CMakeFiles\c10.dir\util\intrusive_ptr.cpp.obj 2025-06-01T21:05:56.5542521Z [2047/7616] Building CXX object c10\CMakeFiles\c10.dir\util\int128.cpp.obj 2025-06-01T21:05:56.6069663Z [2048/7616] Building CXX object c10\CMakeFiles\c10.dir\util\signal_handler.cpp.obj 2025-06-01T21:05:56.6219179Z [2049/7616] Building CXX object c10\CMakeFiles\c10.dir\util\numa.cpp.obj 2025-06-01T21:05:56.7102237Z [2050/7616] Building C object sleef\src\libm\CMakeFiles\sleefavx512fnofma.dir\sleefsimdsp.c.obj 2025-06-01T21:05:56.7149415Z [2051/7616] Building CXX object c10\CMakeFiles\c10.dir\util\thread_name.cpp.obj 2025-06-01T21:05:56.7217827Z [2052/7616] Building C object sleef\src\libm\CMakeFiles\sleefavx512fnofma.dir\sleefsimddp.c.obj 2025-06-01T21:05:56.7443991Z [2053/7616] Building C object sleef\src\libm\CMakeFiles\sleefdetavx512fnofma.dir\sleefsimddp.c.obj 2025-06-01T21:05:56.7934242Z [2054/7616] Building C object sleef\src\libm\CMakeFiles\sleefdetavx512fnofma.dir\sleefsimdsp.c.obj 2025-06-01T21:05:56.8084802Z [2055/7616] Building C object sleef\src\libm\CMakeFiles\sleefavx512f.dir\sleefsimdsp.c.obj 2025-06-01T21:05:56.8318148Z [2056/7616] Building C object sleef\src\libm\CMakeFiles\sleefdetavx512f.dir\sleefsimdsp.c.obj 2025-06-01T21:05:56.8464567Z [2057/7616] Building C object sleef\src\libm\CMakeFiles\sleefdetavx512f.dir\sleefsimddp.c.obj 2025-06-01T21:05:56.8874613Z [2058/7616] Building C object sleef\src\libm\CMakeFiles\sleefavx512f.dir\sleefsimddp.c.obj 2025-06-01T21:05:56.9146396Z [2059/7616] Building CXX object c10\CMakeFiles\c10.dir\util\typeid.cpp.obj 2025-06-01T21:05:56.9473258Z [2060/7616] Building C object sleef\src\libm\CMakeFiles\sleefavx2.dir\sleefsimdsp.c.obj 2025-06-01T21:05:56.9661169Z [2061/7616] Building C object sleef\src\libm\CMakeFiles\sleefavx2.dir\sleefsimddp.c.obj 2025-06-01T21:05:56.9724970Z [2062/7616] Building C object sleef\src\libm\CMakeFiles\sleefdetavx2.dir\sleefsimdsp.c.obj 2025-06-01T21:05:56.9773776Z [2063/7616] Building C object sleef\src\libm\CMakeFiles\sleefdetavx2.dir\sleefsimddp.c.obj 2025-06-01T21:05:56.9962079Z [2064/7616] Building C object sleef\src\libm\CMakeFiles\sleefavx2128.dir\sleefsimdsp.c.obj 2025-06-01T21:05:57.0456042Z [2065/7616] Building C object sleef\src\libm\CMakeFiles\sleefdetavx2128.dir\sleefsimdsp.c.obj 2025-06-01T21:05:57.0595395Z [2066/7616] Building C object sleef\src\libm\CMakeFiles\sleefavx2128.dir\sleefsimddp.c.obj 2025-06-01T21:05:57.0650321Z [2067/7616] Building C object sleef\src\libm\CMakeFiles\sleefdetavx2128.dir\sleefsimddp.c.obj 2025-06-01T21:05:57.1000131Z [2068/7616] Building C object sleef\src\libm\CMakeFiles\sleefdetfma4.dir\sleefsimdsp.c.obj 2025-06-01T21:05:57.1229346Z [2069/7616] Building C object sleef\src\libm\CMakeFiles\sleeffma4.dir\sleefsimdsp.c.obj 2025-06-01T21:05:57.1468136Z [2070/7616] Building C object sleef\src\libm\CMakeFiles\sleefdetfma4.dir\sleefsimddp.c.obj 2025-06-01T21:05:57.1514373Z [2071/7616] Building C object sleef\src\libm\CMakeFiles\sleeffma4.dir\sleefsimddp.c.obj 2025-06-01T21:05:57.1831439Z [2072/7616] Building CXX object c10\CMakeFiles\c10.dir\util\tempfile.cpp.obj 2025-06-01T21:05:57.1931497Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:05:57.1932452Z [2073/7616] Building C object sleef\src\libm\CMakeFiles\sleefdetavx.dir\sleefsimdsp.c.obj 2025-06-01T21:05:57.1996239Z [2074/7616] Building C object sleef\src\libm\CMakeFiles\sleefavx.dir\sleefsimddp.c.obj 2025-06-01T21:05:57.2051645Z [2075/7616] Building C object sleef\src\libm\CMakeFiles\sleefavx.dir\sleefsimdsp.c.obj 2025-06-01T21:05:57.2231362Z [2076/7616] Building C object sleef\src\libm\CMakeFiles\sleefdetavx.dir\sleefsimddp.c.obj 2025-06-01T21:05:57.2796535Z [2077/7616] Building C object sleef\src\libm\CMakeFiles\sleefsse4.dir\sleefsimdsp.c.obj 2025-06-01T21:05:57.2870215Z [2078/7616] Building C object sleef\src\libm\CMakeFiles\sleefdetsse4.dir\sleefsimdsp.c.obj 2025-06-01T21:05:57.2951478Z [2079/7616] Building C object sleef\src\libm\CMakeFiles\sleefdetsse4.dir\sleefsimddp.c.obj 2025-06-01T21:05:57.3107436Z [2080/7616] Building C object sleef\src\libm\CMakeFiles\sleefsse4.dir\sleefsimddp.c.obj 2025-06-01T21:05:57.3240493Z [2081/7616] Building C object sleef\src\libm\CMakeFiles\sleefdetsse2.dir\sleefsimdsp.c.obj 2025-06-01T21:05:57.3473055Z [2082/7616] Building C object sleef\src\libm\CMakeFiles\sleefsse2.dir\sleefsimdsp.c.obj 2025-06-01T21:05:57.3637129Z [2083/7616] Building C object sleef\src\libm\CMakeFiles\sleefsse2.dir\sleefsimddp.c.obj 2025-06-01T21:05:57.3991625Z [2084/7616] Building C object sleef\src\libm\CMakeFiles\sleefdetpurec_scalar.dir\sleefsimdsp.c.obj 2025-06-01T21:05:57.4005445Z [2085/7616] Building C object sleef\src\libm\CMakeFiles\sleefdetsse2.dir\sleefsimddp.c.obj 2025-06-01T21:05:57.4138204Z [2086/7616] Building C object sleef\src\libm\CMakeFiles\sleefdetpurec_scalar.dir\sleefsimddp.c.obj 2025-06-01T21:05:57.4273544Z [2087/7616] Building C object sleef\src\libm\CMakeFiles\sleefpurec_scalar.dir\sleefsimdsp.c.obj 2025-06-01T21:05:57.4431881Z [2088/7616] Building C object sleef\src\libm\CMakeFiles\sleefpurecfma_scalar.dir\sleefsimdsp.c.obj 2025-06-01T21:05:57.4635748Z [2089/7616] Building C object sleef\src\libm\CMakeFiles\sleefpurec_scalar.dir\sleefsimddp.c.obj 2025-06-01T21:05:57.4784317Z [2090/7616] Building C object sleef\src\libm\CMakeFiles\sleefdetpurecfma_scalar.dir\sleefsimdsp.c.obj 2025-06-01T21:05:57.4948540Z [2091/7616] Building C object sleef\src\libm\CMakeFiles\sleefdetpurecfma_scalar.dir\sleefsimddp.c.obj 2025-06-01T21:05:57.5118594Z [2092/7616] Building C object sleef\src\libm\CMakeFiles\sleefpurecfma_scalar.dir\sleefsimddp.c.obj 2025-06-01T21:05:57.5259202Z [2093/7616] Building C object sleef\src\libm\CMakeFiles\dispscalar_obj.dir\dispscalar.c.obj 2025-06-01T21:05:57.5271798Z [2094/7616] Building C object sleef\src\libm\CMakeFiles\sleef.dir\rempitab.c.obj 2025-06-01T21:05:57.5533444Z [2095/7616] Linking CXX static library lib\XNNPACK.lib 2025-06-01T21:05:57.5549699Z [2096/7616] Linking C static library lib\libittnotify.lib 2025-06-01T21:05:57.5713296Z [2097/7616] Building C object sleef\src\libm\CMakeFiles\dispsse_obj.dir\dispsse.c.obj 2025-06-01T21:05:57.5770730Z [2098/7616] Building C object sleef\src\libm\CMakeFiles\dispavx_obj.dir\dispavx.c.obj 2025-06-01T21:05:57.5861710Z [2099/7616] Linking CXX static library lib\gloo.lib 2025-06-01T21:05:57.6389795Z [2100/7616] Building C object sleef\src\common\CMakeFiles\common.dir\common.c.obj 2025-06-01T21:05:57.9622635Z [2101/7616] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda_allreduce_local.cc.obj 2025-06-01T21:05:57.9641771Z [2102/7616] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda_allreduce_bcube.cc.obj 2025-06-01T21:05:57.9642909Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\xmemory(674): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data 2025-06-01T21:05:57.9644836Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vector(708): 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-06-01T21:05:57.9646198Z with 2025-06-01T21:05:57.9646382Z [ 2025-06-01T21:05:57.9646724Z _Alloc=std::allocator, 2025-06-01T21:05:57.9647090Z _Ty=gloo::cuda::bcube::Node, 2025-06-01T21:05:57.9647394Z _Objty=gloo::cuda::bcube::Node 2025-06-01T21:05:57.9647703Z ] 2025-06-01T21:05:57.9648972Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vector(713): 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-06-01T21:05:57.9650586Z with 2025-06-01T21:05:57.9650771Z [ 2025-06-01T21:05:57.9651056Z _Alloc=std::allocator, 2025-06-01T21:05:57.9651533Z _Ty=gloo::cuda::bcube::Node, 2025-06-01T21:05:57.9651883Z _Objty=gloo::cuda::bcube::Node 2025-06-01T21:05:57.9652148Z ] 2025-06-01T21:05:57.9653253Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vector(726): 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-06-01T21:05:57.9654537Z with 2025-06-01T21:05:57.9654718Z [ 2025-06-01T21:05:57.9654924Z _Ty=gloo::cuda::bcube::Node 2025-06-01T21:05:57.9655183Z ] 2025-06-01T21:05:57.9656367Z 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-06-01T21:05:57.9657942Z with 2025-06-01T21:05:57.9658233Z [ 2025-06-01T21:05:57.9658501Z _Ty=gloo::cuda::bcube::Node 2025-06-01T21:05:57.9658855Z ] 2025-06-01T21:05:57.9877979Z 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-06-01T21:05:57.9879736Z 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-06-01T21:05:57.9881178Z [2103/7616] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda_allreduce_halving_doubling.cc.obj 2025-06-01T21:05:57.9989919Z [2104/7616] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda_allreduce_ring.cc.obj 2025-06-01T21:05:58.0521388Z [2105/7616] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda_allreduce_ring_chunked.cc.obj 2025-06-01T21:05:58.1671487Z [2106/7616] Linking CXX shared library bin\fbgemm.dll 2025-06-01T21:05:58.2693852Z [2107/7616] Linking CXX static library lib\kineto.lib 2025-06-01T21:05:58.3335356Z [2108/7616] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda_broadcast_one_to_all.cc.obj 2025-06-01T21:05:58.4349754Z [2109/7616] Linking CXX static library lib\onnx.lib 2025-06-01T21:05:58.6893336Z [2110/7616] Linking CXX shared library bin\c10.dll 2025-06-01T21:05:58.7116130Z [2111/7616] Building CUDA object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda.cu.obj 2025-06-01T21:05:58.7250241Z cuda.cu 2025-06-01T21:05:58.7250527Z tmpxft_000010a8_00000000-7_cuda.cudafe1.cpp 2025-06-01T21:05:58.7251199Z [2112/7616] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDAAllocatorConfig.cpp.obj 2025-06-01T21:05:58.9047444Z [2113/7616] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDADeviceAssertionHost.cpp.obj 2025-06-01T21:05:58.9130692Z [2114/7616] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDACachingAllocator.cpp.obj 2025-06-01T21:05:59.0269700Z [2115/7616] Building CUDA object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda_private.cu.obj 2025-06-01T21:05:59.1515499Z cuda_private.cu 2025-06-01T21:05:59.1515835Z tmpxft_000004c0_00000000-7_cuda_private.cudafe1.cpp 2025-06-01T21:05:59.1516381Z [2116/7616] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDAFunctions.cpp.obj 2025-06-01T21:05:59.1642552Z [2117/7616] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDAException.cpp.obj 2025-06-01T21:05:59.2184672Z [2118/7616] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDAMiscFunctions.cpp.obj 2025-06-01T21:05:59.2248477Z [2119/7616] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\driver_api.cpp.obj 2025-06-01T21:05:59.2918501Z [2120/7616] Linking C static library sleef\lib\sleef.lib 2025-06-01T21:05:59.3110719Z [2121/7616] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDAMallocAsyncAllocator.cpp.obj 2025-06-01T21:05:59.4050778Z [2122/7616] Linking CXX static library lib\gloo_cuda.lib 2025-06-01T21:05:59.5067555Z [2123/7616] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDAStream.cpp.obj 2025-06-01T21:05:59.5444482Z [2124/7616] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\impl\CUDATest.cpp.obj 2025-06-01T21:05:59.5832187Z [2125/7616] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\impl\CUDAGuardImpl.cpp.obj 2025-06-01T21:05:59.7385868Z [2126/7616] Linking CXX shared library bin\c10_cuda.dll 2025-06-01T21:05:59.7505644Z [2127/7616] Generating C:/actions-runner/_work/pytorch/pytorch/torch/utils/data/datapipes/datapipe.pyi 2025-06-01T21:05:59.7837266Z [2128/7616] Building CXX object third_party\googletest\googletest\CMakeFiles\gtest.dir\src\gtest-all.cc.obj 2025-06-01T21:05:59.8398273Z [2129/7616] Linking CXX static library lib\gtest.lib 2025-06-01T21:06:00.0989919Z [2130/7616] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock.dir\src\gmock-all.cc.obj 2025-06-01T21:06:00.1322875Z [2131/7616] Building CXX object third_party\googletest\googletest\CMakeFiles\gtest_main.dir\src\gtest_main.cc.obj 2025-06-01T21:06:00.1928392Z [2132/7616] Regenerating version file... 2025-06-01T21:06:00.2088718Z [2133/7616] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock.dir\__\googletest\src\gtest-all.cc.obj 2025-06-01T21:06:00.4488714Z [2134/7616] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark_name.cc.obj 2025-06-01T21:06:00.7077348Z [2135/7616] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark_api_internal.cc.obj 2025-06-01T21:06:00.7258308Z [2136/7616] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark.cc.obj 2025-06-01T21:06:00.8733519Z [2137/7616] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark_register.cc.obj 2025-06-01T21:06:01.0042234Z [2138/7616] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark_runner.cc.obj 2025-06-01T21:06:01.1496675Z [2139/7616] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\check.cc.obj 2025-06-01T21:06:01.1980777Z [2140/7616] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\colorprint.cc.obj 2025-06-01T21:06:01.3695324Z [2141/7616] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\commandlineflags.cc.obj 2025-06-01T21:06:01.3867660Z [2142/7616] Generating sources 2025-06-01T21:06:01.4066107Z [2143/7616] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\counter.cc.obj 2025-06-01T21:06:01.5494341Z [2144/7616] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\complexity.cc.obj 2025-06-01T21:06:01.7487780Z [2145/7616] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\console_reporter.cc.obj 2025-06-01T21:06:02.0115650Z [2146/7616] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\csv_reporter.cc.obj 2025-06-01T21:06:02.0134986Z [2147/7616] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\json_reporter.cc.obj 2025-06-01T21:06:02.0589383Z [2148/7616] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\perf_counters.cc.obj 2025-06-01T21:06:02.1582959Z [2149/7616] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\reporter.cc.obj 2025-06-01T21:06:02.2868849Z [2150/7616] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\statistics.cc.obj 2025-06-01T21:06:02.4274864Z [2151/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\any_lite.cc.obj 2025-06-01T21:06:02.5517718Z [2152/7616] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\string_util.cc.obj 2025-06-01T21:06:02.5532237Z [2153/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\arena.cc.obj 2025-06-01T21:06:03.0317237Z [2154/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\generated_enum_util.cc.obj 2025-06-01T21:06:03.0335090Z [2155/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\generated_message_table_driven_lite.cc.obj 2025-06-01T21:06:03.0350525Z [2156/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\extension_set.cc.obj 2025-06-01T21:06:03.2497349Z [2157/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\coded_stream.cc.obj 2025-06-01T21:06:03.5233816Z [2158/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\implicit_weak_message.cc.obj 2025-06-01T21:06:03.5250048Z [2159/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\generated_message_util.cc.obj 2025-06-01T21:06:03.7224641Z [2160/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\zero_copy_stream.cc.obj 2025-06-01T21:06:04.8624354Z [2161/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\strtod.cc.obj 2025-06-01T21:06:04.8639387Z [2162/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\zero_copy_stream_impl.cc.obj 2025-06-01T21:06:04.8705389Z [2163/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\io_win32.cc.obj 2025-06-01T21:06:04.8972242Z [2164/7616] Linking CXX static library lib\dnnl.lib 2025-06-01T21:06:05.0268033Z [2165/7616] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\timers.cc.obj 2025-06-01T21:06:05.1203746Z [2166/7616] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\sysinfo.cc.obj 2025-06-01T21:06:05.1289883Z [2167/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\zero_copy_stream_impl_lite.cc.obj 2025-06-01T21:06:05.1596501Z [2168/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\parse_context.cc.obj 2025-06-01T21:06:05.1694161Z [2169/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\repeated_field.cc.obj 2025-06-01T21:06:05.1891770Z [2170/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\message_lite.cc.obj 2025-06-01T21:06:05.2623903Z [2171/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\bytestream.cc.obj 2025-06-01T21:06:05.3770746Z [2172/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\int128.cc.obj 2025-06-01T21:06:05.4076400Z [2173/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\statusor.cc.obj 2025-06-01T21:06:05.4175201Z [2174/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\status.cc.obj 2025-06-01T21:06:05.4402847Z [2175/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\stringpiece.cc.obj 2025-06-01T21:06:05.5075724Z [2176/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\stringprintf.cc.obj 2025-06-01T21:06:05.5189020Z [2177/7616] Building RC object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\version.rc.res 2025-06-01T21:06:05.5647446Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-06-01T21:06:05.5647885Z 2025-06-01T21:06:05.5647890Z 2025-06-01T21:06:05.5648068Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-06-01T21:06:05.5648357Z 2025-06-01T21:06:05.5648362Z 2025-06-01T21:06:05.5648367Z 2025-06-01T21:06:05.5648395Z 2025-06-01T21:06:05.5649070Z [2178/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\common.cc.obj 2025-06-01T21:06:05.6224579Z [2179/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\structurally_valid.cc.obj 2025-06-01T21:06:05.6732392Z [2180/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\time.cc.obj 2025-06-01T21:06:05.6959599Z [2181/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\strutil.cc.obj 2025-06-01T21:06:05.7288965Z [2182/7616] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\wire_format_lite.cc.obj 2025-06-01T21:06:05.7953513Z [2183/7616] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\info.c.obj 2025-06-01T21:06:05.8000775Z [2184/7616] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\init.c.obj 2025-06-01T21:06:05.8545891Z [2185/7616] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\vendor.c.obj 2025-06-01T21:06:05.8659345Z [2186/7616] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\api.c.obj 2025-06-01T21:06:05.8920393Z [2187/7616] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\uarch.c.obj 2025-06-01T21:06:05.9094019Z [2188/7616] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\cache.c.obj 2025-06-01T21:06:05.9422780Z [2189/7616] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\name.c.obj 2025-06-01T21:06:05.9484403Z [2190/7616] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\init.c.obj 2025-06-01T21:06:05.9587259Z [2191/7616] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\topology.c.obj 2025-06-01T21:06:05.9699590Z [2192/7616] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\isa.c.obj 2025-06-01T21:06:05.9990394Z [2193/7616] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\log.c.obj 2025-06-01T21:06:06.0059472Z [2194/7616] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\cache\descriptor.c.obj 2025-06-01T21:06:06.0112337Z [2195/7616] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\cache\init.c.obj 2025-06-01T21:06:06.0355103Z [2196/7616] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\cache\deterministic.c.obj 2025-06-01T21:06:06.0720974Z [2197/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-scalar-u2.c.obj 2025-06-01T21:06:06.1016504Z [2198/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-scalar-u3.c.obj 2025-06-01T21:06:06.1130118Z [2199/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-fmagic-u2.c.obj 2025-06-01T21:06:06.1380366Z [2200/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-fmagic-u3.c.obj 2025-06-01T21:06:06.1446596Z [2201/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-fmagic-u1.c.obj 2025-06-01T21:06:06.1813108Z [2202/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-fmagic-u4.c.obj 2025-06-01T21:06:06.2016455Z [2203/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-imagic-u1.c.obj 2025-06-01T21:06:06.2155893Z [2204/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-imagic-u2.c.obj 2025-06-01T21:06:06.2440233Z [2205/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qu8-vcvt\gen\f16-qu8-vcvt-scalar-imagic-u1.c.obj 2025-06-01T21:06:06.2599665Z [2206/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-imagic-u3.c.obj 2025-06-01T21:06:06.2861108Z [2207/7616] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\windows\init.c.obj 2025-06-01T21:06:06.3024913Z [2208/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qu8-vcvt\gen\f16-qu8-vcvt-scalar-imagic-u2.c.obj 2025-06-01T21:06:06.3231956Z [2209/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-scalar-u1.c.obj 2025-06-01T21:06:06.3297834Z [2210/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qu8-vcvt\gen\f16-qu8-vcvt-scalar-imagic-u3.c.obj 2025-06-01T21:06:06.3440836Z [2211/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-scalar-u3-acc3.c.obj 2025-06-01T21:06:06.3614360Z [2212/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-scalar-u4-acc2.c.obj 2025-06-01T21:06:06.4063512Z [2213/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-scalar-u4-acc4.c.obj 2025-06-01T21:06:06.4113071Z [2214/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u1.c.obj 2025-06-01T21:06:06.4206828Z [2215/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u2-acc2.c.obj 2025-06-01T21:06:06.4293272Z [2216/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u3-acc3.c.obj 2025-06-01T21:06:06.4494026Z [2217/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u4-acc2.c.obj 2025-06-01T21:06:06.4606156Z [2218/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u4-acc4.c.obj 2025-06-01T21:06:06.5102053Z [2219/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u1.c.obj 2025-06-01T21:06:06.5170732Z [2220/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u3-acc3.c.obj 2025-06-01T21:06:06.5237174Z [2221/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u4-acc2.c.obj 2025-06-01T21:06:06.5398031Z [2222/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u4-acc4.c.obj 2025-06-01T21:06:06.5478862Z [2223/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-conv-hwc\f32-conv-hwc-3x3s2p0p1c3x4-scalar-1x1.c.obj 2025-06-01T21:06:06.5549312Z [2224/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-conv-hwc\f32-conv-hwc-3x3s2p1c3x4-scalar-1x1.c.obj 2025-06-01T21:06:06.6384060Z [2225/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l1c1s1r-minmax-scalar.c.obj 2025-06-01T21:06:06.6440518Z [2226/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l1c1s1r-minmax-scalar-acc2.c.obj 2025-06-01T21:06:06.6456256Z [2227/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l1c1s1r-scalar-acc2.c.obj 2025-06-01T21:06:06.6648179Z [2228/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l1c1s1r-scalar.c.obj 2025-06-01T21:06:06.6853022Z [2229/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l4c1s1r-minmax-scalar.c.obj 2025-06-01T21:06:06.7505172Z [2230/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l4c1s1r-scalar-acc2.c.obj 2025-06-01T21:06:06.7517737Z [2231/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3f3m3l1c1s1r-scalar.c.obj 2025-06-01T21:06:06.7579715Z [2232/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l4c1s1r-scalar.c.obj 2025-06-01T21:06:06.7964972Z [2233/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p1c-scalar.c.obj 2025-06-01T21:06:06.8012383Z [2234/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p1c-minmax-scalar.c.obj 2025-06-01T21:06:06.8610470Z [2235/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p2c-minmax-scalar.c.obj 2025-06-01T21:06:06.8722387Z [2236/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p2c-minmax-scalar-acc2.c.obj 2025-06-01T21:06:06.8773969Z [2237/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p2c-scalar-acc2.c.obj 2025-06-01T21:06:06.8933282Z [2238/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3f3m3l1c1s1r-scalar-acc2.c.obj 2025-06-01T21:06:06.9098568Z [2239/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p1c-minmax-scalar.c.obj 2025-06-01T21:06:06.9161643Z [2240/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p2c-scalar.c.obj 2025-06-01T21:06:06.9854012Z [2241/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p1c-scalar.c.obj 2025-06-01T21:06:06.9951375Z [2242/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p2c-minmax-scalar-acc2.c.obj 2025-06-01T21:06:07.0162238Z [2243/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p2c-scalar-acc2.c.obj 2025-06-01T21:06:07.0239856Z [2244/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p2c-minmax-scalar.c.obj 2025-06-01T21:06:07.0294498Z [2245/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p2c-scalar.c.obj 2025-06-01T21:06:07.0348683Z [2246/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l1c1s1r-minmax-scalar-acc2.c.obj 2025-06-01T21:06:07.1078762Z [2247/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l1c1s1r-minmax-scalar.c.obj 2025-06-01T21:06:07.1477597Z [2248/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l1c1s1r-scalar-acc2.c.obj 2025-06-01T21:06:07.1490162Z [2249/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l1c1s1r-scalar.c.obj 2025-06-01T21:06:07.1503079Z [2250/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l1c1s1r-minmax-scalar.c.obj 2025-06-01T21:06:07.1514494Z [2251/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l1c1s1r-minmax-scalar-acc2.c.obj 2025-06-01T21:06:07.2076277Z [2252/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l1c1s1r-scalar-acc2.c.obj 2025-06-01T21:06:07.2178180Z [2253/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l1c1s1r-scalar.c.obj 2025-06-01T21:06:07.2590923Z [2254/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l1c1s1r-minmax-scalar-acc2.c.obj 2025-06-01T21:06:07.2604045Z [2255/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l1c1s1r-scalar-acc2.c.obj 2025-06-01T21:06:07.2660189Z [2256/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l1c1s1r-scalar.c.obj 2025-06-01T21:06:07.2771044Z [2257/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l1c1s1r-minmax-scalar.c.obj 2025-06-01T21:06:07.3313408Z [2258/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p1c-scalar.c.obj 2025-06-01T21:06:07.3372378Z [2259/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p1c-minmax-scalar.c.obj 2025-06-01T21:06:07.3776631Z [2260/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p2c-minmax-scalar.c.obj 2025-06-01T21:06:07.3790538Z [2261/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p2c-minmax-scalar-acc2.c.obj 2025-06-01T21:06:07.3956996Z [2262/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p2c-scalar-acc2.c.obj 2025-06-01T21:06:07.4142575Z [2263/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p2c-scalar.c.obj 2025-06-01T21:06:07.4423548Z [2264/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p1c-minmax-scalar.c.obj 2025-06-01T21:06:07.4957032Z [2265/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p2c-minmax-scalar.c.obj 2025-06-01T21:06:07.4973396Z [2266/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p2c-minmax-scalar-acc2.c.obj 2025-06-01T21:06:07.5033122Z [2267/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p1c-scalar.c.obj 2025-06-01T21:06:07.5108414Z [2268/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p2c-scalar-acc2.c.obj 2025-06-01T21:06:07.5195569Z [2269/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p2c-scalar.c.obj 2025-06-01T21:06:07.5614418Z [2270/7616] 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-06-01T21:06:07.6214943Z [2271/7616] 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-06-01T21:06:07.6262504Z [2272/7616] 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-06-01T21:06:07.6335780Z [2273/7616] 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-06-01T21:06:07.6395458Z [2274/7616] 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-06-01T21:06:07.6411664Z [2275/7616] 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-06-01T21:06:07.6794355Z [2276/7616] 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-06-01T21:06:07.7418874Z [2277/7616] 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-06-01T21:06:07.7512705Z [2278/7616] 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-06-01T21:06:07.7564888Z [2279/7616] 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-06-01T21:06:07.7637740Z [2280/7616] 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-06-01T21:06:07.7718378Z [2281/7616] 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-06-01T21:06:07.7989187Z [2282/7616] 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-06-01T21:06:07.8646221Z [2283/7616] 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-06-01T21:06:07.8659332Z [2284/7616] 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-06-01T21:06:07.8901478Z [2285/7616] 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-06-01T21:06:07.9163702Z [2286/7616] 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-06-01T21:06:07.9419958Z [2287/7616] 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-06-01T21:06:07.9518412Z [2288/7616] 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-06-01T21:06:07.9690584Z [2289/7616] 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-06-01T21:06:07.9744738Z [2290/7616] 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-06-01T21:06:08.0089261Z [2291/7616] 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-06-01T21:06:08.0315135Z [2292/7616] 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-06-01T21:06:08.0570508Z [2293/7616] 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-06-01T21:06:08.0786427Z [2294/7616] 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-06-01T21:06:08.0844566Z [2295/7616] 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-06-01T21:06:08.1033086Z [2296/7616] 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-06-01T21:06:08.1320803Z [2297/7616] 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-06-01T21:06:08.1564788Z [2298/7616] 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-06-01T21:06:08.1747717Z [2299/7616] 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-06-01T21:06:08.1914014Z [2300/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-bitcast-u1.c.obj 2025-06-01T21:06:08.2016647Z [2301/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-bitcast-u3.c.obj 2025-06-01T21:06:08.2029862Z [2302/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-bitcast-u2.c.obj 2025-06-01T21:06:08.2718775Z [2303/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-fabsf-u4.c.obj 2025-06-01T21:06:08.2731999Z [2304/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-fabsf-u3.c.obj 2025-06-01T21:06:08.2787942Z [2305/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-fabsf-u1.c.obj 2025-06-01T21:06:08.3127495Z [2306/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x2-relu-scalar.c.obj 2025-06-01T21:06:08.3322929Z [2307/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x4-minmax-scalar.c.obj 2025-06-01T21:06:08.3521592Z [2308/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-2x4-minmax-scalar.c.obj 2025-06-01T21:06:08.3743555Z [2309/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear-chw\gen\f32-ibilinear-chw-scalar-p2.c.obj 2025-06-01T21:06:08.4019938Z [2310/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x4-minmax-scalar.c.obj 2025-06-01T21:06:08.4071317Z [2311/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear\gen\f32-ibilinear-scalar-c1.c.obj 2025-06-01T21:06:08.4085380Z [2312/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear-chw\gen\f32-ibilinear-chw-scalar-p1.c.obj 2025-06-01T21:06:08.4199294Z [2313/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear\gen\f32-ibilinear-scalar-c4.c.obj 2025-06-01T21:06:08.4591724Z [2314/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x2-relu-scalar.c.obj 2025-06-01T21:06:08.4756624Z [2315/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-2x4-minmax-scalar.c.obj 2025-06-01T21:06:08.5029283Z [2316/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-3x3-minmax-scalar.c.obj 2025-06-01T21:06:08.5140762Z [2317/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-4x4-minmax-scalar.c.obj 2025-06-01T21:06:08.5200913Z [2318/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-4x2-minmax-scalar.c.obj 2025-06-01T21:06:08.5461661Z [2319/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-2x4-minmax-scalar.c.obj 2025-06-01T21:06:08.5783770Z [2320/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-4x2-minmax-scalar.c.obj 2025-06-01T21:06:08.6135181Z [2321/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x4-relu-scalar.c.obj 2025-06-01T21:06:08.6278305Z [2322/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x4-scalar.c.obj 2025-06-01T21:06:08.6630050Z [2323/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-2x4-minmax-scalar.c.obj 2025-06-01T21:06:08.6733779Z [2324/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-2x4-relu-scalar.c.obj 2025-06-01T21:06:08.6997016Z [2325/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-2x4-scalar.c.obj 2025-06-01T21:06:08.7057493Z [2326/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x2-minmax-scalar.c.obj 2025-06-01T21:06:08.7588472Z [2327/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x2-relu-scalar.c.obj 2025-06-01T21:06:08.7643204Z [2328/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x2-scalar.c.obj 2025-06-01T21:06:08.7851338Z [2329/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x4-relu-scalar.c.obj 2025-06-01T21:06:08.7930184Z [2330/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x4-scalar.c.obj 2025-06-01T21:06:08.7988002Z [2331/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-1x1-minmax-scalar.c.obj 2025-06-01T21:06:08.8194239Z [2332/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-2x1-minmax-scalar.c.obj 2025-06-01T21:06:08.8581045Z [2333/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-4x1-minmax-scalar.c.obj 2025-06-01T21:06:08.8814292Z [2334/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-8x1-minmax-scalar.c.obj 2025-06-01T21:06:08.8864044Z [2335/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-8x2-minmax-scalar.c.obj 2025-06-01T21:06:08.9042342Z [2336/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-fmagic-u1.c.obj 2025-06-01T21:06:08.9061768Z [2337/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-8x4-minmax-scalar.c.obj 2025-06-01T21:06:08.9239281Z [2338/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-fmagic-u2.c.obj 2025-06-01T21:06:08.9682014Z [2339/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-fmagic-u3.c.obj 2025-06-01T21:06:08.9892805Z [2340/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-fmagic-u4.c.obj 2025-06-01T21:06:08.9971067Z [2341/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-imagic-u2.c.obj 2025-06-01T21:06:09.0028180Z [2342/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-imagic-u3.c.obj 2025-06-01T21:06:09.0133662Z [2343/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-lrintf-u1.c.obj 2025-06-01T21:06:09.0320771Z [2344/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-lrintf-u2.c.obj 2025-06-01T21:06:09.0912713Z [2345/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-fmagic-u1.c.obj 2025-06-01T21:06:09.0993483Z [2346/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-lrintf-u3.c.obj 2025-06-01T21:06:09.1056050Z [2347/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-fmagic-u2.c.obj 2025-06-01T21:06:09.1161371Z [2348/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-fmagic-u3.c.obj 2025-06-01T21:06:09.1294659Z [2349/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-fmagic-u4.c.obj 2025-06-01T21:06:09.1354167Z [2350/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-imagic-u2.c.obj 2025-06-01T21:06:09.1978229Z [2351/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-imagic-u3.c.obj 2025-06-01T21:06:09.2087978Z [2352/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-lrintf-u1.c.obj 2025-06-01T21:06:09.2178615Z [2353/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-lrintf-u2.c.obj 2025-06-01T21:06:09.2191371Z [2354/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-lrintf-u3.c.obj 2025-06-01T21:06:09.2278527Z [2355/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-u1.c.obj 2025-06-01T21:06:09.2379807Z [2356/7616] 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-06-01T21:06:09.3134264Z [2357/7616] 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-06-01T21:06:09.3184759Z [2358/7616] 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-06-01T21:06:09.3232292Z [2359/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-p5-u2-acc2.c.obj 2025-06-01T21:06:09.3293667Z [2360/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-p5-u4-acc4.c.obj 2025-06-01T21:06:09.3343238Z [2361/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-p5-u1.c.obj 2025-06-01T21:06:09.3412715Z [2362/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-scalar-u1.c.obj 2025-06-01T21:06:09.4224877Z [2363/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-scalar-u4-acc2.c.obj 2025-06-01T21:06:09.4240184Z [2364/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-scalar-u2-acc2.c.obj 2025-06-01T21:06:09.4339101Z [2365/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u1.c.obj 2025-06-01T21:06:09.4391388Z [2366/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u2-acc2.c.obj 2025-06-01T21:06:09.4451750Z [2367/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-scalar-u3-acc3.c.obj 2025-06-01T21:06:09.4631935Z [2368/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u3-acc3.c.obj 2025-06-01T21:06:09.5325109Z [2369/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u4-acc2.c.obj 2025-06-01T21:06:09.5449298Z [2370/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u1.c.obj 2025-06-01T21:06:09.5532499Z [2371/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u2-acc2.c.obj 2025-06-01T21:06:09.5546901Z [2372/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u3-acc3.c.obj 2025-06-01T21:06:09.5691562Z [2373/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u4-acc4.c.obj 2025-06-01T21:06:09.5747151Z [2374/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u4-acc2.c.obj 2025-06-01T21:06:09.6321001Z [2375/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-scalar-u1.c.obj 2025-06-01T21:06:09.6630037Z [2376/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-scalar-u2-acc2.c.obj 2025-06-01T21:06:09.6645076Z [2377/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-scalar-u3-acc3.c.obj 2025-06-01T21:06:09.6655982Z [2378/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-scalar-u4-acc2.c.obj 2025-06-01T21:06:09.6716001Z [2379/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-1x1-minmax-scalar-pipelined.c.obj 2025-06-01T21:06:09.6981916Z [2380/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-1x1-minmax-scalar.c.obj 2025-06-01T21:06:09.7341358Z [2381/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-2x1-minmax-scalar-pipelined.c.obj 2025-06-01T21:06:09.7592472Z [2382/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-2x1-minmax-scalar.c.obj 2025-06-01T21:06:09.7654715Z [2383/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-4x1-minmax-scalar.c.obj 2025-06-01T21:06:09.7734569Z [2384/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-4x1-minmax-scalar-pipelined.c.obj 2025-06-01T21:06:09.7833901Z [2385/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-8x1-minmax-scalar-pipelined.c.obj 2025-06-01T21:06:09.8164647Z [2386/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-scalar-u1.c.obj 2025-06-01T21:06:09.8638304Z [2387/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-scalar-u2.c.obj 2025-06-01T21:06:09.8847192Z [2388/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-scalar-u1.c.obj 2025-06-01T21:06:09.8924415Z [2389/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-scalar-u4.c.obj 2025-06-01T21:06:09.8938481Z [2390/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-scalar-u4.c.obj 2025-06-01T21:06:09.8952783Z [2391/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-scalar-u2.c.obj 2025-06-01T21:06:09.9259846Z [2392/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-scalar-u1.c.obj 2025-06-01T21:06:09.9939377Z [2393/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-scalar-u8.c.obj 2025-06-01T21:06:10.0060740Z [2394/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-scalar-u4.c.obj 2025-06-01T21:06:10.0074457Z [2395/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-scalar-u8.c.obj 2025-06-01T21:06:10.0178721Z [2396/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-scalar-u1.c.obj 2025-06-01T21:06:10.0261881Z [2397/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-scalar-u1.c.obj 2025-06-01T21:06:10.0591138Z [2398/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-scalar-u4.c.obj 2025-06-01T21:06:10.1059889Z [2399/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-scalar-u2.c.obj 2025-06-01T21:06:10.1247897Z [2400/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-scalar-u4.c.obj 2025-06-01T21:06:10.1339127Z [2401/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-scalar-u1.c.obj 2025-06-01T21:06:10.1399112Z [2402/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-scalar-u2.c.obj 2025-06-01T21:06:10.1498468Z [2403/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-scalar-u4.c.obj 2025-06-01T21:06:10.1672296Z [2404/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-scalar-u1.c.obj 2025-06-01T21:06:10.2194211Z [2405/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-scalar-u2.c.obj 2025-06-01T21:06:10.2357259Z [2406/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-scalar-u4.c.obj 2025-06-01T21:06:10.2557954Z [2407/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-scalar-u2.c.obj 2025-06-01T21:06:10.2626253Z [2408/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-scalar-u1.c.obj 2025-06-01T21:06:10.2642321Z [2409/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-scalar-u4.c.obj 2025-06-01T21:06:10.2920015Z [2410/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-scalar-u1.c.obj 2025-06-01T21:06:10.3312964Z [2411/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-scalar-u2.c.obj 2025-06-01T21:06:10.3488856Z [2412/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-scalar-u4.c.obj 2025-06-01T21:06:10.3727403Z [2413/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-scalar-u1.c.obj 2025-06-01T21:06:10.3933641Z [2414/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-scalar-u4.c.obj 2025-06-01T21:06:10.4051533Z [2415/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-scalar-u1.c.obj 2025-06-01T21:06:10.4198640Z [2416/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-scalar-u2.c.obj 2025-06-01T21:06:10.4484524Z [2417/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-scalar-u2.c.obj 2025-06-01T21:06:10.4583852Z [2418/7616] 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-06-01T21:06:10.4712897Z [2419/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-scalar-u4.c.obj 2025-06-01T21:06:10.4850494Z [2420/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-scalar-u1.c.obj 2025-06-01T21:06:10.5034777Z [2421/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-scalar-u2.c.obj 2025-06-01T21:06:10.5198858Z [2422/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-scalar-u4.c.obj 2025-06-01T21:06:10.5345982Z [2423/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-scalar-u1.c.obj 2025-06-01T21:06:10.5645283Z [2424/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-scalar-u4.c.obj 2025-06-01T21:06:10.5718063Z [2425/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-scalar-u8.c.obj 2025-06-01T21:06:10.5876974Z [2426/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-scalar-u1.c.obj 2025-06-01T21:06:10.5949660Z [2427/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-scalar-u2.c.obj 2025-06-01T21:06:10.6299661Z [2428/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-scalar-u4.c.obj 2025-06-01T21:06:10.6360002Z [2429/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-scalar-u1.c.obj 2025-06-01T21:06:10.6542938Z [2430/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-scalar-u2.c.obj 2025-06-01T21:06:10.6714895Z [2431/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-scalar-u4.c.obj 2025-06-01T21:06:10.6857655Z [2432/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-scalar-u1.c.obj 2025-06-01T21:06:10.7056517Z [2433/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-scalar-u2.c.obj 2025-06-01T21:06:10.7146405Z [2434/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-scalar-u4.c.obj 2025-06-01T21:06:10.7461962Z [2435/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-scalar-u2.c.obj 2025-06-01T21:06:10.7476169Z [2436/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-scalar-u1.c.obj 2025-06-01T21:06:10.7691021Z [2437/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-scalar-u4.c.obj 2025-06-01T21:06:10.7918792Z [2438/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-scalar-u1.c.obj 2025-06-01T21:06:10.8098539Z [2439/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-scalar-u2.c.obj 2025-06-01T21:06:10.8163005Z [2440/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-scalar-u4.c.obj 2025-06-01T21:06:10.8231912Z [2441/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-scalar-u1.c.obj 2025-06-01T21:06:10.8685582Z [2442/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-scalar-u2.c.obj 2025-06-01T21:06:10.8753129Z [2443/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-scalar-u4.c.obj 2025-06-01T21:06:10.8767563Z [2444/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-scalar-u1.c.obj 2025-06-01T21:06:10.9003395Z [2445/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-scalar-u2.c.obj 2025-06-01T21:06:10.9307671Z [2446/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-scalar-u8.c.obj 2025-06-01T21:06:10.9368402Z [2447/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-scalar-u2.c.obj 2025-06-01T21:06:10.9462054Z [2448/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-scalar-u1.c.obj 2025-06-01T21:06:10.9881633Z [2449/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u1.c.obj 2025-06-01T21:06:10.9895844Z [2450/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u5.c.obj 2025-06-01T21:06:11.0183047Z [2451/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u3.c.obj 2025-06-01T21:06:11.0196753Z [2452/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u6.c.obj 2025-06-01T21:06:11.0396747Z [2453/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u1.c.obj 2025-06-01T21:06:11.0559199Z [2454/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u2.c.obj 2025-06-01T21:06:11.0613972Z [2455/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u3.c.obj 2025-06-01T21:06:11.0993922Z [2456/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u4.c.obj 2025-06-01T21:06:11.1064836Z [2457/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u5.c.obj 2025-06-01T21:06:11.1338569Z [2458/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vgelu\gen\f32-vgelu-scalar.c.obj 2025-06-01T21:06:11.1404983Z [2459/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u6.c.obj 2025-06-01T21:06:11.1623396Z [2460/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-scalar-u1.c.obj 2025-06-01T21:06:11.1696848Z [2461/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-scalar-u2.c.obj 2025-06-01T21:06:11.1748118Z [2462/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlog\gen\f32-vlog-scalar-log.c.obj 2025-06-01T21:06:11.2100255Z [2463/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-scalar-u1.c.obj 2025-06-01T21:06:11.2212075Z [2464/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-scalar-u2.c.obj 2025-06-01T21:06:11.2447714Z [2465/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vmulcaddc\gen\f32-vmulcaddc-c2-minmax-scalar-2x.c.obj 2025-06-01T21:06:11.2505686Z [2466/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vmulcaddc\gen\f32-vmulcaddc-c4-minmax-scalar-2x.c.obj 2025-06-01T21:06:11.2802059Z [2467/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-scalar-u1.c.obj 2025-06-01T21:06:11.2861441Z [2468/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-scalar-u4.c.obj 2025-06-01T21:06:11.2918143Z [2469/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-scalar-u2.c.obj 2025-06-01T21:06:11.3342770Z [2470/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-scalar-libm-u2.c.obj 2025-06-01T21:06:11.3409915Z [2471/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-scalar-libm-u2.c.obj 2025-06-01T21:06:11.3671492Z [2472/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-scalar-libm-u2.c.obj 2025-06-01T21:06:11.3736206Z [2473/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-scalar-libm-u2.c.obj 2025-06-01T21:06:11.3996491Z [2474/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-scalar-rsqrt-u2.c.obj 2025-06-01T21:06:11.4011422Z [2475/7616] 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-06-01T21:06:11.4525062Z [2476/7616] 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-06-01T21:06:11.4538841Z [2477/7616] 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-06-01T21:06:11.4596041Z [2478/7616] 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-06-01T21:06:11.4777429Z [2479/7616] 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-06-01T21:06:11.5036905Z [2480/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-scalar-rr2-p5-div-u1.c.obj 2025-06-01T21:06:11.5097738Z [2481/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-scalar-rr2-p5-div-u4.c.obj 2025-06-01T21:06:11.5158061Z [2482/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-scalar-rr2-p5-div-u2.c.obj 2025-06-01T21:06:11.5711540Z [2483/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-scalar-sqrt-u2.c.obj 2025-06-01T21:06:11.5825859Z [2484/7616] 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-06-01T21:06:11.5839908Z [2485/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-scalar-sqrt-u4.c.obj 2025-06-01T21:06:11.6117053Z [2486/7616] 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-06-01T21:06:11.6380632Z [2487/7616] 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-06-01T21:06:11.6485254Z [2488/7616] 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-06-01T21:06:11.6678727Z [2489/7616] 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-06-01T21:06:11.7098541Z [2490/7616] 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-06-01T21:06:11.7276266Z [2491/7616] 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-06-01T21:06:11.7339601Z [2492/7616] 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-06-01T21:06:11.7486494Z [2493/7616] 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-06-01T21:06:11.7849039Z [2494/7616] 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-06-01T21:06:11.7862859Z [2495/7616] 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-06-01T21:06:11.7916057Z [2496/7616] 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-06-01T21:06:11.8509140Z [2497/7616] 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-06-01T21:06:11.8611489Z [2498/7616] 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-06-01T21:06:11.8673667Z [2499/7616] 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-06-01T21:06:11.9081431Z [2500/7616] 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-06-01T21:06:11.9273657Z [2501/7616] 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-06-01T21:06:11.9289741Z [2502/7616] 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-06-01T21:06:11.9341191Z [2503/7616] 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-06-01T21:06:11.9912433Z [2504/7616] 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-06-01T21:06:11.9978136Z [2505/7616] 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-06-01T21:06:12.0042485Z [2506/7616] 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-06-01T21:06:12.0418211Z [2507/7616] 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-06-01T21:06:12.0469603Z [2508/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:06:12.0575339Z [2509/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:06:12.1114312Z [2510/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:06:12.1169192Z [2511/7616] 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-06-01T21:06:12.1181937Z [2512/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:06:12.1323434Z [2513/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:06:12.1605785Z [2514/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:06:12.1670438Z [2515/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:06:12.1753311Z [2516/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:06:12.2324056Z [2517/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:06:12.2440466Z [2518/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:06:12.2577185Z [2519/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:06:12.2641315Z [2520/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:06:12.2852972Z [2521/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:06:12.2867740Z [2522/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:06:12.3074402Z [2523/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:06:12.3509957Z [2524/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:06:12.3622987Z [2525/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:06:12.3778545Z [2526/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:06:12.3840311Z [2527/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:06:12.4038317Z [2528/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:06:12.4215911Z [2529/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:06:12.4281534Z [2530/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:06:12.4932837Z [2531/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:06:12.4997548Z [2532/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:06:12.5011441Z [2533/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:06:12.5022971Z [2534/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:06:12.5219643Z [2535/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:06:12.5321630Z [2536/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p1c-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:06:12.5504671Z [2537/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:06:12.6151282Z [2538/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:06:12.6207869Z [2539/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p2c-minmax-rndnu-scalar.c.obj 2025-06-01T21:06:12.6272245Z [2540/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:06:12.6453438Z [2541/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p1c-minmax-rndnu-scalar.c.obj 2025-06-01T21:06:12.6465615Z [2542/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:06:12.6516344Z [2543/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p4c-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:06:12.6649868Z [2544/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p4c-minmax-rndnu-scalar.c.obj 2025-06-01T21:06:12.7411437Z [2545/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:06:12.7464083Z [2546/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:06:12.7605419Z [2547/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p2c-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:06:12.7654562Z [2548/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:06:12.7710172Z [2549/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-scalar-u2.c.obj 2025-06-01T21:06:12.7772076Z [2550/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p4c-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:06:12.7831524Z [2551/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:06:12.8515624Z [2552/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-scalar-u3.c.obj 2025-06-01T21:06:12.8530587Z [2553/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c4-gemm-gio-scalar.c.obj 2025-06-01T21:06:12.8674700Z [2554/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c4-gemm-goi-scalar.c.obj 2025-06-01T21:06:12.8757742Z [2555/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c8-gemm-gio-scalar.c.obj 2025-06-01T21:06:12.8896081Z [2556/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x16c4-gemm-gio-scalar.c.obj 2025-06-01T21:06:12.8913468Z [2557/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x16c4-gemm-goi-scalar.c.obj 2025-06-01T21:06:12.9029599Z [2558/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c8-gemm-goi-scalar.c.obj 2025-06-01T21:06:12.9655715Z [2559/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x32c4-gemm-gio-scalar.c.obj 2025-06-01T21:06:12.9730166Z [2560/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x16c8-gemm-gio-scalar.c.obj 2025-06-01T21:06:12.9780920Z [2561/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x32c4-gemm-goi-scalar.c.obj 2025-06-01T21:06:12.9901940Z [2562/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x64c4-gemm-gio-scalar.c.obj 2025-06-01T21:06:12.9976330Z [2563/7616] 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-06-01T21:06:12.9993757Z [2564/7616] 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-06-01T21:06:13.0548291Z [2565/7616] 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-06-01T21:06:13.0772369Z [2566/7616] 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-06-01T21:06:13.0930360Z [2567/7616] 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-06-01T21:06:13.0991197Z [2568/7616] 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-06-01T21:06:13.1061638Z [2569/7616] 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-06-01T21:06:13.1175823Z [2570/7616] 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-06-01T21:06:13.1225198Z [2571/7616] 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-06-01T21:06:13.1770919Z [2572/7616] 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-06-01T21:06:13.2011783Z [2573/7616] 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-06-01T21:06:13.2103866Z [2574/7616] 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-06-01T21:06:13.2230782Z [2575/7616] 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-06-01T21:06:13.2365872Z [2576/7616] 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-06-01T21:06:13.2510415Z [2577/7616] 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-06-01T21:06:13.2625543Z [2578/7616] 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-06-01T21:06:13.2925184Z [2579/7616] 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-06-01T21:06:13.3356790Z [2580/7616] 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-06-01T21:06:13.3409479Z [2581/7616] 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-06-01T21:06:13.3590086Z [2582/7616] 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-06-01T21:06:13.3664064Z [2583/7616] 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-06-01T21:06:13.3742579Z [2584/7616] 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-06-01T21:06:13.3801283Z [2585/7616] 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-06-01T21:06:13.4071911Z [2586/7616] 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-06-01T21:06:13.4622874Z [2587/7616] 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-06-01T21:06:13.4841217Z [2588/7616] 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-06-01T21:06:13.5025231Z [2589/7616] 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-06-01T21:06:13.5079484Z [2590/7616] 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-06-01T21:06:13.5132038Z [2591/7616] 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-06-01T21:06:13.5297597Z [2592/7616] 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-06-01T21:06:13.5377176Z [2593/7616] 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-06-01T21:06:13.5830786Z [2594/7616] 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-06-01T21:06:13.6029055Z [2595/7616] 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-06-01T21:06:13.6166044Z [2596/7616] 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-06-01T21:06:13.6330990Z [2597/7616] 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-06-01T21:06:13.6385355Z [2598/7616] 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-06-01T21:06:13.6463066Z [2599/7616] 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-06-01T21:06:13.6529608Z [2600/7616] 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-06-01T21:06:13.7055044Z [2601/7616] 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-06-01T21:06:13.7418081Z [2602/7616] 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-06-01T21:06:13.7431030Z [2603/7616] 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-06-01T21:06:13.7556272Z [2604/7616] 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-06-01T21:06:13.7609884Z [2605/7616] 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-06-01T21:06:13.7788351Z [2606/7616] 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-06-01T21:06:13.7979191Z [2607/7616] 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-06-01T21:06:13.8480875Z [2608/7616] 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-06-01T21:06:13.8758550Z [2609/7616] 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-06-01T21:06:13.8806957Z [2610/7616] 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-06-01T21:06:13.8918582Z [2611/7616] 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-06-01T21:06:13.8932357Z [2612/7616] 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-06-01T21:06:13.9159127Z [2613/7616] 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-06-01T21:06:13.9413933Z [2614/7616] 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-06-01T21:06:13.9956031Z [2615/7616] 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-06-01T21:06:14.0204330Z [2616/7616] 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/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-06-01T21:06:14.0245935Z [2617/7616] 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-06-01T21:06:14.0404082Z [2618/7616] 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-06-01T21:06:14.0465124Z [2619/7616] 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-06-01T21:06:14.0477289Z [2620/7616] 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-06-01T21:06:14.0491361Z [2621/7616] 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-06-01T21:06:14.0798969Z [2622/7616] 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-06-01T21:06:14.1221027Z [2623/7616] 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-06-01T21:06:14.4991716Z [2624/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\AccumulateType.cpp.obj 2025-06-01T21:06:14.6229691Z [2625/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Dispatch.cpp.obj 2025-06-01T21:06:14.8023672Z [2626/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\DeviceAccelerator.cpp.obj 2025-06-01T21:06:14.8107729Z [2627/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Context.cpp.obj 2025-06-01T21:06:14.9688526Z [2628/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\CPUGeneratorImpl.cpp.obj 2025-06-01T21:06:15.0833547Z [2629/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FuncTorchTLS.cpp.obj 2025-06-01T21:06:15.2157228Z [2630/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ConjugateFallback.cpp.obj 2025-06-01T21:06:15.3666933Z [2631/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\EmptyTensor.cpp.obj 2025-06-01T21:06:15.7946110Z [2632/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\DynamicLibrary.cpp.obj 2025-06-01T21:06:15.8706501Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:06:15.8708221Z [2633/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ExpandUtils.cpp.obj 2025-06-01T21:06:16.0855875Z [2634/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FunctionalStorageImpl.cpp.obj 2025-06-01T21:06:16.3318092Z [2635/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FunctionalTensorWrapper.cpp.obj 2025-06-01T21:06:16.4666508Z [2636/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FunctionalizeFallbackKernel.cpp.obj 2025-06-01T21:06:16.7818748Z [2637/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyVmapMode.cpp.obj 2025-06-01T21:06:16.8848356Z [2638/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyBatchedTensorImpl.cpp.obj 2025-06-01T21:06:17.5158858Z [2639/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\MemoryOverlap.cpp.obj 2025-06-01T21:06:17.5828984Z [2640/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\CachedTensorUtils.cpp.obj 2025-06-01T21:06:17.6307610Z [2641/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\DLConvertor.cpp.obj 2025-06-01T21:06:17.7261766Z [2642/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\MapAllocator.cpp.obj 2025-06-01T21:06:17.8429357Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:06:17.8430368Z [2643/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ParallelNative.cpp.obj 2025-06-01T21:06:18.3928973Z [2644/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FunctionalInverses.cpp.obj 2025-06-01T21:06:18.5736265Z [2645/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\NamedTensorUtils.cpp.obj 2025-06-01T21:06:18.6438465Z [2646/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ParallelCommon.cpp.obj 2025-06-01T21:06:19.0994820Z [2647/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\SavedTensorHooks.cpp.obj 2025-06-01T21:06:19.2297870Z [2648/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyBatchedFallback.cpp.obj 2025-06-01T21:06:19.2361820Z [2649/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\PythonTorchFunctionTLS.cpp.obj 2025-06-01T21:06:19.2839990Z [2650/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ParallelOpenMP.cpp.obj 2025-06-01T21:06:19.3464745Z [2651/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\SequenceNumber.cpp.obj 2025-06-01T21:06:19.4417677Z [2652/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ParallelThreadPoolNative.cpp.obj 2025-06-01T21:06:19.9071560Z [2653/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyBatchingRegistrations.cpp.obj 2025-06-01T21:06:19.9607163Z [2654/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyVmapTransforms.cpp.obj 2025-06-01T21:06:20.0533023Z [2655/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorGeometry.cpp.obj 2025-06-01T21:06:20.1381800Z [2656/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ScalarOps.cpp.obj 2025-06-01T21:06:20.6156179Z [2657/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorMeta.cpp.obj 2025-06-01T21:06:20.9596089Z [2658/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorIndexing.cpp.obj 2025-06-01T21:06:21.0861541Z [2659/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorIterator.cpp.obj 2025-06-01T21:06:21.1333730Z [2660/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\NestedTensorImpl.cpp.obj 2025-06-01T21:06:21.2086416Z [2661/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorNames.cpp.obj 2025-06-01T21:06:21.5585580Z [2662/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ThreadLocalPythonObjects.cpp.obj 2025-06-01T21:06:21.7739850Z [2663/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\StorageUtils.cpp.obj 2025-06-01T21:06:22.4425714Z [2664/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Version.cpp.obj 2025-06-01T21:06:22.6820736Z [2665/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\VmapModeRegistrations.cpp.obj 2025-06-01T21:06:22.7427768Z [2666/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\SparseTensorImpl.cpp.obj 2025-06-01T21:06:22.7903889Z [2667/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\SparseCsrTensorImpl.cpp.obj 2025-06-01T21:06:22.8360140Z [2668/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\cpu\FlushDenormal.cpp.obj 2025-06-01T21:06:22.8516112Z [2669/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\cpu\Utils.cpp.obj 2025-06-01T21:06:23.2564070Z [2670/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\CPUGuardImpl.cpp.obj 2025-06-01T21:06:23.4426643Z [2671/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\HIPHooksInterface.cpp.obj 2025-06-01T21:06:23.4770818Z [2672/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\CUDAHooksInterface.cpp.obj 2025-06-01T21:06:23.5469819Z [2673/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Utils.cpp.obj 2025-06-01T21:06:23.8080984Z [2674/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\HPUHooksInterface.cpp.obj 2025-06-01T21:06:24.0138518Z [2675/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\IPUHooksInterface.cpp.obj 2025-06-01T21:06:24.0739406Z [2676/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorUtils.cpp.obj 2025-06-01T21:06:24.0983286Z [2677/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\MAIAHooksInterface.cpp.obj 2025-06-01T21:06:24.1269639Z [2678/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\MPSHooksInterface.cpp.obj 2025-06-01T21:06:24.4176148Z [2679/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\MTIAHooksInterface.cpp.obj 2025-06-01T21:06:24.4734693Z [2680/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\MetaGuardImpl.cpp.obj 2025-06-01T21:06:24.6465546Z [2681/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\XPUHooksInterface.cpp.obj 2025-06-01T21:06:24.6723914Z [2682/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ThreadLocalState.cpp.obj 2025-06-01T21:06:24.6873174Z [2683/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\PrivateUse1HooksInterface.cpp.obj 2025-06-01T21:06:25.2494488Z [2684/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\ADInterpreters.cpp.obj 2025-06-01T21:06:25.3165379Z [2685/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ZeroTensorFallback.cpp.obj 2025-06-01T21:06:26.3040697Z [2686/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\autocast_mode.cpp.obj 2025-06-01T21:06:28.1127572Z [2687/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesActivation.cpp.obj 2025-06-01T21:06:28.3127146Z [2688/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesBinaryOps.cpp.obj 2025-06-01T21:06:28.3717604Z [2689/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesConvolution.cpp.obj 2025-06-01T21:06:28.4544644Z [2690/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesDynamic.cpp.obj 2025-06-01T21:06:28.5547650Z [2691/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesDecompositions.cpp.obj 2025-06-01T21:06:28.8667593Z [2692/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesFactory.cpp.obj 2025-06-01T21:06:29.1480241Z [2693/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesHelper.cpp.obj 2025-06-01T21:06:30.2111570Z [2694/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesIndexing.cpp.obj 2025-06-01T21:06:32.1040386Z [2695/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesLoss.cpp.obj 2025-06-01T21:06:32.1673218Z [2696/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesLinearAlgebra.cpp.obj 2025-06-01T21:06:32.2418779Z [2697/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesModules.cpp.obj 2025-06-01T21:06:32.3139676Z [2698/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesNorm.cpp.obj 2025-06-01T21:06:32.3769278Z [2699/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesPooling.cpp.obj 2025-06-01T21:06:32.6544201Z [2700/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesRandomness.cpp.obj 2025-06-01T21:06:32.8852654Z [2701/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesReduceOps.cpp.obj 2025-06-01T21:06:33.3813965Z [2702/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchedTensorImpl.cpp.obj 2025-06-01T21:06:33.8963482Z [2703/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\FunctionalizeInterpreter.cpp.obj 2025-06-01T21:06:34.0220382Z [2704/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesScatterOps.cpp.obj 2025-06-01T21:06:34.1027183Z [2705/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\Interpreter.cpp.obj 2025-06-01T21:06:35.2579148Z [2706/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\PlumbingHelper.cpp.obj 2025-06-01T21:06:35.8944023Z [2707/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchedFallback.cpp.obj 2025-06-01T21:06:36.0184768Z [2708/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesUnaryOps.cpp.obj 2025-06-01T21:06:36.0586798Z [2709/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesViews.cpp.obj 2025-06-01T21:06:36.4485643Z [2710/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\DynamicLayer.cpp.obj 2025-06-01T21:06:36.4619374Z [2711/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\TensorWrapper.cpp.obj 2025-06-01T21:06:36.5549879Z [2712/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\ATenGeneral.cpp.obj 2025-06-01T21:06:37.1038217Z [2713/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\CachingHostAllocator.cpp.obj 2025-06-01T21:06:37.1394703Z [2714/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\record_function.cpp.obj 2025-06-01T21:06:37.1842997Z [2715/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\VmapInterpreter.cpp.obj 2025-06-01T21:06:37.2472801Z [2716/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\LegacyBatchingRegistrations.cpp.obj 2025-06-01T21:06:37.5729106Z [2717/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\BackendSelectFallbackKernel.cpp.obj 2025-06-01T21:06:37.6622284Z [2718/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\LegacyVmapTransforms.cpp.obj 2025-06-01T21:06:37.7114417Z [2719/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Dimname.cpp.obj 2025-06-01T21:06:37.7257216Z [2720/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\DeprecatedTypePropertiesRegistry.cpp.obj 2025-06-01T21:06:38.0135173Z [2721/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\PyTorchOperatorHacks.cpp.obj 2025-06-01T21:06:38.0728007Z [2722/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\DeprecatedTypeProperties.cpp.obj 2025-06-01T21:06:38.1996745Z [2723/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Dict.cpp.obj 2025-06-01T21:06:38.3069710Z [2724/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\GeneratorForPrivateuseone.cpp.obj 2025-06-01T21:06:38.6146643Z [2725/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Formatting.cpp.obj 2025-06-01T21:06:38.6602595Z [2726/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Generator.cpp.obj 2025-06-01T21:06:38.7321942Z [2727/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\NestedIntSymNodeImpl.cpp.obj 2025-06-01T21:06:38.7418716Z [2728/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\List.cpp.obj 2025-06-01T21:06:38.8307436Z [2729/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\NamedTensor.cpp.obj 2025-06-01T21:06:39.0361927Z [2730/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Range.cpp.obj 2025-06-01T21:06:39.0960496Z [2731/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\MetaFallbackKernel.cpp.obj 2025-06-01T21:06:39.1393559Z [2732/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\NamedRegistrations.cpp.obj 2025-06-01T21:06:39.6340236Z [2733/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Vitals.cpp.obj 2025-06-01T21:06:39.6927932Z [2734/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\VmapModeRegistrations.cpp.obj 2025-06-01T21:06:39.7041881Z [2735/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\PythonFallbackKernel.cpp.obj 2025-06-01T21:06:39.7482210Z [2736/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\PythonOpRegistrationTrampoline.cpp.obj 2025-06-01T21:06:39.7617294Z [2737/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Tensor.cpp.obj 2025-06-01T21:06:39.9417462Z [2738/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\TorchDispatchUtils.cpp.obj 2025-06-01T21:06:40.0171788Z [2739/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\VariableHooksInterface.cpp.obj 2025-06-01T21:06:40.1260452Z [2740/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\VariableFallbackKernel.cpp.obj 2025-06-01T21:06:40.1824721Z [2741/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\blob.cpp.obj 2025-06-01T21:06:40.5256955Z [2742/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dispatch\ObservedOperators.cpp.obj 2025-06-01T21:06:40.6788459Z [2743/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\adaption.cpp.obj 2025-06-01T21:06:40.8082747Z [2744/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\boxing\KernelFunction.cpp.obj 2025-06-01T21:06:40.8290548Z [2745/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\class_type.cpp.obj 2025-06-01T21:06:40.8371490Z [2746/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\custom_class.cpp.obj 2025-06-01T21:06:40.9415292Z [2747/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dispatch\DispatchKeyExtractor.cpp.obj 2025-06-01T21:06:41.0920747Z [2748/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dispatch\Dispatcher.cpp.obj 2025-06-01T21:06:41.3020202Z [2749/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dispatch\OperatorEntry.cpp.obj 2025-06-01T21:06:41.3454608Z [2750/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\interned_strings.cpp.obj 2025-06-01T21:06:41.5393754Z [2751/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dynamic_type.cpp.obj 2025-06-01T21:06:41.6670347Z [2752/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\function_schema.cpp.obj 2025-06-01T21:06:41.6729178Z [2753/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\operator_name.cpp.obj 2025-06-01T21:06:41.8590619Z [2754/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\ivalue.cpp.obj 2025-06-01T21:06:41.8717313Z [2755/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\register_symbols.cpp.obj 2025-06-01T21:06:41.8993610Z [2756/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\library.cpp.obj 2025-06-01T21:06:42.0048095Z [2757/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\op_registration\infer_schema.cpp.obj 2025-06-01T21:06:42.1728931Z [2758/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\op_registration\op_registration.cpp.obj 2025-06-01T21:06:42.3675725Z [2759/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\error_report.cpp.obj 2025-06-01T21:06:42.4733607Z [2760/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\lexer.cpp.obj 2025-06-01T21:06:42.5302802Z [2761/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\tensor_type.cpp.obj 2025-06-01T21:06:42.5715997Z [2762/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\type_factory.cpp.obj 2025-06-01T21:06:42.6758393Z [2763/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\strtod.cpp.obj 2025-06-01T21:06:42.6998120Z [2764/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\type.cpp.obj 2025-06-01T21:06:42.8466986Z [2765/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\union_type.cpp.obj 2025-06-01T21:06:42.9928108Z [2766/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\function_schema_parser.cpp.obj 2025-06-01T21:06:43.2408157Z [2767/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\schema_type_parser.cpp.obj 2025-06-01T21:06:43.4929792Z [2768/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\source_range.cpp.obj 2025-06-01T21:06:43.6467062Z [2769/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AdaptiveAveragePooling.cpp.obj 2025-06-01T21:06:43.7165259Z [2770/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AdaptiveAveragePooling3d.cpp.obj 2025-06-01T21:06:43.7289255Z [2771/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AdaptiveMaxPooling2d.cpp.obj 2025-06-01T21:06:43.7918874Z [2772/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AdaptiveMaxPooling3d.cpp.obj 2025-06-01T21:06:43.9043154Z [2773/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Activation.cpp.obj 2025-06-01T21:06:44.0993728Z [2774/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AffineGridGenerator.cpp.obj 2025-06-01T21:06:44.3098090Z [2775/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AmpKernels.cpp.obj 2025-06-01T21:06:44.5483396Z [2776/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AutogradComposite.cpp.obj 2025-06-01T21:06:44.7165075Z [2777/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AveragePool2d.cpp.obj 2025-06-01T21:06:44.7851223Z [2778/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AveragePool3d.cpp.obj 2025-06-01T21:06:44.8128244Z [2779/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\BatchLinearAlgebraKernel.cpp.obj 2025-06-01T21:06:44.9753863Z [2780/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\BlasKernel.cpp.obj 2025-06-01T21:06:44.9853838Z [2781/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\BatchLinearAlgebra.cpp.obj 2025-06-01T21:06:45.0983935Z [2782/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\BinaryOps.cpp.obj 2025-06-01T21:06:45.2136939Z [2783/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Blas.cpp.obj 2025-06-01T21:06:45.6602851Z [2784/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Bucketization.cpp.obj 2025-06-01T21:06:45.8954851Z [2785/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ComparisonUtils.cpp.obj 2025-06-01T21:06:45.9297928Z [2786/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ChanelShuffle.cpp.obj 2025-06-01T21:06:45.9456899Z [2787/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\CPUFallback.cpp.obj 2025-06-01T21:06:46.1127499Z [2788/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Col2Im.cpp.obj 2025-06-01T21:06:46.1520025Z [2789/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Constraints.cpp.obj 2025-06-01T21:06:46.2895329Z [2790/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\CPUBlas.cpp.obj 2025-06-01T21:06:46.5312632Z [2791/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Convolution.cpp.obj 2025-06-01T21:06:46.7297573Z [2792/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ConvolutionMM2d.cpp.obj 2025-06-01T21:06:46.9795167Z [2793/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ConvolutionTBC.cpp.obj 2025-06-01T21:06:46.9932733Z [2794/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ConvolutionMM3d.cpp.obj 2025-06-01T21:06:47.0924152Z [2795/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Copy.cpp.obj 2025-06-01T21:06:47.1498599Z [2796/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\DispatchStub.cpp.obj 2025-06-01T21:06:47.2008445Z [2797/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Cross.cpp.obj 2025-06-01T21:06:47.2037955Z [2798/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Correlation.cpp.obj 2025-06-01T21:06:47.2771848Z [2799/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\DilatedMaxPool2d.cpp.obj 2025-06-01T21:06:47.6538354Z [2800/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\DilatedMaxPool3d.cpp.obj 2025-06-01T21:06:48.0617906Z [2801/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Distance.cpp.obj 2025-06-01T21:06:48.1171640Z [2802/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Dropout.cpp.obj 2025-06-01T21:06:48.2300748Z [2803/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Distributions.cpp.obj 2025-06-01T21:06:48.2564309Z [2804/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Embedding.cpp.obj 2025-06-01T21:06:48.3152206Z [2805/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Fill.cpp.obj 2025-06-01T21:06:48.3622082Z [2806/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ForeachOpsKernels.cpp.obj 2025-06-01T21:06:48.3660869Z [2807/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\EmbeddingBag.cpp.obj 2025-06-01T21:06:48.6719796Z [2808/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FractionalMaxPool2d.cpp.obj 2025-06-01T21:06:49.1280812Z [2809/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FunctionOfAMatrixUtils.cpp.obj 2025-06-01T21:06:49.1898010Z [2810/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FractionalMaxPool3d.cpp.obj 2025-06-01T21:06:49.2755241Z [2811/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FusedAdam.cpp.obj 2025-06-01T21:06:49.2920957Z [2812/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FusedAdagrad.cpp.obj 2025-06-01T21:06:49.4675538Z [2813/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\GatedLinearUnit.cpp.obj 2025-06-01T21:06:49.4705766Z [2814/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FusedSGD.cpp.obj 2025-06-01T21:06:49.4786914Z [2815/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\GridSampler.cpp.obj 2025-06-01T21:06:49.7529406Z [2816/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Histogram.cpp.obj 2025-06-01T21:06:50.2010953Z [2817/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\IndexingUtils.cpp.obj 2025-06-01T21:06:50.2454729Z [2818/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Im2Col.cpp.obj 2025-06-01T21:06:50.3181842Z [2819/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Integration.cpp.obj 2025-06-01T21:06:50.3296930Z [2820/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Itertools.cpp.obj 2025-06-01T21:06:50.4521451Z [2821/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Lerp.cpp.obj 2025-06-01T21:06:50.5020794Z [2822/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LegacyBatching.cpp.obj 2025-06-01T21:06:50.5677085Z [2823/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Linear.cpp.obj 2025-06-01T21:06:51.1935990Z [2824/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LinearAlgebra.cpp.obj 2025-06-01T21:06:51.3503617Z [2825/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossCTC.cpp.obj 2025-06-01T21:06:51.3624956Z [2826/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Loss.cpp.obj 2025-06-01T21:06:51.3725054Z [2827/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossMultiMargin.cpp.obj 2025-06-01T21:06:51.4241828Z [2828/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossMultiLabelMargin.cpp.obj 2025-06-01T21:06:51.6585400Z [2829/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\MaxPooling.cpp.obj 2025-06-01T21:06:51.6920444Z [2830/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossNLL2d.cpp.obj 2025-06-01T21:06:51.7068115Z [2831/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossNLL.cpp.obj 2025-06-01T21:06:52.2445190Z [2832/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\MaxUnpooling.cpp.obj 2025-06-01T21:06:52.3434844Z [2833/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\MetaTensor.cpp.obj 2025-06-01T21:06:52.3633730Z [2834/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Memory.cpp.obj 2025-06-01T21:06:52.4238134Z [2835/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NNPACK.cpp.obj 2025-06-01T21:06:52.5124020Z [2836/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NaiveConvolutionTranspose2d.cpp.obj 2025-06-01T21:06:52.7273065Z [2837/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NaiveConvolutionTranspose3d.cpp.obj 2025-06-01T21:06:52.8163886Z [2838/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NaiveDilatedConvolution.cpp.obj 2025-06-01T21:06:52.8197966Z [2839/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NamedTensor.cpp.obj 2025-06-01T21:06:53.4040528Z [2840/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Onehot.cpp.obj 2025-06-01T21:06:53.4228319Z [2841/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NegateFallback.cpp.obj 2025-06-01T21:06:53.4828342Z [2842/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Normalization.cpp.obj 2025-06-01T21:06:53.4991715Z [2843/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\PackedSequence.cpp.obj 2025-06-01T21:06:53.5654395Z [2844/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\PadNd.cpp.obj 2025-06-01T21:06:53.8186981Z [2845/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\PixelShuffle.cpp.obj 2025-06-01T21:06:53.8291192Z [2846/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\PointwiseOps.cpp.obj 2025-06-01T21:06:53.9195077Z [2847/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Pooling.cpp.obj 2025-06-01T21:06:54.4681444Z [2848/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Pow.cpp.obj 2025-06-01T21:06:54.6086897Z [2849/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\RangeFactories.cpp.obj 2025-06-01T21:06:54.6498617Z [2850/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ReduceAllOps.cpp.obj 2025-06-01T21:06:54.7584613Z [2851/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\QuantizedLinear.cpp.obj 2025-06-01T21:06:54.8860168Z [2852/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ReflectionPad.cpp.obj 2025-06-01T21:06:54.9477839Z [2853/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\RNN.cpp.obj 2025-06-01T21:06:55.0449784Z [2854/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Repeat.cpp.obj 2025-06-01T21:06:55.0938205Z [2855/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ReduceOps.cpp.obj 2025-06-01T21:06:55.4713626Z [2856/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ReplicationPadding.cpp.obj 2025-06-01T21:06:55.6540848Z [2857/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\RowwisePrune.cpp.obj 2025-06-01T21:06:55.7039141Z [2858/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Resize.cpp.obj 2025-06-01T21:06:55.8507196Z [2859/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Scalar.cpp.obj 2025-06-01T21:06:55.9323780Z [2860/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SegmentReduce.cpp.obj 2025-06-01T21:06:56.0756209Z [2861/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SobolEngineOps.cpp.obj 2025-06-01T21:06:56.1741076Z [2862/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SoftMax.cpp.obj 2025-06-01T21:06:56.2661605Z [2863/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SobolEngineOpsUtils.cpp.obj 2025-06-01T21:06:56.6291262Z [2864/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Sorting.cpp.obj 2025-06-01T21:06:56.8006230Z [2865/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SpectralOps.cpp.obj 2025-06-01T21:06:56.9084517Z [2866/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SummaryOps.cpp.obj 2025-06-01T21:06:57.2004363Z [2867/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorCompare.cpp.obj 2025-06-01T21:06:57.4363686Z [2868/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorFactories.cpp.obj 2025-06-01T21:06:57.6402738Z [2869/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorIteratorReduce.cpp.obj 2025-06-01T21:06:57.9017569Z [2870/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorProperties.cpp.obj 2025-06-01T21:06:58.2081145Z [2871/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorShape.cpp.obj 2025-06-01T21:06:58.3073354Z [2872/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorTransformations.cpp.obj 2025-06-01T21:06:58.4160498Z [2873/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TestOps.cpp.obj 2025-06-01T21:06:58.7576885Z [2874/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TriangularOps.cpp.obj 2025-06-01T21:06:58.7787468Z [2875/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Unfold2d.cpp.obj 2025-06-01T21:06:58.9751812Z [2876/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TypeProperties.cpp.obj 2025-06-01T21:06:59.1408750Z [2877/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SparseTensorUtils.cpp.obj 2025-06-01T21:06:59.4159926Z [2878/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UnaryOps.cpp.obj 2025-06-01T21:06:59.5459186Z [2879/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorConversions.cpp.obj 2025-06-01T21:06:59.5661592Z [2880/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorAdvancedIndexing.cpp.obj 2025-06-01T21:06:59.7292577Z [2881/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Unfold3d.cpp.obj 2025-06-01T21:06:59.7767957Z [2882/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UnfoldBackward.cpp.obj 2025-06-01T21:06:59.8774395Z [2883/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Unique.cpp.obj 2025-06-01T21:06:59.9635739Z [2884/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSample.cpp.obj 2025-06-01T21:07:00.2094869Z [2885/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleBicubic2d.cpp.obj 2025-06-01T21:07:00.5645627Z [2886/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleBilinear2d.cpp.obj 2025-06-01T21:07:00.6992385Z [2887/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleLinear1d.cpp.obj 2025-06-01T21:07:00.7054953Z [2888/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleNearest1d.cpp.obj 2025-06-01T21:07:00.8685816Z [2889/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleNearest2d.cpp.obj 2025-06-01T21:07:00.9776201Z [2890/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleNearest3d.cpp.obj 2025-06-01T21:07:01.0111773Z [2891/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleTrilinear3d.cpp.obj 2025-06-01T21:07:01.0304465Z [2892/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\VariableMethodStubs.cpp.obj 2025-06-01T21:07:01.3665879Z [2893/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\WeightNorm.cpp.obj 2025-06-01T21:07:01.6156377Z [2894/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\group_norm.cpp.obj 2025-06-01T21:07:01.6677475Z [2895/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\prim_native_functions.cpp.obj 2025-06-01T21:07:01.7866623Z [2896/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\layer_norm.cpp.obj 2025-06-01T21:07:02.1016953Z [2897/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\library.cpp.obj 2025-06-01T21:07:02.1365430Z [2898/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear.cpp.obj 2025-06-01T21:07:02.1671572Z [2899/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\fbgemm_utils.cpp.obj 2025-06-01T21:07:02.2032682Z [2900/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\verbose_wrapper.cpp.obj 2025-06-01T21:07:02.7169621Z [2901/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_dynamic.cpp.obj 2025-06-01T21:07:02.8153967Z [2902/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_prepack.cpp.obj 2025-06-01T21:07:03.1975668Z [2903/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\ParamUtils.cpp.obj 2025-06-01T21:07:03.2234136Z [2904/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\FlattenIndicesKernel.cpp.obj 2025-06-01T21:07:03.2694587Z [2905/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SoftMax.cpp.obj 2025-06-01T21:07:03.2861934Z [2906/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_unpack.cpp.obj 2025-06-01T21:07:03.8317670Z [2907/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseBinaryOpIntersectionKernel.cpp.obj 2025-06-01T21:07:04.0057041Z [2908/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseBlas.cpp.obj 2025-06-01T21:07:04.3082836Z [2909/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseBlasImpl.cpp.obj 2025-06-01T21:07:04.3162553Z [2910/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseCsrTensor.cpp.obj 2025-06-01T21:07:04.3723568Z [2911/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseFactories.cpp.obj 2025-06-01T21:07:04.4749248Z [2912/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseCsrTensorMath.cpp.obj 2025-06-01T21:07:04.8349937Z [2913/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_deserialize.cpp.obj 2025-06-01T21:07:04.9926986Z [2914/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseMatMul.cpp.obj 2025-06-01T21:07:05.1075497Z [2915/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseTensor.cpp.obj 2025-06-01T21:07:05.2598890Z [2916/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_serialize.cpp.obj 2025-06-01T21:07:05.4096316Z [2917/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseUnaryOps.cpp.obj 2025-06-01T21:07:05.5355237Z [2918/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseTensorMath.cpp.obj 2025-06-01T21:07:05.5514307Z [2919/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\ValidateCompressedIndicesKernel.cpp.obj 2025-06-01T21:07:07.9855638Z [2920/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorAliases.cpp.obj 2025-06-01T21:07:08.4812780Z [2921/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorBinaryOps.cpp.obj 2025-06-01T21:07:08.5457080Z [2922/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorBackward.cpp.obj 2025-06-01T21:07:08.6192488Z [2923/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorFactories.cpp.obj 2025-06-01T21:07:08.7833395Z [2924/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorMath.cpp.obj 2025-06-01T21:07:08.9249111Z [2925/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorMatmul.cpp.obj 2025-06-01T21:07:08.9874097Z [2926/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorTransformerFunctions.cpp.obj 2025-06-01T21:07:09.0139631Z [2927/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorUtils.cpp.obj 2025-06-01T21:07:09.0211187Z [2928/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\AffineQuantizerBase.cpp.obj 2025-06-01T21:07:09.0685749Z [2929/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorUnaryOps.cpp.obj 2025-06-01T21:07:09.5108715Z [2930/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\AffineQuantizer.cpp.obj 2025-06-01T21:07:09.6210164Z [2931/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\ACLUtils.cpp.obj 2025-06-01T21:07:10.6981520Z [2932/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\AdaptiveAveragePooling.cpp.obj 2025-06-01T21:07:11.8420929Z [2933/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\AveragePool2d.cpp.obj 2025-06-01T21:07:12.1698543Z [2934/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\Copy.cpp.obj 2025-06-01T21:07:12.2581255Z [2935/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\FakeQuantPerChannelAffine.cpp.obj 2025-06-01T21:07:12.3993629Z [2936/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\FakeQuantPerTensorAffine.cpp.obj 2025-06-01T21:07:12.4460547Z [2937/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\QTensor.cpp.obj 2025-06-01T21:07:12.4773266Z [2938/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\TensorCompare.cpp.obj 2025-06-01T21:07:12.4977734Z [2939/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\TensorAdvancedIndexing.cpp.obj 2025-06-01T21:07:12.5942715Z [2940/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\TensorFactories.cpp.obj 2025-06-01T21:07:12.9293127Z [2941/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\AveragePool3d.cpp.obj 2025-06-01T21:07:13.3177493Z [2942/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\BinaryOps.cpp.obj 2025-06-01T21:07:13.3795660Z [2943/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\ChannelShuffle.cpp.obj 2025-06-01T21:07:13.3809522Z [2944/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\RuyUtils.cpp.obj 2025-06-01T21:07:13.5206647Z [2945/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\IntReprQuant.cpp.obj 2025-06-01T21:07:13.5724712Z [2946/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\MakePerTensorQuantizedTensor.cpp.obj 2025-06-01T21:07:13.6514648Z [2947/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\Normalization.cpp.obj 2025-06-01T21:07:13.7140026Z [2948/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\Pooling.cpp.obj 2025-06-01T21:07:13.9146723Z [2949/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\LinearUnpackImpl.cpp.obj 2025-06-01T21:07:13.9928983Z [2950/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\ReduceOps.cpp.obj 2025-06-01T21:07:14.4645447Z [2951/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\TensorOperators.cpp.obj 2025-06-01T21:07:14.5105456Z [2952/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\Sorting.cpp.obj 2025-06-01T21:07:14.5728620Z [2953/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\init_qnnpack.cpp.obj 2025-06-01T21:07:14.7072916Z [2954/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\TensorShape.cpp.obj 2025-06-01T21:07:14.7286525Z [2955/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\UpSampleBilinear2d.cpp.obj 2025-06-01T21:07:14.7962302Z [2956/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\UpSampleNearest2d.cpp.obj 2025-06-01T21:07:14.8238320Z [2957/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\UpSampleNearest3d.cpp.obj 2025-06-01T21:07:15.4772706Z [2958/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\fbgemm_utils.cpp.obj 2025-06-01T21:07:15.5432852Z [2959/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\fused_obs_fake_quant.cpp.obj 2025-06-01T21:07:15.6559098Z [2960/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qclamp.cpp.obj 2025-06-01T21:07:16.1165264Z [2961/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qconv_dynamic.cpp.obj 2025-06-01T21:07:16.1388200Z [2962/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qconv.cpp.obj 2025-06-01T21:07:16.3172979Z [2963/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qconv_prepack.cpp.obj 2025-06-01T21:07:16.6301693Z [2964/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qelu.cpp.obj 2025-06-01T21:07:16.9323404Z [2965/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qembeddingbag.cpp.obj 2025-06-01T21:07:17.3170214Z [2966/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qembeddingbag_prepack.cpp.obj 2025-06-01T21:07:17.3795250Z [2967/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qembeddingbag_unpack.cpp.obj 2025-06-01T21:07:17.4400256Z [2968/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qgelu.cpp.obj 2025-06-01T21:07:17.4622060Z [2969/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\XnnpackUtils.cpp.obj 2025-06-01T21:07:17.7268940Z [2970/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qhardsigmoid.cpp.obj 2025-06-01T21:07:18.0737683Z [2971/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qhardswish.cpp.obj 2025-06-01T21:07:18.7320010Z [2972/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qconv_unpack_impl.cpp.obj 2025-06-01T21:07:18.8295089Z [2973/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qlinear_dynamic.cpp.obj 2025-06-01T21:07:18.8801310Z [2974/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qlinear.cpp.obj 2025-06-01T21:07:18.9392841Z [2975/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qdropout.cpp.obj 2025-06-01T21:07:18.9431515Z [2976/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qlinear_prepack.cpp.obj 2025-06-01T21:07:19.1270915Z [2977/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qmul.cpp.obj 2025-06-01T21:07:19.1839210Z [2978/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qnormalization.cpp.obj 2025-06-01T21:07:19.8913498Z [2979/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qrelu.cpp.obj 2025-06-01T21:07:19.9592498Z [2980/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qsigmoid.cpp.obj 2025-06-01T21:07:19.9893605Z [2981/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qtanh.cpp.obj 2025-06-01T21:07:20.0937645Z [2982/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\MklAllocationHelper.cpp.obj 2025-06-01T21:07:20.1417046Z [2983/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qthreshold.cpp.obj 2025-06-01T21:07:20.2376973Z [2984/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\library.cpp.obj 2025-06-01T21:07:20.7260240Z [2985/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\qconv_unpack.cpp.obj 2025-06-01T21:07:20.8443252Z [2986/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\LinearAlgebra.cpp.obj 2025-06-01T21:07:21.0747575Z [2987/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qmatmul.cpp.obj 2025-06-01T21:07:21.2494596Z [2988/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\SparseBlasImpl.cpp.obj 2025-06-01T21:07:21.3524699Z [2989/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\SpectralOps.cpp.obj 2025-06-01T21:07:21.5785283Z [2990/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\SparseCsrLinearAlgebra.cpp.obj 2025-06-01T21:07:22.0231300Z [2991/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\BinaryOps.cpp.obj 2025-06-01T21:07:22.1688952Z [2992/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Conv.cpp.obj 2025-06-01T21:07:22.4328530Z [2993/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Copy.cpp.obj 2025-06-01T21:07:22.4721183Z [2994/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qsoftmax.cpp.obj 2025-06-01T21:07:22.6158843Z [2995/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Gelu.cpp.obj 2025-06-01T21:07:22.7855764Z [2996/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\IDeepRegistration.cpp.obj 2025-06-01T21:07:23.4461410Z [2997/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\MKLDNNCommon.cpp.obj 2025-06-01T21:07:23.6436451Z [2998/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\qlinear_unpack.cpp.obj 2025-06-01T21:07:23.6632743Z [2999/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Linear.cpp.obj 2025-06-01T21:07:23.7539910Z [3000/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Matmul.cpp.obj 2025-06-01T21:07:23.7639786Z [3001/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\MkldnnTensorMath.cpp.obj 2025-06-01T21:07:23.9784190Z [3002/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\MKLDNNConversions.cpp.obj 2025-06-01T21:07:24.0756709Z [3003/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Normalization.cpp.obj 2025-06-01T21:07:24.7244651Z [3004/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\ConvPrepack.cpp.obj 2025-06-01T21:07:24.9829514Z [3005/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Pooling.cpp.obj 2025-06-01T21:07:25.2141006Z [3006/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\SoftMax.cpp.obj 2025-06-01T21:07:25.3034542Z [3007/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Relu.cpp.obj 2025-06-01T21:07:25.8467382Z [3008/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\TensorFactories.cpp.obj 2025-06-01T21:07:26.1134363Z [3009/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\TensorShape.cpp.obj 2025-06-01T21:07:26.3027953Z [3010/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\UnaryOps.cpp.obj 2025-06-01T21:07:26.4976277Z [3011/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Utils.cpp.obj 2025-06-01T21:07:26.9259091Z [3012/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\transformers\attention.cpp.obj 2025-06-01T21:07:27.1223384Z [3013/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\OpContext.cpp.obj 2025-06-01T21:07:27.1705769Z [3014/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\transformers\sdp_utils_cpp.cpp.obj 2025-06-01T21:07:27.3463792Z [3015/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Prelu.cpp.obj 2025-06-01T21:07:27.3906664Z [3016/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\transformers\transformer.cpp.obj 2025-06-01T21:07:27.4672271Z [3017/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\RegisterMkldnnOpContextClass.cpp.obj 2025-06-01T21:07:27.5297429Z [3018/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\RNN.cpp.obj 2025-06-01T21:07:27.5638747Z [3019/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\utils\Factory.cpp.obj 2025-06-01T21:07:27.8860271Z [3020/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Init.cpp.obj 2025-06-01T21:07:27.9219986Z [3021/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Activation.cpp.obj 2025-06-01T21:07:28.0021663Z [3022/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Shim.cpp.obj 2025-06-01T21:07:28.0155976Z [3023/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\AveragePooling.cpp.obj 2025-06-01T21:07:28.1097919Z [3024/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\ChannelShuffle.cpp.obj 2025-06-01T21:07:28.4015787Z [3025/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Convolution.cpp.obj 2025-06-01T21:07:28.5242057Z [3026/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\MaxPooling.cpp.obj 2025-06-01T21:07:28.5382490Z [3027/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Linear.cpp.obj 2025-06-01T21:07:28.6133057Z [3028/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\OpContext.cpp.obj 2025-06-01T21:07:29.0190676Z [3029/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\RegisterOpContextClass.cpp.obj 2025-06-01T21:07:29.6430303Z [3030/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_0.cpp.obj 2025-06-01T21:07:29.9154472Z [3031/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_1.cpp.obj 2025-06-01T21:07:29.9769466Z [3032/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_4.cpp.obj 2025-06-01T21:07:30.0746844Z [3033/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_3.cpp.obj 2025-06-01T21:07:30.1243271Z [3034/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\CompositeViewCopyKernels.cpp.obj 2025-06-01T21:07:30.1314762Z [3035/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterBackendSelect.cpp.obj 2025-06-01T21:07:30.2683805Z [3036/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_2.cpp.obj 2025-06-01T21:07:30.4044829Z [3037/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Functions.cpp.obj 2025-06-01T21:07:31.2829931Z [3038/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCompositeImplicitAutogradNestedTensor_0.cpp.obj 2025-06-01T21:07:31.5465615Z [3039/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCompositeExplicitAutograd_0.cpp.obj 2025-06-01T21:07:31.6694970Z [3040/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCompositeImplicitAutograd_0.cpp.obj 2025-06-01T21:07:31.9826213Z [3041/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCPU_0.cpp.obj 2025-06-01T21:07:32.0185202Z [3042/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCompositeExplicitAutogradNonFunctional_0.cpp.obj 2025-06-01T21:07:32.0710312Z [3043/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCPU_1.cpp.obj 2025-06-01T21:07:32.2058468Z [3044/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCPU_2.cpp.obj 2025-06-01T21:07:32.2255064Z [3045/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCPU_3.cpp.obj 2025-06-01T21:07:32.8927075Z [3046/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterFunctionalization_0.cpp.obj 2025-06-01T21:07:33.2722866Z [3047/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterFunctionalization_2.cpp.obj 2025-06-01T21:07:33.3234221Z [3048/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterFunctionalization_1.cpp.obj 2025-06-01T21:07:33.3338050Z [3049/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterMkldnnCPU_0.cpp.obj 2025-06-01T21:07:33.4151630Z [3050/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterNestedTensorCPU_0.cpp.obj 2025-06-01T21:07:33.4256522Z [3051/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterNestedTensorHPU_0.cpp.obj 2025-06-01T21:07:33.5134346Z [3052/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterFunctionalization_3.cpp.obj 2025-06-01T21:07:33.8321172Z [3053/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterMeta_0.cpp.obj 2025-06-01T21:07:34.0319779Z [3054/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterNestedTensorMeta_0.cpp.obj 2025-06-01T21:07:34.3158169Z [3055/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterNestedTensorXPU_0.cpp.obj 2025-06-01T21:07:34.3751423Z [3056/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterQuantizedMeta_0.cpp.obj 2025-06-01T21:07:34.6174966Z [3057/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSchema.cpp.obj 2025-06-01T21:07:35.1615800Z [3058/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterQuantizedCPU_0.cpp.obj 2025-06-01T21:07:35.1834282Z [3059/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseCsrXPU_0.cpp.obj 2025-06-01T21:07:35.1973379Z [3060/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseCsrMeta_0.cpp.obj 2025-06-01T21:07:35.2077971Z [3061/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseCsrCPU_0.cpp.obj 2025-06-01T21:07:35.2163760Z [3062/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseCPU_0.cpp.obj 2025-06-01T21:07:35.3443206Z [3063/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseXPU_0.cpp.obj 2025-06-01T21:07:35.3796453Z [3064/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseMeta_0.cpp.obj 2025-06-01T21:07:35.6516531Z [3065/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterZeroTensor_0.cpp.obj 2025-06-01T21:07:35.6595019Z [3066/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\ATenOpList.cpp.obj 2025-06-01T21:07:35.8175717Z [3067/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\UfuncCPU_add.cpp.obj 2025-06-01T21:07:35.8339767Z [3068/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\nnapi\nnapi_model_loader.cpp.obj 2025-06-01T21:07:36.0870445Z [3069/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\nnapi\nnapi_wrapper.cpp.obj 2025-06-01T21:07:36.1579599Z [3070/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\quantized\QTensorImpl.cpp.obj 2025-06-01T21:07:36.1608295Z [3071/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\TensorMethods.cpp.obj 2025-06-01T21:07:36.4979027Z [3072/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\UfuncCPUKernel_add.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:36.8383251Z [3073/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k1.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:36.8478243Z [3074/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k0.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:36.9027728Z [3075/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\spherical_bessel_j0.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:37.0580861Z [3076/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\kernels\QuantizedOpKernels.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:37.6723081Z [3077/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\layer_norm_kernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:37.8597226Z [3078/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int8mm_kernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:37.9181110Z [3079/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int4mm_kernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:38.0475062Z [3080/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\group_norm_kernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:38.1781869Z [3081/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\batch_norm_kernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:38.3418180Z [3082/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\airy_ai.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:38.5887514Z [3083/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\WeightNormKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:38.7756307Z [3084/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\quantized\Quantizer.cpp.obj 2025-06-01T21:07:38.9135761Z [3085/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\nnapi\nnapi_bind.cpp.obj 2025-06-01T21:07:38.9294770Z [3086/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleMoreKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:39.1275927Z [3087/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Unfold2d.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:39.1952735Z [3088/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:39.2171669Z [3089/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\nnapi\nnapi_register.cpp.obj 2025-06-01T21:07:39.2801508Z [3090/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnfoldBackwardKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:39.5807639Z [3091/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SumKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:39.8296191Z [3092/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnaryOpsKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:39.9254745Z [3093/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\StackKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:39.9398061Z [3094/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\TensorCompareKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:39.9574168Z [3095/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SparseFactories.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:40.0415228Z [3096/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SortingKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:40.2390981Z [3097/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SpmmReduceKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:40.3044098Z [3098/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SoftMaxKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:40.6668289Z [3099/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RenormKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:40.6883408Z [3100/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:40.7822874Z [3101/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ScatterGatherKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:40.9140148Z [3102/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SampledAddmmKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:40.9266411Z [3103/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RangeFactoriesKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:40.9913678Z [3104/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PowKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:41.1043904Z [3105/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceOpsKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:41.1534284Z [3106/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceAllOpsKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:41.3901873Z [3107/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PixelShuffleKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:41.4145775Z [3108/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PointwiseOpsKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:41.7794643Z [3109/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PaddingKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:41.9226353Z [3110/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\NativeMultiheadAttnKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:41.9395312Z [3111/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxUnpoolKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:42.0863674Z [3112/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPooling.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:42.0959122Z [3113/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MultinomialKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:42.1211901Z [3114/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LerpKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:42.3302499Z [3115/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPoolKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:42.4409661Z [3116/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LinearAlgebraKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:42.5424375Z [3117/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\IndexKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:42.6480518Z [3118/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\GridSamplerKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:42.9721379Z [3119/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\HistogramKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:43.0113108Z [3120/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FunctionOfAMatrixUtilsKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:43.0735527Z [3121/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdamKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:43.0849102Z [3122/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedSGDKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:43.2075813Z [3123/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdagradKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:43.2520303Z [3124/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FillKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:43.5113732Z [3125/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FlashAttentionKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:43.7767675Z [3126/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistributionKernels.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:43.9344256Z [3127/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ChannelShuffleKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:43.9518214Z [3128/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistanceOpsKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:43.9520278Z 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-06-01T21:07:43.9522671Z 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-06-01T21:07:43.9524261Z with 2025-06-01T21:07:43.9524618Z [ 2025-06-01T21:07:43.9524930Z scalar_t=float, 2025-06-01T21:07:43.9525974Z Op=at::vec::DEFAULT::Vectorized (const at::vec::DEFAULT::Vectorized &,const at::vec::DEFAULT::Vectorized &) 2025-06-01T21:07:43.9527000Z ] 2025-06-01T21:07:43.9528721Z 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-06-01T21:07:43.9530763Z with 2025-06-01T21:07:43.9531158Z [ 2025-06-01T21:07:43.9531472Z scalar_t=float, 2025-06-01T21:07:43.9532792Z ReduceOp=at::vec::DEFAULT::Vectorized (const at::vec::DEFAULT::Vectorized &,const at::vec::DEFAULT::Vectorized &), 2025-06-01T21:07:43.9534509Z Op=at::vec::DEFAULT::Vectorized (const at::vec::DEFAULT::Vectorized &,const at::vec::DEFAULT::Vectorized &) 2025-06-01T21:07:43.9535408Z ] 2025-06-01T21:07:43.9538916Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(177): 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-06-01T21:07:43.9542495Z with 2025-06-01T21:07:43.9542852Z [ 2025-06-01T21:07:43.9543169Z scalar_t=scalar_t, 2025-06-01T21:07:43.9543680Z data_t=at::vec::DEFAULT::Vectorized, 2025-06-01T21:07:43.9545140Z MapOp=at::native::`anonymous-namespace'::Dist::run_parallel_pdist::::()::, 2025-06-01T21:07:43.9547155Z ReduceOp=at::vec::DEFAULT::Vectorized (const at::vec::DEFAULT::Vectorized &,const at::vec::DEFAULT::Vectorized &) 2025-06-01T21:07:43.9548232Z ] 2025-06-01T21:07:43.9550987Z 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-06-01T21:07:43.9554018Z with 2025-06-01T21:07:43.9554333Z [ 2025-06-01T21:07:43.9554653Z scalar_t=scalar_t 2025-06-01T21:07:43.9555313Z ] 2025-06-01T21:07:43.9558177Z 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-06-01T21:07:43.9561175Z with 2025-06-01T21:07:43.9561488Z [ 2025-06-01T21:07:43.9561786Z scalar_t=scalar_t 2025-06-01T21:07:43.9562146Z ] 2025-06-01T21:07:43.9564113Z 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-06-01T21:07:43.9566325Z with 2025-06-01T21:07:43.9566616Z [ 2025-06-01T21:07:43.9566964Z scalar_t=scalar_t 2025-06-01T21:07:43.9567359Z ] 2025-06-01T21:07:43.9800599Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(420): note: see reference to function template instantiation 'void at::native::`anonymous-namespace'::Dist::apply_pdist(at::Tensor &,const at::Tensor &,const scalar_t)' being compiled 2025-06-01T21:07:43.9802864Z with 2025-06-01T21:07:43.9803176Z [ 2025-06-01T21:07:43.9803497Z scalar_t=scalar_t 2025-06-01T21:07:43.9803860Z ] 2025-06-01T21:07:43.9805468Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(422): note: see reference to class template instantiation 'at::native::`anonymous-namespace'::Dist' being compiled 2025-06-01T21:07:43.9807788Z [3129/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CopyKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:44.0516191Z [3130/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DepthwiseConvKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:44.0885114Z [3131/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CrossKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:44.3584947Z [3132/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ComplexKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:44.4127946Z [3133/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BlasKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:44.5936680Z [3134/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CatKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:44.7542083Z [3135/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BinaryOpsKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:44.7543390Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp(537): warning C4333: '>>': right shift by too large amount, data loss 2025-06-01T21:07:44.7544707Z 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-06-01T21:07:44.8386275Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp(537): 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-06-01T21:07:44.8389463Z [3136/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\mkl\SparseBlas.cpp.obj 2025-06-01T21:07:44.9588566Z [3137/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AvgPoolKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:45.0855530Z [3138/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveAvgPoolKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:45.0984860Z [3139/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveMaxPoolKernel.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:45.1015490Z [3140/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AmpGradScalerKernels.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:45.1722945Z [3141/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Activation.cpp.DEFAULT.cpp.obj 2025-06-01T21:07:45.3888397Z [3142/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\crc.cc.obj 2025-06-01T21:07:45.4246067Z [3143/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\istream_adapter.cc.obj 2025-06-01T21:07:45.4676270Z [3144/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\file_adapter.cc.obj 2025-06-01T21:07:45.5244251Z [3145/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\read_adapter_interface.cc.obj 2025-06-01T21:07:45.5349573Z [3146/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\vulkan\Context.cpp.obj 2025-06-01T21:07:45.5541644Z [3147/7616] Building C object caffe2\CMakeFiles\torch_cpu.dir\__\third_party\miniz-3.0.2\miniz.c.obj 2025-06-01T21:07:45.6324462Z C:\actions-runner\_work\pytorch\pytorch\third_party\miniz-3.0.2\miniz.c(3137): warning C4005: 'WIN32_LEAN_AND_MEAN': macro redefinition 2025-06-01T21:07:45.6325230Z command line(1): note: see previous definition of 'WIN32_LEAN_AND_MEAN' 2025-06-01T21:07:45.6326031Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:07:45.6326889Z [3148/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\inline_container.cc.obj 2025-06-01T21:07:45.6380638Z [3149/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\threadpool\thread_pool_guard.cpp.obj 2025-06-01T21:07:45.6737155Z [3150/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\metal\Context.cpp.obj 2025-06-01T21:07:45.7559446Z [3151/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\string_utils.cc.obj 2025-06-01T21:07:45.9456592Z [3152/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\threadpool\pthreadpool-cpp.cc.obj 2025-06-01T21:07:45.9552689Z [3153/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\threadpool\ThreadPool.cc.obj 2025-06-01T21:07:46.0541019Z [3154/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\proto_wrap.cc.obj 2025-06-01T21:07:46.3740741Z [3155/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\core\common.cc.obj 2025-06-01T21:07:46.7896356Z [3156/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\ViewFuncs.cpp.obj 2025-06-01T21:07:47.8020563Z [3157/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_0.cpp.obj 2025-06-01T21:07:48.2297321Z [3158/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_1.cpp.obj 2025-06-01T21:07:49.2920047Z [3159/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_2.cpp.obj 2025-06-01T21:07:49.3626995Z [3160/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\Functions.cpp.obj 2025-06-01T21:07:49.5265916Z [3161/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_0.cpp.obj 2025-06-01T21:07:49.6209366Z [3162/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_3.cpp.obj 2025-06-01T21:07:49.6987510Z [3163/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_1.cpp.obj 2025-06-01T21:07:49.7918306Z [3164/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_2.cpp.obj 2025-06-01T21:07:49.9671687Z [3165/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_3.cpp.obj 2025-06-01T21:07:50.2369522Z [3166/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_4.cpp.obj 2025-06-01T21:07:50.6708666Z [3167/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\generated\c_shim_cpu.cpp.obj 2025-06-01T21:07:50.7847731Z [3168/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\ADInplaceOrViewType_0.cpp.obj 2025-06-01T21:07:50.8168749Z [3169/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_4.cpp.obj 2025-06-01T21:07:51.0547652Z [3170/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\ADInplaceOrViewType_1.cpp.obj 2025-06-01T21:07:51.0900964Z [3171/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\generated\RegisterAutogradLazy.cpp.obj 2025-06-01T21:07:51.1357270Z [3172/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\generated\RegisterLazy.cpp.obj 2025-06-01T21:07:51.8194389Z [3173/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\autograd.cpp.obj 2025-06-01T21:07:51.8229138Z [3174/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\anomaly_mode.cpp.obj 2025-06-01T21:07:51.8377170Z [3175/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\autograd_meta.cpp.obj 2025-06-01T21:07:51.8886802Z [3176/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\autograd_not_implemented_fallback.cpp.obj 2025-06-01T21:07:52.1031577Z [3177/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\cpp_hook.cpp.obj 2025-06-01T21:07:52.1807209Z [3178/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\engine.cpp.obj 2025-06-01T21:07:52.7492764Z [3179/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\forward_grad.cpp.obj 2025-06-01T21:07:53.3282227Z [3180/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\functions\utils.cpp.obj 2025-06-01T21:07:53.7771464Z [3181/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\generated\LazyNativeFunctions.cpp.obj 2025-06-01T21:07:54.4155260Z [3182/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\input_metadata.cpp.obj 2025-06-01T21:07:54.7948038Z [3183/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\jit_decomp_interface.cpp.obj 2025-06-01T21:07:54.8803825Z [3184/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\custom_function.cpp.obj 2025-06-01T21:07:55.2783567Z [3185/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\function.cpp.obj 2025-06-01T21:07:55.3890439Z [3186/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\functions\accumulate_grad.cpp.obj 2025-06-01T21:07:55.4532338Z [3187/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\functions\basic_ops.cpp.obj 2025-06-01T21:07:55.5460526Z [3188/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\profiler_kineto.cpp.obj 2025-06-01T21:07:55.6848542Z [3189/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\functions\tensor.cpp.obj 2025-06-01T21:07:55.7823189Z [3190/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\utils\warnings.cpp.obj 2025-06-01T21:07:55.9438115Z [3191/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\profiler_legacy.cpp.obj 2025-06-01T21:07:55.9862270Z [3192/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\record_function_ops.cpp.obj 2025-06-01T21:07:56.3153984Z [3193/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\input_buffer.cpp.obj 2025-06-01T21:07:56.3978275Z [3194/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\saved_variable.cpp.obj 2025-06-01T21:07:56.6108551Z [3195/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\variable_info.cpp.obj 2025-06-01T21:07:56.8753236Z [3196/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\dynamo\compiled_autograd.cpp.obj 2025-06-01T21:07:57.0115148Z [3197/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_runner\model_container_runner_cpu.cpp.obj 2025-06-01T21:07:57.0703015Z [3198/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_package\model_package_loader.cpp.obj 2025-06-01T21:07:57.2025418Z [3199/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_runner\model_container_runner.cpp.obj 2025-06-01T21:07:57.4629325Z [3200/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\mkldnn_tensor.cpp.obj 2025-06-01T21:07:57.7701978Z [3201/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\oss_proxy_executor.cpp.obj 2025-06-01T21:07:57.9069357Z [3202/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\shim_cpu.cpp.obj 2025-06-01T21:07:57.9911715Z [3203/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\shim_common.cpp.obj 2025-06-01T21:07:58.0700216Z [3204/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\tensor_converter.cpp.obj 2025-06-01T21:07:58.8080249Z [3205/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\api\module.cpp.obj 2025-06-01T21:07:58.9508239Z [3206/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\api\object.cpp.obj 2025-06-01T21:07:59.0955516Z [3207/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_debug_handler.cpp.obj 2025-06-01T21:07:59.1632855Z [3208/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_debug_info.cpp.obj 2025-06-01T21:07:59.2803481Z [3209/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\variable.cpp.obj 2025-06-01T21:07:59.2978598Z [3210/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_detail.cpp.obj 2025-06-01T21:07:59.8295209Z [3211/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_interface.cpp.obj 2025-06-01T21:08:00.0804812Z [3212/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_resolver.cpp.obj 2025-06-01T21:08:00.8075720Z [3213/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\inductor_ops.cpp.obj 2025-06-01T21:08:00.8805450Z [3214/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\api\function_impl.cpp.obj 2025-06-01T21:08:02.0503642Z [3215/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\builtin_functions.cpp.obj 2025-06-01T21:08:02.0658274Z [3216/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\canonicalize_modified_loop.cpp.obj 2025-06-01T21:08:02.3465157Z [3217/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\edit_distance.cpp.obj 2025-06-01T21:08:02.9028892Z [3218/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\compiler.cpp.obj 2025-06-01T21:08:03.0064998Z [3219/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\executor.cpp.obj 2025-06-01T21:08:03.1291483Z [3220/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\codegen.cpp.obj 2025-06-01T21:08:03.1742683Z [3221/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\convert_to_ssa.cpp.obj 2025-06-01T21:08:03.3942412Z [3222/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\fallback.cpp.obj 2025-06-01T21:08:03.4483883Z [3223/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\exit_transforms.cpp.obj 2025-06-01T21:08:03.4943238Z [3224/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\interface.cpp.obj 2025-06-01T21:08:03.5020824Z [3225/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\name_mangler.cpp.obj 2025-06-01T21:08:03.7013189Z [3226/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\parser.cpp.obj 2025-06-01T21:08:03.8151832Z [3227/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\kernel_cache.cpp.obj 2025-06-01T21:08:03.9897983Z [3228/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\inline_loop_condition.cpp.obj 2025-06-01T21:08:04.2285233Z [3229/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\ir_emitter.cpp.obj 2025-06-01T21:08:04.5349063Z [3230/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\schema_matching.cpp.obj 2025-06-01T21:08:04.6251276Z [3231/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\script_type_parser.cpp.obj 2025-06-01T21:08:04.7068558Z [3232/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\sugared_value.cpp.obj 2025-06-01T21:08:04.8010291Z [3233/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\tracer.cpp.obj 2025-06-01T21:08:04.8732716Z [3234/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\versioned_symbols.cpp.obj 2025-06-01T21:08:04.9929872Z [3235/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\alias_analysis.cpp.obj 2025-06-01T21:08:05.1767682Z [3236/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\attributes.cpp.obj 2025-06-01T21:08:05.7141575Z [3237/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\graph_utils.cpp.obj 2025-06-01T21:08:05.8534612Z [3238/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\ir.cpp.obj 2025-06-01T21:08:05.8703938Z [3239/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\irparser.cpp.obj 2025-06-01T21:08:05.9311071Z [3240/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\scope.cpp.obj 2025-06-01T21:08:05.9547786Z [3241/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\node_hashing.cpp.obj 2025-06-01T21:08:06.1219063Z [3242/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\subgraph_matcher.cpp.obj 2025-06-01T21:08:06.3353011Z [3243/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\type_hashing.cpp.obj 2025-06-01T21:08:06.8888420Z [3244/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\jit_log.cpp.obj 2025-06-01T21:08:06.9884729Z [3245/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\compatibility\runtime_compatibility.cpp.obj 2025-06-01T21:08:07.0184433Z [3246/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\compatibility\model_compatibility.cpp.obj 2025-06-01T21:08:07.0349912Z [3247/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\jit_opt_limit.cpp.obj 2025-06-01T21:08:07.2513755Z [3248/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\function.cpp.obj 2025-06-01T21:08:07.5621374Z [3249/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\import.cpp.obj 2025-06-01T21:08:08.0292019Z [3250/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\nnc\registry.cpp.obj 2025-06-01T21:08:08.1346681Z [3251/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\nnc\backend.cpp.obj 2025-06-01T21:08:08.1550078Z [3252/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\constants.cpp.obj 2025-06-01T21:08:08.2051291Z [3253/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\module.cpp.obj 2025-06-01T21:08:08.2989379Z [3254/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\observer.cpp.obj 2025-06-01T21:08:08.9076131Z [3255/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\interpreter.cpp.obj 2025-06-01T21:08:09.1635800Z [3256/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\parse_bytecode.cpp.obj 2025-06-01T21:08:09.2857754Z [3257/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\prim_ops_registery.cpp.obj 2025-06-01T21:08:09.2956634Z [3258/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\parse_operators.cpp.obj 2025-06-01T21:08:09.6961282Z [3259/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\nnc\context.cpp.obj 2025-06-01T21:08:09.8139534Z [3260/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\flatbuffer_loader.cpp.obj 2025-06-01T21:08:10.0920685Z [3261/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\quantization.cpp.obj 2025-06-01T21:08:10.3270274Z [3262/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\upgrader_mobile.cpp.obj 2025-06-01T21:08:10.3750678Z [3263/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\promoted_prim_ops.cpp.obj 2025-06-01T21:08:10.4268260Z [3264/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\type_parser.cpp.obj 2025-06-01T21:08:10.4942742Z [3265/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\operator_upgraders\utils.cpp.obj 2025-06-01T21:08:10.6243199Z [3266/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\operator_upgraders\version_map.cpp.obj 2025-06-01T21:08:10.7799082Z [3267/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\nnc\aot_compiler.cpp.obj 2025-06-01T21:08:10.9162185Z [3268/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\operator_upgraders\upgraders.cpp.obj 2025-06-01T21:08:11.0038428Z [3269/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\operator_upgraders\upgraders_entry.cpp.obj 2025-06-01T21:08:11.1842396Z [3270/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\register_ops_common_utils.cpp.obj 2025-06-01T21:08:11.5121164Z [3271/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\add_if_then_else.cpp.obj 2025-06-01T21:08:11.6108073Z [3272/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\annotate_warns.cpp.obj 2025-06-01T21:08:11.9233066Z [3273/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\canonicalize.cpp.obj 2025-06-01T21:08:12.1058104Z [3274/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\canonicalize_graph_fuser_ops.cpp.obj 2025-06-01T21:08:12.2712029Z [3275/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\check_strict_fusion.cpp.obj 2025-06-01T21:08:12.7019689Z [3276/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\common_subexpression_elimination.cpp.obj 2025-06-01T21:08:13.0858605Z [3277/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\concat_opt.cpp.obj 2025-06-01T21:08:13.3011191Z [3278/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\constant_pooling.cpp.obj 2025-06-01T21:08:13.4576502Z [3279/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\constant_propagation.cpp.obj 2025-06-01T21:08:13.8861768Z [3280/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\create_autodiff_subgraphs.cpp.obj 2025-06-01T21:08:14.1495856Z [3281/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\bailout_graph.cpp.obj 2025-06-01T21:08:14.2063855Z [3282/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\create_functional_graphs.cpp.obj 2025-06-01T21:08:14.4629604Z [3283/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\dbr_quantization\remove_redundant_aliases.cpp.obj 2025-06-01T21:08:14.5863388Z [3284/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\batch_mm.cpp.obj 2025-06-01T21:08:14.6437032Z [3285/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\dead_code_elimination.cpp.obj 2025-06-01T21:08:14.9850038Z [3286/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\clear_profiling.cpp.obj 2025-06-01T21:08:15.1426984Z [3287/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\decompose_ops.cpp.obj 2025-06-01T21:08:15.1700472Z [3288/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\clear_undefinedness.cpp.obj 2025-06-01T21:08:15.2374482Z [3289/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\device_type_analysis.cpp.obj 2025-06-01T21:08:15.2801989Z [3290/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\dtype_analysis.cpp.obj 2025-06-01T21:08:15.5966092Z [3291/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\eliminate_no_ops.cpp.obj 2025-06-01T21:08:15.7125130Z [3292/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\erase_number_types.cpp.obj 2025-06-01T21:08:15.7810636Z [3293/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fixup_trace_scope_blocks.cpp.obj 2025-06-01T21:08:16.2361733Z [3294/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fold_conv_bn.cpp.obj 2025-06-01T21:08:16.3250833Z [3295/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fold_linear_bn.cpp.obj 2025-06-01T21:08:16.4363347Z [3296/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_concat_linear.cpp.obj 2025-06-01T21:08:16.4522424Z [3297/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_conv_add_relu_fusion.cpp.obj 2025-06-01T21:08:16.7955212Z [3298/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_conv_folding.cpp.obj 2025-06-01T21:08:16.9159664Z [3299/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_graph_optimizations.cpp.obj 2025-06-01T21:08:16.9628436Z [3300/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_linear_folding.cpp.obj 2025-06-01T21:08:17.4645496Z [3301/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_linear_transpose.cpp.obj 2025-06-01T21:08:17.6230950Z [3302/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fuse_linear.cpp.obj 2025-06-01T21:08:17.6406338Z [3303/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fuse_relu.cpp.obj 2025-06-01T21:08:18.0585055Z [3304/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\graph_rewrite_helper.cpp.obj 2025-06-01T21:08:18.6191804Z [3305/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\hoist_conv_packed_params.cpp.obj 2025-06-01T21:08:18.7500042Z [3306/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inline_autodiff_subgraphs.cpp.obj 2025-06-01T21:08:18.8344515Z [3307/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inline_fork_wait.cpp.obj 2025-06-01T21:08:18.9643070Z [3308/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\freeze_module.cpp.obj 2025-06-01T21:08:19.2781507Z [3309/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inline_forked_closures.cpp.obj 2025-06-01T21:08:19.8105359Z [3310/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inliner.cpp.obj 2025-06-01T21:08:19.9399103Z [3311/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inplace_check.cpp.obj 2025-06-01T21:08:20.1450752Z [3312/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\integer_value_refinement.cpp.obj 2025-06-01T21:08:20.4358555Z [3313/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_ops_to_mkldnn.cpp.obj 2025-06-01T21:08:20.4606004Z [3314/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\lift_closures.cpp.obj 2025-06-01T21:08:20.6007342Z [3315/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\graph_fuser.cpp.obj 2025-06-01T21:08:20.7679341Z [3316/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\guard_elimination.cpp.obj 2025-06-01T21:08:21.0753171Z [3317/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\loop_unrolling.cpp.obj 2025-06-01T21:08:21.3270695Z [3318/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\lower_grad_of.cpp.obj 2025-06-01T21:08:21.6599148Z [3319/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\lower_tuples.cpp.obj 2025-06-01T21:08:21.9327954Z [3320/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\normalize_ops.cpp.obj 2025-06-01T21:08:22.2391144Z [3321/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\pass_manager.cpp.obj 2025-06-01T21:08:22.5513045Z [3322/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\insert_guards.cpp.obj 2025-06-01T21:08:22.5677085Z [3323/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole.cpp.obj 2025-06-01T21:08:22.8276156Z [3324/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole_alias_sensitive.cpp.obj 2025-06-01T21:08:23.1046764Z [3325/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole_dict_idioms.cpp.obj 2025-06-01T21:08:23.2858922Z [3326/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\liveness.cpp.obj 2025-06-01T21:08:23.4571864Z [3327/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole_list_idioms.cpp.obj 2025-06-01T21:08:23.7090131Z [3328/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\prepack_folding.cpp.obj 2025-06-01T21:08:23.7239400Z [3329/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole_non_tensor.cpp.obj 2025-06-01T21:08:23.9531713Z [3330/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\dedup_module_uses.cpp.obj 2025-06-01T21:08:24.2728570Z [3331/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\quantization_type.cpp.obj 2025-06-01T21:08:24.3446365Z [3332/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\metal_rewrite.cpp.obj 2025-06-01T21:08:24.4821992Z [3333/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\fusion_passes.cpp.obj 2025-06-01T21:08:24.6069953Z [3334/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\mkldnn_rewrite.cpp.obj 2025-06-01T21:08:24.7879396Z [3335/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\helper.cpp.obj 2025-06-01T21:08:24.8729159Z [3336/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\insert_observers.cpp.obj 2025-06-01T21:08:24.9184761Z [3337/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\insert_quant_dequant.cpp.obj 2025-06-01T21:08:25.4978945Z [3338/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\refine_tuple_types.cpp.obj 2025-06-01T21:08:25.7051943Z [3339/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_dropout.cpp.obj 2025-06-01T21:08:25.8018762Z [3340/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_exceptions.cpp.obj 2025-06-01T21:08:25.9199798Z [3341/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_expands.cpp.obj 2025-06-01T21:08:26.0403280Z [3342/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_mutation.cpp.obj 2025-06-01T21:08:26.0686459Z [3343/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_redundant_profiles.cpp.obj 2025-06-01T21:08:26.7432671Z [3344/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\replacement_of_old_operators.cpp.obj 2025-06-01T21:08:26.8851447Z [3345/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\finalize.cpp.obj 2025-06-01T21:08:26.9351935Z [3346/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\requires_grad_analysis.cpp.obj 2025-06-01T21:08:27.0186558Z [3347/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\restore_mutation.cpp.obj 2025-06-01T21:08:27.1203992Z [3348/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\shape_analysis.cpp.obj 2025-06-01T21:08:27.2216566Z [3349/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\subgraph_rewrite.cpp.obj 2025-06-01T21:08:27.9121588Z [3350/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\symbolic_shape_analysis.cpp.obj 2025-06-01T21:08:27.9801191Z [3351/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\register_packed_params.cpp.obj 2025-06-01T21:08:28.1467663Z [3352/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\symbolic_shape_cache.cpp.obj 2025-06-01T21:08:28.2521121Z [3353/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\update_differentiable_graph_requires_grad.cpp.obj 2025-06-01T21:08:28.4440949Z [3354/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\memory_dag.cpp.obj 2025-06-01T21:08:29.1226709Z [3355/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\op_registry.cpp.obj 2025-06-01T21:08:29.1514688Z [3356/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\optimization_utils.cpp.obj 2025-06-01T21:08:29.3170399Z [3357/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\subgraph_utils.cpp.obj 2025-06-01T21:08:29.4663879Z [3358/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\value_refinement_utils.cpp.obj 2025-06-01T21:08:29.5286548Z [3359/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\python\utf8_decoding_ignore.cpp.obj 2025-06-01T21:08:29.6044790Z [3360/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\variadic_ops.cpp.obj 2025-06-01T21:08:29.6553295Z [3361/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\python\update_graph_executor_opt.cpp.obj 2025-06-01T21:08:29.8146371Z [3362/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\specialize_autogradzero.cpp.obj 2025-06-01T21:08:30.7428764Z [3363/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\symbolic_shape_runtime_fusion.cpp.obj 2025-06-01T21:08:30.7516996Z [3364/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\autodiff.cpp.obj 2025-06-01T21:08:30.8038291Z [3365/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\argument_spec.cpp.obj 2025-06-01T21:08:30.9240358Z [3366/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\decomposition_registry.cpp.obj 2025-06-01T21:08:30.9350342Z [3367/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\decomposition_registry_util.cpp.obj 2025-06-01T21:08:30.9482247Z [3368/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\tensorexpr_fuser.cpp.obj 2025-06-01T21:08:31.1632342Z C:\actions-runner\_work\pytorch\pytorch\torch\csrc\jit\passes\tensorexpr_fuser.cpp(476): warning C4805: '&=': unsafe mix of type 'bool' and type 'unsigned __int64' in operation 2025-06-01T21:08:31.1634153Z C:\actions-runner\_work\pytorch\pytorch\torch\csrc\jit\passes\tensorexpr_fuser.cpp(476): warning C4805: '&': unsafe mix of type 'bool' and type 'unsigned __int64' in operation 2025-06-01T21:08:31.1635665Z [3369/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\instruction.cpp.obj 2025-06-01T21:08:31.2528117Z [3370/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\jit_exception.cpp.obj 2025-06-01T21:08:31.6201930Z [3371/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\logging.cpp.obj 2025-06-01T21:08:32.1949998Z [3372/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\interpreter\preprocess_graph.cpp.obj 2025-06-01T21:08:32.5087534Z [3373/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\print_handler.cpp.obj 2025-06-01T21:08:32.8798130Z [3374/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\vulkan_rewrite.cpp.obj 2025-06-01T21:08:32.9098685Z [3375/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\xnnpack_rewrite.cpp.obj 2025-06-01T21:08:34.5836564Z [3376/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\interpreter.cpp.obj 2025-06-01T21:08:34.5996457Z [3377/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\graph_executor.cpp.obj 2025-06-01T21:08:34.7014368Z [3378/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\interpreter\frame.cpp.obj 2025-06-01T21:08:34.8120196Z [3379/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\jit_trace.cpp.obj 2025-06-01T21:08:35.0475152Z [3380/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\operator.cpp.obj 2025-06-01T21:08:35.2174574Z [3381/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\slice_indices_adjust.cpp.obj 2025-06-01T21:08:35.7748558Z [3382/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\script_profile.cpp.obj 2025-06-01T21:08:35.8501170Z [3383/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\serialized_shape_function_registry.cpp.obj 2025-06-01T21:08:36.3876991Z [3384/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\profiling_graph_executor_impl.cpp.obj 2025-06-01T21:08:36.3956399Z [3385/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\fusion.cpp.obj 2025-06-01T21:08:36.5937049Z [3386/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\profiling_record.cpp.obj 2025-06-01T21:08:36.7267733Z [3387/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_ops_utils.cpp.obj 2025-06-01T21:08:36.9368453Z [3388/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\impl.cpp.obj 2025-06-01T21:08:37.1324093Z [3389/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\memory_planner.cpp.obj 2025-06-01T21:08:37.8610665Z [3390/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\passes.cpp.obj 2025-06-01T21:08:38.1472468Z [3391/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\symbolic_script.cpp.obj 2025-06-01T21:08:38.3731053Z [3392/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\symbolic_shape_registry.cpp.obj 2025-06-01T21:08:38.4568528Z [3393/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\simple_graph_executor_impl.cpp.obj 2025-06-01T21:08:39.0320215Z [3394/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\symbolic_shape_registry_util.cpp.obj 2025-06-01T21:08:39.5974093Z [3395/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\generated_ops.cpp.obj 2025-06-01T21:08:39.6211790Z [3396/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\callstack_debug_info_serialization.cpp.obj 2025-06-01T21:08:40.1401406Z [3397/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\import_export_helpers.cpp.obj 2025-06-01T21:08:40.4742378Z [3398/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\native_ops.cpp.obj 2025-06-01T21:08:40.6092673Z [3399/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\vararg_functions.cpp.obj 2025-06-01T21:08:40.7541730Z [3400/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\ops.cpp.obj 2025-06-01T21:08:40.7675284Z [3401/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\import_read.cpp.obj 2025-06-01T21:08:40.8123534Z [3402/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\te_wrapper.cpp.obj 2025-06-01T21:08:41.1887285Z [3403/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\import_source.cpp.obj 2025-06-01T21:08:41.3277564Z [3404/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\pickle.cpp.obj 2025-06-01T21:08:41.7818127Z [3405/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\python_print.cpp.obj 2025-06-01T21:08:41.9213025Z [3406/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\type_name_uniquer.cpp.obj 2025-06-01T21:08:41.9806510Z [3407/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\source_range_serialization.cpp.obj 2025-06-01T21:08:42.2077544Z [3408/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\import.cpp.obj 2025-06-01T21:08:44.1740314Z [3409/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\pickler.cpp.obj 2025-06-01T21:08:44.5279872Z [3410/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\unpickler.cpp.obj 2025-06-01T21:08:44.8772051Z [3411/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\block_codegen.cpp.obj 2025-06-01T21:08:45.0103973Z [3412/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\bounds_inference.cpp.obj 2025-06-01T21:08:45.5996778Z [3413/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\cpp_codegen.cpp.obj 2025-06-01T21:08:45.6118324Z [3414/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\codegen.cpp.obj 2025-06-01T21:08:45.6517692Z [3415/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\bounds_overlap.cpp.obj 2025-06-01T21:08:45.7645179Z [3416/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\eval.cpp.obj 2025-06-01T21:08:45.8393069Z [3417/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\intrinsic_symbols.cpp.obj 2025-06-01T21:08:45.8947214Z [3418/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\external_functions_registry.cpp.obj 2025-06-01T21:08:46.8998393Z [3419/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir.cpp.obj 2025-06-01T21:08:47.7707402Z [3420/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\expr.cpp.obj 2025-06-01T21:08:48.4537849Z [3421/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\external_functions_codegen.cpp.obj 2025-06-01T21:08:48.5019018Z [3422/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\external_functions_core.cpp.obj 2025-06-01T21:08:48.6029562Z [3423/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\external_functions.cpp.obj 2025-06-01T21:08:49.3271970Z [3424/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\hash_provider.cpp.obj 2025-06-01T21:08:49.4520109Z [3425/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\graph_opt.cpp.obj 2025-06-01T21:08:49.5722662Z [3426/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\llvm_codegen.cpp.obj 2025-06-01T21:08:49.6485869Z [3427/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\llvm_jit.cpp.obj 2025-06-01T21:08:49.7625109Z [3428/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_cloner.cpp.obj 2025-06-01T21:08:50.6369904Z [3429/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_mutator.cpp.obj 2025-06-01T21:08:51.3089696Z [3430/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_printer.cpp.obj 2025-06-01T21:08:52.0542799Z [3431/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_verifier.cpp.obj 2025-06-01T21:08:52.0773689Z [3432/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_simplifier.cpp.obj 2025-06-01T21:08:52.0776120Z 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-06-01T21:08:52.0777964Z with 2025-06-01T21:08:52.0778297Z [ 2025-06-01T21:08:52.0778639Z T=int 2025-06-01T21:08:52.0778985Z ] 2025-06-01T21:08:52.0780690Z 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-06-01T21:08:52.2769210Z with 2025-06-01T21:08:52.2769469Z [ 2025-06-01T21:08:52.2769648Z T=int 2025-06-01T21:08:52.2769840Z ] 2025-06-01T21:08:52.2770358Z [3433/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_visitor.cpp.obj 2025-06-01T21:08:53.1713762Z [3434/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\loopnest.cpp.obj 2025-06-01T21:08:53.3439803Z [3435/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\kernel.cpp.obj 2025-06-01T21:08:53.5624185Z [3436/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\loopnest_randomization.cpp.obj 2025-06-01T21:08:54.4991231Z [3437/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\lowerings.cpp.obj 2025-06-01T21:08:54.9207011Z [3438/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\mem_dependency_checker.cpp.obj 2025-06-01T21:08:54.9208650Z 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-06-01T21:08:54.9209560Z with 2025-06-01T21:08:54.9209735Z [ 2025-06-01T21:08:54.9209926Z T=int 2025-06-01T21:08:54.9210132Z ] 2025-06-01T21:08:55.9214168Z 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-06-01T21:08:55.9215796Z with 2025-06-01T21:08:55.9216073Z [ 2025-06-01T21:08:55.9216298Z T=int 2025-06-01T21:08:55.9216547Z ] 2025-06-01T21:08:55.9217427Z [3439/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\matmul.cpp.obj 2025-06-01T21:08:55.9904128Z [3440/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\conv2d.cpp.obj 2025-06-01T21:08:56.0744950Z [3441/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\misc.cpp.obj 2025-06-01T21:08:56.8953923Z [3442/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\norm.cpp.obj 2025-06-01T21:08:56.9892905Z [3443/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\reduction.cpp.obj 2025-06-01T21:08:57.1093548Z [3444/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\pointwise.cpp.obj 2025-06-01T21:08:57.1215536Z [3445/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\tensor.cpp.obj 2025-06-01T21:08:57.2109647Z [3446/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\quantization.cpp.obj 2025-06-01T21:08:57.4152727Z [3447/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\types.cpp.obj 2025-06-01T21:08:58.0494737Z [3448/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\unique_name_manager.cpp.obj 2025-06-01T21:08:58.1992870Z [3449/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\reduction.cpp.obj 2025-06-01T21:08:58.3119714Z [3450/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\testing\file_check.cpp.obj 2025-06-01T21:08:58.3585363Z [3451/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\testing\hooks_for_testing.cpp.obj 2025-06-01T21:08:58.4076433Z [3452/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\backend\backend_device.cpp.obj 2025-06-01T21:08:58.5855648Z [3453/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\config.cpp.obj 2025-06-01T21:08:58.6052707Z [3454/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\softmax.cpp.obj 2025-06-01T21:08:58.6815268Z [3455/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\backend\backend_interface.cpp.obj 2025-06-01T21:08:59.1766091Z [3456/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\backend\lowering_context.cpp.obj 2025-06-01T21:08:59.3073626Z [3457/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\hash.cpp.obj 2025-06-01T21:08:59.4531235Z [3458/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\debug_util.cpp.obj 2025-06-01T21:08:59.5037262Z [3459/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\helpers.cpp.obj 2025-06-01T21:08:59.6263066Z [3460/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\registerizer.cpp.obj 2025-06-01T21:08:59.6266660Z 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-06-01T21:08:59.6268284Z with 2025-06-01T21:08:59.6268586Z [ 2025-06-01T21:08:59.6268882Z T=int 2025-06-01T21:08:59.6269195Z ] 2025-06-01T21:08:59.6270974Z 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-06-01T21:08:59.7357371Z with 2025-06-01T21:08:59.7357619Z [ 2025-06-01T21:08:59.7357787Z T=int 2025-06-01T21:08:59.7357969Z ] 2025-06-01T21:08:59.7358416Z [3461/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ir.cpp.obj 2025-06-01T21:08:59.8119050Z [3462/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ir_metadata.cpp.obj 2025-06-01T21:08:59.9017320Z [3463/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\multi_wait.cpp.obj 2025-06-01T21:08:59.9109264Z [3464/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ir_dump_util.cpp.obj 2025-06-01T21:09:00.2460849Z [3465/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\permutation_util.cpp.obj 2025-06-01T21:09:00.3032958Z [3466/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ir_util.cpp.obj 2025-06-01T21:09:00.4980173Z [3467/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\lazy_graph_executor.cpp.obj 2025-06-01T21:09:00.6835087Z [3468/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\metrics.cpp.obj 2025-06-01T21:09:00.7913775Z [3469/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ops\arithmetic_ir_ops.cpp.obj 2025-06-01T21:09:00.9810719Z [3470/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ops\utils.cpp.obj 2025-06-01T21:09:01.1281746Z [3471/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\shape.cpp.obj 2025-06-01T21:09:01.1699599Z [3472/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\thread_pool.cpp.obj 2025-06-01T21:09:01.4151001Z [3473/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\tensor.cpp.obj 2025-06-01T21:09:01.4421773Z [3474/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\monitor\counters.cpp.obj 2025-06-01T21:09:01.4564345Z [3475/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\tensor_impl.cpp.obj 2025-06-01T21:09:01.5044615Z [3476/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\monitor\events.cpp.obj 2025-06-01T21:09:01.6358473Z [3477/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\tensor_util.cpp.obj 2025-06-01T21:09:02.0185294Z [3478/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\trie.cpp.obj 2025-06-01T21:09:02.4560325Z [3479/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\mtia\profiler\MTIAMemoryProfiler.cpp.obj 2025-06-01T21:09:02.4891262Z [3480/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\combined_traceback.cpp.obj 2025-06-01T21:09:02.5504109Z [3481/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\data_flow.cpp.obj 2025-06-01T21:09:02.6213148Z [3482/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\collection.cpp.obj 2025-06-01T21:09:02.6463940Z [3483/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\kineto_client_interface.cpp.obj 2025-06-01T21:09:02.7661982Z [3484/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\kineto_shim.cpp.obj 2025-06-01T21:09:02.9380722Z [3485/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\perf.cpp.obj 2025-06-01T21:09:03.0541667Z [3486/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\orchestration\observer.cpp.obj 2025-06-01T21:09:03.4752250Z [3487/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\stubs\base.cpp.obj 2025-06-01T21:09:03.5489959Z [3488/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\orchestration\python_tracer.cpp.obj 2025-06-01T21:09:03.5636971Z [3489/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\orchestration\vulkan.cpp.obj 2025-06-01T21:09:03.6742044Z [3490/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\unwind\unwind_fb.cpp.obj 2025-06-01T21:09:03.7357767Z [3491/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\standalone\itt_observer.cpp.obj 2025-06-01T21:09:03.8277791Z [3492/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\unwind\unwind.cpp.obj 2025-06-01T21:09:03.8913665Z [3493/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\standalone\nvtx_observer.cpp.obj 2025-06-01T21:09:03.9493635Z [3494/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\standalone\privateuse1_observer.cpp.obj 2025-06-01T21:09:04.0212226Z [3495/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\cpp_stacktraces.cpp.obj 2025-06-01T21:09:04.0585292Z [3496/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\shape_inference.cpp.obj 2025-06-01T21:09:04.2297643Z [3497/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\standalone\execution_trace_observer.cpp.obj 2025-06-01T21:09:04.7823772Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:09:04.7824783Z [3498/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\util.cpp.obj 2025-06-01T21:09:04.8288005Z [3499/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\schema_info.cpp.obj 2025-06-01T21:09:04.9504628Z [3500/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\variadic.cpp.obj 2025-06-01T21:09:05.2229027Z [3501/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\lower_graph.cpp.obj 2025-06-01T21:09:05.3657085Z [3502/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_inplace_ops.cpp.obj 2025-06-01T21:09:05.8748798Z [3503/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\check_alias_annotation.cpp.obj 2025-06-01T21:09:06.0519949Z [3504/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_c10_ops.cpp.obj 2025-06-01T21:09:06.6466136Z [3505/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\graph\GraphSignature.cpp.obj 2025-06-01T21:09:06.7867503Z [3506/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\graph\TensorMeta.cpp.obj 2025-06-01T21:09:07.2721578Z [3507/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\Placement.cpp.obj 2025-06-01T21:09:07.3510429Z [3508/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\tensor_flatten.cpp.obj 2025-06-01T21:09:07.3583784Z [3509/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\PlacementUtils.cpp.obj 2025-06-01T21:09:07.8354913Z [3510/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\common\FileUtil.cpp.obj 2025-06-01T21:09:07.8662064Z [3511/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\cuda\interface.cpp.obj 2025-06-01T21:09:08.0193545Z [3512/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\autocast.cpp.obj 2025-06-01T21:09:08.2076548Z [3513/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\config.cpp.obj 2025-06-01T21:09:08.5491947Z [3514/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\dynamic_ir.cpp.obj 2025-06-01T21:09:08.6376480Z [3515/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\debug_info.cpp.obj 2025-06-01T21:09:08.6833622Z [3516/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_prim_ops.cpp.obj 2025-06-01T21:09:08.9489200Z [3517/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ops\device_data.cpp.obj 2025-06-01T21:09:09.0367396Z [3518/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_prim_ops_fulljit.cpp.obj 2025-06-01T21:09:09.0692692Z [3519/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_special_ops.cpp.obj 2025-06-01T21:09:09.1799910Z [3520/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ops\generic.cpp.obj 2025-06-01T21:09:09.4612650Z [3521/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\tensor_aten_ops.cpp.obj 2025-06-01T21:09:10.1045001Z [3522/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_lowering_context.cpp.obj 2025-06-01T21:09:10.2535546Z [3523/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_autograd_functions.cpp.obj 2025-06-01T21:09:10.2790277Z [3524/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_node.cpp.obj 2025-06-01T21:09:11.2083647Z [3525/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_eager_fallback.cpp.obj 2025-06-01T21:09:11.2589999Z [3526/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\train\export_data.cpp.obj 2025-06-01T21:09:11.3069033Z [3527/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_backend_impl.cpp.obj 2025-06-01T21:09:11.9552314Z [3528/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_node_lowering.cpp.obj 2025-06-01T21:09:12.1955899Z [3529/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\import_data.cpp.obj 2025-06-01T21:09:12.9073561Z [3530/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_native_functions.cpp.obj 2025-06-01T21:09:12.9243380Z [3531/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\out_types.cpp.obj 2025-06-01T21:09:13.3938251Z [3532/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\itt_wrapper.cpp.obj 2025-06-01T21:09:13.4252066Z [3533/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\TraceTypeManual.cpp.obj 2025-06-01T21:09:13.8063954Z [3534/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\stubs\itt.cpp.obj 2025-06-01T21:09:13.9504851Z [3535/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\train\random.cpp.obj 2025-06-01T21:09:14.0205345Z [3536/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\train\optim\sgd.cpp.obj 2025-06-01T21:09:14.6498650Z [3537/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\jit.cpp.obj 2025-06-01T21:09:14.9155952Z [3538/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\FunctionsManual.cpp.obj 2025-06-01T21:09:14.9453909Z [3539/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\compatibility\backport.cpp.obj 2025-06-01T21:09:14.9748029Z [3540/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\train\sequential.cpp.obj 2025-06-01T21:09:15.0932406Z [3541/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\compatibility\backport_manager.cpp.obj 2025-06-01T21:09:15.1248898Z [3542/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\flatbuffer_serializer.cpp.obj 2025-06-01T21:09:15.3324344Z [3543/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\onnx.cpp.obj 2025-06-01T21:09:15.5831864Z [3544/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\byte_order.cpp.obj 2025-06-01T21:09:15.9545617Z [3545/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Backoff.cpp.obj 2025-06-01T21:09:16.2497288Z [3546/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\export_bytecode.cpp.obj 2025-06-01T21:09:16.2535688Z [3547/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\api\module_save.cpp.obj 2025-06-01T21:09:16.8061881Z [3548/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\VariableTypeManual.cpp.obj 2025-06-01T21:09:17.3503797Z [3549/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\control_collectives\StoreCollectives.cpp.obj 2025-06-01T21:09:17.9487642Z [3550/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\FileStore.cpp.obj 2025-06-01T21:09:18.6946128Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:09:18.6947252Z [3551/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\export.cpp.obj 2025-06-01T21:09:18.7578823Z [3552/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\export_module.cpp.obj 2025-06-01T21:09:18.9630679Z [3553/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\cpu\fused_kernel.cpp.obj 2025-06-01T21:09:19.4196397Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:09:19.4197647Z [3554/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\DMAConnectivity.cpp.obj 2025-06-01T21:09:19.4996240Z [3555/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Backend.cpp.obj 2025-06-01T21:09:19.7707442Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:09:19.7708611Z [3556/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ParamCommsUtils.cpp.obj 2025-06-01T21:09:19.8439355Z [3557/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ProcessGroupMPI.cpp.obj 2025-06-01T21:09:20.0678520Z [3558/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\PrefixStore.cpp.obj 2025-06-01T21:09:20.9940738Z [3559/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Functional.cpp.obj 2025-06-01T21:09:21.1927512Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:09:21.1928461Z [3560/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Store.cpp.obj 2025-06-01T21:09:21.6590711Z [3561/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\GlooDeviceFactory.cpp.obj 2025-06-01T21:09:22.0743689Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:09:22.0745756Z [3562/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\GroupRegistry.cpp.obj 2025-06-01T21:09:23.0240533Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:09:23.0241628Z [3563/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Ops.cpp.obj 2025-06-01T21:09:23.6837083Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:09:23.6838053Z [3564/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ProcessGroup.cpp.obj 2025-06-01T21:09:23.7390682Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:09:23.7391997Z [3565/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\TCPStoreLibUvBackend.cpp.obj 2025-06-01T21:09:23.8295919Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:09:23.8297864Z [3566/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ProcessGroupGloo.cpp.obj 2025-06-01T21:09:24.0747250Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:09:24.0748298Z [3567/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ProcessGroupWrapper.cpp.obj 2025-06-01T21:09:24.2987776Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:09:24.2988947Z [3568/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\debug.cpp.obj 2025-06-01T21:09:24.5013110Z [3569/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\SymmetricMemory.cpp.obj 2025-06-01T21:09:24.8587560Z [3570/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\logging.cpp.obj 2025-06-01T21:09:25.4152483Z [3571/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\TCPStore.cpp.obj 2025-06-01T21:09:25.7942714Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:09:25.7944545Z [3572/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\TCPStoreBackend.cpp.obj 2025-06-01T21:09:26.4919129Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:09:26.4920168Z [3573/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\sequence_num.cpp.obj 2025-06-01T21:09:26.8578750Z [3574/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\socket.cpp.obj 2025-06-01T21:09:26.9202013Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:09:26.9204136Z [3575/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Utils.cpp.obj 2025-06-01T21:09:27.3663721Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:09:27.3665111Z [3576/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\control_plane\Handlers.cpp.obj 2025-06-01T21:09:27.9579484Z [3577/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\cuda.cpp.obj 2025-06-01T21:09:27.9947432Z [3578/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\quantization\quantization.cpp.obj 2025-06-01T21:09:28.0529249Z [3579/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\control_plane\WorkerServer.cpp.obj 2025-06-01T21:09:28.0716825Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:09:28.0717766Z [3580/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\comm.cpp.obj 2025-06-01T21:09:28.2887875Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:09:28.2889068Z [3581/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\default_comm_hooks.cpp.obj 2025-06-01T21:09:28.4522130Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:09:28.4523202Z [3582/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\logger.cpp.obj 2025-06-01T21:09:28.8779581Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:09:28.8781531Z 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-06-01T21:09:28.8783217Z [3583/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\enum.cpp.obj 2025-06-01T21:09:28.9664843Z [3584/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\reducer.cpp.obj 2025-06-01T21:09:29.9872070Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:09:29.9873207Z [3585/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\imethod.cpp.obj 2025-06-01T21:09:30.4532020Z [3586/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Work.cpp.obj 2025-06-01T21:09:30.6109802Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:09:30.6110758Z [3587/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\mps.cpp.obj 2025-06-01T21:09:31.5889745Z [3588/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\datasets\mnist.cpp.obj 2025-06-01T21:09:31.7272178Z [3589/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\samplers\random.cpp.obj 2025-06-01T21:09:31.9327429Z [3590/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\samplers\distributed.cpp.obj 2025-06-01T21:09:31.9651917Z [3591/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\samplers\sequential.cpp.obj 2025-06-01T21:09:32.0681834Z [3592/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\samplers\stream.cpp.obj 2025-06-01T21:09:32.7465650Z [3593/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\serialize.cpp.obj 2025-06-01T21:09:34.1467992Z [3594/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\init.cpp.obj 2025-06-01T21:09:34.3599733Z [3595/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\module.cpp.obj 2025-06-01T21:09:35.3371180Z [3596/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\_functions.cpp.obj 2025-06-01T21:09:35.5542033Z [3597/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\activation.cpp.obj 2025-06-01T21:09:35.7316876Z [3598/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\batchnorm.cpp.obj 2025-06-01T21:09:35.7659654Z [3599/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\adaptive.cpp.obj 2025-06-01T21:09:35.8381161Z [3600/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\normalization.cpp.obj 2025-06-01T21:09:36.7076864Z [3601/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\instancenorm.cpp.obj 2025-06-01T21:09:37.9323208Z [3602/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\conv.cpp.obj 2025-06-01T21:09:38.3685759Z [3603/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\dropout.cpp.obj 2025-06-01T21:09:39.0958558Z [3604/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\distance.cpp.obj 2025-06-01T21:09:39.4613676Z [3605/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\embedding.cpp.obj 2025-06-01T21:09:39.5866119Z [3606/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\linear.cpp.obj 2025-06-01T21:09:39.5991788Z [3607/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\fold.cpp.obj 2025-06-01T21:09:39.6170628Z [3608/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\loss.cpp.obj 2025-06-01T21:09:40.5127898Z [3609/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\padding.cpp.obj 2025-06-01T21:09:41.7456757Z [3610/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\pixelshuffle.cpp.obj 2025-06-01T21:09:42.1302161Z [3611/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\pooling.cpp.obj 2025-06-01T21:09:42.9945471Z [3612/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\rnn.cpp.obj 2025-06-01T21:09:43.3027446Z [3613/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\upsampling.cpp.obj 2025-06-01T21:09:43.3198672Z [3614/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\activation.cpp.obj 2025-06-01T21:09:43.3928977Z [3615/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\container\functional.cpp.obj 2025-06-01T21:09:43.5206992Z [3616/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\transformer.cpp.obj 2025-06-01T21:09:44.0360219Z [3617/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\adaptive.cpp.obj 2025-06-01T21:09:45.3135361Z [3618/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\batchnorm.cpp.obj 2025-06-01T21:09:45.8276742Z [3619/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\embedding.cpp.obj 2025-06-01T21:09:46.5890265Z [3620/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\instancenorm.cpp.obj 2025-06-01T21:09:46.8621162Z [3621/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\conv.cpp.obj 2025-06-01T21:09:46.9286653Z [3622/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\normalization.cpp.obj 2025-06-01T21:09:47.0861270Z [3623/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\dropout.cpp.obj 2025-06-01T21:09:47.1493232Z [3624/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\linear.cpp.obj 2025-06-01T21:09:47.7057071Z [3625/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\padding.cpp.obj 2025-06-01T21:09:49.0262615Z [3626/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\pooling.cpp.obj 2025-06-01T21:09:49.4941978Z [3627/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\rnn.cpp.obj 2025-06-01T21:09:50.1887618Z [3628/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\vision.cpp.obj 2025-06-01T21:09:50.7862918Z [3629/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\transformer.cpp.obj 2025-06-01T21:09:50.8030894Z [3630/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\adagrad.cpp.obj 2025-06-01T21:09:50.9243291Z [3631/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\adamw.cpp.obj 2025-06-01T21:09:50.9788599Z [3632/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\adam.cpp.obj 2025-06-01T21:09:51.4551227Z [3633/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\lbfgs.cpp.obj 2025-06-01T21:09:51.7896476Z [3634/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\schedulers\lr_scheduler.cpp.obj 2025-06-01T21:09:51.9203481Z [3635/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\schedulers\step_lr.cpp.obj 2025-06-01T21:09:52.0318083Z [3636/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\schedulers\reduce_on_plateau_scheduler.cpp.obj 2025-06-01T21:09:52.5323422Z [3637/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\optimizer.cpp.obj 2025-06-01T21:09:52.5618198Z [3638/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\xpu.cpp.obj 2025-06-01T21:09:52.7099908Z [3639/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\UfuncCPUKernel_add.cpp.AVX2.cpp.obj 2025-06-01T21:09:52.7101049Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:52.7102515Z 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-06-01T21:09:53.2627261Z 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-06-01T21:09:53.2628675Z 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-06-01T21:09:53.2629889Z [3640/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\spherical_bessel_j0.cpp.AVX2.cpp.obj 2025-06-01T21:09:53.2630949Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:53.2632184Z 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-06-01T21:09:53.2931155Z 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-06-01T21:09:53.2933601Z 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-06-01T21:09:53.2935510Z [3641/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\rmsprop.cpp.obj 2025-06-01T21:09:53.5069131Z [3642/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k1.cpp.AVX2.cpp.obj 2025-06-01T21:09:53.5070580Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:53.5071900Z 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-06-01T21:09:53.7084559Z 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-06-01T21:09:53.7085943Z 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-06-01T21:09:53.7087199Z [3643/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\kernels\QuantizedOpKernels.cpp.AVX2.cpp.obj 2025-06-01T21:09:53.7088346Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:53.7089699Z 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-06-01T21:09:53.9493854Z 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-06-01T21:09:53.9496170Z 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-06-01T21:09:53.9498414Z [3644/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k0.cpp.AVX2.cpp.obj 2025-06-01T21:09:53.9500784Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:53.9503094Z 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-06-01T21:09:54.0418816Z 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-06-01T21:09:54.0421364Z 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-06-01T21:09:54.0423265Z [3645/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\serialize.cpp.obj 2025-06-01T21:09:54.4045173Z [3646/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\layer_norm_kernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:54.4046464Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:54.4047760Z 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-06-01T21:09:54.5175413Z 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-06-01T21:09:54.5176763Z 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-06-01T21:09:54.5177874Z [3647/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int8mm_kernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:54.5179171Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:54.5180579Z 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-06-01T21:09:54.7039591Z 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-06-01T21:09:54.7041071Z 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-06-01T21:09:54.7042296Z [3648/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\sgd.cpp.obj 2025-06-01T21:09:54.7258272Z [3649/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int4mm_kernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:54.7260086Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:54.7262202Z 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-06-01T21:09:55.0536213Z 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-06-01T21:09:55.0538598Z 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-06-01T21:09:55.0540681Z [3650/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\group_norm_kernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:55.0542836Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:55.0544978Z 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-06-01T21:09:55.1367444Z 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-06-01T21:09:55.1368778Z 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-06-01T21:09:55.1369918Z [3651/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\airy_ai.cpp.AVX2.cpp.obj 2025-06-01T21:09:55.1370945Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:55.1372154Z 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-06-01T21:09:55.2112367Z 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-06-01T21:09:55.2113774Z 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-06-01T21:09:55.2114854Z [3652/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\serialize\input-archive.cpp.obj 2025-06-01T21:09:55.2266952Z [3653/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\batch_norm_kernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:55.2268381Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:55.2269603Z 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-06-01T21:09:55.2517678Z 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-06-01T21:09:55.2519160Z 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-06-01T21:09:55.2520498Z [3654/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\WeightNormKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:55.2521548Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:55.2522922Z 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-06-01T21:09:55.7428749Z 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-06-01T21:09:55.7430187Z 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-06-01T21:09:55.7431263Z [3655/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\serialize\output-archive.cpp.obj 2025-06-01T21:09:55.7518046Z [3656/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleMoreKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:55.7519348Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:55.7520663Z 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-06-01T21:09:55.9175312Z 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-06-01T21:09:55.9176640Z 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-06-01T21:09:55.9177757Z [3657/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:55.9178928Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:55.9180193Z 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-06-01T21:09:55.9267797Z 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-06-01T21:09:55.9269136Z 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-06-01T21:09:55.9270342Z [3658/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Unfold2d.cpp.AVX2.cpp.obj 2025-06-01T21:09:55.9271539Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:55.9273048Z 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-06-01T21:09:56.0032262Z 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-06-01T21:09:56.0033747Z 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-06-01T21:09:56.0034877Z [3659/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SumKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:56.0035942Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:56.0037348Z 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-06-01T21:09:56.2463068Z 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-06-01T21:09:56.2464549Z 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-06-01T21:09:56.2465666Z [3660/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnfoldBackwardKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:56.2466948Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:56.2468518Z 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-06-01T21:09:56.4082998Z 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-06-01T21:09:56.4084389Z 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-06-01T21:09:56.4085523Z [3661/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\TensorCompareKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:56.4086654Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:56.4088003Z 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-06-01T21:09:56.4849436Z 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-06-01T21:09:56.4850949Z 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-06-01T21:09:56.4852172Z [3662/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnaryOpsKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:56.4853207Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:56.4854492Z 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-06-01T21:09:56.6792895Z 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-06-01T21:09:56.6794311Z 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-06-01T21:09:56.6795410Z [3663/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SparseFactories.cpp.AVX2.cpp.obj 2025-06-01T21:09:56.6796540Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:56.6797830Z 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-06-01T21:09:56.6850086Z 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-06-01T21:09:56.6851485Z 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-06-01T21:09:56.6852720Z [3664/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SortingKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:56.6853838Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:56.6855127Z 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-06-01T21:09:56.7766546Z 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-06-01T21:09:56.7769047Z 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-06-01T21:09:56.7770988Z [3665/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\StackKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:56.7772895Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:56.7774940Z 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-06-01T21:09:56.8544032Z 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-06-01T21:09:56.8546510Z 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-06-01T21:09:56.8548541Z [3666/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SpmmReduceKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:56.8550498Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:56.8552695Z 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-06-01T21:09:56.9769950Z 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-06-01T21:09:56.9772417Z 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-06-01T21:09:56.9774249Z [3667/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SoftMaxKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:56.9775907Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:56.9777903Z 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-06-01T21:09:57.1986759Z 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-06-01T21:09:57.1988191Z 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-06-01T21:09:57.1989515Z [3668/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RenormKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:57.1990624Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:57.1991968Z 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-06-01T21:09:57.4138759Z 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-06-01T21:09:57.4140603Z 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-06-01T21:09:57.4141972Z [3669/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:57.4143137Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:57.5104653Z 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-06-01T21:09:57.5105973Z 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-06-01T21:09:57.5107296Z 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-06-01T21:09:57.5108632Z [3670/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ScatterGatherKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:57.5109678Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:57.5110927Z 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-06-01T21:09:57.5703341Z 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-06-01T21:09:57.5704702Z 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-06-01T21:09:57.5706190Z [3671/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SampledAddmmKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:57.5707258Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:57.5708617Z 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-06-01T21:09:57.5724089Z 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-06-01T21:09:57.5725783Z 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-06-01T21:09:57.5727030Z [3672/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RangeFactoriesKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:57.5728085Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:57.5729361Z 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-06-01T21:09:57.6456721Z 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-06-01T21:09:57.6458036Z 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-06-01T21:09:57.6459626Z [3673/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PowKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:57.6460745Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:57.9118485Z 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-06-01T21:09:57.9119899Z 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-06-01T21:09:57.9121218Z 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-06-01T21:09:57.9122416Z [3674/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceOpsKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:57.9123648Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:57.9124848Z 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-06-01T21:09:57.9189844Z 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-06-01T21:09:57.9191182Z 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-06-01T21:09:57.9192345Z [3675/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PointwiseOpsKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:57.9193729Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:57.9194980Z 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-06-01T21:09:57.9474130Z 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-06-01T21:09:57.9475527Z 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-06-01T21:09:57.9476693Z [3676/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceAllOpsKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:57.9477766Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:57.9479045Z 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-06-01T21:09:58.0597304Z 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-06-01T21:09:58.0598697Z 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-06-01T21:09:58.0599965Z [3677/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PixelShuffleKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:58.0601375Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:58.0602746Z 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-06-01T21:09:58.5998472Z 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-06-01T21:09:58.5999792Z 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-06-01T21:09:58.6000988Z [3678/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\NativeMultiheadAttnKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:58.6002057Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:58.6003284Z 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-06-01T21:09:58.6146573Z 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-06-01T21:09:58.6147974Z 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-06-01T21:09:58.6149189Z [3679/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PaddingKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:58.6150270Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:58.6151563Z 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-06-01T21:09:58.6488341Z 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-06-01T21:09:58.6489758Z 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-06-01T21:09:58.6490948Z [3680/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxUnpoolKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:58.6492042Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:58.6493306Z 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-06-01T21:09:58.7789389Z 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-06-01T21:09:58.7790756Z 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-06-01T21:09:58.7792019Z [3681/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MultinomialKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:58.7793050Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:58.7794503Z 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-06-01T21:09:58.7990332Z 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-06-01T21:09:58.7992604Z 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-06-01T21:09:58.7994535Z [3682/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LerpKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:58.7996036Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:58.7997607Z 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-06-01T21:09:58.9349704Z 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-06-01T21:09:58.9351020Z 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-06-01T21:09:58.9352157Z [3683/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LinearAlgebraKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:58.9353208Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:58.9355167Z 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-06-01T21:09:58.9620293Z 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-06-01T21:09:58.9621848Z 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-06-01T21:09:58.9622967Z [3684/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPooling.cpp.AVX2.cpp.obj 2025-06-01T21:09:58.9624126Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:58.9625453Z 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-06-01T21:09:59.1028074Z 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-06-01T21:09:59.1029571Z 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-06-01T21:09:59.1030722Z [3685/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPoolKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:59.1031735Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:59.1033148Z 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-06-01T21:09:59.3892435Z 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-06-01T21:09:59.3894263Z 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-06-01T21:09:59.3895508Z [3686/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\GridSamplerKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:59.3896548Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:59.3898330Z 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-06-01T21:09:59.4737314Z 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-06-01T21:09:59.4740252Z 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-06-01T21:09:59.4742429Z [3687/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\IndexKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:59.4744379Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:59.4746651Z 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-06-01T21:09:59.6497460Z 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-06-01T21:09:59.6500013Z 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-06-01T21:09:59.6502588Z [3688/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FunctionOfAMatrixUtilsKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:59.7414403Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:59.7415562Z [3689/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\HistogramKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:59.7742801Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:59.7744173Z [3690/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedSGDKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:59.7745255Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:59.7746733Z 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-06-01T21:09:59.9106047Z 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-06-01T21:09:59.9107497Z 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-06-01T21:09:59.9108746Z [3691/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdamKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:59.9110024Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:59.9111472Z 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-06-01T21:09:59.9394740Z 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-06-01T21:09:59.9396142Z 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-06-01T21:09:59.9397261Z [3692/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdagradKernel.cpp.AVX2.cpp.obj 2025-06-01T21:09:59.9398409Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:09:59.9423716Z 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-06-01T21:10:00.1258050Z 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-06-01T21:10:00.1260175Z 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-06-01T21:10:00.1261837Z [3693/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FillKernel.cpp.AVX2.cpp.obj 2025-06-01T21:10:00.1263408Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:10:00.1265317Z 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-06-01T21:10:00.2659071Z 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-06-01T21:10:00.2661585Z 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-06-01T21:10:00.2663668Z [3694/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FlashAttentionKernel.cpp.AVX2.cpp.obj 2025-06-01T21:10:00.2665553Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:10:00.2667750Z 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-06-01T21:10:00.6536147Z 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-06-01T21:10:00.6537471Z 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-06-01T21:10:00.6538613Z [3695/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistributionKernels.cpp.AVX2.cpp.obj 2025-06-01T21:10:00.6539756Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:10:00.6541223Z 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-06-01T21:10:00.6685922Z 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-06-01T21:10:00.6687334Z 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-06-01T21:10:00.6688442Z [3696/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistanceOpsKernel.cpp.AVX2.cpp.obj 2025-06-01T21:10:00.6689656Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:10:00.6690925Z 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-06-01T21:10:00.6692259Z 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-06-01T21:10:00.6693624Z 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-06-01T21:10:00.6695004Z 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-06-01T21:10:00.6696343Z 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-06-01T21:10:00.6697187Z with 2025-06-01T21:10:00.6697383Z [ 2025-06-01T21:10:00.6697561Z scalar_t=float, 2025-06-01T21:10:00.6698084Z Op=at::vec::AVX2::Vectorized (const at::vec::AVX2::Vectorized &,const at::vec::AVX2::Vectorized &) 2025-06-01T21:10:00.6698882Z ] 2025-06-01T21:10:00.6699971Z 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-06-01T21:10:00.6701222Z with 2025-06-01T21:10:00.6701398Z [ 2025-06-01T21:10:00.6701604Z scalar_t=float, 2025-06-01T21:10:00.6702142Z ReduceOp=at::vec::AVX2::Vectorized (const at::vec::AVX2::Vectorized &,const at::vec::AVX2::Vectorized &), 2025-06-01T21:10:00.6702972Z Op=at::vec::AVX2::Vectorized (const at::vec::AVX2::Vectorized &,const at::vec::AVX2::Vectorized &) 2025-06-01T21:10:00.6703499Z ] 2025-06-01T21:10:00.6705377Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(177): 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-06-01T21:10:00.6707412Z with 2025-06-01T21:10:00.6707608Z [ 2025-06-01T21:10:00.6707796Z scalar_t=scalar_t, 2025-06-01T21:10:00.6708086Z data_t=at::vec::AVX2::Vectorized, 2025-06-01T21:10:00.6708859Z MapOp=at::native::`anonymous-namespace'::Dist::run_parallel_pdist::::()::, 2025-06-01T21:10:00.6709890Z ReduceOp=at::vec::AVX2::Vectorized (const at::vec::AVX2::Vectorized &,const at::vec::AVX2::Vectorized &) 2025-06-01T21:10:00.6710625Z ] 2025-06-01T21:10:00.6712163Z 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-06-01T21:10:00.6713865Z with 2025-06-01T21:10:00.6714038Z [ 2025-06-01T21:10:00.6714269Z scalar_t=scalar_t 2025-06-01T21:10:00.6714582Z ] 2025-06-01T21:10:00.6716478Z 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-06-01T21:10:00.6718385Z with 2025-06-01T21:10:00.6718683Z [ 2025-06-01T21:10:00.6718936Z scalar_t=scalar_t 2025-06-01T21:10:00.6719230Z ] 2025-06-01T21:10:00.6720445Z 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-06-01T21:10:00.6721756Z with 2025-06-01T21:10:00.6721968Z [ 2025-06-01T21:10:00.6722174Z scalar_t=scalar_t 2025-06-01T21:10:00.6722454Z ] 2025-06-01T21:10:00.7186673Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(420): note: see reference to function template instantiation 'void at::native::`anonymous-namespace'::Dist::apply_pdist(at::Tensor &,const at::Tensor &,const scalar_t)' being compiled 2025-06-01T21:10:00.7188000Z with 2025-06-01T21:10:00.7188516Z [ 2025-06-01T21:10:00.7188874Z scalar_t=scalar_t 2025-06-01T21:10:00.7189269Z ] 2025-06-01T21:10:00.7190526Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(422): note: see reference to class template instantiation 'at::native::`anonymous-namespace'::Dist' being compiled 2025-06-01T21:10:00.7191858Z [3697/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CrossKernel.cpp.AVX2.cpp.obj 2025-06-01T21:10:00.7462775Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:10:00.7464664Z [3698/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DepthwiseConvKernel.cpp.AVX2.cpp.obj 2025-06-01T21:10:00.7691212Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:10:00.7693145Z [3699/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ChannelShuffleKernel.cpp.AVX2.cpp.obj 2025-06-01T21:10:00.7695005Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:10:00.7697148Z 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-06-01T21:10:00.8264180Z 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-06-01T21:10:00.8265490Z 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-06-01T21:10:00.8267449Z [3700/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CopyKernel.cpp.AVX2.cpp.obj 2025-06-01T21:10:00.8268547Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:10:00.8269872Z 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-06-01T21:10:01.1063270Z 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-06-01T21:10:01.1064811Z 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-06-01T21:10:01.1066028Z [3701/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ComplexKernel.cpp.AVX2.cpp.obj 2025-06-01T21:10:01.1067042Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:10:01.1068353Z 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-06-01T21:10:01.2806494Z 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-06-01T21:10:01.2807874Z 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-06-01T21:10:01.2809018Z [3702/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BlasKernel.cpp.AVX2.cpp.obj 2025-06-01T21:10:01.3620251Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:10:01.3621509Z [3703/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CatKernel.cpp.AVX2.cpp.obj 2025-06-01T21:10:01.3622498Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:10:01.3623813Z 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-06-01T21:10:01.5909736Z 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-06-01T21:10:01.5911277Z 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-06-01T21:10:01.5912510Z [3704/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BinaryOpsKernel.cpp.AVX2.cpp.obj 2025-06-01T21:10:01.5913558Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:10:01.5914754Z 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-06-01T21:10:01.7626251Z 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-06-01T21:10:01.7627856Z 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-06-01T21:10:01.7629161Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp(537): warning C4333: '>>': right shift by too large amount, data loss 2025-06-01T21:10:01.7630364Z [3705/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AvgPoolKernel.cpp.AVX2.cpp.obj 2025-06-01T21:10:01.7631370Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:10:01.7632610Z 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-06-01T21:10:01.8543748Z 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-06-01T21:10:01.8545214Z 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-06-01T21:10:01.8546454Z [3706/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveAvgPoolKernel.cpp.AVX2.cpp.obj 2025-06-01T21:10:01.8547603Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:10:01.8548931Z 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-06-01T21:10:01.8616346Z 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-06-01T21:10:01.8618741Z 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-06-01T21:10:01.8621178Z [3707/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Activation.cpp.AVX2.cpp.obj 2025-06-01T21:10:01.8623162Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:10:01.8625653Z 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-06-01T21:10:01.8895980Z 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-06-01T21:10:01.8897462Z 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-06-01T21:10:01.8899226Z [3708/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveMaxPoolKernel.cpp.AVX2.cpp.obj 2025-06-01T21:10:01.8900350Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:10:01.8901655Z 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-06-01T21:10:01.9290971Z 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-06-01T21:10:01.9292603Z 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-06-01T21:10:01.9293851Z [3709/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AmpGradScalerKernels.cpp.AVX2.cpp.obj 2025-06-01T21:10:01.9294955Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:10:01.9296167Z 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-06-01T21:10:01.9502552Z 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-06-01T21:10:01.9503882Z 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-06-01T21:10:01.9505096Z [3710/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\UfuncCPUKernel_add.cpp.AVX512.cpp.obj 2025-06-01T21:10:02.4085056Z [3711/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\spherical_bessel_j0.cpp.AVX512.cpp.obj 2025-06-01T21:10:02.4721975Z [3712/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k1.cpp.AVX512.cpp.obj 2025-06-01T21:10:02.5361395Z [3713/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k0.cpp.AVX512.cpp.obj 2025-06-01T21:10:02.6325217Z [3714/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\kernels\QuantizedOpKernels.cpp.AVX512.cpp.obj 2025-06-01T21:10:02.9454729Z [3715/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int8mm_kernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:02.9591676Z [3716/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\layer_norm_kernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:03.1363123Z [3717/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\group_norm_kernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:03.1675382Z [3718/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int4mm_kernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:03.2302643Z [3719/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\airy_ai.cpp.AVX512.cpp.obj 2025-06-01T21:10:03.2824312Z [3720/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\WeightNormKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:03.5761651Z [3721/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\batch_norm_kernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:03.6772281Z [3722/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleMoreKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:03.8534505Z [3723/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Unfold2d.cpp.AVX512.cpp.obj 2025-06-01T21:10:04.0176574Z [3724/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SumKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:04.1008442Z [3725/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:04.1493755Z [3726/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnfoldBackwardKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:04.4098200Z [3727/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnaryOpsKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:04.4394227Z [3728/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\TensorCompareKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:04.6041841Z [3729/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SparseFactories.cpp.AVX512.cpp.obj 2025-06-01T21:10:04.6124336Z [3730/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\StackKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:04.8295445Z [3731/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SortingKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:04.9044362Z [3732/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SpmmReduceKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:05.1262396Z [3733/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RenormKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:05.1489155Z [3734/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SoftMaxKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:05.3023115Z [3735/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ScatterGatherKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:05.3149981Z [3736/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:05.5807358Z [3737/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SampledAddmmKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:05.6115049Z [3738/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RangeFactoriesKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:05.8568437Z [3739/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceOpsKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:05.8942997Z [3740/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PowKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:05.9550460Z [3741/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PointwiseOpsKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:05.9983130Z [3742/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceAllOpsKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:06.0550658Z [3743/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PixelShuffleKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:06.3601122Z [3744/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PaddingKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:06.5880088Z [3745/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\NativeMultiheadAttnKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:06.7692235Z [3746/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MultinomialKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:06.7860857Z [3747/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LerpKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:06.9339245Z [3748/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPooling.cpp.AVX512.cpp.obj 2025-06-01T21:10:07.0105126Z [3749/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LinearAlgebraKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:07.0476777Z [3750/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxUnpoolKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:07.1328304Z [3751/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\IndexKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:07.1789175Z [3752/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPoolKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:07.5096864Z [3753/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\GridSamplerKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:07.7026650Z [3754/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\HistogramKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:07.7447895Z [3755/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FunctionOfAMatrixUtilsKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:07.8670797Z [3756/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedSGDKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:07.9254788Z [3757/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdamKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:07.9576570Z [3758/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FillKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:07.9995735Z [3759/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdagradKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:08.2953722Z [3760/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FlashAttentionKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:08.6341887Z [3761/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistanceOpsKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:08.6343886Z 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-06-01T21:10:08.6346275Z 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-06-01T21:10:08.6347795Z with 2025-06-01T21:10:08.6348089Z [ 2025-06-01T21:10:08.6348388Z scalar_t=float, 2025-06-01T21:10:08.6349296Z Op=at::vec::AVX512::Vectorized (const at::vec::AVX512::Vectorized &,const at::vec::AVX512::Vectorized &) 2025-06-01T21:10:08.6350235Z ] 2025-06-01T21:10:08.6351987Z 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-06-01T21:10:08.6354145Z with 2025-06-01T21:10:08.6354424Z [ 2025-06-01T21:10:08.6354730Z scalar_t=float, 2025-06-01T21:10:08.6355802Z ReduceOp=at::vec::AVX512::Vectorized (const at::vec::AVX512::Vectorized &,const at::vec::AVX512::Vectorized &), 2025-06-01T21:10:08.6357388Z Op=at::vec::AVX512::Vectorized (const at::vec::AVX512::Vectorized &,const at::vec::AVX512::Vectorized &) 2025-06-01T21:10:08.6358297Z ] 2025-06-01T21:10:08.6361702Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(177): 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-06-01T21:10:08.6365442Z with 2025-06-01T21:10:08.6365737Z [ 2025-06-01T21:10:08.6366038Z scalar_t=scalar_t, 2025-06-01T21:10:08.6366483Z data_t=at::vec::AVX512::Vectorized, 2025-06-01T21:10:08.6367974Z MapOp=at::native::`anonymous-namespace'::Dist::run_parallel_pdist::::()::, 2025-06-01T21:10:08.6369929Z ReduceOp=at::vec::AVX512::Vectorized (const at::vec::AVX512::Vectorized &,const at::vec::AVX512::Vectorized &) 2025-06-01T21:10:08.6370936Z ] 2025-06-01T21:10:08.6373887Z 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-06-01T21:10:08.6376431Z with 2025-06-01T21:10:08.6376705Z [ 2025-06-01T21:10:08.6376987Z scalar_t=scalar_t 2025-06-01T21:10:08.6377339Z ] 2025-06-01T21:10:08.6380194Z 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-06-01T21:10:08.6383187Z with 2025-06-01T21:10:08.6383461Z [ 2025-06-01T21:10:08.6383775Z scalar_t=scalar_t 2025-06-01T21:10:08.6384190Z ] 2025-06-01T21:10:08.6386332Z 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-06-01T21:10:08.6388552Z with 2025-06-01T21:10:08.6388854Z [ 2025-06-01T21:10:08.6389141Z scalar_t=scalar_t 2025-06-01T21:10:08.6389521Z ] 2025-06-01T21:10:08.6936264Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(420): note: see reference to function template instantiation 'void at::native::`anonymous-namespace'::Dist::apply_pdist(at::Tensor &,const at::Tensor &,const scalar_t)' being compiled 2025-06-01T21:10:08.6938510Z with 2025-06-01T21:10:08.6939777Z [ 2025-06-01T21:10:08.6940597Z scalar_t=scalar_t 2025-06-01T21:10:08.6940995Z ] 2025-06-01T21:10:08.6942652Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(422): note: see reference to class template instantiation 'at::native::`anonymous-namespace'::Dist' being compiled 2025-06-01T21:10:08.6946552Z [3762/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistributionKernels.cpp.AVX512.cpp.obj 2025-06-01T21:10:08.7772752Z [3763/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ChannelShuffleKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:08.7964719Z [3764/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CrossKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:08.8349433Z [3765/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DepthwiseConvKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:08.8513170Z [3766/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CopyKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:09.1362271Z [3767/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ComplexKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:09.2103675Z [3768/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BlasKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:09.4429566Z [3769/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CatKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:09.4750443Z [3770/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BinaryOpsKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:09.8069976Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp(537): warning C4333: '>>': right shift by too large amount, data loss 2025-06-01T21:10:09.8071733Z [3771/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AvgPoolKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:09.8552532Z [3772/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AmpGradScalerKernels.cpp.AVX512.cpp.obj 2025-06-01T21:10:09.9003959Z [3773/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveMaxPoolKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:09.9277734Z [3774/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveAvgPoolKernel.cpp.AVX512.cpp.obj 2025-06-01T21:10:09.9588695Z [3775/7616] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Activation.cpp.AVX512.cpp.obj 2025-06-01T21:10:10.0745331Z [3776/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CUDAContext.cpp.obj 2025-06-01T21:10:10.8495194Z [3777/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\EmptyTensor.cpp.obj 2025-06-01T21:10:10.9369438Z [3778/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CuSparseHandlePool.cpp.obj 2025-06-01T21:10:10.9839432Z [3779/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\Exceptions.cpp.obj 2025-06-01T21:10:11.1429171Z [3780/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CUDASparseDescriptors.cpp.obj 2025-06-01T21:10:11.2229896Z [3781/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CachingHostAllocator.cpp.obj 2025-06-01T21:10:11.4394234Z [3782/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\llvm_basic.cpp.obj 2025-06-01T21:10:11.5124746Z [3783/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\llvm_complex.cpp.obj 2025-06-01T21:10:11.7159598Z [3784/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\PeerToPeerAccess.cpp.obj 2025-06-01T21:10:11.9017504Z [3785/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\detail\LazyNVRTC.cpp.obj 2025-06-01T21:10:11.9426161Z [3786/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CUDAGeneratorImpl.cpp.obj 2025-06-01T21:10:11.9881832Z [3787/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CUDAGraph.cpp.obj 2025-06-01T21:10:12.4991080Z [3788/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorCompare.cpp.obj 2025-06-01T21:10:12.5221028Z [3789/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\detail\CUDAHooks.cpp.obj 2025-06-01T21:10:12.7999786Z [3790/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\ConvPlaceholders.cpp.obj 2025-06-01T21:10:12.8161837Z [3791/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Resize.cpp.obj 2025-06-01T21:10:12.8758655Z [3792/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SpectralOps.cpp.obj 2025-06-01T21:10:13.2070278Z [3793/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\BatchNorm.cpp.obj 2025-06-01T21:10:13.2445589Z [3794/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\AffineGridGenerator.cpp.obj 2025-06-01T21:10:13.8307140Z [3795/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\Conv_v7.cpp.obj 2025-06-01T21:10:13.8631740Z [3796/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\ConvShared.cpp.obj 2025-06-01T21:10:14.1610468Z [3797/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\GridSampler.cpp.obj 2025-06-01T21:10:14.2822133Z [3798/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\LossCTC.cpp.obj 2025-06-01T21:10:14.4503782Z [3799/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\Conv_v8.cpp.obj 2025-06-01T21:10:14.7235827Z [3800/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\RNN.cpp.obj 2025-06-01T21:10:14.7873330Z [3801/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\miopen\BatchNorm_miopen.cpp.obj 2025-06-01T21:10:14.8455514Z [3802/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\miopen\Conv_miopen.cpp.obj 2025-06-01T21:10:15.1405417Z [3803/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\miopen\RNN_miopen.cpp.obj 2025-06-01T21:10:16.3583588Z [3804/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\BinaryOps.cpp.obj 2025-06-01T21:10:16.9559968Z [3805/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\MHA.cpp.obj 2025-06-01T21:10:17.5328760Z [3806/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\nested\cuda\NestedTensorTransformerUtils.cpp.obj 2025-06-01T21:10:17.5490561Z [3807/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\Activation.cpp.obj 2025-06-01T21:10:18.4426133Z [3808/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\ConvPrepack.cpp.obj 2025-06-01T21:10:18.6738519Z [3809/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\Conv.cpp.obj 2025-06-01T21:10:18.8408310Z [3810/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\ConvUnpackImpl.cpp.obj 2025-06-01T21:10:19.9941763Z [3811/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\sdp_utils.cpp.obj 2025-06-01T21:10:20.1240432Z [3812/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\Linear.cpp.obj 2025-06-01T21:10:20.6018362Z [3813/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\LinearPrepack.cpp.obj 2025-06-01T21:10:20.7939689Z [3814/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\cuSPARSELtOps.cpp.obj 2025-06-01T21:10:21.0604651Z [3815/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cudnn\Handle.cpp.obj 2025-06-01T21:10:21.1179490Z [3816/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\LinearUnpackImpl.cpp.obj 2025-06-01T21:10:21.1996610Z [3817/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\Pooling.cpp.obj 2025-06-01T21:10:22.1396891Z [3818/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\distributed\c10d\reducer_cuda.cpp.obj 2025-06-01T21:10:22.4337262Z [3819/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cudnn\AutocastRNN.cpp.obj 2025-06-01T21:10:22.5916607Z [3820/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\inductor\aoti_torch\generated\c_shim_cuda.cpp.obj 2025-06-01T21:10:22.7229537Z [3821/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\Sleep.cu.obj 2025-06-01T21:10:23.7414022Z Sleep.cu 2025-06-01T21:10:23.7414391Z tmpxft_000015b0_00000000-7_Sleep.cudafe1.cpp 2025-06-01T21:10:23.7415347Z [3822/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cudnn\Descriptors.cpp.obj 2025-06-01T21:10:24.0381058Z [3823/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cudnn\Types.cpp.obj 2025-06-01T21:10:24.7314901Z [3824/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorFactories.cu.obj 2025-06-01T21:10:26.0293344Z TensorFactories.cu 2025-06-01T21:10:26.0293719Z tmpxft_00000c4c_00000000-7_TensorFactories.cudafe1.cpp 2025-06-01T21:10:26.0294353Z [3825/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortKeys.cu.obj 2025-06-01T21:10:26.3221674Z cub-RadixSortKeys.cu 2025-06-01T21:10:26.3222297Z tmpxft_000006f0_00000000-7_cub-RadixSortKeys.cudafe1.cpp 2025-06-01T21:10:26.3223758Z [3826/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-f16-8.cu.obj 2025-06-01T21:10:26.3407276Z cub-RadixSortPairs-f16-8.cu 2025-06-01T21:10:26.3408012Z tmpxft_00000614_00000000-7_cub-RadixSortPairs-f16-8.cudafe1.cpp 2025-06-01T21:10:26.3409247Z [3827/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-int32-1.cu.obj 2025-06-01T21:10:26.3617424Z cub-RadixSortPairs-int32-1.cu 2025-06-01T21:10:26.3618227Z tmpxft_000013b8_00000000-7_cub-RadixSortPairs-int32-1.cudafe1.cpp 2025-06-01T21:10:26.3621199Z [3828/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-int32-2.cu.obj 2025-06-01T21:10:27.4112094Z cub-RadixSortPairs-int32-2.cu 2025-06-01T21:10:27.4112854Z tmpxft_00001504_00000000-7_cub-RadixSortPairs-int32-2.cudafe1.cpp 2025-06-01T21:10:27.4114766Z [3829/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-int32-4.cu.obj 2025-06-01T21:10:27.7172177Z cub-RadixSortPairs-int32-4.cu 2025-06-01T21:10:27.7173287Z tmpxft_0000144c_00000000-7_cub-RadixSortPairs-int32-4.cudafe1.cpp 2025-06-01T21:10:27.7174900Z [3830/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-int64-1.cu.obj 2025-06-01T21:10:28.4025595Z cub-RadixSortPairs-int64-1.cu 2025-06-01T21:10:28.4026368Z tmpxft_00001288_00000000-7_cub-RadixSortPairs-int64-1.cudafe1.cpp 2025-06-01T21:10:28.4027701Z [3831/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-int64-2.cu.obj 2025-06-01T21:10:29.8022324Z cub-RadixSortPairs-int64-2.cu 2025-06-01T21:10:29.8022802Z tmpxft_00001178_00000000-7_cub-RadixSortPairs-int64-2.cudafe1.cpp 2025-06-01T21:10:29.8023528Z [3832/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-int64-4.cu.obj 2025-06-01T21:10:30.0101007Z cub-RadixSortPairs-int64-4.cu 2025-06-01T21:10:30.0101785Z tmpxft_00000828_00000000-7_cub-RadixSortPairs-int64-4.cudafe1.cpp 2025-06-01T21:10:30.0103329Z [3833/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-uint32-8.cu.obj 2025-06-01T21:10:30.0335441Z cub-RadixSortPairs-uint32-8.cu 2025-06-01T21:10:30.0335894Z tmpxft_00001574_00000000-7_cub-RadixSortPairs-uint32-8.cudafe1.cpp 2025-06-01T21:10:30.0336651Z [3834/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-uint16-8.cu.obj 2025-06-01T21:10:30.0837559Z cub-RadixSortPairs-uint16-8.cu 2025-06-01T21:10:30.0838354Z tmpxft_000011e8_00000000-7_cub-RadixSortPairs-uint16-8.cudafe1.cpp 2025-06-01T21:10:30.0839676Z [3835/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-scalars.cu.obj 2025-06-01T21:10:30.3348454Z cub-RadixSortPairs-scalars.cu 2025-06-01T21:10:30.3349282Z tmpxft_00001434_00000000-7_cub-RadixSortPairs-scalars.cudafe1.cpp 2025-06-01T21:10:30.3351975Z [3836/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\detail\IndexUtils.cu.obj 2025-06-01T21:10:31.0845557Z IndexUtils.cu 2025-06-01T21:10:31.0846072Z tmpxft_00000ee8_00000000-7_IndexUtils.cudafe1.cpp 2025-06-01T21:10:31.0847275Z [3837/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-uint64-8.cu.obj 2025-06-01T21:10:31.3318399Z cub-RadixSortPairs-uint64-8.cu 2025-06-01T21:10:31.3319120Z tmpxft_00000c60_00000000-7_cub-RadixSortPairs-uint64-8.cudafe1.cpp 2025-06-01T21:10:31.3320200Z [3838/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub.cu.obj 2025-06-01T21:10:32.6061948Z cub.cu 2025-06-01T21:10:32.6062239Z tmpxft_00000758_00000000-7_cub.cudafe1.cpp 2025-06-01T21:10:32.6062837Z [3839/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AbsKernel.cu.obj 2025-06-01T21:10:32.6726284Z AbsKernel.cu 2025-06-01T21:10:32.6726778Z tmpxft_00001150_00000000-7_AbsKernel.cudafe1.cpp 2025-06-01T21:10:32.6728064Z [3840/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationGeluKernel.cu.obj 2025-06-01T21:10:32.7562659Z ActivationGeluKernel.cu 2025-06-01T21:10:32.7563345Z tmpxft_00000e58_00000000-7_ActivationGeluKernel.cudafe1.cpp 2025-06-01T21:10:32.7564516Z [3841/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationEluKernel.cu.obj 2025-06-01T21:10:32.7590606Z ActivationEluKernel.cu 2025-06-01T21:10:32.7591241Z tmpxft_00001078_00000000-7_ActivationEluKernel.cudafe1.cpp 2025-06-01T21:10:32.7592489Z [3842/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationGluKernel.cu.obj 2025-06-01T21:10:32.9581311Z ActivationGluKernel.cu 2025-06-01T21:10:32.9581944Z tmpxft_00000db0_00000000-7_ActivationGluKernel.cudafe1.cpp 2025-06-01T21:10:32.9583403Z [3843/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\jiterator.cu.obj 2025-06-01T21:10:33.5866142Z jiterator.cu 2025-06-01T21:10:33.5866698Z tmpxft_00001674_00000000-7_jiterator.cudafe1.cpp 2025-06-01T21:10:33.5868372Z [3844/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationHardshrinkKernel.cu.obj 2025-06-01T21:10:33.9156237Z ActivationHardshrinkKernel.cu 2025-06-01T21:10:33.9157030Z tmpxft_00001230_00000000-7_ActivationHardshrinkKernel.cudafe1.cpp 2025-06-01T21:10:33.9158531Z [3845/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationHardsigmoidKernel.cu.obj 2025-06-01T21:10:35.1936837Z ActivationHardsigmoidKernel.cu 2025-06-01T21:10:35.1937325Z tmpxft_000003c0_00000000-7_ActivationHardsigmoidKernel.cudafe1.cpp 2025-06-01T21:10:35.1938069Z [3846/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationHardswishKernel.cu.obj 2025-06-01T21:10:35.2138929Z ActivationHardswishKernel.cu 2025-06-01T21:10:35.2139399Z tmpxft_000017a0_00000000-7_ActivationHardswishKernel.cudafe1.cpp 2025-06-01T21:10:35.2140452Z [3847/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationHardtanhKernel.cu.obj 2025-06-01T21:10:35.3330906Z ActivationHardtanhKernel.cu 2025-06-01T21:10:35.3331390Z tmpxft_000012f8_00000000-7_ActivationHardtanhKernel.cudafe1.cpp 2025-06-01T21:10:35.3332171Z [3848/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationLeakyReluKernel.cu.obj 2025-06-01T21:10:35.4002355Z ActivationLeakyReluKernel.cu 2025-06-01T21:10:35.4002811Z tmpxft_00000650_00000000-7_ActivationLeakyReluKernel.cudafe1.cpp 2025-06-01T21:10:35.4003557Z [3849/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationLogSigmoidKernel.cu.obj 2025-06-01T21:10:35.5028530Z ActivationLogSigmoidKernel.cu 2025-06-01T21:10:35.5029339Z tmpxft_00000904_00000000-7_ActivationLogSigmoidKernel.cudafe1.cpp 2025-06-01T21:10:35.5030717Z [3850/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationMishKernel.cu.obj 2025-06-01T21:10:36.1062863Z ActivationMishKernel.cu 2025-06-01T21:10:36.1063551Z tmpxft_0000140c_00000000-7_ActivationMishKernel.cudafe1.cpp 2025-06-01T21:10:36.1064830Z [3851/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationPreluKernel.cu.obj 2025-06-01T21:10:36.4269930Z ActivationPreluKernel.cu 2025-06-01T21:10:36.4270607Z tmpxft_00000924_00000000-7_ActivationPreluKernel.cudafe1.cpp 2025-06-01T21:10:36.4271791Z [3852/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationSiluKernel.cu.obj 2025-06-01T21:10:37.8466516Z ActivationSiluKernel.cu 2025-06-01T21:10:37.8466920Z tmpxft_00000368_00000000-7_ActivationSiluKernel.cudafe1.cpp 2025-06-01T21:10:37.8467640Z [3853/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationSoftplusKernel.cu.obj 2025-06-01T21:10:37.9071868Z ActivationSoftplusKernel.cu 2025-06-01T21:10:37.9072815Z tmpxft_000016e0_00000000-7_ActivationSoftplusKernel.cudafe1.cpp 2025-06-01T21:10:37.9074096Z [3854/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationSoftshrinkKernel.cu.obj 2025-06-01T21:10:37.9670571Z ActivationSoftshrinkKernel.cu 2025-06-01T21:10:37.9671347Z tmpxft_000016cc_00000000-7_ActivationSoftshrinkKernel.cudafe1.cpp 2025-06-01T21:10:37.9673046Z [3855/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationThresholdKernel.cu.obj 2025-06-01T21:10:38.8071454Z ActivationThresholdKernel.cu 2025-06-01T21:10:38.8072224Z tmpxft_000007ec_00000000-7_ActivationThresholdKernel.cudafe1.cpp 2025-06-01T21:10:38.8073112Z [3856/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AdaptiveAveragePooling.cu.obj 2025-06-01T21:10:38.9312644Z AdaptiveAveragePooling.cu 2025-06-01T21:10:38.9313293Z tmpxft_0000102c_00000000-7_AdaptiveAveragePooling.cudafe1.cpp 2025-06-01T21:10:38.9314542Z [3857/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AdaptiveAveragePooling3d.cu.obj 2025-06-01T21:10:39.4260171Z AdaptiveAveragePooling3d.cu 2025-06-01T21:10:39.4260977Z tmpxft_00000efc_00000000-7_AdaptiveAveragePooling3d.cudafe1.cpp 2025-06-01T21:10:39.4262328Z [3858/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AdaptiveMaxPooling2d.cu.obj 2025-06-01T21:10:39.6487988Z AdaptiveMaxPooling2d.cu 2025-06-01T21:10:39.6488430Z tmpxft_00000bdc_00000000-7_AdaptiveMaxPooling2d.cudafe1.cpp 2025-06-01T21:10:39.6489291Z [3859/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AdaptiveMaxPooling3d.cu.obj 2025-06-01T21:10:41.0448602Z AdaptiveMaxPooling3d.cu 2025-06-01T21:10:41.0449012Z tmpxft_000007f8_00000000-7_AdaptiveMaxPooling3d.cudafe1.cpp 2025-06-01T21:10:41.0449686Z [3860/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AveragePool2d.cu.obj 2025-06-01T21:10:41.0956850Z AveragePool2d.cu 2025-06-01T21:10:41.0957202Z tmpxft_00001550_00000000-7_AveragePool2d.cudafe1.cpp 2025-06-01T21:10:41.0957933Z [3861/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AveragePool3d.cu.obj 2025-06-01T21:10:41.1192567Z AveragePool3d.cu 2025-06-01T21:10:41.1193089Z tmpxft_000013a0_00000000-7_AveragePool3d.cudafe1.cpp 2025-06-01T21:10:41.1194165Z [3862/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AmpKernels.cu.obj 2025-06-01T21:10:41.1561037Z AmpKernels.cu 2025-06-01T21:10:41.1562543Z tmpxft_00001710_00000000-7_AmpKernels.cudafe1.cpp 2025-06-01T21:10:41.1563767Z [3863/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryBitwiseOpsKernels.cu.obj 2025-06-01T21:10:41.6065843Z BinaryBitwiseOpsKernels.cu 2025-06-01T21:10:41.6066747Z tmpxft_00000258_00000000-7_BinaryBitwiseOpsKernels.cudafe1.cpp 2025-06-01T21:10:41.6068120Z [3864/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryDivFloorKernel.cu.obj 2025-06-01T21:10:41.9754590Z BinaryDivFloorKernel.cu 2025-06-01T21:10:41.9756150Z tmpxft_0000154c_00000000-7_BinaryDivFloorKernel.cudafe1.cpp 2025-06-01T21:10:41.9757938Z [3865/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryDivTrueKernel.cu.obj 2025-06-01T21:10:42.2647027Z BinaryDivTrueKernel.cu 2025-06-01T21:10:42.2648660Z tmpxft_00001448_00000000-7_BinaryDivTrueKernel.cudafe1.cpp 2025-06-01T21:10:42.2650022Z [3866/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryDivTruncKernel.cu.obj 2025-06-01T21:10:43.6418464Z BinaryDivTruncKernel.cu 2025-06-01T21:10:43.6418987Z tmpxft_00000bc4_00000000-7_BinaryDivTruncKernel.cudafe1.cpp 2025-06-01T21:10:43.6419794Z [3867/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryGeometricKernels.cu.obj 2025-06-01T21:10:43.6960675Z BinaryGeometricKernels.cu 2025-06-01T21:10:43.6961517Z tmpxft_0000058c_00000000-7_BinaryGeometricKernels.cudafe1.cpp 2025-06-01T21:10:43.6962940Z [3868/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryLogicalOpsKernels.cu.obj 2025-06-01T21:10:43.8084997Z BinaryLogicalOpsKernels.cu 2025-06-01T21:10:43.8085481Z tmpxft_00001070_00000000-7_BinaryLogicalOpsKernels.cudafe1.cpp 2025-06-01T21:10:43.8086220Z [3869/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryMiscOpsKernels.cu.obj 2025-06-01T21:10:43.8156087Z BinaryMiscOpsKernels.cu 2025-06-01T21:10:43.8156710Z tmpxft_00000ec4_00000000-7_BinaryMiscOpsKernels.cudafe1.cpp 2025-06-01T21:10:43.8157995Z [3870/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryMiscBackwardOpsKernels.cu.obj 2025-06-01T21:10:44.1725608Z BinaryMiscBackwardOpsKernels.cu 2025-06-01T21:10:44.1726612Z tmpxft_00001054_00000000-7_BinaryMiscBackwardOpsKernels.cudafe1.cpp 2025-06-01T21:10:44.1727422Z [3871/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryMulKernel.cu.obj 2025-06-01T21:10:44.5573400Z BinaryMulKernel.cu 2025-06-01T21:10:44.5574022Z tmpxft_00000cf4_00000000-7_BinaryMulKernel.cudafe1.cpp 2025-06-01T21:10:44.5575241Z [3872/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryRemainderKernel.cu.obj 2025-06-01T21:10:44.7381428Z BinaryRemainderKernel.cu 2025-06-01T21:10:44.7382428Z tmpxft_00000e00_00000000-7_BinaryRemainderKernel.cudafe1.cpp 2025-06-01T21:10:44.7383555Z [3873/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryShiftOpsKernels.cu.obj 2025-06-01T21:10:46.6156382Z BinaryShiftOpsKernels.cu 2025-06-01T21:10:46.6156848Z tmpxft_000017a0_00000000-7_BinaryShiftOpsKernels.cudafe1.cpp 2025-06-01T21:10:46.6157610Z [3874/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CompareEQKernel.cu.obj 2025-06-01T21:10:46.6762643Z CompareEQKernel.cu 2025-06-01T21:10:46.6763275Z tmpxft_00001530_00000000-7_CompareEQKernel.cudafe1.cpp 2025-06-01T21:10:46.6764496Z [3875/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CUDAScalar.cu.obj 2025-06-01T21:10:46.8383940Z CUDAScalar.cu 2025-06-01T21:10:46.8384544Z tmpxft_00001688_00000000-7_CUDAScalar.cudafe1.cpp 2025-06-01T21:10:46.8385794Z [3876/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CompareKernels.cu.obj 2025-06-01T21:10:46.8934859Z CompareKernels.cu 2025-06-01T21:10:46.8935496Z tmpxft_00000aa4_00000000-7_CompareKernels.cudafe1.cpp 2025-06-01T21:10:46.8936688Z [3877/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Bucketization.cu.obj 2025-06-01T21:10:47.1292961Z Bucketization.cu 2025-06-01T21:10:47.1293744Z tmpxft_0000130c_00000000-7_Bucketization.cudafe1.cpp 2025-06-01T21:10:47.1294948Z [3878/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Col2Im.cu.obj 2025-06-01T21:10:47.8279873Z Col2Im.cu 2025-06-01T21:10:47.8280371Z tmpxft_00000d4c_00000000-7_Col2Im.cudafe1.cpp 2025-06-01T21:10:47.8281147Z [3879/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ComplexKernel.cu.obj 2025-06-01T21:10:48.1042113Z ComplexKernel.cu 2025-06-01T21:10:48.1043289Z tmpxft_00000d1c_00000000-7_ComplexKernel.cudafe1.cpp 2025-06-01T21:10:48.1045040Z [3880/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ConvolutionMM2d.cu.obj 2025-06-01T21:10:49.4550109Z ConvolutionMM2d.cu 2025-06-01T21:10:49.4550492Z tmpxft_00000ee0_00000000-7_ConvolutionMM2d.cudafe1.cpp 2025-06-01T21:10:49.4551194Z [3881/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CopysignKernel.cu.obj 2025-06-01T21:10:50.0725482Z CopysignKernel.cu 2025-06-01T21:10:50.0726102Z tmpxft_00001260_00000000-7_CopysignKernel.cudafe1.cpp 2025-06-01T21:10:50.0726785Z [3882/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Copy.cu.obj 2025-06-01T21:10:50.1205304Z Copy.cu 2025-06-01T21:10:50.1205775Z tmpxft_00000258_00000000-7_Copy.cudafe1.cpp 2025-06-01T21:10:50.1206851Z [3883/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CrossKernel.cu.obj 2025-06-01T21:10:50.6803592Z CrossKernel.cu 2025-06-01T21:10:50.6804142Z tmpxft_000006b8_00000000-7_CrossKernel.cudafe1.cpp 2025-06-01T21:10:50.6805354Z [3884/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CumminmaxKernel.cu.obj 2025-06-01T21:10:50.9651319Z CumminmaxKernel.cu 2025-06-01T21:10:50.9651932Z tmpxft_0000172c_00000000-7_CumminmaxKernel.cudafe1.cpp 2025-06-01T21:10:50.9653074Z [3885/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CumprodKernel.cu.obj 2025-06-01T21:10:51.2809363Z CumprodKernel.cu 2025-06-01T21:10:51.2809863Z tmpxft_000016f0_00000000-7_CumprodKernel.cudafe1.cpp 2025-06-01T21:10:51.2810564Z [3886/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DepthwiseConv2d.cu.obj 2025-06-01T21:10:51.4987965Z DepthwiseConv2d.cu 2025-06-01T21:10:51.4989147Z tmpxft_0000162c_00000000-7_DepthwiseConv2d.cudafe1.cpp 2025-06-01T21:10:51.4990921Z [3887/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CumsumKernel.cu.obj 2025-06-01T21:10:52.7140551Z CumsumKernel.cu 2025-06-01T21:10:52.7141154Z tmpxft_00000d64_00000000-7_CumsumKernel.cudafe1.cpp 2025-06-01T21:10:52.7142343Z [3888/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DepthwiseConv3d.cu.obj 2025-06-01T21:10:53.3328413Z DepthwiseConv3d.cu 2025-06-01T21:10:53.3328871Z tmpxft_000012fc_00000000-7_DepthwiseConv3d.cudafe1.cpp 2025-06-01T21:10:53.3329584Z [3889/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DilatedMaxPool3d.cu.obj 2025-06-01T21:10:53.4699045Z DilatedMaxPool3d.cu 2025-06-01T21:10:53.4699612Z tmpxft_000017b8_00000000-7_DilatedMaxPool3d.cudafe1.cpp 2025-06-01T21:10:53.4700910Z [3890/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DilatedMaxPool2d.cu.obj 2025-06-01T21:10:54.2327940Z DilatedMaxPool2d.cu 2025-06-01T21:10:54.2330124Z tmpxft_00001318_00000000-7_DilatedMaxPool2d.cudafe1.cpp 2025-06-01T21:10:54.2331811Z [3891/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistanceKernel.cu.obj 2025-06-01T21:10:54.2487574Z DistanceKernel.cu 2025-06-01T21:10:54.2488187Z tmpxft_00001544_00000000-7_DistanceKernel.cudafe1.cpp 2025-06-01T21:10:54.2489498Z [3892/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionBernoulli.cu.obj 2025-06-01T21:10:54.4478778Z DistributionBernoulli.cu 2025-06-01T21:10:54.4479516Z tmpxft_00000998_00000000-7_DistributionBernoulli.cudafe1.cpp 2025-06-01T21:10:54.4480767Z [3893/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionCauchyKernel.cu.obj 2025-06-01T21:10:54.5691108Z DistributionCauchyKernel.cu 2025-06-01T21:10:54.5691908Z tmpxft_000014fc_00000000-7_DistributionCauchyKernel.cudafe1.cpp 2025-06-01T21:10:54.5693307Z [3894/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionExponentialKernel.cu.obj 2025-06-01T21:10:56.0175507Z DistributionExponentialKernel.cu 2025-06-01T21:10:56.0176019Z tmpxft_00000bb8_00000000-7_DistributionExponentialKernel.cudafe1.cpp 2025-06-01T21:10:56.0176798Z [3895/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionGeometricKernel.cu.obj 2025-06-01T21:10:56.5352967Z DistributionGeometricKernel.cu 2025-06-01T21:10:56.5353519Z tmpxft_00001238_00000000-7_DistributionGeometricKernel.cudafe1.cpp 2025-06-01T21:10:56.5354502Z [3896/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionLogNormalKernel.cu.obj 2025-06-01T21:10:56.6205742Z DistributionLogNormalKernel.cu 2025-06-01T21:10:56.6206556Z tmpxft_000017c8_00000000-7_DistributionLogNormalKernel.cudafe1.cpp 2025-06-01T21:10:56.6207920Z [3897/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionNormal.cu.obj 2025-06-01T21:10:57.0426324Z DistributionNormal.cu 2025-06-01T21:10:57.0426972Z tmpxft_000017d8_00000000-7_DistributionNormal.cudafe1.cpp 2025-06-01T21:10:57.0428876Z [3898/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionRandomKernel.cu.obj 2025-06-01T21:10:57.1976217Z DistributionRandomKernel.cu 2025-06-01T21:10:57.1977067Z tmpxft_000011a8_00000000-7_DistributionRandomKernel.cudafe1.cpp 2025-06-01T21:10:57.1978382Z [3899/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionUniform.cu.obj 2025-06-01T21:10:57.4017006Z DistributionUniform.cu 2025-06-01T21:10:57.4017655Z tmpxft_00000ec0_00000000-7_DistributionUniform.cudafe1.cpp 2025-06-01T21:10:57.4019039Z [3900/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Distributions.cu.obj 2025-06-01T21:10:58.2013795Z Distributions.cu 2025-06-01T21:10:58.2014327Z tmpxft_000014d8_00000000-7_Distributions.cudafe1.cpp 2025-06-01T21:10:58.2015221Z [3901/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Dropout.cu.obj 2025-06-01T21:10:59.6833304Z Dropout.cu 2025-06-01T21:10:59.6833603Z tmpxft_00001788_00000000-7_Dropout.cudafe1.cpp 2025-06-01T21:10:59.6834210Z [3902/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FillKernel.cu.obj 2025-06-01T21:11:00.3822533Z FillKernel.cu 2025-06-01T21:11:00.3823064Z tmpxft_00000f24_00000000-7_FillKernel.cudafe1.cpp 2025-06-01T21:11:00.3824283Z [3903/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Embedding.cu.obj 2025-06-01T21:11:00.5709273Z Embedding.cu 2025-06-01T21:11:00.5709588Z tmpxft_00000178_00000000-7_Embedding.cudafe1.cpp 2025-06-01T21:11:00.5710243Z [3904/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FlattenIndicesKernel.cu.obj 2025-06-01T21:11:00.8175325Z FlattenIndicesKernel.cu 2025-06-01T21:11:00.8175754Z tmpxft_00001790_00000000-7_FlattenIndicesKernel.cudafe1.cpp 2025-06-01T21:11:00.8176521Z [3905/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachBinaryOpList.cu.obj 2025-06-01T21:11:01.1237226Z ForeachBinaryOpList.cu 2025-06-01T21:11:01.1237887Z tmpxft_000013fc_00000000-7_ForeachBinaryOpList.cudafe1.cpp 2025-06-01T21:11:01.1239001Z [3906/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\EmbeddingBag.cu.obj 2025-06-01T21:11:01.2356480Z EmbeddingBag.cu 2025-06-01T21:11:01.2356877Z tmpxft_000012d8_00000000-7_EmbeddingBag.cudafe1.cpp 2025-06-01T21:11:01.2357573Z [3907/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\EmbeddingBackwardKernel.cu.obj 2025-06-01T21:11:01.3769157Z EmbeddingBackwardKernel.cu 2025-06-01T21:11:01.3769925Z tmpxft_00000858_00000000-7_EmbeddingBackwardKernel.cudafe1.cpp 2025-06-01T21:11:01.3771717Z [3908/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachBinaryOpScalar.cu.obj 2025-06-01T21:11:03.0197308Z ForeachBinaryOpScalar.cu 2025-06-01T21:11:03.0197726Z tmpxft_0000049c_00000000-7_ForeachBinaryOpScalar.cudafe1.cpp 2025-06-01T21:11:03.0198596Z [3909/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachBinaryOpScalarList.cu.obj 2025-06-01T21:11:03.7174360Z ForeachBinaryOpScalarList.cu 2025-06-01T21:11:03.7174815Z tmpxft_000016a0_00000000-7_ForeachBinaryOpScalarList.cudafe1.cpp 2025-06-01T21:11:03.7175784Z [3910/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachBinaryOpScalarTensor.cu.obj 2025-06-01T21:11:03.7945375Z ForeachBinaryOpScalarTensor.cu 2025-06-01T21:11:03.7946191Z tmpxft_000008b4_00000000-7_ForeachBinaryOpScalarTensor.cudafe1.cpp 2025-06-01T21:11:03.7947497Z [3911/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachPointwiseOp.cu.obj 2025-06-01T21:11:04.2102567Z ForeachPointwiseOp.cu 2025-06-01T21:11:04.2103221Z tmpxft_000016f8_00000000-7_ForeachPointwiseOp.cudafe1.cpp 2025-06-01T21:11:04.2104416Z [3912/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachTernaryOp.cu.obj 2025-06-01T21:11:04.2858723Z ForeachTernaryOp.cu 2025-06-01T21:11:04.2859305Z tmpxft_000008b4_00000000-7_ForeachTernaryOp.cudafe1.cpp 2025-06-01T21:11:04.2860523Z [3913/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachReduceOp.cu.obj 2025-06-01T21:11:04.4179078Z ForeachReduceOp.cu 2025-06-01T21:11:04.4179721Z tmpxft_000001e8_00000000-7_ForeachReduceOp.cudafe1.cpp 2025-06-01T21:11:04.4181012Z [3914/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachUnaryOp.cu.obj 2025-06-01T21:11:04.4734311Z ForeachUnaryOp.cu 2025-06-01T21:11:04.4734879Z tmpxft_000004c8_00000000-7_ForeachUnaryOp.cudafe1.cpp 2025-06-01T21:11:04.4736003Z [3915/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FractionalMaxPool2d.cu.obj 2025-06-01T21:11:06.1228988Z FractionalMaxPool2d.cu 2025-06-01T21:11:06.1229387Z tmpxft_00000850_00000000-7_FractionalMaxPool2d.cudafe1.cpp 2025-06-01T21:11:06.1230074Z [3916/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FractionalMaxPool3d.cu.obj 2025-06-01T21:11:06.2897355Z FractionalMaxPool3d.cu 2025-06-01T21:11:06.2897738Z tmpxft_00001014_00000000-7_FractionalMaxPool3d.cudafe1.cpp 2025-06-01T21:11:06.2898494Z [3917/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FunctionOfAMatrixUtilsKernel.cu.obj 2025-06-01T21:11:06.7045023Z FunctionOfAMatrixUtilsKernel.cu 2025-06-01T21:11:06.7045837Z tmpxft_00001628_00000000-7_FunctionOfAMatrixUtilsKernel.cudafe1.cpp 2025-06-01T21:11:06.7047058Z [3918/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FusedAdamKernel.cu.obj 2025-06-01T21:11:06.8994341Z FusedAdamKernel.cu 2025-06-01T21:11:06.8994717Z tmpxft_000013dc_00000000-7_FusedAdamKernel.cudafe1.cpp 2025-06-01T21:11:06.8996447Z [3919/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FusedAdamWKernel.cu.obj 2025-06-01T21:11:07.0059470Z FusedAdamWKernel.cu 2025-06-01T21:11:07.0060145Z tmpxft_000004b4_00000000-7_FusedAdamWKernel.cudafe1.cpp 2025-06-01T21:11:07.0061562Z [3920/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\GcdLcmKernel.cu.obj 2025-06-01T21:11:07.0613731Z GcdLcmKernel.cu 2025-06-01T21:11:07.0614558Z tmpxft_00001504_00000000-7_GcdLcmKernel.cudafe1.cpp 2025-06-01T21:11:07.0615672Z [3921/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\GridSampler.cu.obj 2025-06-01T21:11:07.6021183Z GridSampler.cu 2025-06-01T21:11:07.6021566Z tmpxft_000015a4_00000000-7_GridSampler.cudafe1.cpp 2025-06-01T21:11:07.6022210Z [3922/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FusedSgdKernel.cu.obj 2025-06-01T21:11:09.0125271Z FusedSgdKernel.cu 2025-06-01T21:11:09.0125852Z tmpxft_00001440_00000000-7_FusedSgdKernel.cudafe1.cpp 2025-06-01T21:11:09.0127081Z [3923/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\IGammaKernel.cu.obj 2025-06-01T21:11:09.2900612Z IGammaKernel.cu 2025-06-01T21:11:09.2900951Z tmpxft_00000e54_00000000-7_IGammaKernel.cudafe1.cpp 2025-06-01T21:11:09.2901565Z [3924/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\GroupMM.cu.obj 2025-06-01T21:11:09.5299144Z GroupMM.cu 2025-06-01T21:11:09.5299546Z tmpxft_00000ae0_00000000-7_GroupMM.cudafe1.cpp 2025-06-01T21:11:09.5300792Z [3925/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\IndexKernelUtils.cu.obj 2025-06-01T21:11:09.5767464Z IndexKernelUtils.cu 2025-06-01T21:11:09.5768423Z tmpxft_00001554_00000000-7_IndexKernelUtils.cudafe1.cpp 2025-06-01T21:11:09.5769766Z [3926/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\IndexKernel.cu.obj 2025-06-01T21:11:10.0852166Z IndexKernel.cu 2025-06-01T21:11:10.0852711Z tmpxft_000012ec_00000000-7_IndexKernel.cudafe1.cpp 2025-06-01T21:11:10.0853832Z [3927/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Im2Col.cu.obj 2025-06-01T21:11:10.6610816Z Im2Col.cu 2025-06-01T21:11:10.6611414Z tmpxft_000016ac_00000000-7_Im2Col.cudafe1.cpp 2025-06-01T21:11:10.6612513Z [3928/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Indexing.cu.obj 2025-06-01T21:11:11.5832887Z Indexing.cu 2025-06-01T21:11:11.5833208Z tmpxft_00000968_00000000-7_Indexing.cudafe1.cpp 2025-06-01T21:11:11.5833807Z [3929/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Lerp.cu.obj 2025-06-01T21:11:12.1403776Z Lerp.cu 2025-06-01T21:11:12.1404075Z tmpxft_000007c8_00000000-7_Lerp.cudafe1.cpp 2025-06-01T21:11:12.1404742Z [3930/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\LogAddExpKernel.cu.obj 2025-06-01T21:11:12.3729609Z LogAddExpKernel.cu 2025-06-01T21:11:12.3729971Z tmpxft_00000f78_00000000-7_LogAddExpKernel.cudafe1.cpp 2025-06-01T21:11:12.3730773Z [3931/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\LegacyThrustHelpers.cu.obj 2025-06-01T21:11:12.7140780Z LegacyThrustHelpers.cu 2025-06-01T21:11:12.7141435Z tmpxft_000011a4_00000000-7_LegacyThrustHelpers.cudafe1.cpp 2025-06-01T21:11:12.7142631Z [3932/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\LinearAlgebra.cu.obj 2025-06-01T21:11:13.3580761Z LinearAlgebra.cu 2025-06-01T21:11:13.3581127Z tmpxft_00000cf4_00000000-7_LinearAlgebra.cudafe1.cpp 2025-06-01T21:11:13.3581919Z [3933/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Loss.cu.obj 2025-06-01T21:11:13.4717618Z Loss.cu 2025-06-01T21:11:13.4718070Z tmpxft_00000d78_00000000-7_Loss.cudafe1.cpp 2025-06-01T21:11:13.4719229Z [3934/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\LogcumsumexpKernel.cu.obj 2025-06-01T21:11:13.8735075Z LogcumsumexpKernel.cu 2025-06-01T21:11:13.8735525Z tmpxft_00001150_00000000-7_LogcumsumexpKernel.cudafe1.cpp 2025-06-01T21:11:13.8736153Z [3935/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\LossCTC.cu.obj 2025-06-01T21:11:14.0852216Z LossCTC.cu 2025-06-01T21:11:14.0852683Z tmpxft_00001708_00000000-7_LossCTC.cudafe1.cpp 2025-06-01T21:11:14.0853845Z [3936/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\MaxMinElementwiseKernel.cu.obj 2025-06-01T21:11:15.5669023Z MaxMinElementwiseKernel.cu 2025-06-01T21:11:15.5669816Z tmpxft_00000810_00000000-7_MaxMinElementwiseKernel.cudafe1.cpp 2025-06-01T21:11:15.5671067Z [3937/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\MaxUnpooling.cu.obj 2025-06-01T21:11:16.1846794Z MaxUnpooling.cu 2025-06-01T21:11:16.1847350Z tmpxft_00000ab8_00000000-7_MaxUnpooling.cudafe1.cpp 2025-06-01T21:11:16.1848611Z [3938/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\MultiLabelMarginCriterion.cu.obj 2025-06-01T21:11:16.5503500Z MultiLabelMarginCriterion.cu 2025-06-01T21:11:16.5504182Z tmpxft_0000147c_00000000-7_MultiLabelMarginCriterion.cudafe1.cpp 2025-06-01T21:11:16.5505232Z [3939/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\MultiMarginLoss.cu.obj 2025-06-01T21:11:17.0029171Z MultiMarginLoss.cu 2025-06-01T21:11:17.0029972Z tmpxft_00000084_00000000-7_MultiMarginLoss.cudafe1.cpp 2025-06-01T21:11:17.0031196Z [3940/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\MultinomialKernel.cu.obj 2025-06-01T21:11:17.2465503Z MultinomialKernel.cu 2025-06-01T21:11:17.2466332Z tmpxft_000013ec_00000000-7_MultinomialKernel.cudafe1.cpp 2025-06-01T21:11:17.2467901Z [3941/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\NLLLoss2d.cu.obj 2025-06-01T21:11:17.4687477Z NLLLoss2d.cu 2025-06-01T21:11:17.4687788Z tmpxft_00000604_00000000-7_NLLLoss2d.cudafe1.cpp 2025-06-01T21:11:17.4688475Z [3942/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\NaiveConvolutionTranspose2d.cu.obj 2025-06-01T21:11:18.8368076Z NaiveConvolutionTranspose2d.cu 2025-06-01T21:11:18.8368942Z tmpxft_0000101c_00000000-7_NaiveConvolutionTranspose2d.cudafe1.cpp 2025-06-01T21:11:18.8370437Z [3943/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\NaiveConvolutionTranspose3d.cu.obj 2025-06-01T21:11:19.5252259Z NaiveConvolutionTranspose3d.cu 2025-06-01T21:11:19.5252737Z tmpxft_00001724_00000000-7_NaiveConvolutionTranspose3d.cudafe1.cpp 2025-06-01T21:11:19.5253487Z [3944/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\NaiveDilatedConvolution.cu.obj 2025-06-01T21:11:19.8550888Z NaiveDilatedConvolution.cu 2025-06-01T21:11:19.8551313Z tmpxft_0000083c_00000000-7_NaiveDilatedConvolution.cudafe1.cpp 2025-06-01T21:11:19.8552017Z [3945/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\PointwiseOpsKernel.cu.obj 2025-06-01T21:11:20.1838118Z PointwiseOpsKernel.cu 2025-06-01T21:11:20.1838780Z tmpxft_0000171c_00000000-7_PointwiseOpsKernel.cudafe1.cpp 2025-06-01T21:11:20.1840026Z [3946/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\PowKernel.cu.obj 2025-06-01T21:11:20.3983219Z PowKernel.cu 2025-06-01T21:11:20.3983767Z tmpxft_00001974_00000000-7_PowKernel.cudafe1.cpp 2025-06-01T21:11:20.3985010Z [3947/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\MixedDtypesLinear.cu.obj 2025-06-01T21:11:20.5210356Z MixedDtypesLinear.cu 2025-06-01T21:11:20.5223610Z tmpxft_000001c0_00000000-7_MixedDtypesLinear.cudafe1.cpp 2025-06-01T21:11:20.5225710Z [3948/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Normalization.cu.obj 2025-06-01T21:11:21.1128450Z Normalization.cu 2025-06-01T21:11:21.1129020Z tmpxft_000014d8_00000000-7_Normalization.cudafe1.cpp 2025-06-01T21:11:21.1130083Z [3949/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Nonzero.cu.obj 2025-06-01T21:11:22.0031557Z Nonzero.cu 2025-06-01T21:11:22.0031845Z tmpxft_000014bc_00000000-7_Nonzero.cudafe1.cpp 2025-06-01T21:11:22.0032467Z [3950/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\RNN.cu.obj 2025-06-01T21:11:22.9170546Z RNN.cu 2025-06-01T21:11:22.9171022Z tmpxft_0000170c_00000000-7_RNN.cudafe1.cpp 2025-06-01T21:11:22.9172196Z [3951/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Randperm.cu.obj 2025-06-01T21:11:22.9885596Z Randperm.cu 2025-06-01T21:11:22.9885980Z tmpxft_000015c0_00000000-7_Randperm.cudafe1.cpp 2025-06-01T21:11:22.9886817Z [3952/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceAMinMaxKernel.cu.obj 2025-06-01T21:11:23.0090973Z ReduceAMinMaxKernel.cu 2025-06-01T21:11:23.0091653Z tmpxft_00000364_00000000-7_ReduceAMinMaxKernel.cudafe1.cpp 2025-06-01T21:11:23.0092918Z [3953/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\RecordStream.cu.obj 2025-06-01T21:11:23.0921392Z RecordStream.cu 2025-06-01T21:11:23.0922036Z tmpxft_0000172c_00000000-7_RecordStream.cudafe1.cpp 2025-06-01T21:11:23.0923317Z [3954/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\RangeFactories.cu.obj 2025-06-01T21:11:23.1600297Z RangeFactories.cu 2025-06-01T21:11:23.1600927Z tmpxft_000011c4_00000000-7_RangeFactories.cudafe1.cpp 2025-06-01T21:11:23.1602052Z [3955/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Reduce.cu.obj 2025-06-01T21:11:23.5549374Z Reduce.cu 2025-06-01T21:11:23.5550344Z tmpxft_00000508_00000000-7_Reduce.cudafe1.cpp 2025-06-01T21:11:23.5551610Z [3956/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceArgMaxKernel.cu.obj 2025-06-01T21:11:24.5042794Z ReduceArgMaxKernel.cu 2025-06-01T21:11:24.5043178Z tmpxft_00001370_00000000-7_ReduceArgMaxKernel.cudafe1.cpp 2025-06-01T21:11:24.5043862Z [3957/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceArgMinKernel.cu.obj 2025-06-01T21:11:25.4702332Z ReduceArgMinKernel.cu 2025-06-01T21:11:25.4703027Z tmpxft_000014bc_00000000-7_ReduceArgMinKernel.cudafe1.cpp 2025-06-01T21:11:25.4704285Z [3958/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceLogicKernel.cu.obj 2025-06-01T21:11:25.5565113Z ReduceLogicKernel.cu 2025-06-01T21:11:25.5565749Z tmpxft_00001174_00000000-7_ReduceLogicKernel.cudafe1.cpp 2025-06-01T21:11:25.5566978Z [3959/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceMaxValuesKernel.cu.obj 2025-06-01T21:11:25.7453454Z ReduceMaxValuesKernel.cu 2025-06-01T21:11:25.7454244Z tmpxft_00000ec8_00000000-7_ReduceMaxValuesKernel.cudafe1.cpp 2025-06-01T21:11:25.7455557Z [3960/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceNormKernel.cu.obj 2025-06-01T21:11:25.8086616Z ReduceNormKernel.cu 2025-06-01T21:11:25.8087175Z tmpxft_000014d4_00000000-7_ReduceNormKernel.cudafe1.cpp 2025-06-01T21:11:25.8088407Z [3961/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceMinValuesKernel.cu.obj 2025-06-01T21:11:25.8741688Z ReduceMinValuesKernel.cu 2025-06-01T21:11:25.8743025Z tmpxft_00001554_00000000-7_ReduceMinValuesKernel.cudafe1.cpp 2025-06-01T21:11:25.8744348Z [3962/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceMomentKernel.cu.obj 2025-06-01T21:11:26.2324737Z ReduceMomentKernel.cu 2025-06-01T21:11:26.2325400Z tmpxft_00000a58_00000000-7_ReduceMomentKernel.cudafe1.cpp 2025-06-01T21:11:26.2326642Z [3963/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceSumProdKernel.cu.obj 2025-06-01T21:11:27.7792090Z ReduceSumProdKernel.cu 2025-06-01T21:11:27.7792549Z tmpxft_000007c4_00000000-7_ReduceSumProdKernel.cudafe1.cpp 2025-06-01T21:11:27.7793253Z [3964/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReflectionPad.cu.obj 2025-06-01T21:11:28.0819414Z ReflectionPad.cu 2025-06-01T21:11:28.0819902Z tmpxft_00001320_00000000-7_ReflectionPad.cudafe1.cpp 2025-06-01T21:11:28.0820540Z [3965/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\RenormKernel.cu.obj 2025-06-01T21:11:28.7464752Z RenormKernel.cu 2025-06-01T21:11:28.7465099Z tmpxft_000012c4_00000000-7_RenormKernel.cudafe1.cpp 2025-06-01T21:11:28.7465705Z [3966/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Repeat.cu.obj 2025-06-01T21:11:29.1502857Z Repeat.cu 2025-06-01T21:11:29.1503335Z tmpxft_00001694_00000000-7_Repeat.cudafe1.cpp 2025-06-01T21:11:29.1504482Z [3967/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReplicationPadding.cu.obj 2025-06-01T21:11:29.4045396Z ReplicationPadding.cu 2025-06-01T21:11:29.4046096Z tmpxft_00000dcc_00000000-7_ReplicationPadding.cudafe1.cpp 2025-06-01T21:11:29.4047532Z [3968/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ScaledGroupMM.cu.obj 2025-06-01T21:11:29.5664374Z ScaledGroupMM.cu 2025-06-01T21:11:29.5664951Z tmpxft_000017c0_00000000-7_ScaledGroupMM.cudafe1.cpp 2025-06-01T21:11:29.5666594Z [3969/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\RreluWithNoise.cu.obj 2025-06-01T21:11:30.5541282Z RreluWithNoise.cu 2025-06-01T21:11:30.5541878Z tmpxft_00001014_00000000-7_RreluWithNoise.cudafe1.cpp 2025-06-01T21:11:30.5543078Z [3970/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\RowwiseScaledMM.cu.obj 2025-06-01T21:11:31.3011446Z RowwiseScaledMM.cu 2025-06-01T21:11:31.3011861Z tmpxft_0000146c_00000000-7_RowwiseScaledMM.compute_89.cudafe1.cpp 2025-06-01T21:11:31.3012648Z [3971/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ScatterGatherKernel.cu.obj 2025-06-01T21:11:32.0529683Z ScatterGatherKernel.cu 2025-06-01T21:11:32.0530357Z tmpxft_0000171c_00000000-7_ScatterGatherKernel.cudafe1.cpp 2025-06-01T21:11:32.0531534Z [3972/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Shape.cu.obj 2025-06-01T21:11:32.5164985Z Shape.cu 2025-06-01T21:11:32.5165302Z tmpxft_00001584_00000000-7_Shape.cudafe1.cpp 2025-06-01T21:11:32.5165899Z [3973/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SoftMax.cu.obj 2025-06-01T21:11:32.5982624Z SoftMax.cu 2025-06-01T21:11:32.5983123Z tmpxft_000016c0_00000000-7_SoftMax.cudafe1.cpp 2025-06-01T21:11:32.5984204Z [3974/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SegmentReduce.cu.obj 2025-06-01T21:11:33.5081652Z SegmentReduce.cu 2025-06-01T21:11:33.5082204Z tmpxft_00000584_00000000-7_SegmentReduce.cudafe1.cpp 2025-06-01T21:11:33.5083256Z [3975/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Sort.cu.obj 2025-06-01T21:11:33.7462030Z Sort.cu 2025-06-01T21:11:33.7462300Z tmpxft_000001d4_00000000-7_Sort.cudafe1.cpp 2025-06-01T21:11:33.7463165Z [3976/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Sorting.cu.obj 2025-06-01T21:11:33.8476466Z Sorting.cu 2025-06-01T21:11:33.8476955Z tmpxft_00000440_00000000-7_Sorting.cudafe1.cpp 2025-06-01T21:11:33.8477993Z [3977/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SortImpl.cu.obj 2025-06-01T21:11:34.2903812Z SortImpl.cu 2025-06-01T21:11:34.2904531Z tmpxft_0000145c_00000000-7_SortImpl.cudafe1.cpp 2025-06-01T21:11:34.2906400Z [3978/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SortStable.cu.obj 2025-06-01T21:11:35.0983550Z SortStable.cu 2025-06-01T21:11:35.0984075Z tmpxft_00000b94_00000000-7_SortStable.cudafe1.cpp 2025-06-01T21:11:35.0985323Z [3979/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SpectralOps.cu.obj 2025-06-01T21:11:35.2594169Z SpectralOps.cu 2025-06-01T21:11:35.2594738Z tmpxft_0000033c_00000000-7_SpectralOps.cudafe1.cpp 2025-06-01T21:11:35.2595957Z [3980/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SparseMM.cu.obj 2025-06-01T21:11:35.3457109Z SparseMM.cu 2025-06-01T21:11:35.3457573Z tmpxft_0000146c_00000000-7_SparseMM.cudafe1.cpp 2025-06-01T21:11:35.3458818Z [3981/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SparseBinaryOpIntersectionKernel.cu.obj 2025-06-01T21:11:36.1846128Z SparseBinaryOpIntersectionKernel.cu 2025-06-01T21:11:36.1847265Z tmpxft_000012dc_00000000-7_SparseBinaryOpIntersectionKernel.cudafe1.cpp 2025-06-01T21:11:36.1848064Z [3982/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\StepKernel.cu.obj 2025-06-01T21:11:36.5548503Z StepKernel.cu 2025-06-01T21:11:36.5549033Z tmpxft_00001230_00000000-7_StepKernel.cudafe1.cpp 2025-06-01T21:11:36.5550057Z [3983/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorCompare.cu.obj 2025-06-01T21:11:37.2045917Z TensorCompare.cu 2025-06-01T21:11:37.2046329Z tmpxft_00000f98_00000000-7_TensorCompare.cudafe1.cpp 2025-06-01T21:11:37.2046951Z [3984/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SummaryOps.cu.obj 2025-06-01T21:11:38.3669458Z SummaryOps.cu 2025-06-01T21:11:38.3669920Z tmpxft_000002f4_00000000-7_SummaryOps.cudafe1.cpp 2025-06-01T21:11:38.3670859Z [3985/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorShape.cu.obj 2025-06-01T21:11:38.5677131Z TensorShape.cu 2025-06-01T21:11:38.5677632Z tmpxft_00000804_00000000-7_TensorShape.cudafe1.cpp 2025-06-01T21:11:38.5678635Z [3986/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorModeKernel.cu.obj 2025-06-01T21:11:38.6394798Z TensorModeKernel.cu 2025-06-01T21:11:38.6395381Z tmpxft_00000fbc_00000000-7_TensorModeKernel.cudafe1.cpp 2025-06-01T21:11:38.6396638Z [3987/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorTransformations.cu.obj 2025-06-01T21:11:39.0379801Z TensorTransformations.cu 2025-06-01T21:11:39.0380503Z tmpxft_00000108_00000000-7_TensorTransformations.cudafe1.cpp 2025-06-01T21:11:39.0381717Z [3988/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorTopK.cu.obj 2025-06-01T21:11:39.0459121Z TensorTopK.cu 2025-06-01T21:11:39.0459434Z tmpxft_000017bc_00000000-7_TensorTopK.cudafe1.cpp 2025-06-01T21:11:39.0460699Z [3989/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryComplexKernels.cu.obj 2025-06-01T21:11:39.5365225Z UnaryComplexKernels.cu 2025-06-01T21:11:39.5365900Z tmpxft_0000078c_00000000-7_UnaryComplexKernels.cudafe1.cpp 2025-06-01T21:11:39.5367091Z [3990/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TriangularOps.cu.obj 2025-06-01T21:11:39.6837850Z TriangularOps.cu 2025-06-01T21:11:39.6838503Z tmpxft_00000f08_00000000-7_TriangularOps.cudafe1.cpp 2025-06-01T21:11:39.6839990Z [3991/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryFractionKernels.cu.obj 2025-06-01T21:11:41.0200401Z UnaryFractionKernels.cu 2025-06-01T21:11:41.0200810Z tmpxft_000016ec_00000000-7_UnaryFractionKernels.cudafe1.cpp 2025-06-01T21:11:41.0201573Z [3992/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGammaKernels.cu.obj 2025-06-01T21:11:41.0808808Z UnaryGammaKernels.cu 2025-06-01T21:11:41.0809444Z tmpxft_00001430_00000000-7_UnaryGammaKernels.cudafe1.cpp 2025-06-01T21:11:41.0810763Z [3993/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricAcosKernel.cu.obj 2025-06-01T21:11:41.2068516Z UnaryGeometricAcosKernel.cu 2025-06-01T21:11:41.2069284Z tmpxft_000017c0_00000000-7_UnaryGeometricAcosKernel.cudafe1.cpp 2025-06-01T21:11:41.2070565Z [3994/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricAcoshKernel.cu.obj 2025-06-01T21:11:41.6210464Z UnaryGeometricAcoshKernel.cu 2025-06-01T21:11:41.6211250Z tmpxft_000004a8_00000000-7_UnaryGeometricAcoshKernel.cudafe1.cpp 2025-06-01T21:11:41.6212422Z [3995/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricAsinhKernel.cu.obj 2025-06-01T21:11:41.6757105Z UnaryGeometricAsinhKernel.cu 2025-06-01T21:11:41.6758220Z tmpxft_00001070_00000000-7_UnaryGeometricAsinhKernel.cudafe1.cpp 2025-06-01T21:11:41.6759602Z [3996/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricAsinKernel.cu.obj 2025-06-01T21:11:42.0898591Z UnaryGeometricAsinKernel.cu 2025-06-01T21:11:42.0899689Z tmpxft_00000ce0_00000000-7_UnaryGeometricAsinKernel.cudafe1.cpp 2025-06-01T21:11:42.0901047Z [3997/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricAtanKernel.cu.obj 2025-06-01T21:11:42.1458268Z UnaryGeometricAtanKernel.cu 2025-06-01T21:11:42.1459957Z tmpxft_000001a0_00000000-7_UnaryGeometricAtanKernel.cudafe1.cpp 2025-06-01T21:11:42.1461406Z [3998/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricAtanhKernel.cu.obj 2025-06-01T21:11:43.7052290Z UnaryGeometricAtanhKernel.cu 2025-06-01T21:11:43.7052735Z tmpxft_0000027c_00000000-7_UnaryGeometricAtanhKernel.cudafe1.cpp 2025-06-01T21:11:43.7053969Z [3999/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricCosKernel.cu.obj 2025-06-01T21:11:43.7432047Z UnaryGeometricCosKernel.cu 2025-06-01T21:11:43.7432508Z tmpxft_0000126c_00000000-7_UnaryGeometricCosKernel.cudafe1.cpp 2025-06-01T21:11:43.7433241Z [4000/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricCoshKernel.cu.obj 2025-06-01T21:11:43.8575728Z UnaryGeometricCoshKernel.cu 2025-06-01T21:11:43.8576545Z tmpxft_0000144c_00000000-7_UnaryGeometricCoshKernel.cudafe1.cpp 2025-06-01T21:11:43.8577947Z [4001/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricSinKernel.cu.obj 2025-06-01T21:11:44.1675053Z UnaryGeometricSinKernel.cu 2025-06-01T21:11:44.1676840Z tmpxft_00000430_00000000-7_UnaryGeometricSinKernel.cudafe1.cpp 2025-06-01T21:11:44.1678565Z [4002/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricSinhKernel.cu.obj 2025-06-01T21:11:44.1991068Z UnaryGeometricSinhKernel.cu 2025-06-01T21:11:44.1991522Z tmpxft_000012bc_00000000-7_UnaryGeometricSinhKernel.cudafe1.cpp 2025-06-01T21:11:44.1992294Z [4003/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricTanKernel.cu.obj 2025-06-01T21:11:44.5474814Z UnaryGeometricTanKernel.cu 2025-06-01T21:11:44.5475568Z tmpxft_00001734_00000000-7_UnaryGeometricTanKernel.cudafe1.cpp 2025-06-01T21:11:44.5477211Z [4004/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricTanhKernel.cu.obj 2025-06-01T21:11:44.7407788Z UnaryGeometricTanhKernel.cu 2025-06-01T21:11:44.7409271Z tmpxft_000004a8_00000000-7_UnaryGeometricTanhKernel.cudafe1.cpp 2025-06-01T21:11:44.7410939Z [4005/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryLogKernels.cu.obj 2025-06-01T21:11:46.4833516Z UnaryLogKernels.cu 2025-06-01T21:11:46.4834113Z tmpxft_0000145c_00000000-7_UnaryLogKernels.cudafe1.cpp 2025-06-01T21:11:46.4835352Z [4006/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnarySignKernels.cu.obj 2025-06-01T21:11:46.5442183Z UnarySignKernels.cu 2025-06-01T21:11:46.5442561Z tmpxft_00001464_00000000-7_UnarySignKernels.cudafe1.cpp 2025-06-01T21:11:46.5443212Z [4007/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryOpsKernel.cu.obj 2025-06-01T21:11:46.6563510Z UnaryOpsKernel.cu 2025-06-01T21:11:46.6564129Z tmpxft_000015c0_00000000-7_UnaryOpsKernel.cudafe1.cpp 2025-06-01T21:11:46.6565332Z [4008/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnarySpecialOpsKernel.cu.obj 2025-06-01T21:11:47.5736244Z UnarySpecialOpsKernel.cu 2025-06-01T21:11:47.5736923Z tmpxft_00001984_00000000-7_UnarySpecialOpsKernel.cudafe1.cpp 2025-06-01T21:11:47.5738243Z [4009/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnfoldBackwardKernel.cu.obj 2025-06-01T21:11:47.7893225Z UnfoldBackwardKernel.cu 2025-06-01T21:11:47.7893895Z tmpxft_00001778_00000000-7_UnfoldBackwardKernel.cudafe1.cpp 2025-06-01T21:11:47.7895071Z [4010/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UpSampleBicubic2d.cu.obj 2025-06-01T21:11:48.0939050Z UpSampleBicubic2d.cu 2025-06-01T21:11:48.0939598Z tmpxft_00000f40_00000000-7_UpSampleBicubic2d.cudafe1.cpp 2025-06-01T21:11:48.0940685Z [4011/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UpSampleBilinear2d.cu.obj 2025-06-01T21:11:48.8974993Z UpSampleBilinear2d.cu 2025-06-01T21:11:48.8975648Z tmpxft_00001418_00000000-7_UpSampleBilinear2d.cudafe1.cpp 2025-06-01T21:11:48.8976827Z [4012/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UniqueCub.cu.obj 2025-06-01T21:11:49.5406960Z UniqueCub.cu 2025-06-01T21:11:49.5407299Z tmpxft_000009a0_00000000-7_UniqueCub.cudafe1.cpp 2025-06-01T21:11:49.5407962Z [4013/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UpSampleNearest1d.cu.obj 2025-06-01T21:11:49.6226663Z UpSampleNearest1d.cu 2025-06-01T21:11:49.6227074Z tmpxft_000011f4_00000000-7_UpSampleNearest1d.cudafe1.cpp 2025-06-01T21:11:49.6227734Z [4014/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UpSampleLinear1d.cu.obj 2025-06-01T21:11:49.7937592Z UpSampleLinear1d.cu 2025-06-01T21:11:49.7938230Z tmpxft_00001764_00000000-7_UpSampleLinear1d.cudafe1.cpp 2025-06-01T21:11:49.7939575Z [4015/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UpSampleNearest2d.cu.obj 2025-06-01T21:11:50.8224356Z UpSampleNearest2d.cu 2025-06-01T21:11:50.8225043Z tmpxft_00000810_00000000-7_UpSampleNearest2d.cudafe1.cpp 2025-06-01T21:11:50.8226385Z [4016/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UpSampleTrilinear3d.cu.obj 2025-06-01T21:11:50.8871331Z UpSampleTrilinear3d.cu 2025-06-01T21:11:50.8871750Z tmpxft_00000740_00000000-7_UpSampleTrilinear3d.cudafe1.cpp 2025-06-01T21:11:50.8872428Z [4017/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UpSampleNearest3d.cu.obj 2025-06-01T21:11:51.1367885Z UpSampleNearest3d.cu 2025-06-01T21:11:51.1368273Z tmpxft_00000abc_00000000-7_UpSampleNearest3d.cudafe1.cpp 2025-06-01T21:11:51.1369325Z [4018/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ValidateCompressedIndicesKernel.cu.obj 2025-06-01T21:11:52.0045722Z ValidateCompressedIndicesKernel.cu 2025-06-01T21:11:52.0046622Z tmpxft_00001640_00000000-7_ValidateCompressedIndicesKernel.cudafe1.cpp 2025-06-01T21:11:52.0047922Z [4019/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\WeightNorm.cu.obj 2025-06-01T21:11:52.0634570Z WeightNorm.cu 2025-06-01T21:11:52.0636256Z tmpxft_00001164_00000000-7_WeightNorm.cudafe1.cpp 2025-06-01T21:11:52.0637340Z [4020/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ZetaKernel.cu.obj 2025-06-01T21:11:52.0844772Z ZetaKernel.cu 2025-06-01T21:11:52.0845276Z tmpxft_00001714_00000000-7_ZetaKernel.cudafe1.cpp 2025-06-01T21:11:52.0846857Z [4021/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\airy_ai.cu.obj 2025-06-01T21:11:52.3439024Z airy_ai.cu 2025-06-01T21:11:52.3439453Z tmpxft_000005c8_00000000-7_airy_ai.cudafe1.cpp 2025-06-01T21:11:52.3440432Z [4022/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\bessel_j0.cu.obj 2025-06-01T21:11:53.3594639Z bessel_j0.cu 2025-06-01T21:11:53.3594944Z tmpxft_00000fc0_00000000-7_bessel_j0.cudafe1.cpp 2025-06-01T21:11:53.3595544Z [4023/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\bessel_j1.cu.obj 2025-06-01T21:11:53.4457639Z bessel_j1.cu 2025-06-01T21:11:53.4457950Z tmpxft_00001390_00000000-7_bessel_j1.cudafe1.cpp 2025-06-01T21:11:53.4458608Z [4024/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\bessel_y0.cu.obj 2025-06-01T21:11:53.7032590Z bessel_y0.cu 2025-06-01T21:11:53.7032923Z tmpxft_000003cc_00000000-7_bessel_y0.cudafe1.cpp 2025-06-01T21:11:53.7033515Z [4025/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\bessel_y1.cu.obj 2025-06-01T21:11:54.3775230Z bessel_y1.cu 2025-06-01T21:11:54.3775697Z tmpxft_000016f4_00000000-7_bessel_y1.cudafe1.cpp 2025-06-01T21:11:54.3777116Z [4026/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\chebyshev_polynomial_t.cu.obj 2025-06-01T21:11:54.5556531Z chebyshev_polynomial_t.cu 2025-06-01T21:11:54.5557147Z tmpxft_00000f88_00000000-7_chebyshev_polynomial_t.cudafe1.cpp 2025-06-01T21:11:54.5558423Z [4027/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\chebyshev_polynomial_u.cu.obj 2025-06-01T21:11:54.6062723Z chebyshev_polynomial_u.cu 2025-06-01T21:11:54.6063364Z tmpxft_000001cc_00000000-7_chebyshev_polynomial_u.cudafe1.cpp 2025-06-01T21:11:54.6064645Z [4028/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\chebyshev_polynomial_v.cu.obj 2025-06-01T21:11:54.9658435Z chebyshev_polynomial_v.cu 2025-06-01T21:11:54.9659748Z tmpxft_00000724_00000000-7_chebyshev_polynomial_v.cudafe1.cpp 2025-06-01T21:11:54.9660950Z [4029/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\chebyshev_polynomial_w.cu.obj 2025-06-01T21:11:56.5085953Z chebyshev_polynomial_w.cu 2025-06-01T21:11:56.5086363Z tmpxft_00000520_00000000-7_chebyshev_polynomial_w.cudafe1.cpp 2025-06-01T21:11:56.5087049Z [4030/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\fused_adam_amsgrad_impl.cu.obj 2025-06-01T21:11:56.5210161Z fused_adam_amsgrad_impl.cu 2025-06-01T21:11:56.5210561Z tmpxft_000005a8_00000000-7_fused_adam_amsgrad_impl.cudafe1.cpp 2025-06-01T21:11:56.5211222Z [4031/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\fused_adam_impl.cu.obj 2025-06-01T21:11:56.8689268Z fused_adam_impl.cu 2025-06-01T21:11:56.8689615Z tmpxft_000008b4_00000000-7_fused_adam_impl.cudafe1.cpp 2025-06-01T21:11:56.8690368Z [4032/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\fused_adamw_amsgrad_impl.cu.obj 2025-06-01T21:11:57.2026520Z fused_adamw_amsgrad_impl.cu 2025-06-01T21:11:57.2027490Z tmpxft_0000164c_00000000-7_fused_adamw_amsgrad_impl.cudafe1.cpp 2025-06-01T21:11:57.2028666Z [4033/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\hermite_polynomial_h.cu.obj 2025-06-01T21:11:57.3338336Z hermite_polynomial_h.cu 2025-06-01T21:11:57.3338976Z tmpxft_0000190c_00000000-7_hermite_polynomial_h.cudafe1.cpp 2025-06-01T21:11:57.3340163Z [4034/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\fused_adamw_impl.cu.obj 2025-06-01T21:11:57.4705062Z fused_adamw_impl.cu 2025-06-01T21:11:57.4705629Z tmpxft_00000b80_00000000-7_fused_adamw_impl.cudafe1.cpp 2025-06-01T21:11:57.4706834Z [4035/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\hermite_polynomial_he.cu.obj 2025-06-01T21:11:57.6957702Z hermite_polynomial_he.cu 2025-06-01T21:11:57.6959942Z tmpxft_00001654_00000000-7_hermite_polynomial_he.cudafe1.cpp 2025-06-01T21:11:57.6961226Z [4036/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\group_norm_kernel.cu.obj 2025-06-01T21:11:59.1859726Z group_norm_kernel.cu 2025-06-01T21:11:59.1860359Z tmpxft_0000168c_00000000-7_group_norm_kernel.cudafe1.cpp 2025-06-01T21:11:59.1861541Z [4037/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\laguerre_polynomial_l.cu.obj 2025-06-01T21:11:59.9352955Z laguerre_polynomial_l.cu 2025-06-01T21:11:59.9353625Z tmpxft_000017c0_00000000-7_laguerre_polynomial_l.cudafe1.cpp 2025-06-01T21:11:59.9354899Z [4038/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\legendre_polynomial_p.cu.obj 2025-06-01T21:11:59.9615777Z legendre_polynomial_p.cu 2025-06-01T21:11:59.9616649Z tmpxft_000017b8_00000000-7_legendre_polynomial_p.cudafe1.cpp 2025-06-01T21:11:59.9617910Z [4039/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\modified_bessel_i0.cu.obj 2025-06-01T21:12:00.0432857Z modified_bessel_i0.cu 2025-06-01T21:12:00.0433487Z tmpxft_00000968_00000000-7_modified_bessel_i0.cudafe1.cpp 2025-06-01T21:12:00.0434141Z [4040/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\modified_bessel_i1.cu.obj 2025-06-01T21:12:00.1150580Z modified_bessel_i1.cu 2025-06-01T21:12:00.1151190Z tmpxft_000014e8_00000000-7_modified_bessel_i1.cudafe1.cpp 2025-06-01T21:12:00.1152693Z [4041/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\layer_norm_kernel.cu.obj 2025-06-01T21:12:00.2956083Z layer_norm_kernel.cu 2025-06-01T21:12:00.2956678Z tmpxft_00000ba8_00000000-7_layer_norm_kernel.cudafe1.cpp 2025-06-01T21:12:00.2957812Z [4042/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\modified_bessel_k0.cu.obj 2025-06-01T21:12:01.7417313Z modified_bessel_k0.cu 2025-06-01T21:12:01.7417685Z tmpxft_00001450_00000000-7_modified_bessel_k0.cudafe1.cpp 2025-06-01T21:12:01.7418371Z [4043/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\modified_bessel_k1.cu.obj 2025-06-01T21:12:02.3666235Z modified_bessel_k1.cu 2025-06-01T21:12:02.3666845Z tmpxft_00000eac_00000000-7_modified_bessel_k1.cudafe1.cpp 2025-06-01T21:12:02.3668178Z [4044/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\scaled_modified_bessel_k0.cu.obj 2025-06-01T21:12:02.3694773Z scaled_modified_bessel_k0.cu 2025-06-01T21:12:02.3695436Z tmpxft_0000198c_00000000-7_scaled_modified_bessel_k0.cudafe1.cpp 2025-06-01T21:12:02.3696767Z [4045/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\scaled_modified_bessel_k1.cu.obj 2025-06-01T21:12:02.5139331Z scaled_modified_bessel_k1.cu 2025-06-01T21:12:02.5140070Z tmpxft_00001a40_00000000-7_scaled_modified_bessel_k1.cudafe1.cpp 2025-06-01T21:12:02.5141409Z [4046/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\shifted_chebyshev_polynomial_t.cu.obj 2025-06-01T21:12:02.6367863Z shifted_chebyshev_polynomial_t.cu 2025-06-01T21:12:02.6368381Z tmpxft_000013d4_00000000-7_shifted_chebyshev_polynomial_t.cudafe1.cpp 2025-06-01T21:12:02.6369285Z [4047/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\shifted_chebyshev_polynomial_u.cu.obj 2025-06-01T21:12:02.6725585Z shifted_chebyshev_polynomial_u.cu 2025-06-01T21:12:02.6726389Z tmpxft_00000e58_00000000-7_shifted_chebyshev_polynomial_u.cudafe1.cpp 2025-06-01T21:12:02.6727789Z [4048/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\shifted_chebyshev_polynomial_v.cu.obj 2025-06-01T21:12:04.2309946Z shifted_chebyshev_polynomial_v.cu 2025-06-01T21:12:04.2310753Z tmpxft_00000fec_00000000-7_shifted_chebyshev_polynomial_v.cudafe1.cpp 2025-06-01T21:12:04.2312394Z [4049/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\shifted_chebyshev_polynomial_w.cu.obj 2025-06-01T21:12:04.4466712Z shifted_chebyshev_polynomial_w.cu 2025-06-01T21:12:04.4467536Z tmpxft_00000568_00000000-7_shifted_chebyshev_polynomial_w.cudafe1.cpp 2025-06-01T21:12:04.4468547Z [4050/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\int4mm.cu.obj 2025-06-01T21:12:05.2707615Z int4mm.cu 2025-06-01T21:12:05.2708079Z tmpxft_00001610_00000000-7_int4mm.cudafe1.cpp 2025-06-01T21:12:05.2709321Z [4051/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\spherical_bessel_j0.cu.obj 2025-06-01T21:12:08.1833399Z spherical_bessel_j0.cu 2025-06-01T21:12:08.1833783Z tmpxft_00000274_00000000-7_spherical_bessel_j0.cudafe1.cpp 2025-06-01T21:12:08.1834436Z [4052/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SoftMax.cu.obj 2025-06-01T21:12:08.6283637Z SoftMax.cu 2025-06-01T21:12:08.6284103Z tmpxft_0000147c_00000000-7_SoftMax.cudafe1.cpp 2025-06-01T21:12:08.6285536Z [4053/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseCUDATensor.cu.obj 2025-06-01T21:12:09.1042904Z SparseCUDATensor.cu 2025-06-01T21:12:09.1043510Z tmpxft_0000098c_00000000-7_SparseCUDATensor.cudafe1.cpp 2025-06-01T21:12:09.1044870Z [4054/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseCUDATensorMath.cu.obj 2025-06-01T21:12:09.8593118Z SparseCUDATensorMath.cu 2025-06-01T21:12:09.8593786Z tmpxft_00000858_00000000-7_SparseCUDATensorMath.cudafe1.cpp 2025-06-01T21:12:09.8595278Z [4055/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseCsrTensorMath.cu.obj 2025-06-01T21:12:10.2997906Z SparseCsrTensorMath.cu 2025-06-01T21:12:10.2998316Z tmpxft_000009cc_00000000-7_SparseCsrTensorMath.cudafe1.cpp 2025-06-01T21:12:10.2999058Z [4056/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\nested\cuda\NestedTensorBinaryOps.cu.obj 2025-06-01T21:12:10.4366278Z NestedTensorBinaryOps.cu 2025-06-01T21:12:10.4366754Z tmpxft_00001064_00000000-7_NestedTensorBinaryOps.cudafe1.cpp 2025-06-01T21:12:10.4367470Z [4057/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\nested\cuda\NestedTensorMatmul.cu.obj 2025-06-01T21:12:10.6811979Z NestedTensorMatmul.cu 2025-06-01T21:12:10.6812634Z tmpxft_00000bec_00000000-7_NestedTensorMatmul.cudafe1.cpp 2025-06-01T21:12:10.6815375Z [4058/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\nested\cuda\NestedTensorTransformerFunctions.cu.obj 2025-06-01T21:12:13.0700913Z NestedTensorTransformerFunctions.cu 2025-06-01T21:12:13.0701774Z tmpxft_00001204_00000000-7_NestedTensorTransformerFunctions.cudafe1.cpp 2025-06-01T21:12:13.0703132Z [4059/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseMatMul.cu.obj 2025-06-01T21:12:15.9025652Z SparseMatMul.cu 2025-06-01T21:12:15.9026204Z tmpxft_00001090_00000000-7_SparseMatMul.cudafe1.cpp 2025-06-01T21:12:15.9027592Z [4060/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseSemiSturcturedApply.cu.obj 2025-06-01T21:12:16.1263667Z SparseSemiSturcturedApply.cu 2025-06-01T21:12:16.1264137Z tmpxft_0000048c_00000000-7_SparseSemiSturcturedApply.cudafe1.cpp 2025-06-01T21:12:16.1264876Z [4061/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\AffineQuantizer.cu.obj 2025-06-01T21:12:16.2646629Z AffineQuantizer.cu 2025-06-01T21:12:16.2647009Z tmpxft_00001750_00000000-7_AffineQuantizer.cudafe1.cpp 2025-06-01T21:12:16.2647813Z [4062/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseSemiStructuredApplyDense.cu.obj 2025-06-01T21:12:16.2648537Z SparseSemiStructuredApplyDense.cu 2025-06-01T21:12:16.2648965Z tmpxft_00000318_00000000-7_SparseSemiStructuredApplyDense.cudafe1.cpp 2025-06-01T21:12:16.2649952Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\optional(69): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data 2025-06-01T21:12:16.2651740Z tmpxft_00000318_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 &&)' being compiled 2025-06-01T21:12:16.2653026Z with 2025-06-01T21:12:16.2653268Z [ 2025-06-01T21:12:16.2653455Z _Ty=int 2025-06-01T21:12:16.2653640Z ] 2025-06-01T21:12:16.2654731Z tmpxft_00000318_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 &&)' being compiled 2025-06-01T21:12:16.2655930Z with 2025-06-01T21:12:16.2656099Z [ 2025-06-01T21:12:16.2656475Z _Ty=int 2025-06-01T21:12:16.2656669Z ] 2025-06-01T21:12:16.2657813Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\optional(189): 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-06-01T21:12:16.2659228Z with 2025-06-01T21:12:16.2659406Z [ 2025-06-01T21:12:16.2659591Z _Ty=int 2025-06-01T21:12:16.2659776Z ] 2025-06-01T21:12:16.2660907Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\optional(189): 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-06-01T21:12:16.2662100Z with 2025-06-01T21:12:16.2662286Z [ 2025-06-01T21:12:16.2662485Z _Ty=int 2025-06-01T21:12:16.2662676Z ] 2025-06-01T21:12:16.2663500Z 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 &&)' being compiled 2025-06-01T21:12:16.2664376Z with 2025-06-01T21:12:16.2664567Z [ 2025-06-01T21:12:16.2664855Z I=size_t, 2025-06-01T21:12:16.2665140Z _Ty2=size_t 2025-06-01T21:12:16.2665413Z ] 2025-06-01T21:12:16.6849848Z 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 &&)' being compiled 2025-06-01T21:12:16.6851569Z with 2025-06-01T21:12:16.6851892Z [ 2025-06-01T21:12:16.6852205Z I=size_t, 2025-06-01T21:12:16.6852579Z _Ty2=size_t 2025-06-01T21:12:16.6852945Z ] 2025-06-01T21:12:16.6853999Z [4063/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseSemiStructuredLinear.cu.obj 2025-06-01T21:12:17.5926134Z SparseSemiStructuredLinear.cu 2025-06-01T21:12:17.5926905Z tmpxft_000009bc_00000000-7_SparseSemiStructuredLinear.cudafe1.cpp 2025-06-01T21:12:17.5928410Z [4064/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseSemiStructuredOps.cu.obj 2025-06-01T21:12:18.1347031Z SparseSemiStructuredOps.cu 2025-06-01T21:12:18.1347791Z tmpxft_00000548_00000000-7_SparseSemiStructuredOps.cudafe1.cpp 2025-06-01T21:12:18.1349193Z [4065/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseSemiStructuredTile.cu.obj 2025-06-01T21:12:18.1350520Z SparseSemiStructuredTile.cu 2025-06-01T21:12:18.1351211Z tmpxft_00001798_00000000-7_SparseSemiStructuredTile.cudafe1.cpp 2025-06-01T21:12:18.1353031Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\optional(69): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data 2025-06-01T21:12:18.1356367Z tmpxft_00001798_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 &&)' being compiled 2025-06-01T21:12:18.1358631Z with 2025-06-01T21:12:18.1358954Z [ 2025-06-01T21:12:18.1359260Z _Ty=int 2025-06-01T21:12:18.1359600Z ] 2025-06-01T21:12:18.1361620Z tmpxft_00001798_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 &&)' being compiled 2025-06-01T21:12:18.1363849Z with 2025-06-01T21:12:18.1364156Z [ 2025-06-01T21:12:18.1364696Z _Ty=int 2025-06-01T21:12:18.1365051Z ] 2025-06-01T21:12:18.1367254Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\optional(189): 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-06-01T21:12:18.1369655Z with 2025-06-01T21:12:18.1369967Z [ 2025-06-01T21:12:18.1370255Z _Ty=int 2025-06-01T21:12:18.1370613Z ] 2025-06-01T21:12:18.1372816Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\optional(189): 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-06-01T21:12:18.1375186Z with 2025-06-01T21:12:18.1375501Z [ 2025-06-01T21:12:18.1375830Z _Ty=int 2025-06-01T21:12:18.1376165Z ] 2025-06-01T21:12:18.1377717Z 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 &&)' being compiled 2025-06-01T21:12:18.1379514Z with 2025-06-01T21:12:18.1379821Z [ 2025-06-01T21:12:18.1380134Z I=size_t, 2025-06-01T21:12:18.1380519Z _Ty2=size_t 2025-06-01T21:12:18.1380878Z ] 2025-06-01T21:12:18.3643939Z 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 &&)' being compiled 2025-06-01T21:12:18.3645662Z with 2025-06-01T21:12:18.3645979Z [ 2025-06-01T21:12:18.3646274Z I=size_t, 2025-06-01T21:12:18.3646636Z _Ty2=size_t 2025-06-01T21:12:18.3646995Z ] 2025-06-01T21:12:18.3647865Z [4066/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\Activation.cu.obj 2025-06-01T21:12:19.1453315Z Activation.cu 2025-06-01T21:12:19.1453777Z tmpxft_0000035c_00000000-7_Activation.cudafe1.cpp 2025-06-01T21:12:19.1454807Z [4067/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\EmbeddingBag.cu.obj 2025-06-01T21:12:19.1455607Z EmbeddingBag.cu 2025-06-01T21:12:19.1455861Z tmpxft_00001704_00000000-7_EmbeddingBag.cudafe1.cpp 2025-06-01T21:12:19.1456735Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\optional(69): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data 2025-06-01T21:12:19.1458690Z tmpxft_00001704_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 &&)' being compiled 2025-06-01T21:12:19.1459858Z with 2025-06-01T21:12:19.1460030Z [ 2025-06-01T21:12:19.1460208Z _Ty=int 2025-06-01T21:12:19.1460390Z ] 2025-06-01T21:12:19.1461422Z tmpxft_00001704_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 &&)' being compiled 2025-06-01T21:12:19.1462527Z with 2025-06-01T21:12:19.1462708Z [ 2025-06-01T21:12:19.1462866Z _Ty=int 2025-06-01T21:12:19.1463045Z ] 2025-06-01T21:12:19.1464177Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\optional(189): 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-06-01T21:12:19.1465596Z with 2025-06-01T21:12:19.1465763Z [ 2025-06-01T21:12:19.1465931Z _Ty=int 2025-06-01T21:12:19.1466109Z ] 2025-06-01T21:12:19.1467362Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\optional(189): 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-06-01T21:12:19.1468658Z with 2025-06-01T21:12:19.1468818Z [ 2025-06-01T21:12:19.1468979Z _Ty=int 2025-06-01T21:12:19.1469150Z ] 2025-06-01T21:12:19.1469967Z 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 &&)' being compiled 2025-06-01T21:12:19.1470845Z with 2025-06-01T21:12:19.1471013Z [ 2025-06-01T21:12:19.1471172Z I=size_t, 2025-06-01T21:12:19.1471387Z _Ty2=size_t 2025-06-01T21:12:19.1471574Z ] 2025-06-01T21:12:19.2390875Z 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 &&)' being compiled 2025-06-01T21:12:19.2392571Z with 2025-06-01T21:12:19.2392882Z [ 2025-06-01T21:12:19.2393147Z I=size_t, 2025-06-01T21:12:19.2393487Z _Ty2=size_t 2025-06-01T21:12:19.2393834Z ] 2025-06-01T21:12:19.2394772Z [4068/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\FakeQuantizeCore.cu.obj 2025-06-01T21:12:19.4433740Z FakeQuantizeCore.cu 2025-06-01T21:12:19.4434363Z tmpxft_00000310_00000000-7_FakeQuantizeCore.cudafe1.cpp 2025-06-01T21:12:19.4435796Z [4069/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\FusedObsFakeQuant.cu.obj 2025-06-01T21:12:19.9349110Z FusedObsFakeQuant.cu 2025-06-01T21:12:19.9349486Z tmpxft_000011d4_00000000-7_FusedObsFakeQuant.cudafe1.cpp 2025-06-01T21:12:19.9350148Z [4070/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\IntReprQuant.cu.obj 2025-06-01T21:12:20.4730563Z IntReprQuant.cu 2025-06-01T21:12:20.4730887Z tmpxft_0000169c_00000000-7_IntReprQuant.cudafe1.cpp 2025-06-01T21:12:20.4731616Z [4071/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\MakePerTensorQuantizedTensor.cu.obj 2025-06-01T21:12:27.1797080Z MakePerTensorQuantizedTensor.cu 2025-06-01T21:12:27.1797606Z tmpxft_000014c0_00000000-7_MakePerTensorQuantizedTensor.cudafe1.cpp 2025-06-01T21:12:27.1798576Z [4072/7616] 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-06-01T21:12:27.2135704Z cutlassB_bf16_aligned_k32.cu 2025-06-01T21:12:27.2136175Z tmpxft_0000136c_00000000-7_cutlassB_bf16_aligned_k32.cudafe1.cpp 2025-06-01T21:12:27.2137060Z [4073/7616] 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-06-01T21:12:27.2787287Z cutlassB_bf16_aligned_k32_dropout.cu 2025-06-01T21:12:27.2788075Z tmpxft_00000878_00000000-7_cutlassB_bf16_aligned_k32_dropout.cudafe1.cpp 2025-06-01T21:12:27.2789523Z [4074/7616] 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-06-01T21:12:27.2862578Z cutlassB_bf16_aligned_k128.cu 2025-06-01T21:12:27.2863299Z tmpxft_000004f8_00000000-7_cutlassB_bf16_aligned_k128.cudafe1.cpp 2025-06-01T21:12:27.2864842Z [4075/7616] 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-06-01T21:12:27.3306062Z cutlassB_bf16_aligned_k64.cu 2025-06-01T21:12:27.3306492Z tmpxft_000010d8_00000000-7_cutlassB_bf16_aligned_k64.cudafe1.cpp 2025-06-01T21:12:27.3307366Z [4076/7616] 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-06-01T21:12:28.1774682Z cutlassB_bf16_aligned_k128_dropout.cu 2025-06-01T21:12:28.1775521Z tmpxft_00001410_00000000-7_cutlassB_bf16_aligned_k128_dropout.cudafe1.cpp 2025-06-01T21:12:28.1777506Z [4077/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\attention.cu.obj 2025-06-01T21:12:28.4599249Z attention.cu 2025-06-01T21:12:28.4601686Z tmpxft_00001720_00000000-7_attention.cudafe1.cpp 2025-06-01T21:12:28.4604776Z [4078/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\attention_backward.cu.obj 2025-06-01T21:12:29.9049639Z attention_backward.cu 2025-06-01T21:12:29.9050052Z tmpxft_00000f20_00000000-7_attention_backward.cudafe1.cpp 2025-06-01T21:12:29.9050918Z [4079/7616] 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-06-01T21:12:29.9991284Z cutlassB_bf16_aligned_k64_dropout.cu 2025-06-01T21:12:29.9991901Z tmpxft_00000ad0_00000000-7_cutlassB_bf16_aligned_k64_dropout.cudafe1.cpp 2025-06-01T21:12:29.9992848Z [4080/7616] 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-06-01T21:12:30.0856797Z cutlassB_bf16_aligned_k65536.cu 2025-06-01T21:12:30.0857240Z tmpxft_00000224_00000000-7_cutlassB_bf16_aligned_k65536.cudafe1.cpp 2025-06-01T21:12:30.0858168Z [4081/7616] 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-06-01T21:12:30.1469073Z cutlassB_bf16_aligned_k96.cu 2025-06-01T21:12:30.1469797Z tmpxft_00000f74_00000000-7_cutlassB_bf16_aligned_k96.cudafe1.cpp 2025-06-01T21:12:30.1471465Z [4082/7616] 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-06-01T21:12:30.3417869Z cutlassB_bf16_aligned_k65536_dropout.cu 2025-06-01T21:12:30.3418803Z tmpxft_00000630_00000000-7_cutlassB_bf16_aligned_k65536_dropout.cudafe1.cpp 2025-06-01T21:12:30.3420572Z [4083/7616] 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-06-01T21:12:30.9511437Z cutlassB_f16_aligned_k128.cu 2025-06-01T21:12:30.9512273Z tmpxft_000017e8_00000000-7_cutlassB_f16_aligned_k128.cudafe1.cpp 2025-06-01T21:12:30.9513427Z [4084/7616] 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-06-01T21:12:31.0821500Z cutlassB_f16_aligned_k128_dropout.cu 2025-06-01T21:12:31.0822654Z tmpxft_00000e28_00000000-7_cutlassB_f16_aligned_k128_dropout.cudafe1.cpp 2025-06-01T21:12:31.0824795Z [4085/7616] 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-06-01T21:12:32.7446846Z cutlassB_f16_aligned_k32.cu 2025-06-01T21:12:32.7447549Z tmpxft_00001420_00000000-7_cutlassB_f16_aligned_k32.cudafe1.cpp 2025-06-01T21:12:32.7449201Z [4086/7616] 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-06-01T21:12:32.8745526Z cutlassB_f16_aligned_k32_dropout.cu 2025-06-01T21:12:32.8746277Z tmpxft_0000163c_00000000-7_cutlassB_f16_aligned_k32_dropout.cudafe1.cpp 2025-06-01T21:12:32.8747897Z [4087/7616] 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-06-01T21:12:32.9662789Z cutlassB_f16_aligned_k64.cu 2025-06-01T21:12:32.9663507Z tmpxft_0000177c_00000000-7_cutlassB_f16_aligned_k64.cudafe1.cpp 2025-06-01T21:12:32.9665122Z [4088/7616] 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-06-01T21:12:33.0506310Z cutlassB_f16_aligned_k65536.cu 2025-06-01T21:12:33.0507050Z tmpxft_00000f18_00000000-7_cutlassB_f16_aligned_k65536.cudafe1.cpp 2025-06-01T21:12:33.0509303Z [4089/7616] 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-06-01T21:12:33.1576254Z cutlassB_f16_aligned_k64_dropout.cu 2025-06-01T21:12:33.1577087Z tmpxft_00000e34_00000000-7_cutlassB_f16_aligned_k64_dropout.cudafe1.cpp 2025-06-01T21:12:33.1578870Z [4090/7616] 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-06-01T21:12:33.7550870Z cutlassB_f16_aligned_k65536_dropout.cu 2025-06-01T21:12:33.7551355Z tmpxft_00001464_00000000-7_cutlassB_f16_aligned_k65536_dropout.cudafe1.cpp 2025-06-01T21:12:33.7552245Z [4091/7616] 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-06-01T21:12:33.7968759Z cutlassB_f16_aligned_k96.cu 2025-06-01T21:12:33.7969446Z tmpxft_00000634_00000000-7_cutlassB_f16_aligned_k96.cudafe1.cpp 2025-06-01T21:12:33.7971606Z [4092/7616] 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-06-01T21:12:35.5582664Z cutlassB_f16_notaligned_k128.cu 2025-06-01T21:12:35.5583149Z tmpxft_0000077c_00000000-7_cutlassB_f16_notaligned_k128.cudafe1.cpp 2025-06-01T21:12:35.5584251Z [4093/7616] 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-06-01T21:12:35.7538056Z cutlassB_f16_notaligned_k128_dropout.cu 2025-06-01T21:12:35.7538571Z tmpxft_00000944_00000000-7_cutlassB_f16_notaligned_k128_dropout.cudafe1.cpp 2025-06-01T21:12:35.7539499Z [4094/7616] 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-06-01T21:12:35.7961777Z cutlassB_f16_notaligned_k32_dropout.cu 2025-06-01T21:12:35.7962587Z tmpxft_000016bc_00000000-7_cutlassB_f16_notaligned_k32_dropout.cudafe1.cpp 2025-06-01T21:12:35.7964167Z [4095/7616] 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-06-01T21:12:35.8550597Z cutlassB_f16_notaligned_k32.cu 2025-06-01T21:12:35.8551351Z tmpxft_000014b0_00000000-7_cutlassB_f16_notaligned_k32.cudafe1.cpp 2025-06-01T21:12:35.8552935Z [4096/7616] 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-06-01T21:12:35.8635774Z cutlassB_f16_notaligned_k64.cu 2025-06-01T21:12:35.8636494Z tmpxft_0000063c_00000000-7_cutlassB_f16_notaligned_k64.cudafe1.cpp 2025-06-01T21:12:35.8637592Z [4097/7616] 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-06-01T21:12:36.4557926Z cutlassB_f16_notaligned_k64_dropout.cu 2025-06-01T21:12:36.4559711Z tmpxft_00001708_00000000-7_cutlassB_f16_notaligned_k64_dropout.cudafe1.cpp 2025-06-01T21:12:36.4561560Z [4098/7616] 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-06-01T21:12:36.5511383Z cutlassB_f16_notaligned_k65536.cu 2025-06-01T21:12:36.5512146Z tmpxft_00001640_00000000-7_cutlassB_f16_notaligned_k65536.cudafe1.cpp 2025-06-01T21:12:36.5514620Z [4099/7616] 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-06-01T21:12:38.3115969Z cutlassB_f16_notaligned_k65536_dropout.cu 2025-06-01T21:12:38.3116470Z tmpxft_0000100c_00000000-7_cutlassB_f16_notaligned_k65536_dropout.cudafe1.cpp 2025-06-01T21:12:38.3117374Z [4100/7616] 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-06-01T21:12:38.5869134Z cutlassB_f32_aligned_k128.cu 2025-06-01T21:12:38.5869917Z tmpxft_00000f68_00000000-7_cutlassB_f32_aligned_k128.cudafe1.cpp 2025-06-01T21:12:38.5871635Z [4101/7616] 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-06-01T21:12:38.6711493Z cutlassB_f32_aligned_k64.cu 2025-06-01T21:12:38.6712247Z tmpxft_00000f3c_00000000-7_cutlassB_f32_aligned_k64.cudafe1.cpp 2025-06-01T21:12:38.6713898Z [4102/7616] 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-06-01T21:12:38.6869467Z cutlassB_f32_aligned_k128_dropout.cu 2025-06-01T21:12:38.6870279Z tmpxft_00000d2c_00000000-7_cutlassB_f32_aligned_k128_dropout.cudafe1.cpp 2025-06-01T21:12:38.7607342Z [4103/7616] 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-06-01T21:12:38.7608752Z cutlassB_f32_aligned_k32.cu 2025-06-01T21:12:38.7609349Z tmpxft_00000d98_00000000-7_cutlassB_f32_aligned_k32.cudafe1.cpp 2025-06-01T21:12:38.7610940Z [4104/7616] 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-06-01T21:12:39.2878914Z cutlassB_f32_aligned_k32_dropout.cu 2025-06-01T21:12:39.2880167Z tmpxft_000015d4_00000000-7_cutlassB_f32_aligned_k32_dropout.cudafe1.cpp 2025-06-01T21:12:39.2881938Z [4105/7616] 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-06-01T21:12:39.2999255Z cutlassB_f32_aligned_k64_dropout.cu 2025-06-01T21:12:39.3000144Z tmpxft_0000122c_00000000-7_cutlassB_f32_aligned_k64_dropout.cudafe1.cpp 2025-06-01T21:12:39.3001753Z [4106/7616] 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-06-01T21:12:41.1579560Z cutlassB_f32_aligned_k65536.cu 2025-06-01T21:12:41.1580364Z tmpxft_00001028_00000000-7_cutlassB_f32_aligned_k65536.cudafe1.cpp 2025-06-01T21:12:41.1582106Z [4107/7616] 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-06-01T21:12:41.3698632Z cutlassB_f32_aligned_k65536_dropout.cu 2025-06-01T21:12:41.3699199Z tmpxft_00001374_00000000-7_cutlassB_f32_aligned_k65536_dropout.cudafe1.cpp 2025-06-01T21:12:41.3700236Z [4108/7616] 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-06-01T21:12:41.4724281Z cutlassB_f32_notaligned_k128.cu 2025-06-01T21:12:41.4724741Z tmpxft_000014f0_00000000-7_cutlassB_f32_notaligned_k128.cudafe1.cpp 2025-06-01T21:12:41.4725638Z [4109/7616] 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-06-01T21:12:41.5830017Z cutlassB_f32_notaligned_k128_dropout.cu 2025-06-01T21:12:41.5830510Z tmpxft_00000eec_00000000-7_cutlassB_f32_notaligned_k128_dropout.cudafe1.cpp 2025-06-01T21:12:41.5831417Z [4110/7616] 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-06-01T21:12:41.6437888Z cutlassB_f32_notaligned_k32.cu 2025-06-01T21:12:41.6438337Z tmpxft_000000e4_00000000-7_cutlassB_f32_notaligned_k32.cudafe1.cpp 2025-06-01T21:12:41.6439369Z [4111/7616] 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-06-01T21:12:42.0000807Z cutlassB_f32_notaligned_k32_dropout.cu 2025-06-01T21:12:42.0001754Z tmpxft_00000d0c_00000000-7_cutlassB_f32_notaligned_k32_dropout.cudafe1.cpp 2025-06-01T21:12:42.0003973Z [4112/7616] 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-06-01T21:12:42.2445882Z cutlassB_f32_notaligned_k64.cu 2025-06-01T21:12:42.2446623Z tmpxft_00000538_00000000-7_cutlassB_f32_notaligned_k64.cudafe1.cpp 2025-06-01T21:12:42.2448264Z [4113/7616] 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-06-01T21:12:44.0500852Z cutlassB_f32_notaligned_k64_dropout.cu 2025-06-01T21:12:44.0501401Z tmpxft_000017d8_00000000-7_cutlassB_f32_notaligned_k64_dropout.cudafe1.cpp 2025-06-01T21:12:44.0502322Z [4114/7616] 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-06-01T21:12:44.1042626Z cutlassB_f32_notaligned_k65536.cu 2025-06-01T21:12:44.1043114Z tmpxft_00001078_00000000-7_cutlassB_f32_notaligned_k65536.cudafe1.cpp 2025-06-01T21:12:44.1044112Z [4115/7616] 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-06-01T21:12:44.3308986Z cutlassB_f32_notaligned_k65536_dropout.cu 2025-06-01T21:12:44.3309552Z tmpxft_00000988_00000000-7_cutlassB_f32_notaligned_k65536_dropout.cudafe1.cpp 2025-06-01T21:12:44.3315555Z [4116/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassF_f16_aligned.cu.obj 2025-06-01T21:12:44.3897129Z cutlassF_f16_aligned.cu 2025-06-01T21:12:44.3897602Z tmpxft_00000960_00000000-7_cutlassF_f16_aligned.cudafe1.cpp 2025-06-01T21:12:44.3898442Z [4117/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassF_bf16_aligned.cu.obj 2025-06-01T21:12:44.5365939Z cutlassF_bf16_aligned.cu 2025-06-01T21:12:44.5366621Z tmpxft_00000c90_00000000-7_cutlassF_bf16_aligned.cudafe1.cpp 2025-06-01T21:12:44.5368232Z [4118/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassF_f16_notaligned.cu.obj 2025-06-01T21:12:44.6344376Z cutlassF_f16_notaligned.cu 2025-06-01T21:12:44.6344783Z tmpxft_0000092c_00000000-7_cutlassF_f16_notaligned.cudafe1.cpp 2025-06-01T21:12:44.6345731Z [4119/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassF_f32_aligned.cu.obj 2025-06-01T21:12:44.9650450Z cutlassF_f32_aligned.cu 2025-06-01T21:12:44.9651085Z tmpxft_0000129c_00000000-7_cutlassF_f32_aligned.cudafe1.cpp 2025-06-01T21:12:44.9653993Z [4120/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassF_f32_notaligned.cu.obj 2025-06-01T21:12:45.7049255Z cutlassF_f32_notaligned.cu 2025-06-01T21:12:45.7049669Z tmpxft_000015e4_00000000-7_cutlassF_f32_notaligned.cudafe1.cpp 2025-06-01T21:12:45.7051428Z [4121/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\RegisterQuantizedCUDA_0.cpp.obj 2025-06-01T21:12:45.7979274Z [4122/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\RegisterNestedTensorCUDA_0.cpp.obj 2025-06-01T21:12:45.8264751Z [4123/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\RegisterSparseCsrCUDA_0.cpp.obj 2025-06-01T21:12:46.0831543Z [4124/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\RegisterSparseCUDA_0.cpp.obj 2025-06-01T21:12:46.6875631Z [4125/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\linalg\BatchLinearAlgebra.cpp.obj 2025-06-01T21:12:46.7975053Z [4126/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\UfuncCUDA_add.cu.obj 2025-06-01T21:12:46.9573238Z UfuncCUDA_add.cu 2025-06-01T21:12:46.9573591Z tmpxft_000017bc_00000000-7_UfuncCUDA_add.cudafe1.cpp 2025-06-01T21:12:46.9574290Z [4127/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\linalg\CudssHandlePool.cpp.obj 2025-06-01T21:12:46.9605001Z [4128/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\linalg\BatchLinearAlgebraLib.cpp.obj 2025-06-01T21:12:46.9829187Z [4129/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\linalg\BatchLinearAlgebraLibBlas.cpp.obj 2025-06-01T21:12:47.4893541Z [4130/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\linalg\CusolverDnHandlePool.cpp.obj 2025-06-01T21:12:47.7903550Z [4131/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\linalg\CUDASolver.cpp.obj 2025-06-01T21:12:47.8963897Z [4132/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CUDASparseBlas.cpp.obj 2025-06-01T21:12:47.9022974Z [4133/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CublasHandlePool.cpp.obj 2025-06-01T21:12:48.0798460Z [4134/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\tunable\StreamTimer.cpp.obj 2025-06-01T21:12:48.4104423Z [4135/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\tunable\Tunable.cpp.obj 2025-06-01T21:12:48.7800257Z [4136/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Activation.cpp.obj 2025-06-01T21:12:49.0596974Z [4137/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Distributions.cpp.obj 2025-06-01T21:12:49.3821148Z [4138/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Equal.cpp.obj 2025-06-01T21:12:49.4670702Z [4139/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Blas.cpp.obj 2025-06-01T21:12:49.7204336Z [4140/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\GridSampler.cpp.obj 2025-06-01T21:12:49.8387725Z [4141/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CUDABlas.cpp.obj 2025-06-01T21:12:49.9423123Z [4142/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\IndexKernel.cpp.obj 2025-06-01T21:12:49.9579406Z [4143/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\LinearAlgebraStubs.cpp.obj 2025-06-01T21:12:50.2493043Z [4144/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceOps.cpp.obj 2025-06-01T21:12:50.2932759Z [4145/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ScanKernels.cpp.obj 2025-06-01T21:12:50.5402177Z [4146/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Sort.cpp.obj 2025-06-01T21:12:50.9644624Z [4147/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorModeKernel.cpp.obj 2025-06-01T21:12:51.0864317Z [4148/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorTopK.cpp.obj 2025-06-01T21:12:51.2362234Z [4149/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorShapeCUDA.cpp.obj 2025-06-01T21:12:51.2976802Z [4150/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Sorting.cpp.obj 2025-06-01T21:12:51.3633763Z [4151/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\jit_utils.cpp.obj 2025-06-01T21:12:51.9149847Z [4152/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\flash_attn\flash_api.cpp.obj 2025-06-01T21:12:52.1228231Z [4153/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseCUDABlas.cpp.obj 2025-06-01T21:12:52.1491066Z [4154/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseBlas.cpp.obj 2025-06-01T21:12:52.1992708Z [4155/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseBlasLegacy.cpp.obj 2025-06-01T21:12:52.3033098Z [4156/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseBlasImpl.cpp.obj 2025-06-01T21:12:52.6833790Z [4157/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\CudaIPCTypes.cpp.obj 2025-06-01T21:12:52.8038085Z [4158/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\cuda\CUDAPluggableAllocator.cpp.obj 2025-06-01T21:12:53.1035655Z [4159/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\cuda\memory_snapshot.cpp.obj 2025-06-01T21:12:53.2357986Z [4160/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\inductor\aoti_runner\model_container_runner_cuda.cpp.obj 2025-06-01T21:12:53.5145900Z [4161/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\inductor\aoti_torch\shim_cuda.cpp.obj 2025-06-01T21:12:53.7803969Z [4162/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\nested\cuda\NestedTensorTransformerFunctions.cpp.obj 2025-06-01T21:12:54.4349768Z [4163/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\profiler\stubs\cuda.cpp.obj 2025-06-01T21:12:54.5115408Z [4164/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\jit\passes\frozen_conv_add_relu_fusion_cuda.cpp.obj 2025-06-01T21:12:55.0953269Z [4165/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\cuda\comm.cpp.obj 2025-06-01T21:12:55.1638103Z [4166/7616] Building CXX object caffe2\CMakeFiles\torch.dir\__\empty.cpp.obj 2025-06-01T21:12:55.6442045Z [4167/7616] Building CXX object caffe2\torch\lib\libshm_windows\CMakeFiles\shm.dir\core.cpp.obj 2025-06-01T21:12:56.0574336Z [4168/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\jit\codegen\fuser\cuda\fused_kernel.cpp.obj 2025-06-01T21:12:56.4799426Z [4169/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\autograd\functions\comm.cpp.obj 2025-06-01T21:12:56.8319223Z [4170/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\jit\tensorexpr\cuda_codegen.cpp.obj 2025-06-01T21:12:56.8320504Z 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-06-01T21:12:56.8321539Z with 2025-06-01T21:12:56.8321761Z [ 2025-06-01T21:12:56.8321976Z T=int 2025-06-01T21:12:56.8322166Z ] 2025-06-01T21:12:56.8323151Z 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-06-01T21:12:57.1843678Z with 2025-06-01T21:12:57.1843930Z [ 2025-06-01T21:12:57.1844368Z T=int 2025-06-01T21:12:57.1844573Z ] 2025-06-01T21:12:57.1845094Z [4171/7616] Building CXX object test_edge_op_registration\CMakeFiles\unbox_lib.dir\__\out\RegisterCPUCustomOps.cpp.obj 2025-06-01T21:12:57.5013444Z [4172/7616] Building CXX object test_edge_op_registration\CMakeFiles\unbox_lib.dir\custom_ops.cpp.obj 2025-06-01T21:12:57.8710204Z [4173/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\jit\runtime\register_cuda_ops.cpp.obj 2025-06-01T21:12:58.5483016Z [4174/7616] Building CXX object test_jit\CMakeFiles\jitbackend_test.dir\test_backend_lib.cpp.obj 2025-06-01T21:12:58.6486055Z [4175/7616] Building CXX object test_jit\CMakeFiles\backend_with_compiler.dir\test_backend_compiler_lib.cpp.obj 2025-06-01T21:12:58.6972395Z [4176/7616] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\RegisterCUDA_0.cpp.obj 2025-06-01T21:12:58.7089233Z [4177/7616] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Unique.cu.obj 2025-06-01T21:12:58.8542427Z Unique.cu 2025-06-01T21:12:58.8542715Z tmpxft_00000714_00000000-7_Unique.cudafe1.cpp 2025-06-01T21:12:58.8543455Z [4178/7616] Building CXX object test_edge_op_registration\CMakeFiles\unbox_lib.dir\__\out\RegisterCodegenUnboxedKernelsEverything.cpp.obj 2025-06-01T21:12:58.8711484Z [4179/7616] Building CXX object test_jit\CMakeFiles\backend_with_compiler.dir\test_backend_compiler_preprocess.cpp.obj 2025-06-01T21:12:59.1532761Z [4180/7616] Building CXX object test_edge_op_registration\CMakeFiles\unbox_lib.dir\operator_registry.cpp.obj 2025-06-01T21:12:59.4766465Z [4181/7616] Building CXX object test_jit\CMakeFiles\backend_with_compiler.dir\__\__\__\torch\csrc\jit\mobile\profiler_edge.cpp.obj 2025-06-01T21:13:00.3140653Z [4182/7616] Building CUDA object test_cpp_c10d\CMakeFiles\c10d_cuda_test.dir\CUDATest.cu.obj 2025-06-01T21:13:04.2387202Z CUDATest.cu 2025-06-01T21:13:04.2387524Z tmpxft_000014b0_00000000-7_CUDATest.cudafe1.cpp 2025-06-01T21:13:04.2388239Z [4183/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_torch_functions_0.cpp.obj 2025-06-01T21:13:05.1424768Z [4184/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_variable_methods.cpp.obj 2025-06-01T21:13:05.1881377Z [4185/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_4.cpp.obj 2025-06-01T21:13:05.2254732Z [4186/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_1.cpp.obj 2025-06-01T21:13:05.2445567Z [4187/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_0.cpp.obj 2025-06-01T21:13:05.2587871Z [4188/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_3.cpp.obj 2025-06-01T21:13:05.2722834Z [4189/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_2.cpp.obj 2025-06-01T21:13:06.0139424Z [4190/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_torch_functions_1.cpp.obj 2025-06-01T21:13:06.5930768Z [4191/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_fft_functions.cpp.obj 2025-06-01T21:13:06.6080837Z [4192/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_sparse_functions.cpp.obj 2025-06-01T21:13:06.6195446Z [4193/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_linalg_functions.cpp.obj 2025-06-01T21:13:06.6334214Z [4194/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_nn_functions.cpp.obj 2025-06-01T21:13:06.7078970Z [4195/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_nested_functions.cpp.obj 2025-06-01T21:13:07.0474933Z [4196/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\DataLoader.cpp.obj 2025-06-01T21:13:07.2074708Z [4197/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_torch_functions_2.cpp.obj 2025-06-01T21:13:07.3948140Z [4198/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_special_functions.cpp.obj 2025-06-01T21:13:07.6329554Z [4199/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\DeviceAccelerator.cpp.obj 2025-06-01T21:13:07.6484227Z [4200/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_enum_tag.cpp.obj 2025-06-01T21:13:07.7828023Z [4201/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Device.cpp.obj 2025-06-01T21:13:07.8143288Z [4202/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_return_types.cpp.obj 2025-06-01T21:13:08.2162220Z [4203/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Dtype.cpp.obj 2025-06-01T21:13:08.7751712Z [4204/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Layout.cpp.obj 2025-06-01T21:13:08.9017163Z [4205/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\QScheme.cpp.obj 2025-06-01T21:13:08.9085423Z [4206/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\MemoryFormat.cpp.obj 2025-06-01T21:13:09.9598801Z [4207/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\python_dimname.cpp.obj 2025-06-01T21:13:10.1458299Z [4208/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Size.cpp.obj 2025-06-01T21:13:10.7745877Z [4209/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\DynamicTypes.cpp.obj 2025-06-01T21:13:11.2255879Z [4210/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Exceptions.cpp.obj 2025-06-01T21:13:11.3079903Z [4211/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Generator.cpp.obj 2025-06-01T21:13:12.6003684Z [4212/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\PyInterpreter.cpp.obj 2025-06-01T21:13:12.6991404Z [4213/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Module.cpp.obj 2025-06-01T21:13:14.1940803Z [4214/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Storage.cpp.obj 2025-06-01T21:13:14.3823021Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:13:14.3823970Z [4215/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\StorageMethods.cpp.obj 2025-06-01T21:13:14.8460387Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:13:14.8461330Z [4216/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Stream.cpp.obj 2025-06-01T21:13:14.8660288Z [4217/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\StorageSharing.cpp.obj 2025-06-01T21:13:14.9721199Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:13:14.9722168Z [4218/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Event.cpp.obj 2025-06-01T21:13:16.1026263Z [4219/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\TypeInfo.cpp.obj 2025-06-01T21:13:16.2322026Z [4220/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\profiler_python.cpp.obj 2025-06-01T21:13:16.2716614Z [4221/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_anomaly_mode.cpp.obj 2025-06-01T21:13:16.4010908Z [4222/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\api\src\python\init.cpp.obj 2025-06-01T21:13:17.3931212Z [4223/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_cpp_function.cpp.obj 2025-06-01T21:13:17.9038600Z [4224/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\functions\init.cpp.obj 2025-06-01T21:13:18.2628645Z [4225/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\init.cpp.obj 2025-06-01T21:13:18.4053913Z [4226/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_saved_variable_hooks.cpp.obj 2025-06-01T21:13:19.8223357Z [4227/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_hook.cpp.obj 2025-06-01T21:13:19.8932196Z [4228/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_engine.cpp.obj 2025-06-01T21:13:20.6286360Z [4229/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_function.cpp.obj 2025-06-01T21:13:21.0186032Z [4230/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_legacy_variable.cpp.obj 2025-06-01T21:13:21.6515341Z [4231/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_nested_functions_manual.cpp.obj 2025-06-01T21:13:21.8874120Z [4232/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\cache_entry.cpp.obj 2025-06-01T21:13:21.9880010Z [4233/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\cpp_shim.cpp.obj 2025-06-01T21:13:22.1678412Z [4234/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_torch_functions_manual.cpp.obj 2025-06-01T21:13:22.3553497Z [4235/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_variable.cpp.obj 2025-06-01T21:13:22.5330913Z [4236/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_variable_indexing.cpp.obj 2025-06-01T21:13:23.1418539Z [4237/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\eval_frame_cpp.cpp.obj 2025-06-01T21:13:23.3282815Z [4238/7616] Building C object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\eval_frame.c.obj 2025-06-01T21:13:23.3498118Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/utils/python_compat.h(40): warning C4273: '_PyWeakref_ClearRef': inconsistent dll linkage 2025-06-01T21:13:23.3499099Z C:\Jenkins\Miniconda3\include\weakrefobject.h(67): note: see previous definition of '_PyWeakref_ClearRef' 2025-06-01T21:13:23.3500175Z [4239/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\extra_state.cpp.obj 2025-06-01T21:13:23.3685953Z [4240/7616] Building C object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\cpython_defs.c.obj 2025-06-01T21:13:23.4886575Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/utils/python_compat.h(40): warning C4273: '_PyWeakref_ClearRef': inconsistent dll linkage 2025-06-01T21:13:23.4887568Z C:\Jenkins\Miniconda3\include\weakrefobject.h(67): note: see previous definition of '_PyWeakref_ClearRef' 2025-06-01T21:13:23.4888379Z [4241/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\framelocals_mapping.cpp.obj 2025-06-01T21:13:23.5378855Z [4242/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\python_compiled_autograd.cpp.obj 2025-06-01T21:13:23.8999516Z [4243/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\fx\node.cpp.obj 2025-06-01T21:13:24.2002173Z [4244/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\utils.cpp.obj 2025-06-01T21:13:24.7670866Z [4245/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\init.cpp.obj 2025-06-01T21:13:25.0127700Z [4246/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\export\pybind.cpp.obj 2025-06-01T21:13:25.4133886Z [4247/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\aoti_package\pybind.cpp.obj 2025-06-01T21:13:25.8738149Z [4248/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\aoti_runner\pybind.cpp.obj 2025-06-01T21:13:26.6037872Z [4249/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\guards.cpp.obj 2025-06-01T21:13:26.8750545Z [4250/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\mps\Module.cpp.obj 2025-06-01T21:13:26.9565466Z [4251/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\mtia\Module.cpp.obj 2025-06-01T21:13:27.1575615Z [4252/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\resize_storage_bytes.cpp.obj 2025-06-01T21:13:28.1019795Z [4253/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\static_cuda_launcher.cpp.obj 2025-06-01T21:13:28.6282161Z [4254/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\aoti_eager\kernel_holder.cpp.obj 2025-06-01T21:13:28.7766958Z [4255/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\aoti_eager\kernel_meta_info.cpp.obj 2025-06-01T21:13:29.0558453Z [4256/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\functorch\init.cpp.obj 2025-06-01T21:13:29.1508498Z [4257/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\cast_all_constant_to_floating.cpp.obj 2025-06-01T21:13:29.8066347Z [4258/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\deduplicate_initializers.cpp.obj 2025-06-01T21:13:30.5194291Z [4259/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\constant_map.cpp.obj 2025-06-01T21:13:30.5488187Z [4260/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\backends\backend_init.cpp.obj 2025-06-01T21:13:30.8154538Z [4261/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\init.cpp.obj 2025-06-01T21:13:30.8667365Z [4262/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\eliminate_unused_items.cpp.obj 2025-06-01T21:13:31.2158453Z [4263/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx.cpp.obj 2025-06-01T21:13:31.5680890Z [4264/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\constant_fold.cpp.obj 2025-06-01T21:13:31.6136280Z [4265/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\list_model_parameters.cpp.obj 2025-06-01T21:13:32.0164545Z [4266/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\function_substitution.cpp.obj 2025-06-01T21:13:32.2463961Z [4267/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\helper.cpp.obj 2025-06-01T21:13:32.4785404Z [4268/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\peephole.cpp.obj 2025-06-01T21:13:32.5582345Z [4269/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\eval_peephole.cpp.obj 2025-06-01T21:13:32.6911001Z [4270/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\prepare_division_for_onnx.cpp.obj 2025-06-01T21:13:32.7104376Z [4271/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\preprocess_for_onnx.cpp.obj 2025-06-01T21:13:32.9965953Z [4272/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\onnx_log.cpp.obj 2025-06-01T21:13:33.0102525Z [4273/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\scalar_type_analysis.cpp.obj 2025-06-01T21:13:33.6849870Z [4274/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\remove_inplace_ops_for_onnx.cpp.obj 2025-06-01T21:13:33.8112365Z [4275/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\function_extraction.cpp.obj 2025-06-01T21:13:34.0372599Z [4276/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\naming.cpp.obj 2025-06-01T21:13:34.2723185Z [4277/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\fixup_onnx_controlflow.cpp.obj 2025-06-01T21:13:34.7891745Z [4278/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\pattern_conversion\autograd_function_process.cpp.obj 2025-06-01T21:13:34.8112963Z [4279/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\unpack_quantized_weights.cpp.obj 2025-06-01T21:13:34.9862398Z [4280/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\pattern_conversion\common.cpp.obj 2025-06-01T21:13:35.2892342Z [4281/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\pattern_conversion\pattern_encapsulation.cpp.obj 2025-06-01T21:13:35.4181993Z [4282/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\pattern_conversion\pattern_conversion.cpp.obj 2025-06-01T21:13:36.6585884Z [4283/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\shape_type_inference.cpp.obj 2025-06-01T21:13:36.9193692Z [4284/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\pybind_utils.cpp.obj 2025-06-01T21:13:38.6536325Z [4285/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_custom_class.cpp.obj 2025-06-01T21:13:38.7077466Z [4286/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_dict.cpp.obj 2025-06-01T21:13:38.7672041Z [4287/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_arg_flatten.cpp.obj 2025-06-01T21:13:39.0871689Z [4288/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_interpreter.cpp.obj 2025-06-01T21:13:39.2293784Z [4289/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\frontend\tree_views.cpp.obj 2025-06-01T21:13:39.2774264Z [4290/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_ir.cpp.obj 2025-06-01T21:13:40.2947543Z [4291/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_tree_views.cpp.obj 2025-06-01T21:13:40.4533307Z [4292/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_list.cpp.obj 2025-06-01T21:13:40.9000159Z [4293/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_tracer.cpp.obj 2025-06-01T21:13:41.6490767Z [4294/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\monitor\python_init.cpp.obj 2025-06-01T21:13:42.0095815Z [4295/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\multiprocessing\init.cpp.obj 2025-06-01T21:13:42.4698304Z [4296/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\frontend\concrete_module_type.cpp.obj 2025-06-01T21:13:42.4699564Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\xstddef(185): warning C4996: 'pybind11::handle::operator ==': Use obj1.is(obj2) instead 2025-06-01T21:13:42.4701315Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\xutility(4697): note: see reference to function template instantiation 'bool std::equal_to::operator ()(_Ty1,_Ty2) noexcept(false) const' being compiled 2025-06-01T21:13:42.4702524Z with 2025-06-01T21:13:42.4702724Z [ 2025-06-01T21:13:42.4702922Z _Ty1=const pybind11::object &, 2025-06-01T21:13:42.4703274Z _Ty2=const pybind11::object & 2025-06-01T21:13:42.4703533Z ] 2025-06-01T21:13:42.4704802Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\xutility(4714): 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-06-01T21:13:42.4705946Z with 2025-06-01T21:13:42.4706143Z [ 2025-06-01T21:13:42.4706357Z _InIt1=const pybind11::object *, 2025-06-01T21:13:42.4706655Z _InIt2=const pybind11::object *, 2025-06-01T21:13:42.4706957Z _Pr=std::equal_to 2025-06-01T21:13:42.4707208Z ] 2025-06-01T21:13:42.4708407Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vector(1847): note: see reference to function template instantiation 'bool std::equal(const _InIt1,const _InIt1,const _InIt2)' being compiled 2025-06-01T21:13:42.4709644Z with 2025-06-01T21:13:42.4709841Z [ 2025-06-01T21:13:42.4710060Z _InIt1=const pybind11::object *, 2025-06-01T21:13:42.4710468Z _InIt2=const pybind11::object * 2025-06-01T21:13:42.4710762Z ] 2025-06-01T21:13:42.9249330Z 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-06-01T21:13:42.9252942Z [4297/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_sugared_value.cpp.obj 2025-06-01T21:13:43.0002315Z [4298/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\script_init.cpp.obj 2025-06-01T21:13:43.0284396Z [4299/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\runtime\static\init.cpp.obj 2025-06-01T21:13:43.7207654Z [4300/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\profiler\python\combined_traceback.cpp.obj 2025-06-01T21:13:44.6953249Z [4301/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\tensorexpr\tensorexpr_init.cpp.obj 2025-06-01T21:13:45.8748745Z [4302/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\onnx\init.cpp.obj 2025-06-01T21:13:45.9261855Z [4303/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\profiler\python\init.cpp.obj 2025-06-01T21:13:46.6499572Z [4304/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\serialization.cpp.obj 2025-06-01T21:13:46.6959028Z [4305/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\tensor\python_tensor.cpp.obj 2025-06-01T21:13:46.8775474Z [4306/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\init.cpp.obj 2025-06-01T21:13:46.9169422Z [4307/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\device_lazy_init.cpp.obj 2025-06-01T21:13:47.0660647Z [4308/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\invalid_arguments.cpp.obj 2025-06-01T21:13:47.0774793Z [4309/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\object_ptr.cpp.obj 2025-06-01T21:13:47.6147888Z [4310/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\throughput_benchmark.cpp.obj 2025-06-01T21:13:48.0521589Z [4311/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\pyobject_preservation.cpp.obj 2025-06-01T21:13:48.2768471Z [4312/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\python_symnode.cpp.obj 2025-06-01T21:13:48.2863644Z [4313/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\pybind.cpp.obj 2025-06-01T21:13:48.4269569Z [4314/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils.cpp.obj 2025-06-01T21:13:49.1103907Z [4315/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\structseq.cpp.obj 2025-06-01T21:13:49.3315265Z [4316/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_dtypes.cpp.obj 2025-06-01T21:13:49.5756766Z [4317/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_layouts.cpp.obj 2025-06-01T21:13:50.1893845Z [4318/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_memoryformats.cpp.obj 2025-06-01T21:13:50.4119403Z [4319/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_qschemes.cpp.obj 2025-06-01T21:13:50.4661406Z [4320/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\nested.cpp.obj 2025-06-01T21:13:50.5307927Z [4321/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\python_arg_parser.cpp.obj 2025-06-01T21:13:50.7451959Z [4322/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\python_dispatch.cpp.obj 2025-06-01T21:13:51.5631608Z [4323/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_types.cpp.obj 2025-06-01T21:13:51.7264819Z [4324/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\verbose.cpp.obj 2025-06-01T21:13:51.8118288Z [4325/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\disable_torch_function.cpp.obj 2025-06-01T21:13:51.9415293Z [4326/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_apply.cpp.obj 2025-06-01T21:13:52.7187822Z [4327/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cpu\Module.cpp.obj 2025-06-01T21:13:52.9033510Z [4328/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\instruction_counter\Module.cpp.obj 2025-06-01T21:13:53.1346056Z [4329/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\lazy\python\python_util.cpp.obj 2025-06-01T21:13:53.3051419Z [4330/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_list.cpp.obj 2025-06-01T21:13:53.8049753Z [4331/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_new.cpp.obj 2025-06-01T21:13:53.9278670Z [4332/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\itt.cpp.obj 2025-06-01T21:13:54.1073742Z [4333/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_numpy.cpp.obj 2025-06-01T21:13:55.5587182Z [4334/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\lazy\python\init.cpp.obj 2025-06-01T21:13:56.3392807Z [4335/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\__\test\cpp\jit\torch_python_test.cpp.obj 2025-06-01T21:13:57.1620911Z [4336/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\Event.cpp.obj 2025-06-01T21:13:57.6646789Z [4337/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\shared\cudart.cpp.obj 2025-06-01T21:13:57.7192031Z [4338/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\Module.cpp.obj 2025-06-01T21:13:57.7394877Z [4339/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\Stream.cpp.obj 2025-06-01T21:13:57.8249287Z [4340/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\python_comm.cpp.obj 2025-06-01T21:13:57.9872633Z [4341/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\Graph.cpp.obj 2025-06-01T21:13:58.7373482Z [4342/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\GdsFile.cpp.obj 2025-06-01T21:13:58.7586202Z [4343/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\shared\nvtx.cpp.obj 2025-06-01T21:13:58.8337097Z [4344/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\shared\cudnn.cpp.obj 2025-06-01T21:13:59.2072513Z [4345/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\MemPool.cpp.obj 2025-06-01T21:13:59.4689021Z [4346/7616] 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-06-01T21:13:59.4777730Z [4347/7616] 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-06-01T21:13:59.4879007Z [4348/7616] 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-06-01T21:13:59.4934147Z [4349/7616] 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-06-01T21:13:59.6290090Z [4350/7616] 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-06-01T21:13:59.6427165Z [4351/7616] 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-06-01T21:13:59.6485060Z [4352/7616] 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-06-01T21:13:59.6535184Z [4353/7616] 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-06-01T21:13:59.8193669Z [4354/7616] 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-06-01T21:13:59.8278652Z [4355/7616] 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-06-01T21:13:59.8367997Z [4356/7616] 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-06-01T21:13:59.8477525Z [4357/7616] 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-06-01T21:14:00.0384561Z [4358/7616] 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-06-01T21:14:00.0397406Z [4359/7616] 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-06-01T21:14:00.0567362Z [4360/7616] 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-06-01T21:14:00.0627767Z [4361/7616] 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-06-01T21:14:00.2643463Z [4362/7616] 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-06-01T21:14:00.2656094Z [4363/7616] 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-06-01T21:14:00.2668270Z [4364/7616] 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-06-01T21:14:00.2964699Z [4365/7616] 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-06-01T21:14:00.4314075Z [4366/7616] 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-06-01T21:14:00.4326437Z [4367/7616] 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-06-01T21:14:00.4557076Z [4368/7616] 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-06-01T21:14:00.6102090Z [4369/7616] 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-06-01T21:14:00.6262926Z [4370/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-scalar-u1.c.obj 2025-06-01T21:14:00.6444887Z [4371/7616] 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-06-01T21:14:00.6619590Z [4372/7616] 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-06-01T21:14:00.7756168Z [4373/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-scalar-u2.c.obj 2025-06-01T21:14:00.9933995Z [4374/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-scalar-u2.c.obj 2025-06-01T21:14:01.3660307Z [4375/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\utils.cpp.obj 2025-06-01T21:14:01.5079697Z [4376/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-select-u1.c.obj 2025-06-01T21:14:01.5156752Z [4377/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-andxor-u2.c.obj 2025-06-01T21:14:01.5374712Z [4378/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-andxor-u1.c.obj 2025-06-01T21:14:01.5787878Z [4379/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-scalar-u2.c.obj 2025-06-01T21:14:01.5849642Z [4380/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-scalar-u2.c.obj 2025-06-01T21:14:01.6334348Z [4381/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-select-u2.c.obj 2025-06-01T21:14:01.6574115Z [4382/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmul\gen\qs8-vmul-minmax-fp32-scalar-u1.c.obj 2025-06-01T21:14:01.6809744Z [4383/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmul\gen\qs8-vmul-minmax-fp32-scalar-u2.c.obj 2025-06-01T21:14:01.6894708Z [4384/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmulc\gen\qs8-vmulc-minmax-fp32-scalar-u1.c.obj 2025-06-01T21:14:01.7113574Z [4385/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmulc\gen\qs8-vmulc-minmax-fp32-scalar-u2.c.obj 2025-06-01T21:14:01.7591726Z [4386/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\distributed\c10d\python_comm_hook.cpp.obj 2025-06-01T21:14:02.1219102Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:14:02.1220431Z [4387/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:14:02.1582447Z [4388/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:14:02.2298778Z [4389/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:14:02.2312352Z [4390/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:14:02.2324039Z [4391/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:14:02.2401057Z [4392/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:14:02.3012286Z [4393/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:14:02.3194883Z [4394/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:14:02.3989874Z [4395/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:14:02.4045751Z [4396/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:14:02.4201530Z [4397/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:14:02.4372885Z [4398/7616] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\distributed\c10d\init.cpp.obj 2025-06-01T21:14:02.4428637Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:14:02.4430095Z [4399/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:14:02.4441370Z [4400/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:14:02.5036786Z [4401/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:14:02.5924499Z [4402/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:14:02.5974914Z [4403/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:14:02.6143781Z [4404/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:14:02.6440252Z [4405/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:14:02.6513942Z [4406/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:14:02.6608664Z [4407/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:14:02.6947769Z [4408/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:14:02.7526054Z [4409/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:14:02.7539443Z [4410/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:14:02.8053204Z [4411/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:14:02.8319738Z [4412/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p1c-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:14:02.9174078Z [4413/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:14:02.9231095Z [4414/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:14:02.9245736Z [4415/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:14:02.9658574Z [4416/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:14:02.9714098Z [4417/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p1c-minmax-rndnu-scalar.c.obj 2025-06-01T21:14:03.1250284Z [4418/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:14:03.1263859Z [4419/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p2c-minmax-rndnu-scalar.c.obj 2025-06-01T21:14:03.1276671Z [4420/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:14:03.1288978Z [4421/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:14:03.1304651Z [4422/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p4c-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:14:03.1942586Z [4423/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:14:03.2052625Z [4424/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p4c-minmax-rndnu-scalar.c.obj 2025-06-01T21:14:03.2614971Z [4425/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:14:03.3384460Z [4426/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p2c-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:14:03.3494295Z [4427/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:14:03.4238650Z [4428/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x2-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:14:03.4250804Z [4429/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:14:03.4262357Z [4430/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p4c-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:14:03.4273386Z [4431/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-scalar-u2.c.obj 2025-06-01T21:14:03.4284345Z [4432/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-scalar-u3.c.obj 2025-06-01T21:14:03.5118142Z [4433/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x2-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:14:03.6549077Z [4434/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:14:03.6568083Z [4435/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x2-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:14:03.6579389Z [4436/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x2-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:14:03.6589651Z [4437/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:14:03.6600459Z [4438/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x2-minmax-rndnu-scalar.c.obj 2025-06-01T21:14:03.6612139Z [4439/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x2-minmax-rndnu-scalar.c.obj 2025-06-01T21:14:03.6623343Z [4440/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4-minmax-rndnu-scalar.c.obj 2025-06-01T21:14:03.8142948Z [4441/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:14:03.8217921Z [4442/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4-minmax-rndnu-scalar.c.obj 2025-06-01T21:14:03.8300055Z [4443/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:14:03.8311644Z [4444/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x2-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:14:03.8358462Z [4445/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x2-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:14:03.8681524Z [4446/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x2-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:14:03.8694136Z [4447/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:14:03.9517405Z [4448/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:14:03.9796907Z [4449/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:14:03.9808986Z [4450/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x2-minmax-rndnu-scalar.c.obj 2025-06-01T21:14:03.9864989Z [4451/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x2-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:14:03.9921117Z [4452/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4-minmax-rndnu-scalar.c.obj 2025-06-01T21:14:04.0515882Z [4453/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x2-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:14:04.0574800Z [4454/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x2-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:14:04.1883921Z [4455/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x2-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:14:04.2065769Z [4456/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x2-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:14:04.2167001Z [4457/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:14:04.2180229Z [4458/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:14:04.2192114Z [4459/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4-minmax-rndnu-scalar.c.obj 2025-06-01T21:14:04.2205186Z [4460/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x2-minmax-rndnu-scalar.c.obj 2025-06-01T21:14:04.2217018Z [4461/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:14:04.3964104Z [4462/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x2-minmax-rndnu-scalar.c.obj 2025-06-01T21:14:04.3976211Z [4463/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x2-minmax-rndnu-scalar.c.obj 2025-06-01T21:14:04.3987734Z [4464/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:14:04.3998707Z [4465/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:14:04.4010025Z [4466/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x2-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:14:04.4022414Z [4467/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x2-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:14:04.4204214Z [4468/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4-minmax-rndnu-scalar.c.obj 2025-06-01T21:14:04.5603151Z [4469/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:14:04.5652898Z [4470/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x2-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:14:04.5814980Z [4471/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4-minmax-rndnu-scalar.c.obj 2025-06-01T21:14:04.5867694Z [4472/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:14:04.5879186Z [4473/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x2-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:14:04.5936356Z [4474/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x2-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:14:04.5995445Z [4475/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:14:04.7381234Z [4476/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:14:04.7568580Z [4477/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x2-minmax-rndnu-scalar.c.obj 2025-06-01T21:14:04.7618426Z [4478/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4-minmax-rndnu-scalar.c.obj 2025-06-01T21:14:04.7686951Z [4479/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x2-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:14:04.7737144Z [4480/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x2-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:14:04.7953268Z [4481/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x2-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:14:04.8223179Z [4482/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:14:04.8976660Z [4483/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4-minmax-rndnu-scalar.c.obj 2025-06-01T21:14:04.9582533Z [4484/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-scalar-u2.c.obj 2025-06-01T21:14:04.9595990Z [4485/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-scalar-u1.c.obj 2025-06-01T21:14:04.9875414Z [4486/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4-minmax-fp32-scalar-imagic.c.obj 2025-06-01T21:14:04.9887999Z [4487/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4-minmax-fp32-scalar-lrintf.c.obj 2025-06-01T21:14:04.9899767Z [4488/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x2-minmax-rndnu-scalar.c.obj 2025-06-01T21:14:04.9911959Z [4489/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4-minmax-fp32-scalar-fmagic.c.obj 2025-06-01T21:14:05.0710664Z [4490/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-scalar-u2.c.obj 2025-06-01T21:14:05.0795884Z [4491/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-scalar-u2.c.obj 2025-06-01T21:14:05.1123620Z [4492/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-scalar-u2.c.obj 2025-06-01T21:14:05.1367501Z [4493/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-andxor-u1.c.obj 2025-06-01T21:14:05.1420329Z [4494/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-andxor-u2.c.obj 2025-06-01T21:14:05.1437372Z [4495/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-select-u1.c.obj 2025-06-01T21:14:05.1453620Z [4496/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-select-u2.c.obj 2025-06-01T21:14:05.1980431Z [4497/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmul\gen\qu8-vmul-minmax-fp32-scalar-u1.c.obj 2025-06-01T21:14:05.2087191Z [4498/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmul\gen\qu8-vmul-minmax-fp32-scalar-u2.c.obj 2025-06-01T21:14:05.2677406Z [4499/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\s8-ibilinear\gen\s8-ibilinear-scalar-c2.c.obj 2025-06-01T21:14:05.2744863Z [4500/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmulc\gen\qu8-vmulc-minmax-fp32-scalar-u1.c.obj 2025-06-01T21:14:05.2844989Z [4501/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\u8-ibilinear\gen\u8-ibilinear-scalar-c2.c.obj 2025-06-01T21:14:05.2892842Z [4502/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\s8-ibilinear\gen\s8-ibilinear-scalar-c4.c.obj 2025-06-01T21:14:05.2909957Z [4503/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmulc\gen\qu8-vmulc-minmax-fp32-scalar-u2.c.obj 2025-06-01T21:14:05.3620495Z [4504/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\u8-ibilinear\gen\u8-ibilinear-scalar-c4.c.obj 2025-06-01T21:14:05.3888410Z [4505/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-scalar-u1.c.obj 2025-06-01T21:14:05.3948937Z [4506/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-scalar-u16.c.obj 2025-06-01T21:14:05.4251997Z [4507/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-scalar-u2.c.obj 2025-06-01T21:14:05.4263435Z [4508/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-scalar-u8.c.obj 2025-06-01T21:14:05.4275300Z [4509/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x2-gemm-goi-scalar-u2.c.obj 2025-06-01T21:14:05.4572400Z [4510/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x2-gemm-goi-scalar-u4.c.obj 2025-06-01T21:14:05.4961381Z [4511/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x4-gemm-goi-scalar-u4.c.obj 2025-06-01T21:14:05.5015799Z [4512/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8-gemm-goi-scalar-u4.c.obj 2025-06-01T21:14:05.5199437Z [4513/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x16-gemm-goi-scalar-u4.c.obj 2025-06-01T21:14:05.5252939Z [4514/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-1x2-scalar-int.c.obj 2025-06-01T21:14:05.5307686Z [4515/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x32-gemm-goi-scalar-u4.c.obj 2025-06-01T21:14:05.5319600Z [4516/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8c8-gemm-gio-scalar.c.obj 2025-06-01T21:14:05.5975385Z [4517/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-1x4-scalar-int.c.obj 2025-06-01T21:14:05.6096442Z [4518/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-2x2-scalar-int.c.obj 2025-06-01T21:14:05.6109481Z [4519/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-4x1-scalar-int.c.obj 2025-06-01T21:14:05.6162693Z [4520/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-4x2-scalar-int.c.obj 2025-06-01T21:14:05.6222217Z [4521/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-2x1-scalar-int.c.obj 2025-06-01T21:14:05.6766444Z [4522/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-4x4-scalar-int.c.obj 2025-06-01T21:14:05.6824947Z [4523/7616] 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-06-01T21:14:05.7194325Z [4524/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-1x2-scalar-int.c.obj 2025-06-01T21:14:05.7207090Z [4525/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-1x4-scalar-int.c.obj 2025-06-01T21:14:05.7324997Z [4526/7616] 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-06-01T21:14:05.7373412Z [4527/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-2x1-scalar-int.c.obj 2025-06-01T21:14:05.7876235Z [4528/7616] 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-06-01T21:14:05.8045116Z [4529/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-2x2-scalar-int.c.obj 2025-06-01T21:14:05.8197124Z [4530/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-4x1-scalar-int.c.obj 2025-06-01T21:14:05.8266754Z [4531/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-4x2-scalar-int.c.obj 2025-06-01T21:14:05.8409815Z [4532/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-4x4-scalar-int.c.obj 2025-06-01T21:14:05.8423886Z [4533/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-2x1-scalar.c.obj 2025-06-01T21:14:05.8476973Z [4534/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-1x4-scalar.c.obj 2025-06-01T21:14:05.9209229Z [4535/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-2x4-scalar.c.obj 2025-06-01T21:14:05.9222067Z [4536/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-2x2-scalar.c.obj 2025-06-01T21:14:05.9384921Z [4537/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-4x2-scalar.c.obj 2025-06-01T21:14:05.9428867Z [4538/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-4x4-scalar.c.obj 2025-06-01T21:14:05.9506955Z [4539/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-2c1s1r-gemm-scalar-int.c.obj 2025-06-01T21:14:05.9557086Z [4540/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-4x1-scalar.c.obj 2025-06-01T21:14:05.9808938Z [4541/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-2c1s1r-gemm-scalar-float.c.obj 2025-06-01T21:14:06.0936706Z [4542/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-2c2s1r-gemm-scalar-int.c.obj 2025-06-01T21:14:06.0949769Z [4543/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-2c2s1r-gemm-scalar-float.c.obj 2025-06-01T21:14:06.0962946Z [4544/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-4c1s1r-gemm-scalar-float.c.obj 2025-06-01T21:14:06.0975569Z [4545/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-4c1s1r-gemm-scalar-int.c.obj 2025-06-01T21:14:06.0988491Z [4546/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-4c4s1r-gemm-scalar-float.c.obj 2025-06-01T21:14:06.1003396Z [4547/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-4c4s1r-gemm-scalar-int.c.obj 2025-06-01T21:14:06.1771602Z [4548/7616] 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-06-01T21:14:06.1944642Z [4549/7616] 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-06-01T21:14:06.2055545Z [4550/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-gio-scalar.c.obj 2025-06-01T21:14:06.2068144Z [4551/7616] 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-06-01T21:14:06.2082165Z [4552/7616] 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-06-01T21:14:06.2128050Z [4553/7616] 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-06-01T21:14:06.2139881Z [4554/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x4-gemm-gio-scalar.c.obj 2025-06-01T21:14:06.2858585Z [4555/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packx\x32-packx-3x-scalar.c.obj 2025-06-01T21:14:06.2871655Z [4556/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packx\x32-packx-2x-scalar.c.obj 2025-06-01T21:14:06.3149113Z [4557/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-scalar.c.obj 2025-06-01T21:14:06.3161791Z [4558/7616] 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-06-01T21:14:06.3211765Z [4559/7616] 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-06-01T21:14:06.3224157Z [4560/7616] 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-06-01T21:14:06.3274221Z [4561/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-scalar.c.obj 2025-06-01T21:14:06.3626152Z [4562/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packx\x32-packx-4x-scalar.c.obj 2025-06-01T21:14:06.3873246Z [4563/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-1x2-scalar-float.c.obj 2025-06-01T21:14:06.4197476Z [4564/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-1x4-scalar-float.c.obj 2025-06-01T21:14:06.4308700Z [4565/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x1-scalar-int.c.obj 2025-06-01T21:14:06.4320751Z [4566/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-1x4-scalar-int.c.obj 2025-06-01T21:14:06.4332045Z [4567/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x1-scalar-float.c.obj 2025-06-01T21:14:06.4468201Z [4568/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-1x2-scalar-int.c.obj 2025-06-01T21:14:06.4692241Z [4569/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x2-scalar-float.c.obj 2025-06-01T21:14:06.5240737Z [4570/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x4-scalar-float.c.obj 2025-06-01T21:14:06.5252681Z [4571/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x2-scalar-int.c.obj 2025-06-01T21:14:06.5303776Z [4572/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x1-scalar-int.c.obj 2025-06-01T21:14:06.5315674Z [4573/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x2-scalar-float.c.obj 2025-06-01T21:14:06.5639974Z [4574/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-scalar-float.c.obj 2025-06-01T21:14:06.5818270Z [4575/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x1-scalar-float.c.obj 2025-06-01T21:14:06.5894269Z [4576/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x2-scalar-int.c.obj 2025-06-01T21:14:06.6619272Z [4577/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-2c1s1r-gemm-scalar-int.c.obj 2025-06-01T21:14:06.6696827Z [4578/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-2c2s1r-gemm-scalar-int.c.obj 2025-06-01T21:14:06.7175630Z [4579/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-4c1s1r-gemm-scalar-float.c.obj 2025-06-01T21:14:06.7189400Z [4580/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-2c2s1r-gemm-scalar-float.c.obj 2025-06-01T21:14:06.7201097Z [4581/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-scalar-int.c.obj 2025-06-01T21:14:06.7212687Z [4582/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-4c1s1r-gemm-scalar-int.c.obj 2025-06-01T21:14:06.7275940Z [4583/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-2c1s1r-gemm-scalar-float.c.obj 2025-06-01T21:14:06.7769403Z [4584/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-4c4s1r-gemm-scalar-float.c.obj 2025-06-01T21:14:06.8353123Z [4585/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x1-scalar-int.c.obj 2025-06-01T21:14:06.8367140Z [4586/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-1x2-scalar-float.c.obj 2025-06-01T21:14:06.8470362Z [4587/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-scalar-float.c.obj 2025-06-01T21:14:06.8482208Z [4588/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x1-scalar-float.c.obj 2025-06-01T21:14:06.8638015Z [4589/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-1x2-scalar-int.c.obj 2025-06-01T21:14:06.8726144Z [4590/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-4c4s1r-gemm-scalar-int.c.obj 2025-06-01T21:14:06.8911404Z [4591/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-scalar-int.c.obj 2025-06-01T21:14:06.9578044Z [4592/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x2-scalar-float.c.obj 2025-06-01T21:14:06.9590631Z [4593/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-conv-hwc2chw\f32-conv-hwc2chw-3x3s2p1c3x4-sse-1x1.c.obj 2025-06-01T21:14:06.9601775Z [4594/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x1-scalar-int.c.obj 2025-06-01T21:14:06.9718638Z [4595/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p4c-minmax-sse-acc2.c.obj 2025-06-01T21:14:06.9809659Z [4596/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x1-scalar-float.c.obj 2025-06-01T21:14:07.0178992Z [4597/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p4c-minmax-sse.c.obj 2025-06-01T21:14:07.0277595Z [4598/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-sse-acc2.c.obj 2025-06-01T21:14:07.0652531Z [4599/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p4c-minmax-sse-acc2.c.obj 2025-06-01T21:14:07.0708437Z [4600/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-sse-acc2.c.obj 2025-06-01T21:14:07.0722318Z [4601/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p4c-minmax-sse.c.obj 2025-06-01T21:14:07.1084922Z [4602/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l4c4s4r-minmax-sse-acc2.c.obj 2025-06-01T21:14:07.1147628Z [4603/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l4c4s4r-minmax-sse.c.obj 2025-06-01T21:14:07.1647043Z [4604/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c4s4r-minmax-sse-acc2.c.obj 2025-06-01T21:14:07.1702734Z [4605/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c4s4r-minmax-sse.c.obj 2025-06-01T21:14:07.2006793Z [4606/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c4s4r-minmax-sse-acc2.c.obj 2025-06-01T21:14:07.2020626Z [4607/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l4c4s4r-minmax-sse-acc2.c.obj 2025-06-01T21:14:07.2297418Z [4608/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c4s4r-minmax-sse.c.obj 2025-06-01T21:14:07.2583806Z [4609/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l4c4s4r-minmax-sse.c.obj 2025-06-01T21:14:07.2649625Z [4610/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l8c4s4r-minmax-sse-acc2.c.obj 2025-06-01T21:14:07.3049507Z [4611/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l8c4s4r-minmax-sse.c.obj 2025-06-01T21:14:07.3360817Z [4612/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l16c4s4r-minmax-sse.c.obj 2025-06-01T21:14:07.3789761Z [4613/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l4c4s4r-minmax-sse-acc2.c.obj 2025-06-01T21:14:07.3804301Z [4614/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l4c4s4r-minmax-sse.c.obj 2025-06-01T21:14:07.3990519Z [4615/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l16c4s4r-minmax-sse-acc2.c.obj 2025-06-01T21:14:07.4674346Z [4616/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p4c-minmax-sse-acc2.c.obj 2025-06-01T21:14:07.4730181Z [4617/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l8c4s4r-minmax-sse.c.obj 2025-06-01T21:14:07.4924412Z [4618/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l8c4s4r-minmax-sse-acc2.c.obj 2025-06-01T21:14:08.1063582Z [4619/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l16c4s4r-minmax-sse-acc2.c.obj 2025-06-01T21:14:08.1556439Z [4620/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-sse-acc2.c.obj 2025-06-01T21:14:08.1568772Z [4621/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-sse-acc2.c.obj 2025-06-01T21:14:08.1580359Z [4622/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p4c-minmax-sse.c.obj 2025-06-01T21:14:08.1592175Z [4623/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p4c-minmax-sse.c.obj 2025-06-01T21:14:08.1737632Z [4624/7616] 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-06-01T21:14:08.2134526Z [4625/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p4c-minmax-sse-acc2.c.obj 2025-06-01T21:14:08.2232573Z [4626/7616] 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-06-01T21:14:08.2997982Z [4627/7616] 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-06-01T21:14:08.3011659Z [4628/7616] 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-06-01T21:14:08.3061960Z [4629/7616] 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-06-01T21:14:08.3181229Z [4630/7616] 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-06-01T21:14:08.3280392Z [4631/7616] 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-06-01T21:14:08.3329536Z [4632/7616] 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-06-01T21:14:08.3632492Z [4633/7616] 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-06-01T21:14:08.4369495Z [4634/7616] 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-06-01T21:14:08.4381989Z [4635/7616] 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-06-01T21:14:08.4433375Z [4636/7616] 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-06-01T21:14:08.4482953Z [4637/7616] 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-06-01T21:14:08.4534703Z [4638/7616] 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-06-01T21:14:08.5328185Z [4639/7616] 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-06-01T21:14:08.5454999Z [4640/7616] 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-06-01T21:14:08.6247813Z [4641/7616] 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-06-01T21:14:08.6307198Z [4642/7616] 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-06-01T21:14:08.6319703Z [4643/7616] 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-06-01T21:14:08.6333709Z [4644/7616] 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-06-01T21:14:08.6383669Z [4645/7616] 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-06-01T21:14:08.6510843Z [4646/7616] 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-06-01T21:14:08.6662499Z [4647/7616] 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-06-01T21:14:08.7974043Z [4648/7616] 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-06-01T21:14:08.8078440Z [4649/7616] 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-06-01T21:14:08.8090680Z [4650/7616] 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-06-01T21:14:08.8283780Z [4651/7616] 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-06-01T21:14:08.8320189Z [4652/7616] 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-06-01T21:14:08.8348846Z [4653/7616] 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-06-01T21:14:08.8545786Z [4654/7616] 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-06-01T21:14:08.9663829Z [4655/7616] 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-06-01T21:14:08.9729126Z [4656/7616] 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-06-01T21:14:08.9744116Z [4657/7616] 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-06-01T21:14:08.9857655Z [4658/7616] 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-06-01T21:14:08.9869898Z [4659/7616] 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-06-01T21:14:09.0179539Z [4660/7616] 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-06-01T21:14:09.0226442Z [4661/7616] 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-06-01T21:14:09.1589690Z [4662/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x8s4-minmax-sse.c.obj 2025-06-01T21:14:09.2592438Z [4663/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x8-minmax-sse-dup.c.obj 2025-06-01T21:14:09.2606510Z [4664/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x8-minmax-sse-load1.c.obj 2025-06-01T21:14:09.2618402Z [4665/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x8-minmax-sse-dup.c.obj 2025-06-01T21:14:09.2628618Z [4666/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x8-minmax-sse-dup.c.obj 2025-06-01T21:14:09.2641659Z [4667/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x8s4-minmax-sse.c.obj 2025-06-01T21:14:09.2654061Z [4668/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x8s4-minmax-sse.c.obj 2025-06-01T21:14:09.3422260Z [4669/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x8-minmax-sse-dup.c.obj 2025-06-01T21:14:09.4310894Z [4670/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x8-minmax-sse-load1.c.obj 2025-06-01T21:14:09.4390932Z [4671/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x8s4-minmax-sse.c.obj 2025-06-01T21:14:09.4406600Z [4672/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x8-minmax-sse-dup.c.obj 2025-06-01T21:14:09.4457225Z [4673/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x2c4-minmax-sse.c.obj 2025-06-01T21:14:09.4508086Z [4674/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x8s4-minmax-sse.c.obj 2025-06-01T21:14:09.4624710Z [4675/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x8-minmax-sse-load1.c.obj 2025-06-01T21:14:09.4988858Z [4676/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x8-minmax-sse-dup.c.obj 2025-06-01T21:14:09.5930266Z [4677/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x8s4-minmax-sse.c.obj 2025-06-01T21:14:09.5942750Z [4678/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x8s4-minmax-sse.c.obj 2025-06-01T21:14:09.5988811Z [4679/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x8-minmax-sse-load1.c.obj 2025-06-01T21:14:09.6037656Z [4680/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x8-minmax-sse-load1.c.obj 2025-06-01T21:14:09.6156819Z [4681/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x8-minmax-sse-dup.c.obj 2025-06-01T21:14:09.6272787Z [4682/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x8-minmax-sse-dup.c.obj 2025-06-01T21:14:09.6816573Z [4683/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x8-minmax-sse-load1.c.obj 2025-06-01T21:14:09.7194544Z [4684/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x8s4-minmax-sse.c.obj 2025-06-01T21:14:09.7286337Z [4685/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x8-minmax-sse-dup.c.obj 2025-06-01T21:14:09.7368501Z [4686/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x8-minmax-sse-load1.c.obj 2025-06-01T21:14:09.7452787Z [4687/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x8s4-minmax-sse.c.obj 2025-06-01T21:14:09.7501217Z [4688/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x8-minmax-sse-dup.c.obj 2025-06-01T21:14:09.7596821Z [4689/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x8-minmax-sse-load1.c.obj 2025-06-01T21:14:09.8059003Z [4690/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x8s4-minmax-sse.c.obj 2025-06-01T21:14:09.9380171Z [4691/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear-chw\gen\f32-ibilinear-chw-sse-p4.c.obj 2025-06-01T21:14:09.9393291Z [4692/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear\gen\f32-ibilinear-sse-c4.c.obj 2025-06-01T21:14:09.9755290Z [4693/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-1x8-minmax-sse-dup.c.obj 2025-06-01T21:14:09.9881277Z [4694/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-1x8s4-minmax-sse.c.obj 2025-06-01T21:14:09.9893094Z [4695/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x8-minmax-sse-load1.c.obj 2025-06-01T21:14:09.9904190Z [4696/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x8-minmax-sse-dup.c.obj 2025-06-01T21:14:10.0074149Z [4697/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x8s4-minmax-sse.c.obj 2025-06-01T21:14:10.1060180Z [4698/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x8-minmax-sse-load1.c.obj 2025-06-01T21:14:10.1072134Z [4699/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x8-minmax-sse-dup.c.obj 2025-06-01T21:14:10.1154070Z [4700/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x2c4-minmax-sse.c.obj 2025-06-01T21:14:10.1166728Z [4701/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x8-minmax-sse-dup.c.obj 2025-06-01T21:14:10.1179387Z [4702/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x8s4-minmax-sse.c.obj 2025-06-01T21:14:10.1192293Z [4703/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x8s4-minmax-sse.c.obj 2025-06-01T21:14:10.1355843Z [4704/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x8-minmax-sse-dup.c.obj 2025-06-01T21:14:10.2302292Z [4705/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x8s4-minmax-sse.c.obj 2025-06-01T21:14:10.2352045Z [4706/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x8-minmax-sse-load1.c.obj 2025-06-01T21:14:10.2428069Z [4707/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-sse-u4.c.obj 2025-06-01T21:14:10.2439931Z [4708/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-sse-c32.c.obj 2025-06-01T21:14:10.2489233Z [4709/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-sse-c64.c.obj 2025-06-01T21:14:10.2553889Z [4710/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-4x8-minmax-sse.c.obj 2025-06-01T21:14:10.2566193Z [4711/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-sse-u8-acc2.c.obj 2025-06-01T21:14:10.4063168Z [4712/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-sse-u12-acc3.c.obj 2025-06-01T21:14:10.4075329Z [4713/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u12-acc3.c.obj 2025-06-01T21:14:10.4086026Z [4714/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u16-acc4.c.obj 2025-06-01T21:14:10.4096447Z [4715/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u4.c.obj 2025-06-01T21:14:10.4107443Z [4716/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u16-acc2.c.obj 2025-06-01T21:14:10.4118786Z [4717/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u8-acc2.c.obj 2025-06-01T21:14:10.4130576Z [4718/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-sse-u16-acc2.c.obj 2025-06-01T21:14:10.5604793Z [4719/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-sse-u8-acc2.c.obj 2025-06-01T21:14:10.5617555Z [4720/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-sse-u12-acc3.c.obj 2025-06-01T21:14:10.5629307Z [4721/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-sse-u16-acc2.c.obj 2025-06-01T21:14:10.5695004Z [4722/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-sse-u4.c.obj 2025-06-01T21:14:10.5707586Z [4723/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-sse-u8-acc2.c.obj 2025-06-01T21:14:10.5720832Z [4724/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-sse-u12-acc3.c.obj 2025-06-01T21:14:10.5786967Z [4725/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-sse-u4.c.obj 2025-06-01T21:14:10.6616127Z [4726/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-sse-u16-acc2.c.obj 2025-06-01T21:14:10.6691239Z [4727/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-16x1-minmax-sse.c.obj 2025-06-01T21:14:10.6860358Z [4728/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-8x1-minmax-sse.c.obj 2025-06-01T21:14:10.6875264Z [4729/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-4x1-minmax-sse.c.obj 2025-06-01T21:14:10.6891354Z [4730/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-sse-u4.c.obj 2025-06-01T21:14:10.6906715Z [4731/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-sse-u4.c.obj 2025-06-01T21:14:10.6959186Z [4732/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-sse-u4.c.obj 2025-06-01T21:14:10.7793441Z [4733/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-sse-u4.c.obj 2025-06-01T21:14:10.8079235Z [4734/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-sse-u4.c.obj 2025-06-01T21:14:10.8134417Z [4735/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-sse-u4.c.obj 2025-06-01T21:14:10.8147640Z [4736/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-sse-u4.c.obj 2025-06-01T21:14:10.9051550Z [4737/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-sse-u4.c.obj 2025-06-01T21:14:10.9116151Z [4738/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-sse-u4.c.obj 2025-06-01T21:14:10.9134768Z [4739/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-sse-u4.c.obj 2025-06-01T21:14:10.9217480Z [4740/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-sse-u4.c.obj 2025-06-01T21:14:10.9757907Z [4741/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-sse-u4.c.obj 2025-06-01T21:14:10.9884922Z [4742/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-sse-u4.c.obj 2025-06-01T21:14:10.9898278Z [4743/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-sse-u4.c.obj 2025-06-01T21:14:11.0646549Z [4744/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-sse-u4.c.obj 2025-06-01T21:14:11.0702342Z [4745/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-sse-u4.c.obj 2025-06-01T21:14:11.0760948Z [4746/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-sse-u4.c.obj 2025-06-01T21:14:11.0941640Z [4747/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-sse-u4.c.obj 2025-06-01T21:14:11.1551344Z [4748/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-sse-u12.c.obj 2025-06-01T21:14:11.1612182Z [4749/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-sse-u4.c.obj 2025-06-01T21:14:11.2160185Z [4750/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-sse-u8.c.obj 2025-06-01T21:14:11.2232339Z [4751/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-sse-u4.c.obj 2025-06-01T21:14:11.2322712Z [4752/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-sse-u16.c.obj 2025-06-01T21:14:11.2550836Z [4753/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vmulcaddc\gen\f32-vmulcaddc-c8-minmax-sse-2x.c.obj 2025-06-01T21:14:11.2564845Z [4754/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-sse-u4.c.obj 2025-06-01T21:14:11.2659818Z [4755/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-sse-rsqrt-u4.c.obj 2025-06-01T21:14:11.2673898Z [4756/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-sse-rsqrt-u16.c.obj 2025-06-01T21:14:11.3419928Z [4757/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-rsqrt-u4.c.obj 2025-06-01T21:14:11.3437866Z [4758/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-sqrt-u4.c.obj 2025-06-01T21:14:11.3454209Z [4759/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-rsqrt-u8.c.obj 2025-06-01T21:14:11.3683246Z [4760/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packx\x32-packx-4x-sse.c.obj 2025-06-01T21:14:11.4095310Z [4761/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-sqrt-u8.c.obj 2025-06-01T21:14:11.4611597Z [4762/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int16-u8.c.obj 2025-06-01T21:14:11.4625481Z [4763/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-sqrt-u16.c.obj 2025-06-01T21:14:11.5264098Z [4764/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int16-u16.c.obj 2025-06-01T21:14:11.5331051Z [4765/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int32-u16.c.obj 2025-06-01T21:14:11.5344726Z [4766/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int32-u8.c.obj 2025-06-01T21:14:11.5357314Z [4767/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int16-u24.c.obj 2025-06-01T21:14:11.5640740Z [4768/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int32-u32.c.obj 2025-06-01T21:14:11.5693413Z [4769/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int32-u24.c.obj 2025-06-01T21:14:11.5706268Z [4770/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vunary\gen\f16-vabs-sse2-u8.c.obj 2025-06-01T21:14:11.6972749Z [4771/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse2-u8.c.obj 2025-06-01T21:14:11.7022283Z [4772/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse2-u24.c.obj 2025-06-01T21:14:11.7035556Z [4773/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse2-u24.c.obj 2025-06-01T21:14:11.7085176Z [4774/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse2-u8.c.obj 2025-06-01T21:14:11.7098330Z [4775/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse2-u16.c.obj 2025-06-01T21:14:11.7112082Z [4776/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vunary\gen\f16-vneg-sse2-u8.c.obj 2025-06-01T21:14:11.7304925Z [4777/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse2-u32.c.obj 2025-06-01T21:14:11.8010337Z [4778/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-sse2-u8.c.obj 2025-06-01T21:14:11.8059954Z [4779/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-sse2-u16.c.obj 2025-06-01T21:14:11.8071603Z [4780/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-sse2-u24.c.obj 2025-06-01T21:14:11.8943327Z [4781/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-sse2-rr2-p5-u16-acc4.c.obj 2025-06-01T21:14:11.8995829Z [4782/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-sse2-rr2-p5-u8-acc2.c.obj 2025-06-01T21:14:11.9007399Z [4783/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-sse2-rr2-p5-u4.c.obj 2025-06-01T21:14:11.9165699Z [4784/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-lut16-p3-u4.c.obj 2025-06-01T21:14:11.9544835Z [4785/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-sse2-u4.c.obj 2025-06-01T21:14:11.9559236Z [4786/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-sse2-u4.c.obj 2025-06-01T21:14:11.9572486Z [4787/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-sse2-u4.c.obj 2025-06-01T21:14:12.0266500Z [4788/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-lut16-p3-u8.c.obj 2025-06-01T21:14:12.0331197Z [4789/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-p6-u4.c.obj 2025-06-01T21:14:12.0343779Z [4790/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-lut16-p3-u16.c.obj 2025-06-01T21:14:12.0392344Z [4791/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-p6-u8.c.obj 2025-06-01T21:14:12.1069766Z [4792/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-sse2-u4.c.obj 2025-06-01T21:14:12.1144498Z [4793/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-p6-u12.c.obj 2025-06-01T21:14:12.1157484Z [4794/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-p6-u16.c.obj 2025-06-01T21:14:12.1827698Z [4795/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-sse2-u4.c.obj 2025-06-01T21:14:12.1895595Z [4796/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-sse2-u4.c.obj 2025-06-01T21:14:12.1908421Z [4797/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-sse2-u4.c.obj 2025-06-01T21:14:12.1968187Z [4798/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-sse2-u8.c.obj 2025-06-01T21:14:12.2673704Z [4799/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-sse2-u4.c.obj 2025-06-01T21:14:12.2725803Z [4800/7616] 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-06-01T21:14:12.2880676Z [4801/7616] 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-06-01T21:14:12.3788223Z [4802/7616] 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-06-01T21:14:12.3800976Z [4803/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-p5-div-u12.c.obj 2025-06-01T21:14:12.3979882Z [4804/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-p5-div-u4.c.obj 2025-06-01T21:14:12.4032352Z [4805/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-p5-div-u16.c.obj 2025-06-01T21:14:12.4674006Z [4806/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-p5-div-u8.c.obj 2025-06-01T21:14:12.4745691Z [4807/7616] 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-06-01T21:14:12.5546622Z [4808/7616] 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-06-01T21:14:12.5595551Z [4809/7616] 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-06-01T21:14:12.5659274Z [4810/7616] 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-06-01T21:14:12.5713478Z [4811/7616] 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-06-01T21:14:12.5841378Z [4812/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vtanh\gen\f32-vtanh-sse2-rational-9-8-nr.c.obj 2025-06-01T21:14:12.5936365Z [4813/7616] 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-06-01T21:14:12.6058256Z [4814/7616] 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-06-01T21:14:12.6723402Z [4815/7616] 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-06-01T21:14:12.6811115Z [4816/7616] 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-06-01T21:14:12.7333710Z [4817/7616] 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-06-01T21:14:12.7416464Z [4818/7616] 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-06-01T21:14:12.7466037Z [4819/7616] 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-06-01T21:14:12.7514997Z [4820/7616] 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-06-01T21:14:12.7911134Z [4821/7616] 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-06-01T21:14:12.8855075Z [4822/7616] 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-06-01T21:14:12.8991323Z [4823/7616] 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-06-01T21:14:12.9004012Z [4824/7616] 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-06-01T21:14:12.9016023Z [4825/7616] 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-06-01T21:14:12.9066138Z [4826/7616] 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-06-01T21:14:12.9148386Z [4827/7616] 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-06-01T21:14:12.9397861Z [4828/7616] 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-06-01T21:14:12.9900239Z [4829/7616] 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-06-01T21:14:13.0967150Z [4830/7616] 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-06-01T21:14:13.1140827Z [4831/7616] 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-06-01T21:14:13.1196892Z [4832/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-06-01T21:14:13.1259601Z [4833/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-06-01T21:14:13.1316427Z [4834/7616] 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-06-01T21:14:13.1416799Z [4835/7616] 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-06-01T21:14:13.1598855Z [4836/7616] 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-06-01T21:14:13.2769261Z [4837/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-06-01T21:14:13.2782597Z [4838/7616] 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-06-01T21:14:13.2794160Z [4839/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-06-01T21:14:13.2806374Z [4840/7616] 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-06-01T21:14:13.3357514Z [4841/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-06-01T21:14:13.3370881Z [4842/7616] 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-06-01T21:14:13.3419072Z [4843/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-06-01T21:14:13.3923252Z [4844/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-sse2-mul16.c.obj 2025-06-01T21:14:13.3981745Z [4845/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-sse2-mul16.c.obj 2025-06-01T21:14:13.3995432Z [4846/7616] 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-06-01T21:14:13.4103213Z [4847/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-sse2-mul16.c.obj 2025-06-01T21:14:13.5088144Z [4848/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse2-u8.c.obj 2025-06-01T21:14:13.5348208Z [4849/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-sse2-mul16.c.obj 2025-06-01T21:14:13.5363978Z [4850/7616] 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-06-01T21:14:13.5727192Z [4851/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse2-u16.c.obj 2025-06-01T21:14:13.5740481Z [4852/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse2-u24.c.obj 2025-06-01T21:14:13.5865920Z [4853/7616] 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-06-01T21:14:13.5928121Z [4854/7616] 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-06-01T21:14:13.6726982Z [4855/7616] 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-06-01T21:14:13.6909288Z [4856/7616] 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-06-01T21:14:13.6974030Z [4857/7616] 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-06-01T21:14:13.7543969Z [4858/7616] 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-06-01T21:14:13.7601031Z [4859/7616] 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-06-01T21:14:13.7618925Z [4860/7616] 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-06-01T21:14:13.7634362Z [4861/7616] 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-06-01T21:14:13.8318298Z [4862/7616] 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-06-01T21:14:13.8803233Z [4863/7616] 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-06-01T21:14:13.8872666Z [4864/7616] 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-06-01T21:14:13.9346036Z [4865/7616] 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-06-01T21:14:13.9363403Z [4866/7616] 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-06-01T21:14:13.9424455Z [4867/7616] 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-06-01T21:14:13.9436600Z [4868/7616] 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-06-01T21:14:14.0033757Z [4869/7616] 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-06-01T21:14:14.0586943Z [4870/7616] 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-06-01T21:14:14.0721440Z [4871/7616] 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-06-01T21:14:14.1176742Z [4872/7616] 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-06-01T21:14:14.1219090Z [4873/7616] 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-06-01T21:14:14.1358857Z [4874/7616] 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-06-01T21:14:14.1595360Z [4875/7616] 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-06-01T21:14:14.1690814Z [4876/7616] 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-06-01T21:14:14.2441703Z [4877/7616] 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-06-01T21:14:14.2455346Z [4878/7616] 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-06-01T21:14:14.2502772Z [4879/7616] 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-06-01T21:14:14.2614000Z [4880/7616] 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-06-01T21:14:14.3441114Z [4881/7616] 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-06-01T21:14:14.3507488Z [4882/7616] 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-06-01T21:14:14.3605379Z [4883/7616] 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-06-01T21:14:14.4337230Z [4884/7616] 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-06-01T21:14:14.4523812Z [4885/7616] 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-06-01T21:14:14.4536598Z [4886/7616] 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-06-01T21:14:14.4548540Z [4887/7616] 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-06-01T21:14:14.4971911Z [4888/7616] 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-06-01T21:14:14.5028703Z [4889/7616] 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-06-01T21:14:14.5089648Z [4890/7616] 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-06-01T21:14:14.5679389Z [4891/7616] 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-06-01T21:14:14.5727960Z [4892/7616] 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-06-01T21:14:14.5797058Z [4893/7616] 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-06-01T21:14:14.5989429Z [4894/7616] 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-06-01T21:14:14.7560609Z [4895/7616] 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-06-01T21:14:14.7677474Z [4896/7616] 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-06-01T21:14:14.7689391Z [4897/7616] 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-06-01T21:14:14.7701548Z [4898/7616] 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-06-01T21:14:14.7714195Z [4899/7616] 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-06-01T21:14:14.7725978Z [4900/7616] 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-06-01T21:14:14.7784593Z [4901/7616] 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-06-01T21:14:14.9043950Z [4902/7616] 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-06-01T21:14:14.9097716Z [4903/7616] 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-06-01T21:14:14.9109916Z [4904/7616] 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-06-01T21:14:14.9122669Z [4905/7616] 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-06-01T21:14:14.9175324Z [4906/7616] 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-06-01T21:14:14.9188945Z [4907/7616] 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-06-01T21:14:14.9203167Z [4908/7616] 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-06-01T21:14:15.0358036Z [4909/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse2-mul16-ld64-u16.c.obj 2025-06-01T21:14:15.0371871Z [4910/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse2-mul16-ld64-u32.c.obj 2025-06-01T21:14:15.0494269Z [4911/7616] 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-06-01T21:14:15.0506138Z [4912/7616] 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-06-01T21:14:15.0518217Z [4913/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse2-mul16-ld64-u16.c.obj 2025-06-01T21:14:15.0531506Z [4914/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse2-mul16-ld64-u24.c.obj 2025-06-01T21:14:15.0599952Z [4915/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse2-mul16-ld64-u24.c.obj 2025-06-01T21:14:15.2473628Z [4916/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-sse2-u16.c.obj 2025-06-01T21:14:15.2519465Z [4917/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse2-mul16-ld64-u32.c.obj 2025-06-01T21:14:15.2623964Z [4918/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-06-01T21:14:15.2727337Z [4919/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse2-u16.c.obj 2025-06-01T21:14:15.3335377Z [4920/7616] 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-06-01T21:14:15.3351241Z [4921/7616] 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-06-01T21:14:15.3564060Z [4922/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-06-01T21:14:15.4603667Z [4923/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-06-01T21:14:15.4670341Z [4924/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-06-01T21:14:15.4746549Z [4925/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-06-01T21:14:15.4761106Z [4926/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-06-01T21:14:15.4999046Z [4927/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse2-u8.c.obj 2025-06-01T21:14:15.5137427Z [4928/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-sse2-mul16.c.obj 2025-06-01T21:14:15.5250102Z [4929/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-sse2-mul16.c.obj 2025-06-01T21:14:15.5771603Z [4930/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse2-u16.c.obj 2025-06-01T21:14:15.5845959Z [4931/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse2-u24.c.obj 2025-06-01T21:14:15.5941419Z [4932/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:14:15.6114967Z [4933/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:14:15.6247996Z [4934/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:14:15.7724032Z [4935/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:14:15.7847812Z [4936/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:14:15.7860284Z [4937/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:14:15.7871389Z [4938/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:14:15.7882755Z [4939/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:14:15.8051685Z [4940/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:14:15.8100918Z [4941/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:14:15.9305177Z [4942/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:14:16.0959194Z [4943/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:14:16.0971552Z [4944/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:14:16.0982892Z [4945/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:14:16.0994706Z [4946/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:14:16.1005797Z [4947/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:14:16.1019018Z [4948/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:14:16.2234222Z [4949/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:14:16.2285072Z [4950/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:14:16.2343891Z [4951/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:14:16.2355835Z [4952/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:14:16.2367105Z [4953/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:14:16.2415981Z [4954/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:14:16.3088618Z [4955/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:14:16.3832182Z [4956/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:14:16.3846988Z [4957/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:14:16.3894408Z [4958/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:14:16.4042043Z [4959/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:14:16.4209709Z [4960/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:14:16.4939956Z [4961/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:14:16.5017527Z [4962/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:14:16.5037682Z [4963/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:14:16.5124972Z [4964/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:14:16.5191032Z [4965/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:14:16.5259651Z [4966/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:14:16.6046802Z [4967/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:14:16.6059699Z [4968/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:14:16.6181121Z [4969/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:14:16.6262094Z [4970/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-06-01T21:14:16.6968372Z [4971/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-sse2-u16.c.obj 2025-06-01T21:14:16.6981998Z [4972/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-sse2-u64-acc2.c.obj 2025-06-01T21:14:16.7058962Z [4973/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-06-01T21:14:16.7111023Z [4974/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-sse2-u64-acc4.c.obj 2025-06-01T21:14:16.7304716Z [4975/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-sse2-u16.c.obj 2025-06-01T21:14:16.7318056Z [4976/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse2-mul16-ld64-u16.c.obj 2025-06-01T21:14:16.7330178Z [4977/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse2-mul16-ld64-u16.c.obj 2025-06-01T21:14:16.8811635Z [4978/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-8x8-multi-mov-sse2.c.obj 2025-06-01T21:14:16.8825040Z [4979/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse2-u16.c.obj 2025-06-01T21:14:16.9260626Z [4980/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\s8-ibilinear\gen\s8-ibilinear-sse2-c16.c.obj 2025-06-01T21:14:16.9301921Z [4981/7616] 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-06-01T21:14:16.9315257Z [4982/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\u8-ibilinear\gen\u8-ibilinear-sse2-c16.c.obj 2025-06-01T21:14:16.9372711Z [4983/7616] 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-06-01T21:14:16.9481536Z [4984/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-16x16-reuse-switch-sse2.c.obj 2025-06-01T21:14:16.9900316Z [4985/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-8x8-multi-switch-sse2.c.obj 2025-06-01T21:14:16.9916923Z [4986/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-8x8-reuse-mov-sse2.c.obj 2025-06-01T21:14:17.0293305Z [4987/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-8x8-reuse-switch-sse2.c.obj 2025-06-01T21:14:17.0484996Z [4988/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\x16-transposec-4x8-sse2.c.obj 2025-06-01T21:14:17.1335196Z [4989/7616] 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-06-01T21:14:17.1386411Z [4990/7616] 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-06-01T21:14:17.2437353Z [4991/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-goi-sse2-u8.c.obj 2025-06-01T21:14:17.2449755Z [4992/7616] 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-06-01T21:14:17.2460995Z [4993/7616] 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-06-01T21:14:17.2472302Z [4994/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8s4-gemm-goi-sse2-u4.c.obj 2025-06-01T21:14:17.2725169Z [4995/7616] 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-06-01T21:14:17.3787997Z [4996/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8s4-gemm-goi-sse2-u8.c.obj 2025-06-01T21:14:17.3860107Z [4997/7616] 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-06-01T21:14:17.4236099Z [4998/7616] 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-06-01T21:14:17.4249720Z [4999/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16s4-gemm-goi-sse2-u4.c.obj 2025-06-01T21:14:17.4261498Z [5000/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-sse2-u4.c.obj 2025-06-01T21:14:17.4330022Z [5001/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-sse2-u8.c.obj 2025-06-01T21:14:17.4385305Z [5002/7616] 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-06-01T21:14:17.5768320Z [5003/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-multi-multi-sse2.c.obj 2025-06-01T21:14:17.5781246Z [5004/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-multi-mov-sse2.c.obj 2025-06-01T21:14:17.5792607Z [5005/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-reuse-mov-sse2.c.obj 2025-06-01T21:14:17.5804708Z [5006/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-multi-switch-sse2.c.obj 2025-06-01T21:14:17.5850746Z [5007/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-reuse-multi-sse2.c.obj 2025-06-01T21:14:17.6712828Z [5008/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-multi-multi-sse2.c.obj 2025-06-01T21:14:17.6789199Z [5009/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-reuse-switch-sse2.c.obj 2025-06-01T21:14:17.6801613Z [5010/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-reuse-mov-sse2.c.obj 2025-06-01T21:14:17.6849974Z [5011/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-multi-switch-sse2.c.obj 2025-06-01T21:14:17.6944712Z [5012/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-reuse-multi-sse2.c.obj 2025-06-01T21:14:17.7222714Z [5013/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16s4-gemm-goi-sse2-u8.c.obj 2025-06-01T21:14:17.7235820Z [5014/7616] 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-06-01T21:14:17.7933838Z [5015/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-reuse-switch-sse2.c.obj 2025-06-01T21:14:17.8067468Z [5016/7616] 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-06-01T21:14:17.8113041Z [5017/7616] 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-06-01T21:14:17.8161598Z [5018/7616] 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-06-01T21:14:17.8349070Z [5019/7616] 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-06-01T21:14:17.8371643Z [5020/7616] 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-06-01T21:14:17.8515527Z [5021/7616] 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-06-01T21:14:17.9088170Z [5022/7616] 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-06-01T21:14:18.0132848Z [5023/7616] 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-06-01T21:14:18.0218980Z [5024/7616] 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-06-01T21:14:18.0269188Z [5025/7616] 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-06-01T21:14:18.0336175Z [5026/7616] 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-06-01T21:14:18.0413748Z [5027/7616] 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-06-01T21:14:18.0462177Z [5028/7616] 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-06-01T21:14:18.0476649Z [5029/7616] 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-06-01T21:14:18.1493118Z [5030/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rdsum\gen\qu8-rdsum-7p7x-ssse3-c16.c.obj 2025-06-01T21:14:18.1566621Z [5031/7616] 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-06-01T21:14:18.1620573Z [5032/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-ssse3-u16.c.obj 2025-06-01T21:14:18.1775249Z [5033/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-ssse3-u64-acc4.c.obj 2025-06-01T21:14:18.1787931Z [5034/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-ssse3-u16.c.obj 2025-06-01T21:14:18.1798949Z [5035/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-ssse3-u64-acc2.c.obj 2025-06-01T21:14:18.1811457Z [5036/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-ssse3-u16.c.obj 2025-06-01T21:14:18.2739099Z [5037/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-ssse3-u16.c.obj 2025-06-01T21:14:18.2792162Z [5038/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-ssse3-u32.c.obj 2025-06-01T21:14:18.3106232Z [5039/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rdsum\gen\qu8-rdsum-7p7x-ssse3-c32.c.obj 2025-06-01T21:14:18.3155258Z [5040/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int16-u24.c.obj 2025-06-01T21:14:18.3277900Z [5041/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int16-u8.c.obj 2025-06-01T21:14:18.3350231Z [5042/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-ssse3-u16.c.obj 2025-06-01T21:14:18.3409048Z [5043/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-ssse3-u16.c.obj 2025-06-01T21:14:18.4023428Z [5044/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int32-u8.c.obj 2025-06-01T21:14:18.4089545Z [5045/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int16-u32.c.obj 2025-06-01T21:14:18.4194823Z [5046/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int32-u24.c.obj 2025-06-01T21:14:18.4425869Z [5047/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse41-u16.c.obj 2025-06-01T21:14:18.4438180Z [5048/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse41-u24.c.obj 2025-06-01T21:14:18.4721931Z [5049/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int32-u16.c.obj 2025-06-01T21:14:18.4736100Z [5050/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int32-u32.c.obj 2025-06-01T21:14:18.5684340Z [5051/7616] 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-06-01T21:14:18.5745914Z [5052/7616] 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-06-01T21:14:18.5759190Z [5053/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse41-u32.c.obj 2025-06-01T21:14:18.5772526Z [5054/7616] 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-06-01T21:14:18.5819669Z [5055/7616] 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-06-01T21:14:18.6024314Z [5056/7616] 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-06-01T21:14:18.6170306Z [5057/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x8s4-minmax-sse41.c.obj 2025-06-01T21:14:18.7226584Z [5058/7616] 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-06-01T21:14:18.7238955Z [5059/7616] 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-06-01T21:14:18.7890932Z [5060/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x8s4-minmax-sse41.c.obj 2025-06-01T21:14:18.7904338Z [5061/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x2c4-minmax-sse41.c.obj 2025-06-01T21:14:18.7917181Z [5062/7616] 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-06-01T21:14:18.7931122Z [5063/7616] 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-06-01T21:14:18.7944388Z [5064/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-3x8s4-minmax-sse41.c.obj 2025-06-01T21:14:18.8715733Z [5065/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-5x8s4-minmax-sse41.c.obj 2025-06-01T21:14:18.9910585Z [5066/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse41-u24.c.obj 2025-06-01T21:14:19.0034796Z [5067/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse41-u8.c.obj 2025-06-01T21:14:19.0049479Z [5068/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse41-u16.c.obj 2025-06-01T21:14:19.0097515Z [5069/7616] 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-06-01T21:14:19.0185582Z [5070/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-6x2c4-minmax-sse41.c.obj 2025-06-01T21:14:19.0235185Z [5071/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-6x8s4-minmax-sse41.c.obj 2025-06-01T21:14:19.1153448Z [5072/7616] 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-06-01T21:14:19.1874330Z [5073/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-sse41-u4.c.obj 2025-06-01T21:14:19.1949088Z [5074/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-sse41-u8.c.obj 2025-06-01T21:14:19.2006526Z [5075/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-sse41-u4.c.obj 2025-06-01T21:14:19.2087835Z [5076/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-sse41-u8.c.obj 2025-06-01T21:14:19.2380931Z [5077/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-sse41-u4.c.obj 2025-06-01T21:14:19.2646878Z [5078/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-sse41-u8.c.obj 2025-06-01T21:14:19.2660359Z [5079/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-lut16-p3-u4.c.obj 2025-06-01T21:14:19.2974326Z [5080/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-lut16-p3-u8.c.obj 2025-06-01T21:14:19.3036820Z [5081/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-lut16-p3-u12.c.obj 2025-06-01T21:14:19.4142768Z [5082/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-p6-u8.c.obj 2025-06-01T21:14:19.4156319Z [5083/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-p6-u4.c.obj 2025-06-01T21:14:19.4387883Z [5084/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-lut16-p3-u16.c.obj 2025-06-01T21:14:19.4442937Z [5085/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-p6-u12.c.obj 2025-06-01T21:14:19.4461578Z [5086/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-sse41-u4.c.obj 2025-06-01T21:14:19.4473551Z [5087/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-sse41-u4.c.obj 2025-06-01T21:14:19.4642606Z [5088/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-p6-u16.c.obj 2025-06-01T21:14:19.5219755Z [5089/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-sse41-u4.c.obj 2025-06-01T21:14:19.5892037Z [5090/7616] 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-06-01T21:14:19.5906123Z [5091/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-sse41-u4.c.obj 2025-06-01T21:14:19.5978464Z [5092/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-sse41-u4.c.obj 2025-06-01T21:14:19.5992671Z [5093/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-p5-div-u4.c.obj 2025-06-01T21:14:19.6005440Z [5094/7616] 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-06-01T21:14:19.6018945Z [5095/7616] 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-06-01T21:14:19.6341854Z [5096/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-p5-div-u8.c.obj 2025-06-01T21:14:19.7648960Z [5097/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-p5-div-u12.c.obj 2025-06-01T21:14:19.7704583Z [5098/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-p5-div-u16.c.obj 2025-06-01T21:14:19.7832879Z [5099/7616] 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-06-01T21:14:19.7890797Z [5100/7616] 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-06-01T21:14:19.7912278Z [5101/7616] 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-06-01T21:14:19.7968821Z [5102/7616] 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-06-01T21:14:19.7982158Z [5103/7616] 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-06-01T21:14:19.9044752Z [5104/7616] 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-06-01T21:14:19.9088963Z [5105/7616] 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-06-01T21:14:19.9233400Z [5106/7616] 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-06-01T21:14:19.9301104Z [5107/7616] 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-06-01T21:14:19.9313909Z [5108/7616] 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-06-01T21:14:19.9325541Z [5109/7616] 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-06-01T21:14:19.9338050Z [5110/7616] 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-06-01T21:14:20.0837505Z [5111/7616] 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-06-01T21:14:20.0922591Z [5112/7616] 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-06-01T21:14:20.1062034Z [5113/7616] 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-06-01T21:14:20.1097708Z [5114/7616] 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-06-01T21:14:20.1155635Z [5115/7616] 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-06-01T21:14:20.1167217Z [5116/7616] 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-06-01T21:14:20.1178670Z [5117/7616] 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-06-01T21:14:20.2177973Z [5118/7616] 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-06-01T21:14:20.2435881Z [5119/7616] 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-06-01T21:14:20.2490857Z [5120/7616] 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-06-01T21:14:20.2503573Z [5121/7616] 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-06-01T21:14:20.2554237Z [5122/7616] 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-06-01T21:14:20.2566590Z [5123/7616] 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-06-01T21:14:20.2704974Z [5124/7616] 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-06-01T21:14:20.3999098Z [5125/7616] 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-06-01T21:14:20.4104104Z [5126/7616] 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-06-01T21:14:20.4152307Z [5127/7616] 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-06-01T21:14:20.4214043Z [5128/7616] 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-06-01T21:14:20.4226821Z [5129/7616] 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-06-01T21:14:20.4238820Z [5130/7616] 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-06-01T21:14:20.5506105Z [5131/7616] 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-06-01T21:14:20.6396131Z [5132/7616] 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-06-01T21:14:20.6409352Z [5133/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-06-01T21:14:20.6457368Z [5134/7616] 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-06-01T21:14:20.6904618Z [5135/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-06-01T21:14:20.7068791Z [5136/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-06-01T21:14:20.7595005Z [5137/7616] 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-06-01T21:14:20.7645236Z [5138/7616] 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-06-01T21:14:20.7657499Z [5139/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-06-01T21:14:20.8094150Z [5140/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-06-01T21:14:20.8219826Z [5141/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-06-01T21:14:20.8721718Z [5142/7616] 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-06-01T21:14:20.8772651Z [5143/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-06-01T21:14:20.8786255Z [5144/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-06-01T21:14:20.8841403Z [5145/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-06-01T21:14:20.8894724Z [5146/7616] 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-06-01T21:14:20.9391432Z [5147/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-06-01T21:14:20.9577549Z [5148/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-06-01T21:14:20.9959719Z [5149/7616] 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-06-01T21:14:21.0012856Z [5150/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-sse41-mul16.c.obj 2025-06-01T21:14:21.0073825Z [5151/7616] 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-06-01T21:14:21.0085765Z [5152/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-06-01T21:14:21.0135267Z [5153/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-sse41-mul32.c.obj 2025-06-01T21:14:21.0575130Z [5154/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-sse41-mul16.c.obj 2025-06-01T21:14:21.1244082Z [5155/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-sse41-mul32.c.obj 2025-06-01T21:14:21.1620675Z [5156/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-sse41-mul32.c.obj 2025-06-01T21:14:21.1634162Z [5157/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-sse41-mul16.c.obj 2025-06-01T21:14:21.1646071Z [5158/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-sse41-mul16.c.obj 2025-06-01T21:14:21.1700861Z [5159/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-sse41-mul32.c.obj 2025-06-01T21:14:21.1752102Z [5160/7616] 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-06-01T21:14:21.1985832Z [5161/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse41-u8.c.obj 2025-06-01T21:14:21.2470961Z [5162/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse41-u24.c.obj 2025-06-01T21:14:21.3336482Z [5163/7616] 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-06-01T21:14:21.3349571Z [5164/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse41-u32.c.obj 2025-06-01T21:14:21.3397696Z [5165/7616] 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-06-01T21:14:21.3460270Z [5166/7616] 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-06-01T21:14:21.4138774Z [5167/7616] 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-06-01T21:14:21.4226356Z [5168/7616] 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-06-01T21:14:21.4621969Z [5169/7616] 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-06-01T21:14:21.4723017Z [5170/7616] 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-06-01T21:14:21.4803137Z [5171/7616] 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-06-01T21:14:21.4815533Z [5172/7616] 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-06-01T21:14:21.5079674Z [5173/7616] 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-06-01T21:14:21.5448691Z [5174/7616] 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-06-01T21:14:21.5518243Z [5175/7616] 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-06-01T21:14:21.6327576Z [5176/7616] 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-06-01T21:14:21.7198516Z [5177/7616] 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-06-01T21:14:21.7261551Z [5178/7616] 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-06-01T21:14:21.7273930Z [5179/7616] 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-06-01T21:14:21.7285377Z [5180/7616] 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-06-01T21:14:21.7483434Z [5181/7616] 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-06-01T21:14:21.7496062Z [5182/7616] 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-06-01T21:14:21.9094603Z [5183/7616] 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-06-01T21:14:21.9164251Z [5184/7616] 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-06-01T21:14:21.9176227Z [5185/7616] 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-06-01T21:14:21.9188549Z [5186/7616] 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-06-01T21:14:21.9264884Z [5187/7616] 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-06-01T21:14:21.9277323Z [5188/7616] 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-06-01T21:14:21.9727682Z [5189/7616] 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-06-01T21:14:22.0639300Z [5190/7616] 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-06-01T21:14:22.0653023Z [5191/7616] 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-06-01T21:14:22.0664513Z [5192/7616] 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-06-01T21:14:22.0747541Z [5193/7616] 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-06-01T21:14:22.0806714Z [5194/7616] 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-06-01T21:14:22.0823154Z [5195/7616] 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-06-01T21:14:22.1386099Z [5196/7616] 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-06-01T21:14:22.2229024Z [5197/7616] 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-06-01T21:14:22.2323111Z [5198/7616] 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-06-01T21:14:22.2335925Z [5199/7616] 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-06-01T21:14:22.2348469Z [5200/7616] 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-06-01T21:14:22.2360506Z [5201/7616] 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-06-01T21:14:22.2462927Z [5202/7616] 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-06-01T21:14:22.3263454Z [5203/7616] 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-06-01T21:14:22.3817893Z [5204/7616] 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-06-01T21:14:22.3831154Z [5205/7616] 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-06-01T21:14:22.3880532Z [5206/7616] 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-06-01T21:14:22.3892206Z [5207/7616] 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-06-01T21:14:22.3937889Z [5208/7616] 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-06-01T21:14:22.4015872Z [5209/7616] 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-06-01T21:14:22.4851661Z [5210/7616] 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-06-01T21:14:22.5770970Z [5211/7616] 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-06-01T21:14:22.5787004Z [5212/7616] 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-06-01T21:14:22.5839919Z [5213/7616] 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-06-01T21:14:22.5851829Z [5214/7616] 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-06-01T21:14:22.5899998Z [5215/7616] 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-06-01T21:14:22.6065869Z [5216/7616] 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-06-01T21:14:22.6803094Z [5217/7616] 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-06-01T21:14:22.7501687Z [5218/7616] 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-06-01T21:14:22.7631980Z [5219/7616] 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-06-01T21:14:22.8526145Z [5220/7616] 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-06-01T21:14:22.8543638Z [5221/7616] 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-06-01T21:14:22.8557592Z [5222/7616] 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-06-01T21:14:22.8570917Z [5223/7616] 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-06-01T21:14:22.8585286Z [5224/7616] 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-06-01T21:14:22.9242039Z [5225/7616] 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-06-01T21:14:23.0191646Z [5226/7616] 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-06-01T21:14:23.0247695Z [5227/7616] 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-06-01T21:14:23.0300810Z [5228/7616] 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-06-01T21:14:23.0312821Z [5229/7616] 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-06-01T21:14:23.0417929Z [5230/7616] 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-06-01T21:14:23.0493986Z [5231/7616] 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-06-01T21:14:23.0703701Z [5232/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-sse41-c16.c.obj 2025-06-01T21:14:23.1392436Z [5233/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul16-ld64-u24.c.obj 2025-06-01T21:14:23.1406995Z [5234/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul16-ld64-u32.c.obj 2025-06-01T21:14:23.1466942Z [5235/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul16-ld64-u16.c.obj 2025-06-01T21:14:23.1479845Z [5236/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul32-ld32-u8.c.obj 2025-06-01T21:14:23.1563499Z [5237/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-sse41-c32.c.obj 2025-06-01T21:14:23.2536390Z [5238/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul16-ld64-u24.c.obj 2025-06-01T21:14:23.2604392Z [5239/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul16-ld64-u32.c.obj 2025-06-01T21:14:23.2665185Z [5240/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul32-ld32-u32.c.obj 2025-06-01T21:14:23.2680314Z [5241/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul32-ld32-u24.c.obj 2025-06-01T21:14:23.2694687Z [5242/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul32-ld32-u16.c.obj 2025-06-01T21:14:23.2851800Z [5243/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul16-ld64-u16.c.obj 2025-06-01T21:14:23.3167713Z [5244/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul32-ld32-u8.c.obj 2025-06-01T21:14:23.4312228Z [5245/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-sse41-u8.c.obj 2025-06-01T21:14:23.4376757Z [5246/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul32-ld32-u24.c.obj 2025-06-01T21:14:23.4427098Z [5247/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-sse41-u16.c.obj 2025-06-01T21:14:23.4444863Z [5248/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul32-ld32-u32.c.obj 2025-06-01T21:14:23.4501289Z [5249/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse41-u8.c.obj 2025-06-01T21:14:23.4518520Z [5250/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul32-ld32-u16.c.obj 2025-06-01T21:14:23.4583654Z [5251/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse41-u16.c.obj 2025-06-01T21:14:23.5321919Z [5252/7616] 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-06-01T21:14:23.6179755Z [5253/7616] 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-06-01T21:14:23.6242618Z [5254/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-06-01T21:14:23.6344807Z [5255/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-06-01T21:14:23.7142014Z [5256/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-06-01T21:14:23.7155060Z [5257/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-06-01T21:14:23.7167260Z [5258/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-06-01T21:14:23.7303637Z [5259/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-06-01T21:14:23.8227000Z [5260/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-06-01T21:14:23.8280981Z [5261/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-06-01T21:14:23.8421082Z [5262/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-06-01T21:14:23.8848157Z [5263/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-sse41-mul32.c.obj 2025-06-01T21:14:23.9332123Z [5264/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-06-01T21:14:23.9345788Z [5265/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-06-01T21:14:23.9361057Z [5266/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-06-01T21:14:23.9796665Z [5267/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-sse41-mul16.c.obj 2025-06-01T21:14:24.0024298Z [5268/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-sse41-mul32.c.obj 2025-06-01T21:14:24.0426497Z [5269/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse41-u8.c.obj 2025-06-01T21:14:24.0440933Z [5270/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse41-u24.c.obj 2025-06-01T21:14:24.0504437Z [5271/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-sse41-mul32.c.obj 2025-06-01T21:14:24.0744217Z [5272/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-sse41-mul16.c.obj 2025-06-01T21:14:24.0756812Z [5273/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-sse41-mul32.c.obj 2025-06-01T21:14:24.1083602Z [5274/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse41-u32.c.obj 2025-06-01T21:14:24.1359337Z [5275/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:14:24.2021743Z [5276/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:14:24.2070749Z [5277/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:14:24.2082923Z [5278/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:14:24.2139825Z [5279/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:14:24.2199177Z [5280/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:14:24.3058345Z [5281/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:14:24.3077539Z [5282/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:14:24.3827771Z [5283/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:14:24.3926034Z [5284/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:14:24.3974676Z [5285/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:14:24.4057101Z [5286/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:14:24.4112497Z [5287/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:14:24.4870341Z [5288/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:14:24.4883989Z [5289/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:14:24.5693499Z [5290/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:14:24.5709920Z [5291/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:14:24.5762301Z [5292/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:14:24.5936238Z [5293/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:14:24.6009245Z [5294/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:14:24.6321372Z [5295/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:14:24.6375067Z [5296/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:14:24.7203861Z [5297/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:14:24.8836509Z [5298/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:14:24.8848356Z [5299/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:14:24.8859262Z [5300/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:14:24.8870729Z [5301/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:14:24.8882322Z [5302/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:14:24.8894097Z [5303/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:14:25.0645192Z [5304/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:14:25.0706585Z [5305/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:14:25.0719026Z [5306/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:14:25.0730669Z [5307/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:14:25.0779286Z [5308/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:14:25.0829232Z [5309/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:14:25.0925121Z [5310/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:14:25.2318515Z [5311/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:14:25.2368106Z [5312/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:14:25.2498098Z [5313/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-06-01T21:14:25.2512486Z [5314/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse41-mul32-ld32-u16.c.obj 2025-06-01T21:14:25.2525112Z [5315/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse41-mul32-ld32-u8.c.obj 2025-06-01T21:14:25.2538177Z [5316/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse41-mul16-ld64-u16.c.obj 2025-06-01T21:14:25.2591707Z [5317/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-06-01T21:14:25.3915026Z [5318/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-sse41-u8.c.obj 2025-06-01T21:14:25.3927387Z [5319/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-sse41-u16.c.obj 2025-06-01T21:14:25.4088632Z [5320/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse41-u16.c.obj 2025-06-01T21:14:25.4134653Z [5321/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse41-u8.c.obj 2025-06-01T21:14:25.4241492Z [5322/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse41-mul32-ld32-u8.c.obj 2025-06-01T21:14:25.4255903Z [5323/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse41-mul32-ld32-u16.c.obj 2025-06-01T21:14:25.4270345Z [5324/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse41-mul16-ld64-u16.c.obj 2025-06-01T21:14:25.4902317Z [5325/7616] 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-06-01T21:14:25.4947244Z [5326/7616] 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-06-01T21:14:25.5767843Z [5327/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\u8-ibilinear\gen\u8-ibilinear-sse41-c8.c.obj 2025-06-01T21:14:25.5903372Z [5328/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\s8-ibilinear\gen\s8-ibilinear-sse41-c8.c.obj 2025-06-01T21:14:25.5916286Z [5329/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int16-u8.c.obj 2025-06-01T21:14:25.5967331Z [5330/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int16-u24.c.obj 2025-06-01T21:14:25.5981487Z [5331/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int16-u32.c.obj 2025-06-01T21:14:25.6090205Z [5332/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int32-u8.c.obj 2025-06-01T21:14:25.6102882Z [5333/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-gio-sse41-u2.c.obj 2025-06-01T21:14:25.7396631Z [5334/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int32-u32.c.obj 2025-06-01T21:14:25.7445175Z [5335/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int32-u24.c.obj 2025-06-01T21:14:25.7547157Z [5336/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-avx-acc2.c.obj 2025-06-01T21:14:25.7605097Z [5337/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int32-u16.c.obj 2025-06-01T21:14:25.7617414Z [5338/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-avx.c.obj 2025-06-01T21:14:25.7629585Z [5339/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-avx-acc2.c.obj 2025-06-01T21:14:25.7759724Z [5340/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-avx-acc2.c.obj 2025-06-01T21:14:25.8944963Z [5341/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-avx.c.obj 2025-06-01T21:14:25.9000961Z [5342/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c8s4r-minmax-avx-acc2.c.obj 2025-06-01T21:14:25.9013271Z [5343/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c8s4r-minmax-avx.c.obj 2025-06-01T21:14:25.9107499Z [5344/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c8s4r-minmax-avx-acc2.c.obj 2025-06-01T21:14:25.9161238Z [5345/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l8c8s4r-minmax-avx-acc2.c.obj 2025-06-01T21:14:25.9558585Z [5346/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-avx-acc2.c.obj 2025-06-01T21:14:26.0107447Z [5347/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c8s4r-minmax-avx.c.obj 2025-06-01T21:14:26.0630642Z [5348/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l16c8s4r-minmax-avx.c.obj 2025-06-01T21:14:26.0644846Z [5349/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l16c8s4r-minmax-avx-acc2.c.obj 2025-06-01T21:14:26.0703616Z [5350/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l8c8s4r-minmax-avx.c.obj 2025-06-01T21:14:26.0795314Z [5351/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l16c8s4r-minmax-avx-acc2.c.obj 2025-06-01T21:14:26.0898196Z [5352/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l8c8s4r-minmax-avx-acc2.c.obj 2025-06-01T21:14:26.1050254Z [5353/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l16c8s4r-minmax-avx.c.obj 2025-06-01T21:14:26.1247092Z [5354/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-avx-acc2.c.obj 2025-06-01T21:14:26.1810628Z [5355/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-avx-acc2.c.obj 2025-06-01T21:14:26.2033944Z [5356/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-avx-acc2.c.obj 2025-06-01T21:14:26.2047276Z [5357/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-avx.c.obj 2025-06-01T21:14:26.2098910Z [5358/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-avx-acc2.c.obj 2025-06-01T21:14:26.2180012Z [5359/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-avx.c.obj 2025-06-01T21:14:26.2193343Z [5360/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx-u8.c.obj 2025-06-01T21:14:26.2267183Z [5361/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx-u16.c.obj 2025-06-01T21:14:26.2855334Z [5362/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx-u32.c.obj 2025-06-01T21:14:26.3425944Z [5363/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x16-minmax-avx-broadcast.c.obj 2025-06-01T21:14:26.3438771Z [5364/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x8-minmax-avx-broadcast.c.obj 2025-06-01T21:14:26.3525043Z [5365/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x8-minmax-avx-broadcast.c.obj 2025-06-01T21:14:26.3652566Z [5366/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x16-minmax-avx-broadcast.c.obj 2025-06-01T21:14:26.3715436Z [5367/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x8-minmax-avx-broadcast.c.obj 2025-06-01T21:14:26.3772233Z [5368/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x8-minmax-avx-broadcast.c.obj 2025-06-01T21:14:26.4092059Z [5369/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x16-minmax-avx-broadcast.c.obj 2025-06-01T21:14:26.4668644Z [5370/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-7x8-minmax-avx-broadcast.c.obj 2025-06-01T21:14:26.4901509Z [5371/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x16-minmax-avx-broadcast.c.obj 2025-06-01T21:14:26.4934460Z [5372/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x8-minmax-avx-broadcast.c.obj 2025-06-01T21:14:26.5086131Z [5373/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x16-minmax-avx-broadcast.c.obj 2025-06-01T21:14:26.5140832Z [5374/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x8-minmax-avx-broadcast.c.obj 2025-06-01T21:14:26.5375670Z [5375/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x8-minmax-avx-broadcast.c.obj 2025-06-01T21:14:26.5608141Z [5376/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x16-minmax-avx-broadcast.c.obj 2025-06-01T21:14:26.5935359Z [5377/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x16-minmax-avx-broadcast.c.obj 2025-06-01T21:14:26.6257315Z [5378/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x16-minmax-avx-broadcast.c.obj 2025-06-01T21:14:26.6393318Z [5379/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-1x8-minmax-avx-broadcast.c.obj 2025-06-01T21:14:26.6465406Z [5380/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x8-minmax-avx-broadcast.c.obj 2025-06-01T21:14:26.6569919Z [5381/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-7x8-minmax-avx-broadcast.c.obj 2025-06-01T21:14:26.6673369Z [5382/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x16-minmax-avx-broadcast.c.obj 2025-06-01T21:14:26.6789313Z [5383/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x8-minmax-avx-broadcast.c.obj 2025-06-01T21:14:26.7086407Z [5384/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x16-minmax-avx-broadcast.c.obj 2025-06-01T21:14:26.7611351Z [5385/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x8-minmax-avx-broadcast.c.obj 2025-06-01T21:14:26.7759276Z [5386/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x16-minmax-avx-broadcast.c.obj 2025-06-01T21:14:26.7824542Z [5387/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-prelu\gen\f32-prelu-avx-2x16.c.obj 2025-06-01T21:14:26.7873614Z [5388/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x8-minmax-avx-broadcast.c.obj 2025-06-01T21:14:26.7885770Z [5389/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-7x8-minmax-avx-broadcast.c.obj 2025-06-01T21:14:26.8256373Z [5390/7616] 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-06-01T21:14:26.8320959Z [5391/7616] 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-06-01T21:14:26.8947921Z [5392/7616] 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-06-01T21:14:26.9088332Z [5393/7616] 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-06-01T21:14:26.9213544Z [5394/7616] 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-06-01T21:14:26.9269752Z [5395/7616] 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-06-01T21:14:26.9324949Z [5396/7616] 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-06-01T21:14:26.9580990Z [5397/7616] 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-06-01T21:14:26.9697017Z [5398/7616] 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-06-01T21:14:27.0246327Z [5399/7616] 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-06-01T21:14:27.0417356Z [5400/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx-u8.c.obj 2025-06-01T21:14:27.0487186Z [5401/7616] 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-06-01T21:14:27.0535319Z [5402/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx-u16.c.obj 2025-06-01T21:14:27.0680308Z [5403/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx-u24.c.obj 2025-06-01T21:14:27.0888675Z [5404/7616] 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-06-01T21:14:27.1277433Z [5405/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx-u8.c.obj 2025-06-01T21:14:27.1290283Z [5406/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx-u16.c.obj 2025-06-01T21:14:27.1392323Z [5407/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx-u24.c.obj 2025-06-01T21:14:27.1493855Z [5408/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx-c16.c.obj 2025-06-01T21:14:27.1655730Z [5409/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx-c64.c.obj 2025-06-01T21:14:27.1767546Z [5410/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx-u8.c.obj 2025-06-01T21:14:27.1861124Z [5411/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx-u16-acc2.c.obj 2025-06-01T21:14:27.2288776Z [5412/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx-u32-acc2.c.obj 2025-06-01T21:14:27.2364069Z [5413/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx-u24-acc3.c.obj 2025-06-01T21:14:27.2527382Z [5414/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u8.c.obj 2025-06-01T21:14:27.2597612Z [5415/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u16-acc2.c.obj 2025-06-01T21:14:27.2663327Z [5416/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u24-acc3.c.obj 2025-06-01T21:14:27.2781652Z [5417/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u32-acc2.c.obj 2025-06-01T21:14:27.2885998Z [5418/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u32-acc4.c.obj 2025-06-01T21:14:27.3358131Z [5419/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx-u8.c.obj 2025-06-01T21:14:27.3439584Z [5420/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx-u16-acc2.c.obj 2025-06-01T21:14:27.3572320Z [5421/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx-u24-acc3.c.obj 2025-06-01T21:14:27.3680716Z [5422/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx-u32-acc2.c.obj 2025-06-01T21:14:27.3733257Z [5423/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx-u8.c.obj 2025-06-01T21:14:27.3925734Z [5424/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx-u24-acc3.c.obj 2025-06-01T21:14:27.4101001Z [5425/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx-u16-acc2.c.obj 2025-06-01T21:14:27.4351851Z [5426/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx-u32-acc2.c.obj 2025-06-01T21:14:27.4666671Z [5427/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-avx-u8.c.obj 2025-06-01T21:14:27.4681690Z [5428/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-avx-u8.c.obj 2025-06-01T21:14:27.4816590Z [5429/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-avx-u8.c.obj 2025-06-01T21:14:27.4887888Z [5430/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-avx-u8.c.obj 2025-06-01T21:14:27.5256747Z [5431/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-avx-u8.c.obj 2025-06-01T21:14:27.5323776Z [5432/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-avx-u8.c.obj 2025-06-01T21:14:27.5428704Z [5433/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-avx-u8.c.obj 2025-06-01T21:14:27.5713272Z [5434/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-avx-u8.c.obj 2025-06-01T21:14:27.5816892Z [5435/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-avx-u8.c.obj 2025-06-01T21:14:27.6022885Z [5436/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-avx-u8.c.obj 2025-06-01T21:14:27.6080001Z [5437/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-avx-u8.c.obj 2025-06-01T21:14:27.6470351Z [5438/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-avx-u8.c.obj 2025-06-01T21:14:27.6529601Z [5439/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-avx-u8.c.obj 2025-06-01T21:14:27.6585867Z [5440/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-avx-u8.c.obj 2025-06-01T21:14:27.6802039Z [5441/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-avx-u8.c.obj 2025-06-01T21:14:27.7086248Z [5442/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-avx-u8.c.obj 2025-06-01T21:14:27.7443352Z [5443/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-avx-u8.c.obj 2025-06-01T21:14:27.7458480Z [5444/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-avx-u8.c.obj 2025-06-01T21:14:27.7628910Z [5445/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-avx-u8.c.obj 2025-06-01T21:14:27.7770376Z [5446/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-avx-u8.c.obj 2025-06-01T21:14:27.7835123Z [5447/7616] 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-06-01T21:14:27.7982097Z [5448/7616] 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-06-01T21:14:27.8267343Z [5449/7616] 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-06-01T21:14:27.8586307Z [5450/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut16-p3-u8.c.obj 2025-06-01T21:14:27.8697301Z [5451/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut16-p3-u16.c.obj 2025-06-01T21:14:27.8878071Z [5452/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut16-p3-u24.c.obj 2025-06-01T21:14:27.8990277Z [5453/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-p6-u8.c.obj 2025-06-01T21:14:27.9027487Z [5454/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut16-p3-u32.c.obj 2025-06-01T21:14:27.9150513Z [5455/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-p6-u16.c.obj 2025-06-01T21:14:27.9521748Z [5456/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-p6-u24.c.obj 2025-06-01T21:14:27.9761488Z [5457/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-p6-u32.c.obj 2025-06-01T21:14:27.9973394Z [5458/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-avx-u8.c.obj 2025-06-01T21:14:28.0044372Z [5459/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-avx-u8.c.obj 2025-06-01T21:14:28.0131880Z [5460/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-avx-u8.c.obj 2025-06-01T21:14:28.0260217Z [5461/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-avx-u16.c.obj 2025-06-01T21:14:28.0316585Z [5462/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-avx-u8.c.obj 2025-06-01T21:14:28.0694504Z [5463/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-avx-u8.c.obj 2025-06-01T21:14:28.0922939Z [5464/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-avx-u8.c.obj 2025-06-01T21:14:28.1198518Z [5465/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-avx-u8.c.obj 2025-06-01T21:14:28.1214842Z [5466/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx-rsqrt-u8.c.obj 2025-06-01T21:14:28.1269437Z [5467/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx-rsqrt-u32.c.obj 2025-06-01T21:14:28.1538304Z [5468/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-div-u8.c.obj 2025-06-01T21:14:28.1551706Z [5469/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-div-u16.c.obj 2025-06-01T21:14:28.2044170Z [5470/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-div-u24.c.obj 2025-06-01T21:14:28.2140564Z [5471/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-div-u32.c.obj 2025-06-01T21:14:28.2466205Z [5472/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-nr2-u24.c.obj 2025-06-01T21:14:28.2634917Z [5473/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-nr2-u32.c.obj 2025-06-01T21:14:28.2698718Z [5474/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-rsqrt-u32.c.obj 2025-06-01T21:14:28.2717041Z [5475/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-rsqrt-u8.c.obj 2025-06-01T21:14:28.3109705Z [5476/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-nr2-u8.c.obj 2025-06-01T21:14:28.3174473Z [5477/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-sqrt-u8.c.obj 2025-06-01T21:14:28.3237966Z [5478/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-sqrt-u16.c.obj 2025-06-01T21:14:28.3644643Z [5479/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-sqrt-u32.c.obj 2025-06-01T21:14:28.4063619Z [5480/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vtanh\gen\f32-vtanh-avx-rational-9-8-nr.c.obj 2025-06-01T21:14:28.4084428Z [5481/7616] 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-06-01T21:14:28.4196950Z [5482/7616] 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-06-01T21:14:28.4495739Z [5483/7616] 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-06-01T21:14:28.4659124Z [5484/7616] 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-06-01T21:14:28.4770407Z [5485/7616] 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-06-01T21:14:28.5080005Z [5486/7616] 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-06-01T21:14:28.5423218Z [5487/7616] 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-06-01T21:14:28.5542122Z [5488/7616] 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-06-01T21:14:28.5754536Z [5489/7616] 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-06-01T21:14:28.5817843Z [5490/7616] 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-06-01T21:14:28.6301723Z [5491/7616] 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-06-01T21:14:28.6555614Z [5492/7616] 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-06-01T21:14:28.6844191Z [5493/7616] 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-06-01T21:14:28.6897204Z [5494/7616] 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-06-01T21:14:28.6959080Z [5495/7616] 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-06-01T21:14:28.7108310Z [5496/7616] 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-06-01T21:14:28.7564410Z [5497/7616] 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-06-01T21:14:28.7746366Z [5498/7616] 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-06-01T21:14:28.8052277Z [5499/7616] 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-06-01T21:14:28.8217281Z [5500/7616] 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-06-01T21:14:28.8269647Z [5501/7616] 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-06-01T21:14:28.8324869Z [5502/7616] 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-06-01T21:14:28.8623044Z [5503/7616] 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-06-01T21:14:28.8826476Z [5504/7616] 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-06-01T21:14:28.8959177Z [5505/7616] 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-06-01T21:14:28.9401715Z [5506/7616] 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-06-01T21:14:28.9536466Z [5507/7616] 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-06-01T21:14:28.9551482Z [5508/7616] 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-06-01T21:14:28.9613573Z [5509/7616] 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-06-01T21:14:28.9798889Z [5510/7616] 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-06-01T21:14:29.0207999Z [5511/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-06-01T21:14:29.0506716Z [5512/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-06-01T21:14:29.0702114Z [5513/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-06-01T21:14:29.1026669Z [5514/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-06-01T21:14:29.1206405Z [5515/7616] 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-06-01T21:14:29.1220559Z [5516/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-06-01T21:14:29.1272423Z [5517/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-06-01T21:14:29.1397981Z [5518/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-avx-mul16.c.obj 2025-06-01T21:14:29.1778985Z [5519/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-avx-mul32.c.obj 2025-06-01T21:14:29.2031533Z [5520/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx-mul16.c.obj 2025-06-01T21:14:29.2507438Z [5521/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx-mul32.c.obj 2025-06-01T21:14:29.2664959Z [5522/7616] 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-06-01T21:14:29.2680601Z [5523/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-avx-mul32.c.obj 2025-06-01T21:14:29.2695721Z [5524/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-avx-mul16.c.obj 2025-06-01T21:14:29.2872345Z [5525/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx-mul16.c.obj 2025-06-01T21:14:29.3159610Z [5526/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx-u8.c.obj 2025-06-01T21:14:29.3221268Z [5527/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx-mul32.c.obj 2025-06-01T21:14:29.3717761Z [5528/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx-u16.c.obj 2025-06-01T21:14:29.3902805Z [5529/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx-u24.c.obj 2025-06-01T21:14:29.4032037Z [5530/7616] 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-06-01T21:14:29.4274169Z [5531/7616] 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-06-01T21:14:29.4499582Z [5532/7616] 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-06-01T21:14:29.4523258Z [5533/7616] 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-06-01T21:14:29.4726600Z [5534/7616] 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-06-01T21:14:29.5024696Z [5535/7616] 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-06-01T21:14:29.5211294Z [5536/7616] 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-06-01T21:14:29.5282034Z [5537/7616] 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-06-01T21:14:29.5532820Z [5538/7616] 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-06-01T21:14:29.5799849Z [5539/7616] 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-06-01T21:14:29.5852604Z [5540/7616] 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-06-01T21:14:29.6202265Z [5541/7616] 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-06-01T21:14:29.6685461Z [5542/7616] 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-06-01T21:14:29.6751945Z [5543/7616] 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-06-01T21:14:29.6806090Z [5544/7616] 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-06-01T21:14:29.6947112Z [5545/7616] 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-06-01T21:14:29.7424952Z [5546/7616] 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-06-01T21:14:29.7439117Z [5547/7616] 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-06-01T21:14:29.7660276Z [5548/7616] 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-06-01T21:14:29.8005240Z [5549/7616] 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-06-01T21:14:29.8189231Z [5550/7616] 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-06-01T21:14:29.8277969Z [5551/7616] 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-06-01T21:14:29.8888641Z [5552/7616] 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-06-01T21:14:29.8943462Z [5553/7616] 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-06-01T21:14:29.8956844Z [5554/7616] 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-06-01T21:14:29.9010027Z [5555/7616] 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-06-01T21:14:29.9508651Z [5556/7616] 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-06-01T21:14:29.9607684Z [5557/7616] 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-06-01T21:14:29.9695862Z [5558/7616] 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-06-01T21:14:30.0320999Z [5559/7616] 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-06-01T21:14:30.0372644Z [5560/7616] 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-06-01T21:14:30.0421817Z [5561/7616] 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-06-01T21:14:30.0548542Z [5562/7616] 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-06-01T21:14:30.1005104Z [5563/7616] 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-06-01T21:14:30.1257405Z [5564/7616] 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-06-01T21:14:30.1310665Z [5565/7616] 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-06-01T21:14:30.1474559Z [5566/7616] 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-06-01T21:14:30.1577419Z [5567/7616] 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-06-01T21:14:30.1631891Z [5568/7616] 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-06-01T21:14:30.1691980Z [5569/7616] 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-06-01T21:14:30.2228387Z [5570/7616] 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-06-01T21:14:30.2768592Z [5571/7616] 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-06-01T21:14:30.2781847Z [5572/7616] 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-06-01T21:14:30.2841429Z [5573/7616] 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-06-01T21:14:30.2853199Z [5574/7616] 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-06-01T21:14:30.2865587Z [5575/7616] 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-06-01T21:14:30.2990818Z [5576/7616] 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-06-01T21:14:30.3326887Z [5577/7616] 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-06-01T21:14:30.3961184Z [5578/7616] 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-06-01T21:14:30.4048753Z [5579/7616] 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-06-01T21:14:30.4228412Z [5580/7616] 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-06-01T21:14:30.4478802Z [5581/7616] 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-06-01T21:14:30.4496566Z [5582/7616] 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-06-01T21:14:30.4599233Z [5583/7616] 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-06-01T21:14:30.4765944Z [5584/7616] 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-06-01T21:14:30.5131108Z [5585/7616] 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-06-01T21:14:30.5192943Z [5586/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul16-ld64-u8.c.obj 2025-06-01T21:14:30.5376467Z [5587/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul16-ld64-u16.c.obj 2025-06-01T21:14:30.5640918Z [5588/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul16-ld64-u24.c.obj 2025-06-01T21:14:30.5701207Z [5589/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul16-ld64-u32.c.obj 2025-06-01T21:14:30.5766938Z [5590/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul32-ld32-u16.c.obj 2025-06-01T21:14:30.5882661Z [5591/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul32-ld32-u24.c.obj 2025-06-01T21:14:30.6451368Z [5592/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul32-ld32-u32.c.obj 2025-06-01T21:14:30.6511352Z [5593/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul16-ld64-u16.c.obj 2025-06-01T21:14:30.6571792Z [5594/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul16-ld64-u8.c.obj 2025-06-01T21:14:30.6762680Z [5595/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul16-ld64-u24.c.obj 2025-06-01T21:14:30.6856903Z [5596/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul32-ld32-u16.c.obj 2025-06-01T21:14:30.6918634Z [5597/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul16-ld64-u32.c.obj 2025-06-01T21:14:30.7044823Z [5598/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul32-ld32-u24.c.obj 2025-06-01T21:14:30.7595458Z [5599/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-avx-u8.c.obj 2025-06-01T21:14:30.7611495Z [5600/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul32-ld32-u32.c.obj 2025-06-01T21:14:30.7667109Z [5601/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-avx-u16.c.obj 2025-06-01T21:14:30.7955768Z [5602/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx-u8.c.obj 2025-06-01T21:14:30.8119643Z [5603/7616] 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-06-01T21:14:30.8184992Z [5604/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx-u16.c.obj 2025-06-01T21:14:30.8252902Z [5605/7616] 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-06-01T21:14:30.8778900Z [5606/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-06-01T21:14:30.9004575Z [5607/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-06-01T21:14:30.9017574Z [5608/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-06-01T21:14:30.9344367Z [5609/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-06-01T21:14:30.9399254Z [5610/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-06-01T21:14:30.9505341Z [5611/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-06-01T21:14:30.9691651Z [5612/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-avx-mul16.c.obj 2025-06-01T21:14:31.0013886Z [5613/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-avx-mul32.c.obj 2025-06-01T21:14:31.0226102Z [5614/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-avx-mul32.c.obj 2025-06-01T21:14:31.0292850Z [5615/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-avx-mul16.c.obj 2025-06-01T21:14:31.0513924Z [5616/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-avx-mul32.c.obj 2025-06-01T21:14:31.0797965Z [5617/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-avx-mul32.c.obj 2025-06-01T21:14:31.0842617Z [5618/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx-u8.c.obj 2025-06-01T21:14:31.1009220Z [5619/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx-u24.c.obj 2025-06-01T21:14:31.1061495Z [5620/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx-u16.c.obj 2025-06-01T21:14:31.1516285Z [5621/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:14:31.1645294Z [5622/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:14:31.1981440Z [5623/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:14:31.2312864Z [5624/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:14:31.2382357Z [5625/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:14:31.2402229Z [5626/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:14:31.2567511Z [5627/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:14:31.2823416Z [5628/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:14:31.2927922Z [5629/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:14:31.3332619Z [5630/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:14:31.3687075Z [5631/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:14:31.3701011Z [5632/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:14:31.3769545Z [5633/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:14:31.3949591Z [5634/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:14:31.4224201Z [5635/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:14:31.4238618Z [5636/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:14:31.4693671Z [5637/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:14:31.4986944Z [5638/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:14:31.4999057Z [5639/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:14:31.5121848Z [5640/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:14:31.5310290Z [5641/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:14:31.5438346Z [5642/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:14:31.5529122Z [5643/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:14:31.5927374Z [5644/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:14:31.6140805Z [5645/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:14:31.6271775Z [5646/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:14:31.6325176Z [5647/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:14:31.6421018Z [5648/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:14:31.6657143Z [5649/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:14:31.6919981Z [5650/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:14:31.7142830Z [5651/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:14:31.7324750Z [5652/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:14:31.7467478Z [5653/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:14:31.7488953Z [5654/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:14:31.7599285Z [5655/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:14:31.7854910Z [5656/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:14:31.8098976Z [5657/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:14:31.8374664Z [5658/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:14:31.8548647Z [5659/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-06-01T21:14:31.8685280Z [5660/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx-mul16-ld64-u8.c.obj 2025-06-01T21:14:31.8744664Z [5661/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-06-01T21:14:31.8762355Z [5662/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx-mul16-ld64-u16.c.obj 2025-06-01T21:14:31.8899236Z [5663/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx-mul32-ld32-u16.c.obj 2025-06-01T21:14:31.9226985Z [5664/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx-mul16-ld64-u8.c.obj 2025-06-01T21:14:31.9462890Z [5665/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx-mul16-ld64-u16.c.obj 2025-06-01T21:14:31.9735320Z [5666/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx-mul32-ld32-u16.c.obj 2025-06-01T21:14:31.9804755Z [5667/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-avx-u16.c.obj 2025-06-01T21:14:31.9954275Z [5668/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx-u8.c.obj 2025-06-01T21:14:32.0051293Z [5669/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx-u16.c.obj 2025-06-01T21:14:32.0118416Z [5670/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-avx-u8.c.obj 2025-06-01T21:14:32.0559154Z [5671/7616] 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-06-01T21:14:32.0572325Z [5672/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx-u16.c.obj 2025-06-01T21:14:32.0815774Z [5673/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx-u48.c.obj 2025-06-01T21:14:32.0938680Z [5674/7616] 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-06-01T21:14:32.1060053Z [5675/7616] 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-06-01T21:14:32.1114076Z [5676/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-gio-avx-u1.c.obj 2025-06-01T21:14:32.1198115Z [5677/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx-u32.c.obj 2025-06-01T21:14:32.1620411Z [5678/7616] 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-06-01T21:14:32.1634798Z [5679/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-gio-avx-u8.c.obj 2025-06-01T21:14:32.1798967Z [5680/7616] 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-06-01T21:14:32.1927561Z [5681/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-goi-avx-u4.c.obj 2025-06-01T21:14:32.2156704Z [5682/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8s4-gemm-goi-avx-u4.c.obj 2025-06-01T21:14:32.2323051Z [5683/7616] 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-06-01T21:14:32.2338127Z [5684/7616] 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-06-01T21:14:32.2631277Z [5685/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx-u1.c.obj 2025-06-01T21:14:32.2719113Z [5686/7616] 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-06-01T21:14:32.2976857Z [5687/7616] 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-06-01T21:14:32.3035582Z [5688/7616] 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-06-01T21:14:32.3158407Z [5689/7616] 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-06-01T21:14:32.3305040Z [5690/7616] 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-06-01T21:14:32.3367035Z [5691/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx-u1.c.obj 2025-06-01T21:14:32.3740394Z [5692/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx-u8.c.obj 2025-06-01T21:14:32.3754878Z [5693/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-8x8-multi-mov-avx.c.obj 2025-06-01T21:14:32.4113016Z [5694/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-8x8-reuse-switch-avx.c.obj 2025-06-01T21:14:32.4216072Z [5695/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-8x8-reuse-mov-avx.c.obj 2025-06-01T21:14:32.4229557Z [5696/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-8x8-multi-switch-avx.c.obj 2025-06-01T21:14:32.4276845Z [5697/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x4-multi-mov-avx.c.obj 2025-06-01T21:14:32.4338684Z [5698/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x4-multi-multi-avx.c.obj 2025-06-01T21:14:32.4697598Z [5699/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x4-multi-switch-avx.c.obj 2025-06-01T21:14:32.4713549Z [5700/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x4-reuse-mov-avx.c.obj 2025-06-01T21:14:32.5084046Z [5701/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x4-reuse-switch-avx.c.obj 2025-06-01T21:14:32.5296920Z [5702/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-f16c-c16.c.obj 2025-06-01T21:14:32.5311320Z [5703/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-f16c-c64.c.obj 2025-06-01T21:14:32.5398249Z [5704/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-f16c-u8.c.obj 2025-06-01T21:14:32.5664714Z [5705/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-f16c-c128.c.obj 2025-06-01T21:14:32.5780337Z [5706/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-f16c-u8.c.obj 2025-06-01T21:14:32.5910897Z [5707/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-f16c-u16-acc2.c.obj 2025-06-01T21:14:32.6363915Z [5708/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-f16c-u32-acc2.c.obj 2025-06-01T21:14:32.6429871Z [5709/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vadd-f16c-u8.c.obj 2025-06-01T21:14:32.6487918Z [5710/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-f16c-u24-acc3.c.obj 2025-06-01T21:14:32.6503728Z [5711/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vaddc-f16c-u8.c.obj 2025-06-01T21:14:32.6850134Z [5712/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vdiv-f16c-u16.c.obj 2025-06-01T21:14:32.6901484Z [5713/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vdivc-f16c-u16.c.obj 2025-06-01T21:14:32.7020266Z [5714/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmax-f16c-u8.c.obj 2025-06-01T21:14:32.7465698Z [5715/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmaxc-f16c-u8.c.obj 2025-06-01T21:14:32.7668719Z [5716/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmin-f16c-u8.c.obj 2025-06-01T21:14:32.7687783Z [5717/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vminc-f16c-u8.c.obj 2025-06-01T21:14:32.7704983Z [5718/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmul-f16c-u8.c.obj 2025-06-01T21:14:32.7979595Z [5719/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmulc-f16c-u8.c.obj 2025-06-01T21:14:32.8113691Z [5720/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vprelu-f16c-u8.c.obj 2025-06-01T21:14:32.8129870Z [5721/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vpreluc-f16c-u8.c.obj 2025-06-01T21:14:32.8604958Z [5722/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vrdivc-f16c-u16.c.obj 2025-06-01T21:14:32.8802574Z [5723/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vsqrdiff-f16c-u8.c.obj 2025-06-01T21:14:32.8817757Z [5724/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vrpreluc-f16c-u8.c.obj 2025-06-01T21:14:32.8895225Z [5725/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vrsubc-f16c-u8.c.obj 2025-06-01T21:14:32.9082092Z [5726/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vsqrdiffc-f16c-u8.c.obj 2025-06-01T21:14:32.9247944Z [5727/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vsubc-f16c-u8.c.obj 2025-06-01T21:14:32.9404839Z [5728/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vsub-f16c-u8.c.obj 2025-06-01T21:14:32.9755971Z [5729/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vclamp\gen\f16-vclamp-f16c-u8.c.obj 2025-06-01T21:14:32.9940209Z [5730/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vhswish\gen\f16-vhswish-f16c-u8.c.obj 2025-06-01T21:14:33.0007195Z [5731/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vlrelu\gen\f16-vlrelu-f16c-u8.c.obj 2025-06-01T21:14:33.0059010Z [5732/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrnd\gen\f16-vrndd-f16c-u8.c.obj 2025-06-01T21:14:33.0210017Z [5733/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrnd\gen\f16-vrndne-f16c-u8.c.obj 2025-06-01T21:14:33.0386892Z [5734/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrnd\gen\f16-vrndu-f16c-u8.c.obj 2025-06-01T21:14:33.0535043Z [5735/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrnd\gen\f16-vrndz-f16c-u8.c.obj 2025-06-01T21:14:33.0860754Z [5736/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrsqrt\gen\f16-vrsqrt-f16c-rsqrt-u8.c.obj 2025-06-01T21:14:33.1044719Z [5737/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrsqrt\gen\f16-vrsqrt-f16c-rsqrt-u16.c.obj 2025-06-01T21:14:33.1169255Z [5738/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-rsqrt-u16.c.obj 2025-06-01T21:14:33.1221242Z [5739/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-rsqrt-u8.c.obj 2025-06-01T21:14:33.1320956Z [5740/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-sqrt-u8.c.obj 2025-06-01T21:14:33.1510469Z [5741/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-sqrt-u16.c.obj 2025-06-01T21:14:33.1648859Z [5742/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-sqrt-u32.c.obj 2025-06-01T21:14:33.2047256Z [5743/7616] 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-06-01T21:14:33.2175084Z [5744/7616] 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-06-01T21:14:33.2307315Z [5745/7616] 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-06-01T21:14:33.2473410Z [5746/7616] 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-06-01T21:14:33.2622481Z [5747/7616] 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-06-01T21:14:33.2676986Z [5748/7616] 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-06-01T21:14:33.2736928Z [5749/7616] 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-06-01T21:14:33.3211920Z [5750/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-polynomial-p19h9t2-u8.c.obj 2025-06-01T21:14:33.3333279Z [5751/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-polynomial-p19h9t2-u16.c.obj 2025-06-01T21:14:33.3550900Z [5752/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-polynomial-p19h9t2-u24.c.obj 2025-06-01T21:14:33.3609375Z [5753/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-polynomial-p19h9t2-u32.c.obj 2025-06-01T21:14:33.3720764Z [5754/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-f16c-u8.c.obj 2025-06-01T21:14:33.3791461Z [5755/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vunary\gen\f16-vsqr-f16c-u8.c.obj 2025-06-01T21:14:33.3954689Z [5756/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-3p8c-minmax-fma3-acc2.c.obj 2025-06-01T21:14:33.4452716Z [5757/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-3p8c-minmax-fma3.c.obj 2025-06-01T21:14:33.4510627Z [5758/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-3p16c-minmax-fma3-acc2.c.obj 2025-06-01T21:14:33.4940868Z [5759/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-4p8c-minmax-fma3.c.obj 2025-06-01T21:14:33.4956340Z [5760/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-4p8c-minmax-fma3-acc2.c.obj 2025-06-01T21:14:33.5015068Z [5761/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-3p32c-minmax-fma3.c.obj 2025-06-01T21:14:33.5028299Z [5762/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-3p32c-minmax-fma3-acc2.c.obj 2025-06-01T21:14:33.5082125Z [5763/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-4p16c-minmax-fma3-acc2.c.obj 2025-06-01T21:14:33.5585550Z [5764/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-4p32c-minmax-fma3-acc2.c.obj 2025-06-01T21:14:33.5679573Z [5765/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-4p32c-minmax-fma3.c.obj 2025-06-01T21:14:33.6137368Z [5766/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l8c8s4r-minmax-fma3.c.obj 2025-06-01T21:14:33.6191864Z [5767/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l8c8s4r-minmax-fma3-acc2.c.obj 2025-06-01T21:14:33.6260278Z [5768/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l16c8s4r-minmax-fma3.c.obj 2025-06-01T21:14:33.6277848Z [5769/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l16c8s4r-minmax-fma3-acc2.c.obj 2025-06-01T21:14:33.6512713Z [5770/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l32c8s4r-minmax-fma3-acc2.c.obj 2025-06-01T21:14:33.6789963Z [5771/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l8c8s4r-minmax-fma3-acc2.c.obj 2025-06-01T21:14:33.7018650Z [5772/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l32c8s4r-minmax-fma3.c.obj 2025-06-01T21:14:33.7331796Z [5773/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l8c8s4r-minmax-fma3.c.obj 2025-06-01T21:14:33.7385824Z [5774/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l16c8s4r-minmax-fma3-acc2.c.obj 2025-06-01T21:14:33.7453003Z [5775/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l16c8s4r-minmax-fma3.c.obj 2025-06-01T21:14:33.7506666Z [5776/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l32c8s4r-minmax-fma3-acc2.c.obj 2025-06-01T21:14:33.7725012Z [5777/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l32c8s4r-minmax-fma3.c.obj 2025-06-01T21:14:33.8183321Z [5778/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l8c8s4r-minmax-fma3.c.obj 2025-06-01T21:14:33.8283047Z [5779/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l8c8s4r-minmax-fma3-acc2.c.obj 2025-06-01T21:14:33.8585085Z [5780/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l16c8s4r-minmax-fma3.c.obj 2025-06-01T21:14:33.8638546Z [5781/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l16c8s4r-minmax-fma3-acc2.c.obj 2025-06-01T21:14:33.8695389Z [5782/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l32c8s4r-minmax-fma3-acc2.c.obj 2025-06-01T21:14:33.8874602Z [5783/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-9p8c-minmax-fma3-acc2.c.obj 2025-06-01T21:14:33.9254674Z [5784/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l32c8s4r-minmax-fma3.c.obj 2025-06-01T21:14:33.9797464Z [5785/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-9p8c-minmax-fma3.c.obj 2025-06-01T21:14:33.9868656Z [5786/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-9p32c-minmax-fma3-acc2.c.obj 2025-06-01T21:14:33.9881663Z [5787/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-9p16c-minmax-fma3-acc2.c.obj 2025-06-01T21:14:33.9894425Z [5788/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-25p8c-minmax-fma3.c.obj 2025-06-01T21:14:34.0098728Z [5789/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-9p32c-minmax-fma3.c.obj 2025-06-01T21:14:34.0407703Z [5790/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-25p16c-minmax-fma3.c.obj 2025-06-01T21:14:34.0558854Z [5791/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-25p16c-minmax-fma3-acc2.c.obj 2025-06-01T21:14:34.0906025Z [5792/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vmulcaddc\gen\f16-vmulcaddc-c16-minmax-fma3-2x.c.obj 2025-06-01T21:14:34.0962825Z [5793/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-ibilinear\gen\f16-ibilinear-fma3-c16.c.obj 2025-06-01T21:14:34.1017201Z [5794/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-25p32c-minmax-fma3-acc2.c.obj 2025-06-01T21:14:34.1222804Z [5795/7616] 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-06-01T21:14:34.1240110Z [5796/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-25p32c-minmax-fma3.c.obj 2025-06-01T21:14:34.1509843Z [5797/7616] 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-06-01T21:14:34.1690414Z [5798/7616] 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-06-01T21:14:34.2042633Z [5799/7616] 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-06-01T21:14:34.2118933Z [5800/7616] 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-06-01T21:14:34.2133005Z [5801/7616] 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-06-01T21:14:34.2364407Z [5802/7616] 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-06-01T21:14:34.2423737Z [5803/7616] 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-06-01T21:14:34.2731580Z [5804/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-polynomial-p19h9t2-u8.c.obj 2025-06-01T21:14:34.2914427Z [5805/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-polynomial-p19h9t2-u16.c.obj 2025-06-01T21:14:34.3263073Z [5806/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-polynomial-p19h9t2-u24.c.obj 2025-06-01T21:14:34.3494789Z [5807/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-fma3-acc2.c.obj 2025-06-01T21:14:34.3558944Z [5808/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-fma3-acc2.c.obj 2025-06-01T21:14:34.3575355Z [5809/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-fma3.c.obj 2025-06-01T21:14:34.3637700Z [5810/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-fma3-acc2.c.obj 2025-06-01T21:14:34.3835264Z [5811/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-fma3.c.obj 2025-06-01T21:14:34.4010021Z [5812/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-fma3-acc2.c.obj 2025-06-01T21:14:34.4467721Z [5813/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c8s4r-minmax-fma3-acc2.c.obj 2025-06-01T21:14:34.4690318Z [5814/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c8s4r-minmax-fma3.c.obj 2025-06-01T21:14:34.4765555Z [5815/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c8s4r-minmax-fma3-acc2.c.obj 2025-06-01T21:14:34.4826633Z [5816/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l32c8s4r-minmax-fma3.c.obj 2025-06-01T21:14:34.4996561Z [5817/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l8c8s4r-minmax-fma3-acc2.c.obj 2025-06-01T21:14:34.5009638Z [5818/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l32c8s4r-minmax-fma3-acc2.c.obj 2025-06-01T21:14:34.5447893Z [5819/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l8c8s4r-minmax-fma3.c.obj 2025-06-01T21:14:34.5583662Z [5820/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l16c8s4r-minmax-fma3-acc2.c.obj 2025-06-01T21:14:34.5868863Z [5821/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l16c8s4r-minmax-fma3.c.obj 2025-06-01T21:14:34.5973263Z [5822/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l32c8s4r-minmax-fma3-acc2.c.obj 2025-06-01T21:14:34.6034997Z [5823/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l32c8s4r-minmax-fma3.c.obj 2025-06-01T21:14:34.6278146Z [5824/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-fma3-acc2.c.obj 2025-06-01T21:14:34.6442548Z [5825/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-fma3.c.obj 2025-06-01T21:14:34.6626319Z [5826/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-fma3-acc2.c.obj 2025-06-01T21:14:34.6817002Z [5827/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-fma3-acc2.c.obj 2025-06-01T21:14:34.7090941Z [5828/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-fma3-acc2.c.obj 2025-06-01T21:14:34.7232643Z [5829/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-fma3.c.obj 2025-06-01T21:14:34.7288612Z [5830/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x8-minmax-fma3-broadcast.c.obj 2025-06-01T21:14:34.7582259Z [5831/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x16-minmax-fma3-broadcast.c.obj 2025-06-01T21:14:34.8091969Z [5832/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x16s4-minmax-fma3-broadcast.c.obj 2025-06-01T21:14:34.8105311Z [5833/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x8-minmax-fma3-broadcast.c.obj 2025-06-01T21:14:34.8215261Z [5834/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x16-minmax-fma3-broadcast.c.obj 2025-06-01T21:14:34.8367230Z [5835/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x8-minmax-fma3-broadcast.c.obj 2025-06-01T21:14:34.8484817Z [5836/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x16s4-minmax-fma3-broadcast.c.obj 2025-06-01T21:14:34.8597150Z [5837/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x8-minmax-fma3-broadcast.c.obj 2025-06-01T21:14:34.8913588Z [5838/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x16-minmax-fma3-broadcast.c.obj 2025-06-01T21:14:34.9382410Z [5839/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x16s4-minmax-fma3-broadcast.c.obj 2025-06-01T21:14:34.9453539Z [5840/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-7x8-minmax-fma3-broadcast.c.obj 2025-06-01T21:14:34.9658188Z [5841/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-8x8-minmax-fma3-broadcast.c.obj 2025-06-01T21:14:34.9674253Z [5842/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x8-minmax-fma3-broadcast.c.obj 2025-06-01T21:14:34.9822456Z [5843/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x16-minmax-fma3-broadcast.c.obj 2025-06-01T21:14:35.0141431Z [5844/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x16s4-minmax-fma3-broadcast.c.obj 2025-06-01T21:14:35.0313108Z [5845/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x16-minmax-fma3-broadcast.c.obj 2025-06-01T21:14:35.0705135Z [5846/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x16s4-minmax-fma3-broadcast.c.obj 2025-06-01T21:14:35.0822000Z [5847/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x8-minmax-fma3-broadcast.c.obj 2025-06-01T21:14:35.1100539Z [5848/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x8-minmax-fma3-broadcast.c.obj 2025-06-01T21:14:35.1164382Z [5849/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x16s4-minmax-fma3-broadcast.c.obj 2025-06-01T21:14:35.1213716Z [5850/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x16-minmax-fma3-broadcast.c.obj 2025-06-01T21:14:35.1444193Z [5851/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x16-minmax-fma3-broadcast.c.obj 2025-06-01T21:14:35.1718599Z [5852/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x16s4-minmax-fma3-broadcast.c.obj 2025-06-01T21:14:35.1988965Z [5853/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x8-minmax-fma3-broadcast.c.obj 2025-06-01T21:14:35.2173781Z [5854/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x16-minmax-fma3-broadcast.c.obj 2025-06-01T21:14:35.2389643Z [5855/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x16s4-minmax-fma3-broadcast.c.obj 2025-06-01T21:14:35.2561620Z [5856/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-7x8-minmax-fma3-broadcast.c.obj 2025-06-01T21:14:35.2573432Z [5857/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-8x8-minmax-fma3-broadcast.c.obj 2025-06-01T21:14:35.2640221Z [5858/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-1x8-minmax-fma3-broadcast.c.obj 2025-06-01T21:14:35.2791360Z [5859/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x16-minmax-fma3-broadcast.c.obj 2025-06-01T21:14:35.3200360Z [5860/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x16s4-minmax-fma3-broadcast.c.obj 2025-06-01T21:14:35.3680363Z [5861/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x16-minmax-fma3-broadcast.c.obj 2025-06-01T21:14:35.3693614Z [5862/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x8-minmax-fma3-broadcast.c.obj 2025-06-01T21:14:35.3783741Z [5863/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x8-minmax-fma3-broadcast.c.obj 2025-06-01T21:14:35.3837512Z [5864/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x16-minmax-fma3-broadcast.c.obj 2025-06-01T21:14:35.3849814Z [5865/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x16s4-minmax-fma3-broadcast.c.obj 2025-06-01T21:14:35.4007382Z [5866/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x8-minmax-fma3-broadcast.c.obj 2025-06-01T21:14:35.4538422Z [5867/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x16-minmax-fma3-broadcast-prfm.c.obj 2025-06-01T21:14:35.4815283Z [5868/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x16s4-minmax-fma3-broadcast.c.obj 2025-06-01T21:14:35.4829799Z [5869/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x16-minmax-fma3-broadcast.c.obj 2025-06-01T21:14:35.5076175Z [5870/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-7x8-minmax-fma3-broadcast.c.obj 2025-06-01T21:14:35.5226958Z [5871/7616] 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-06-01T21:14:35.5280939Z [5872/7616] 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-06-01T21:14:35.5338978Z [5873/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-8x8-minmax-fma3-broadcast.c.obj 2025-06-01T21:14:35.5821001Z [5874/7616] 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-06-01T21:14:35.6084269Z [5875/7616] 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-06-01T21:14:35.6211002Z [5876/7616] 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-06-01T21:14:35.6439842Z [5877/7616] 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-06-01T21:14:35.6544556Z [5878/7616] 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-06-01T21:14:35.6614507Z [5879/7616] 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-06-01T21:14:35.6743705Z [5880/7616] 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-06-01T21:14:35.7178655Z [5881/7616] 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-06-01T21:14:35.7463866Z [5882/7616] 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-06-01T21:14:35.7615426Z [5883/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-fma3-u8.c.obj 2025-06-01T21:14:35.7627378Z [5884/7616] 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-06-01T21:14:35.7684269Z [5885/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-fma3-u32.c.obj 2025-06-01T21:14:35.7840165Z [5886/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-fma3-u64.c.obj 2025-06-01T21:14:35.7853326Z [5887/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-fma3-u8.c.obj 2025-06-01T21:14:35.8315729Z [5888/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlog\gen\f32-vlog-fma3-rational-3-3-nr.c.obj 2025-06-01T21:14:35.8617354Z [5889/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-fma3-rsqrt-u8.c.obj 2025-06-01T21:14:35.8763930Z [5890/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-fma3-rsqrt-u8.c.obj 2025-06-01T21:14:35.8824673Z [5891/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-fma3-rsqrt-u32.c.obj 2025-06-01T21:14:35.9156809Z [5892/7616] 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-06-01T21:14:35.9170494Z [5893/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-fma3-rsqrt-u32.c.obj 2025-06-01T21:14:35.9231239Z [5894/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vtanh\gen\f32-vtanh-fma3-rational-9-8-nr.c.obj 2025-06-01T21:14:35.9550727Z [5895/7616] 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-06-01T21:14:35.9853173Z [5896/7616] 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-06-01T21:14:36.0218083Z [5897/7616] 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-06-01T21:14:36.0266167Z [5898/7616] 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-06-01T21:14:36.0439714Z [5899/7616] 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-06-01T21:14:36.0453188Z [5900/7616] 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-06-01T21:14:36.0686578Z [5901/7616] 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-06-01T21:14:36.0818226Z [5902/7616] 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-06-01T21:14:36.1029049Z [5903/7616] 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-06-01T21:14:36.1416968Z [5904/7616] 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-06-01T21:14:36.1468250Z [5905/7616] 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-06-01T21:14:36.1664867Z [5906/7616] 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-06-01T21:14:36.1730597Z [5907/7616] 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-06-01T21:14:36.2008851Z [5908/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-1x8-minmax-avx2-broadcast.c.obj 2025-06-01T21:14:36.2144979Z [5909/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-1x16-minmax-avx2-broadcast.c.obj 2025-06-01T21:14:36.2290417Z [5910/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-3x16-minmax-avx2-broadcast.c.obj 2025-06-01T21:14:36.2818123Z [5911/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-4x16-minmax-avx2-broadcast.c.obj 2025-06-01T21:14:36.2895999Z [5912/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-4x8-minmax-avx2-broadcast.c.obj 2025-06-01T21:14:36.3033379Z [5913/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-5x16-minmax-avx2-broadcast.c.obj 2025-06-01T21:14:36.3095137Z [5914/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-5x8-minmax-avx2-broadcast.c.obj 2025-06-01T21:14:36.3395276Z [5915/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-1x8-minmax-avx2-broadcast.c.obj 2025-06-01T21:14:36.3684004Z [5916/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-6x8-minmax-avx2-broadcast.c.obj 2025-06-01T21:14:36.3787814Z [5917/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-7x8-minmax-avx2-broadcast.c.obj 2025-06-01T21:14:36.4027041Z [5918/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-1x16-minmax-avx2-broadcast.c.obj 2025-06-01T21:14:36.4176158Z [5919/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-3x16-minmax-avx2-broadcast.c.obj 2025-06-01T21:14:36.4188874Z [5920/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-4x8-minmax-avx2-broadcast.c.obj 2025-06-01T21:14:36.4259697Z [5921/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-4x16-minmax-avx2-broadcast.c.obj 2025-06-01T21:14:36.4808743Z [5922/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-5x8-minmax-avx2-broadcast.c.obj 2025-06-01T21:14:36.4823128Z [5923/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-5x16-minmax-avx2-broadcast.c.obj 2025-06-01T21:14:36.4980953Z [5924/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-6x8-minmax-avx2-broadcast.c.obj 2025-06-01T21:14:36.5182234Z [5925/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u16-acc2.c.obj 2025-06-01T21:14:36.5237637Z [5926/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u16.c.obj 2025-06-01T21:14:36.5251773Z [5927/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-7x8-minmax-avx2-broadcast.c.obj 2025-06-01T21:14:36.5305856Z [5928/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u32-acc2.c.obj 2025-06-01T21:14:36.5837018Z [5929/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u40-acc2.c.obj 2025-06-01T21:14:36.5899108Z [5930/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u32-acc4.c.obj 2025-06-01T21:14:36.5979844Z [5931/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u40-acc5.c.obj 2025-06-01T21:14:36.6261756Z [5932/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u48-acc3.c.obj 2025-06-01T21:14:36.6323615Z [5933/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u48.c.obj 2025-06-01T21:14:36.6385793Z [5934/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u40.c.obj 2025-06-01T21:14:36.6397748Z [5935/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u48-acc2.c.obj 2025-06-01T21:14:36.6860046Z [5936/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u64-acc2.c.obj 2025-06-01T21:14:36.7279192Z [5937/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u72.c.obj 2025-06-01T21:14:36.7333445Z [5938/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u64.c.obj 2025-06-01T21:14:36.7346479Z [5939/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u72-acc3.c.obj 2025-06-01T21:14:36.7359171Z [5940/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u80-acc2.c.obj 2025-06-01T21:14:36.7420081Z [5941/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u64-acc4.c.obj 2025-06-01T21:14:36.7437088Z [5942/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u80-acc5.c.obj 2025-06-01T21:14:36.7909969Z [5943/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u80.c.obj 2025-06-01T21:14:36.8243103Z [5944/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u96-acc2.c.obj 2025-06-01T21:14:36.8407777Z [5945/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u96-acc3.c.obj 2025-06-01T21:14:36.8465825Z [5946/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u96.c.obj 2025-06-01T21:14:36.8479519Z [5947/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u96-acc6.c.obj 2025-06-01T21:14:36.8609318Z [5948/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-velu\gen\f16-velu-avx2-rr1-p3-u8.c.obj 2025-06-01T21:14:36.8969208Z [5949/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-div-u16.c.obj 2025-06-01T21:14:36.9045156Z [5950/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-div-u8.c.obj 2025-06-01T21:14:36.9468692Z [5951/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-div-u24.c.obj 2025-06-01T21:14:36.9529889Z [5952/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-div-u32.c.obj 2025-06-01T21:14:36.9544074Z [5953/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-rcp-u8.c.obj 2025-06-01T21:14:36.9648952Z [5954/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-rcp-u16.c.obj 2025-06-01T21:14:36.9803565Z [5955/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-rcp-u24.c.obj 2025-06-01T21:14:37.0116138Z [5956/7616] 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-06-01T21:14:37.0221332Z [5957/7616] 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-06-01T21:14:37.0738297Z [5958/7616] 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-06-01T21:14:37.0752129Z [5959/7616] 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-06-01T21:14:37.0842049Z [5960/7616] 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-06-01T21:14:37.0890536Z [5961/7616] 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-06-01T21:14:37.0952818Z [5962/7616] 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-06-01T21:14:37.1154637Z [5963/7616] 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-06-01T21:14:37.1459799Z [5964/7616] 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-06-01T21:14:37.2030098Z [5965/7616] 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-06-01T21:14:37.2194185Z [5966/7616] 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-06-01T21:14:37.2256889Z [5967/7616] 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-06-01T21:14:37.2269368Z [5968/7616] 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-06-01T21:14:37.2318555Z [5969/7616] 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-06-01T21:14:37.2531211Z [5970/7616] 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-06-01T21:14:37.2676137Z [5971/7616] 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-06-01T21:14:37.3397316Z [5972/7616] 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-06-01T21:14:37.3590712Z [5973/7616] 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-06-01T21:14:37.3639890Z [5974/7616] 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-06-01T21:14:37.3690693Z [5975/7616] 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-06-01T21:14:37.3741188Z [5976/7616] 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-06-01T21:14:37.3847785Z [5977/7616] 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-06-01T21:14:37.3933252Z [5978/7616] 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-06-01T21:14:37.4643103Z [5979/7616] 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-06-01T21:14:37.4984086Z [5980/7616] 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-06-01T21:14:37.5031457Z [5981/7616] 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-06-01T21:14:37.5179863Z [5982/7616] 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-06-01T21:14:37.5192585Z [5983/7616] 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-06-01T21:14:37.5287818Z [5984/7616] 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-06-01T21:14:37.5303322Z [5985/7616] 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-06-01T21:14:37.5935420Z [5986/7616] 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-06-01T21:14:37.6240016Z [5987/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx2-u16.c.obj 2025-06-01T21:14:37.6252889Z [5988/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx2-u48.c.obj 2025-06-01T21:14:37.6322186Z [5989/7616] 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-06-01T21:14:37.6384443Z [5990/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx2-u32.c.obj 2025-06-01T21:14:37.6397544Z [5991/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx2-u16.c.obj 2025-06-01T21:14:37.6451123Z [5992/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx2-u32.c.obj 2025-06-01T21:14:37.6998450Z [5993/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx2-u48.c.obj 2025-06-01T21:14:37.7115702Z [5994/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u32-acc2.c.obj 2025-06-01T21:14:37.7164615Z [5995/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u32.c.obj 2025-06-01T21:14:37.7225375Z [5996/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u64-acc4.c.obj 2025-06-01T21:14:37.7247830Z [5997/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u64-acc2.c.obj 2025-06-01T21:14:37.7301393Z [5998/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u64.c.obj 2025-06-01T21:14:37.7315987Z [5999/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u32-acc4.c.obj 2025-06-01T21:14:37.7901560Z [6000/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u72-acc3.c.obj 2025-06-01T21:14:37.7945457Z [6001/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u72.c.obj 2025-06-01T21:14:37.8031133Z [6002/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u80-acc2.c.obj 2025-06-01T21:14:37.8079705Z [6003/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u96-acc2.c.obj 2025-06-01T21:14:37.8096195Z [6004/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u80.c.obj 2025-06-01T21:14:37.8107839Z [6005/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u80-acc5.c.obj 2025-06-01T21:14:37.8119679Z [6006/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u96-acc3.c.obj 2025-06-01T21:14:37.8736826Z [6007/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u96-acc6.c.obj 2025-06-01T21:14:37.8817392Z [6008/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u96.c.obj 2025-06-01T21:14:37.8919365Z [6009/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u32-acc2.c.obj 2025-06-01T21:14:37.8933625Z [6010/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u64-acc2.c.obj 2025-06-01T21:14:37.8983723Z [6011/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u32-acc4.c.obj 2025-06-01T21:14:37.8998130Z [6012/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u32.c.obj 2025-06-01T21:14:37.9046482Z [6013/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u64-acc4.c.obj 2025-06-01T21:14:37.9564430Z [6014/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u64.c.obj 2025-06-01T21:14:37.9693192Z [6015/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u72-acc3.c.obj 2025-06-01T21:14:37.9826077Z [6016/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u72.c.obj 2025-06-01T21:14:37.9871550Z [6017/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u96-acc2.c.obj 2025-06-01T21:14:37.9980882Z [6018/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u80.c.obj 2025-06-01T21:14:37.9992470Z [6019/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u80-acc2.c.obj 2025-06-01T21:14:38.0371820Z [6020/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u96-acc3.c.obj 2025-06-01T21:14:38.0434739Z [6021/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u80-acc5.c.obj 2025-06-01T21:14:38.0484710Z [6022/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u96-acc6.c.obj 2025-06-01T21:14:38.0985986Z [6023/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u96.c.obj 2025-06-01T21:14:38.1135221Z [6024/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr1-p5-u8.c.obj 2025-06-01T21:14:38.1201961Z [6025/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr1-p5-u32-acc2.c.obj 2025-06-01T21:14:38.1218068Z [6026/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr1-p5-u16-acc2.c.obj 2025-06-01T21:14:38.1440900Z [6027/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr1-p5-u32-acc4.c.obj 2025-06-01T21:14:38.1549507Z [6028/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr2-p5-u16-acc2.c.obj 2025-06-01T21:14:38.1616544Z [6029/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr2-p5-u8.c.obj 2025-06-01T21:14:38.2011082Z [6030/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr2-p5-u32-acc4.c.obj 2025-06-01T21:14:38.2322941Z [6031/7616] 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-06-01T21:14:38.2340373Z [6032/7616] 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-06-01T21:14:38.2560231Z [6033/7616] 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-06-01T21:14:38.2620163Z [6034/7616] 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-06-01T21:14:38.2690468Z [6035/7616] 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-06-01T21:14:38.2769960Z [6036/7616] 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-06-01T21:14:38.3122065Z [6037/7616] 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-06-01T21:14:38.3477266Z [6038/7616] 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-06-01T21:14:38.3538632Z [6039/7616] 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-06-01T21:14:38.3629572Z [6040/7616] 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-06-01T21:14:38.3833519Z [6041/7616] 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-06-01T21:14:38.3890723Z [6042/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-p6-u8.c.obj 2025-06-01T21:14:38.3972686Z [6043/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-p6-u16.c.obj 2025-06-01T21:14:38.4329074Z [6044/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-p6-u24.c.obj 2025-06-01T21:14:38.4386060Z [6045/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx2-p5-u8.c.obj 2025-06-01T21:14:38.4436233Z [6046/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx2-p5-u16.c.obj 2025-06-01T21:14:38.4554098Z [6047/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-p6-u32.c.obj 2025-06-01T21:14:38.4681922Z [6048/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx2-p5-u32.c.obj 2025-06-01T21:14:38.4819319Z [6049/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx2-p5-u8.c.obj 2025-06-01T21:14:38.4928191Z [6050/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx2-p5-u24.c.obj 2025-06-01T21:14:38.5202241Z [6051/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx2-p5-u24.c.obj 2025-06-01T21:14:38.5214965Z [6052/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx2-p5-u32.c.obj 2025-06-01T21:14:38.5263110Z [6053/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx2-p5-u16.c.obj 2025-06-01T21:14:38.5722781Z [6054/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-div-u8.c.obj 2025-06-01T21:14:38.5943876Z [6055/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-div-u24.c.obj 2025-06-01T21:14:38.6006908Z [6056/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-div-u32.c.obj 2025-06-01T21:14:38.6124972Z [6057/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr1fma-u8.c.obj 2025-06-01T21:14:38.6432208Z [6058/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr1fma-u24.c.obj 2025-06-01T21:14:38.6518803Z [6059/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr1fma-u32.c.obj 2025-06-01T21:14:38.6683452Z [6060/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr1fma-u16.c.obj 2025-06-01T21:14:38.6848820Z [6061/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr2fma-u8.c.obj 2025-06-01T21:14:38.7143540Z [6062/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr2fma-u24.c.obj 2025-06-01T21:14:38.7393455Z [6063/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr2fma-u32.c.obj 2025-06-01T21:14:38.7610654Z [6064/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr2fma-u16.c.obj 2025-06-01T21:14:38.7696716Z [6065/7616] 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-06-01T21:14:38.7779789Z [6066/7616] 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-06-01T21:14:38.7934845Z [6067/7616] 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-06-01T21:14:38.8117393Z [6068/7616] 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-06-01T21:14:38.8446892Z [6069/7616] 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-06-01T21:14:38.8817894Z [6070/7616] 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-06-01T21:14:38.9109607Z [6071/7616] 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-06-01T21:14:38.9123250Z [6072/7616] 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-06-01T21:14:38.9179905Z [6073/7616] 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-06-01T21:14:38.9354305Z [6074/7616] 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-06-01T21:14:38.9506478Z [6075/7616] 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-06-01T21:14:38.9734058Z [6076/7616] 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-06-01T21:14:39.0210775Z [6077/7616] 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-06-01T21:14:39.0469505Z [6078/7616] 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-06-01T21:14:39.0482370Z [6079/7616] 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-06-01T21:14:39.0562597Z [6080/7616] 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-06-01T21:14:39.0674515Z [6081/7616] 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-06-01T21:14:39.0957748Z [6082/7616] 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-06-01T21:14:39.1210651Z [6083/7616] 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-06-01T21:14:39.1468611Z [6084/7616] 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-06-01T21:14:39.1808917Z [6085/7616] 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-06-01T21:14:39.1946116Z [6086/7616] 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-06-01T21:14:39.1959682Z [6087/7616] 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-06-01T21:14:39.2014484Z [6088/7616] 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-06-01T21:14:39.2349845Z [6089/7616] 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-06-01T21:14:39.2586822Z [6090/7616] 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-06-01T21:14:39.2602547Z [6091/7616] 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-06-01T21:14:39.3151944Z [6092/7616] 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-06-01T21:14:39.3371701Z [6093/7616] 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-06-01T21:14:39.3665535Z [6094/7616] 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-06-01T21:14:39.3718024Z [6095/7616] 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-06-01T21:14:39.3825131Z [6096/7616] 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-06-01T21:14:39.3921921Z [6097/7616] 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-06-01T21:14:39.3972654Z [6098/7616] 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-06-01T21:14:39.4422888Z [6099/7616] 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-06-01T21:14:39.5112958Z [6100/7616] 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-06-01T21:14:39.5130516Z [6101/7616] 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-06-01T21:14:39.5236832Z [6102/7616] 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-06-01T21:14:39.5382807Z [6103/7616] 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-06-01T21:14:39.5407942Z [6104/7616] 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-06-01T21:14:39.5712669Z [6105/7616] 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-06-01T21:14:39.5769259Z [6106/7616] 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-06-01T21:14:39.6450622Z [6107/7616] 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-06-01T21:14:39.6575091Z [6108/7616] 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-06-01T21:14:39.6632443Z [6109/7616] 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-06-01T21:14:39.6870717Z [6110/7616] 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-06-01T21:14:39.6886103Z [6111/7616] 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-06-01T21:14:39.7141740Z [6112/7616] 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-06-01T21:14:39.7240808Z [6113/7616] 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-06-01T21:14:39.7988175Z [6114/7616] 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-06-01T21:14:39.8006320Z [6115/7616] 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-06-01T21:14:39.8086313Z [6116/7616] 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-06-01T21:14:39.8242984Z [6117/7616] 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-06-01T21:14:39.8431086Z [6118/7616] 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-06-01T21:14:39.8489765Z [6119/7616] 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-06-01T21:14:39.8504406Z [6120/7616] 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-06-01T21:14:39.9279637Z [6121/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:14:39.9335182Z [6122/7616] 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-06-01T21:14:39.9698815Z [6123/7616] 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-06-01T21:14:39.9753928Z [6124/7616] 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-06-01T21:14:39.9963028Z [6125/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:14:40.0040962Z [6126/7616] 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-06-01T21:14:40.0103038Z [6127/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:14:40.0462263Z [6128/7616] 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-06-01T21:14:40.0557828Z [6129/7616] 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-06-01T21:14:40.0985541Z [6130/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:14:40.1041075Z [6131/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:14:40.1315291Z [6132/7616] 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-06-01T21:14:40.1583099Z [6133/7616] 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-06-01T21:14:40.1596842Z [6134/7616] 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-06-01T21:14:40.1663017Z [6135/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:14:40.1862623Z [6136/7616] 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-06-01T21:14:40.2184019Z [6137/7616] 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-06-01T21:14:40.2490927Z [6138/7616] 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-06-01T21:14:40.2506183Z [6139/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:14:40.3016277Z [6140/7616] 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-06-01T21:14:40.3105343Z [6141/7616] 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-06-01T21:14:40.3121886Z [6142/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:14:40.3179174Z [6143/7616] 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-06-01T21:14:40.3607454Z [6144/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:14:40.3856259Z [6145/7616] 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-06-01T21:14:40.3888432Z [6146/7616] 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-06-01T21:14:40.4283969Z [6147/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:14:40.4447747Z [6148/7616] 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-06-01T21:14:40.4462551Z [6149/7616] 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-06-01T21:14:40.4513473Z [6150/7616] 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-06-01T21:14:40.4820775Z [6151/7616] 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-06-01T21:14:40.5013303Z [6152/7616] 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-06-01T21:14:40.5159108Z [6153/7616] 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-06-01T21:14:40.5641218Z [6154/7616] 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-06-01T21:14:40.5709871Z [6155/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:14:40.5784169Z [6156/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p32c-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:14:40.6153479Z [6157/7616] 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-06-01T21:14:40.6812253Z [6158/7616] 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-06-01T21:14:40.6875502Z [6159/7616] 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-06-01T21:14:40.6927528Z [6160/7616] 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-06-01T21:14:40.7273126Z [6161/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f16-vcvt\gen\qs8-f16-vcvt-avx2-u24.c.obj 2025-06-01T21:14:40.7441777Z [6162/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p32c-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:14:40.7582089Z [6163/7616] 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-06-01T21:14:40.7640257Z [6164/7616] 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-06-01T21:14:40.7991351Z [6165/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f16-vcvt\gen\qs8-f16-vcvt-avx2-u32.c.obj 2025-06-01T21:14:40.8096387Z [6166/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f16-vcvt\gen\qs8-f16-vcvt-avx2-u64.c.obj 2025-06-01T21:14:40.8109556Z [6167/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx2-u8.c.obj 2025-06-01T21:14:40.8486664Z [6168/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx2-u24.c.obj 2025-06-01T21:14:40.8539667Z [6169/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx2-u32.c.obj 2025-06-01T21:14:40.8788658Z [6170/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c8-gemm-goi-avx2-madd.c.obj 2025-06-01T21:14:40.8933366Z [6171/7616] 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-06-01T21:14:40.9305250Z [6172/7616] 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-06-01T21:14:40.9458202Z [6173/7616] 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-06-01T21:14:40.9557221Z [6174/7616] 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-06-01T21:14:40.9880713Z [6175/7616] 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-06-01T21:14:41.0061963Z [6176/7616] 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-06-01T21:14:41.0142145Z [6177/7616] 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-06-01T21:14:41.0317542Z [6178/7616] 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-06-01T21:14:41.0741820Z [6179/7616] 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-06-01T21:14:41.0892102Z [6180/7616] 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-06-01T21:14:41.1020999Z [6181/7616] 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-06-01T21:14:41.1072487Z [6182/7616] 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-06-01T21:14:41.1537585Z [6183/7616] 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-06-01T21:14:41.1746110Z [6184/7616] 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-06-01T21:14:41.1806083Z [6185/7616] 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-06-01T21:14:41.2056360Z [6186/7616] 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-06-01T21:14:41.2368774Z [6187/7616] 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-06-01T21:14:41.2428878Z [6188/7616] 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-06-01T21:14:41.2666243Z [6189/7616] 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-06-01T21:14:41.2829951Z [6190/7616] 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-06-01T21:14:41.3089656Z [6191/7616] 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-06-01T21:14:41.3383154Z [6192/7616] 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-06-01T21:14:41.3461455Z [6193/7616] 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-06-01T21:14:41.4102937Z [6194/7616] 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-06-01T21:14:41.4116180Z [6195/7616] 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-06-01T21:14:41.4243889Z [6196/7616] 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-06-01T21:14:41.4258440Z [6197/7616] 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-06-01T21:14:41.4587869Z [6198/7616] 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-06-01T21:14:41.4652531Z [6199/7616] 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-06-01T21:14:41.4665898Z [6200/7616] 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-06-01T21:14:41.5427490Z [6201/7616] 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-06-01T21:14:41.5543191Z [6202/7616] 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-06-01T21:14:41.5601803Z [6203/7616] 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-06-01T21:14:41.5828254Z [6204/7616] 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-06-01T21:14:41.5934754Z [6205/7616] 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-06-01T21:14:41.5996089Z [6206/7616] 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-06-01T21:14:41.6154428Z [6207/7616] 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-06-01T21:14:41.7046715Z [6208/7616] 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-06-01T21:14:41.7138501Z [6209/7616] 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-06-01T21:14:41.7379253Z [6210/7616] 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-06-01T21:14:41.7560203Z [6211/7616] 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-06-01T21:14:41.7573649Z [6212/7616] 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-06-01T21:14:41.7586762Z [6213/7616] 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-06-01T21:14:41.7661208Z [6214/7616] 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-06-01T21:14:41.8669922Z [6215/7616] 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-06-01T21:14:41.8746269Z [6216/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx2-u32.c.obj 2025-06-01T21:14:41.8815661Z [6217/7616] 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-06-01T21:14:41.8827429Z [6218/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx2-u128-acc4.c.obj 2025-06-01T21:14:41.8874557Z [6219/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx2-u128-acc2.c.obj 2025-06-01T21:14:41.9067939Z [6220/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-avx2-c32.c.obj 2025-06-01T21:14:41.9250991Z [6221/7616] 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-06-01T21:14:41.9897888Z [6222/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx2-mul32-ld64-u8.c.obj 2025-06-01T21:14:41.9966801Z [6223/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx2-mul32-ld64-u24.c.obj 2025-06-01T21:14:42.0041715Z [6224/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx2-mul32-ld64-u32.c.obj 2025-06-01T21:14:42.0099637Z [6225/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx2-mul32-ld64-u24.c.obj 2025-06-01T21:14:42.0113781Z [6226/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx2-mul32-ld64-u8.c.obj 2025-06-01T21:14:42.0241782Z [6227/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx2-mul32-ld64-u32.c.obj 2025-06-01T21:14:42.0383807Z [6228/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-avx2-u16.c.obj 2025-06-01T21:14:42.0985760Z [6229/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-avx2-u64.c.obj 2025-06-01T21:14:42.1102229Z [6230/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx2-u16.c.obj 2025-06-01T21:14:42.1167361Z [6231/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx2-u64.c.obj 2025-06-01T21:14:42.1298195Z [6232/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:14:42.1384683Z [6233/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:14:42.1435475Z [6234/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:14:42.1565047Z [6235/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:14:42.2415791Z [6236/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:14:42.2505191Z [6237/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:14:42.2577577Z [6238/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:14:42.2590857Z [6239/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:14:42.3052090Z [6240/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:14:42.3136437Z [6241/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p32c-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:14:42.3281351Z [6242/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:14:42.3548226Z [6243/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:14:42.3612623Z [6244/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx2-u24.c.obj 2025-06-01T21:14:42.3665080Z [6245/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx2-u8.c.obj 2025-06-01T21:14:42.3752922Z [6246/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p32c-minmax-fp32-avx2-mul32.c.obj 2025-06-01T21:14:42.4138436Z [6247/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx2-u32.c.obj 2025-06-01T21:14:42.4417977Z [6248/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x8c8-minmax-fp32-avx2.c.obj 2025-06-01T21:14:42.4554713Z [6249/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x8c8-minmax-fp32-avx2.c.obj 2025-06-01T21:14:42.4699807Z [6250/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-avx2-u32.c.obj 2025-06-01T21:14:42.4811883Z [6251/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x8c8-minmax-fp32-avx2.c.obj 2025-06-01T21:14:42.4827504Z [6252/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-avx2-u128-acc2.c.obj 2025-06-01T21:14:42.4973226Z [6253/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x8c8-minmax-fp32-avx2.c.obj 2025-06-01T21:14:42.5182210Z [6254/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-avx2-u128-acc4.c.obj 2025-06-01T21:14:42.5528545Z [6255/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx2-mul32-ld64-u8.c.obj 2025-06-01T21:14:42.5705676Z [6256/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx2-mul32-ld64-u8.c.obj 2025-06-01T21:14:42.5764467Z [6257/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-avx2-u16.c.obj 2025-06-01T21:14:42.5901292Z [6258/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-avx2-u64.c.obj 2025-06-01T21:14:42.5984160Z [6259/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx2-u32.c.obj 2025-06-01T21:14:42.6002189Z [6260/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx2-u16.c.obj 2025-06-01T21:14:42.6205437Z [6261/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx2-u64.c.obj 2025-06-01T21:14:42.6410218Z [6262/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx2-u64.c.obj 2025-06-01T21:14:42.6519927Z [6263/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx2-u96.c.obj 2025-06-01T21:14:42.6762927Z [6264/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8c8-gemm-goi-avx2-prfm.c.obj 2025-06-01T21:14:42.6984634Z [6265/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8c8-gemm-goi-avx2.c.obj 2025-06-01T21:14:42.7006526Z [6266/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x16c8-gemm-goi-avx2-prfm.c.obj 2025-06-01T21:14:42.7062280Z [6267/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x16c8-gemm-goi-avx2.c.obj 2025-06-01T21:14:42.7348791Z [6268/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-32x32-reuse-mov-avx2.c.obj 2025-06-01T21:14:42.7533480Z [6269/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-packw\gen\x16-packw-x8-gemm-goi-avx2-u16.c.obj 2025-06-01T21:14:42.7549972Z [6270/7616] 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-06-01T21:14:42.7805675Z [6271/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-packw\gen\x16-packw-x16-gemm-goi-avx2-u16.c.obj 2025-06-01T21:14:42.7967749Z [6272/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-16x16-reuse-mov-avx2.c.obj 2025-06-01T21:14:42.8032986Z [6273/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx256skx-rr2-p5-u16-acc2.c.obj 2025-06-01T21:14:42.8081702Z [6274/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx256skx-rr2-p5-u8.c.obj 2025-06-01T21:14:42.8396509Z [6275/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx256skx-rr2-p5-u32-acc4.c.obj 2025-06-01T21:14:42.8847024Z [6276/7616] 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-06-01T21:14:42.9110188Z [6277/7616] 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-06-01T21:14:42.9249962Z [6278/7616] 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-06-01T21:14:42.9414807Z [6279/7616] 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-06-01T21:14:42.9508728Z [6280/7616] 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-06-01T21:14:42.9609562Z [6281/7616] 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-06-01T21:14:42.9931348Z [6282/7616] 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-06-01T21:14:43.0160900Z [6283/7616] 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-06-01T21:14:43.0657224Z [6284/7616] 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-06-01T21:14:43.0781593Z [6285/7616] 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-06-01T21:14:43.0877662Z [6286/7616] 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-06-01T21:14:43.0893201Z [6287/7616] 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-06-01T21:14:43.0982051Z [6288/7616] 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-06-01T21:14:43.1245564Z [6289/7616] 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-06-01T21:14:43.1552331Z [6290/7616] 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-06-01T21:14:43.2083763Z [6291/7616] 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-06-01T21:14:43.2251989Z [6292/7616] 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-06-01T21:14:43.2275214Z [6293/7616] 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-06-01T21:14:43.2287843Z [6294/7616] 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-06-01T21:14:43.2498711Z [6295/7616] 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-06-01T21:14:43.2555041Z [6296/7616] 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-06-01T21:14:43.2977641Z [6297/7616] 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-06-01T21:14:43.3451633Z [6298/7616] 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-06-01T21:14:43.3512776Z [6299/7616] 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-06-01T21:14:43.3526168Z [6300/7616] 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-06-01T21:14:43.3538686Z [6301/7616] 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-06-01T21:14:43.3840930Z [6302/7616] 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-06-01T21:14:43.3926998Z [6303/7616] 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-06-01T21:14:43.4269243Z [6304/7616] 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-06-01T21:14:43.4843812Z [6305/7616] 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-06-01T21:14:43.4898371Z [6306/7616] 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-06-01T21:14:43.4912413Z [6307/7616] 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-06-01T21:14:43.5102962Z [6308/7616] 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-06-01T21:14:43.5197355Z [6309/7616] 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-06-01T21:14:43.5259126Z [6310/7616] 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-06-01T21:14:43.5542023Z [6311/7616] 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-06-01T21:14:43.6154741Z [6312/7616] 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-06-01T21:14:43.6266487Z [6313/7616] 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-06-01T21:14:43.6564175Z [6314/7616] 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-06-01T21:14:43.6657758Z [6315/7616] 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-06-01T21:14:43.6715496Z [6316/7616] 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-06-01T21:14:43.6780140Z [6317/7616] 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-06-01T21:14:43.6982611Z [6318/7616] 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-06-01T21:14:43.7582764Z [6319/7616] 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-06-01T21:14:43.7688034Z [6320/7616] 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-06-01T21:14:43.7928511Z [6321/7616] 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-06-01T21:14:43.8039239Z [6322/7616] 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-06-01T21:14:43.8094767Z [6323/7616] 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-06-01T21:14:43.8441593Z [6324/7616] 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-06-01T21:14:43.8507552Z [6325/7616] 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-06-01T21:14:43.8825492Z [6326/7616] 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-06-01T21:14:43.9009087Z [6327/7616] 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-06-01T21:14:43.9181309Z [6328/7616] 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-06-01T21:14:43.9344050Z [6329/7616] 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-06-01T21:14:43.9360716Z [6330/7616] 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-06-01T21:14:43.9606380Z [6331/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256skx-u32.c.obj 2025-06-01T21:14:43.9727265Z [6332/7616] 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-06-01T21:14:43.9833970Z [6333/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256skx-u128-acc2.c.obj 2025-06-01T21:14:44.0028843Z [6334/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256skx-u128-acc4.c.obj 2025-06-01T21:14:44.0465874Z [6335/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x8c8-minmax-fp32-avx256skx.c.obj 2025-06-01T21:14:44.0480272Z [6336/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8c8-gemm-goi-avx256skx-prfm.c.obj 2025-06-01T21:14:44.0677480Z [6337/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x8c8-minmax-fp32-avx256skx.c.obj 2025-06-01T21:14:44.0734924Z [6338/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8c8-gemm-goi-avx256skx.c.obj 2025-06-01T21:14:44.0823845Z [6339/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x16c8-gemm-goi-avx256skx-prfm.c.obj 2025-06-01T21:14:44.0879406Z [6340/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x16c8-gemm-goi-avx256skx.c.obj 2025-06-01T21:14:44.1430934Z [6341/7616] 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-06-01T21:14:44.1816184Z [6342/7616] 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-06-01T21:14:44.1995088Z [6343/7616] 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-06-01T21:14:44.2051698Z [6344/7616] 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-06-01T21:14:44.2066320Z [6345/7616] 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-06-01T21:14:44.2263417Z [6346/7616] 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-06-01T21:14:44.2513611Z [6347/7616] 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-06-01T21:14:44.2756799Z [6348/7616] 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-06-01T21:14:44.3091880Z [6349/7616] 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-06-01T21:14:44.3368653Z [6350/7616] 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-06-01T21:14:44.3382759Z [6351/7616] 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-06-01T21:14:44.3451539Z [6352/7616] 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-06-01T21:14:44.3615317Z [6353/7616] 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-06-01T21:14:44.3848963Z [6354/7616] 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-06-01T21:14:44.4135162Z [6355/7616] 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-06-01T21:14:44.4477367Z [6356/7616] 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-06-01T21:14:44.4757339Z [6357/7616] 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-06-01T21:14:44.4771251Z [6358/7616] 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-06-01T21:14:44.4784539Z [6359/7616] 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-06-01T21:14:44.4946057Z [6360/7616] 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-06-01T21:14:44.5230867Z [6361/7616] 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-06-01T21:14:44.5458779Z [6362/7616] 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-06-01T21:14:44.5756577Z [6363/7616] 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-06-01T21:14:44.6111849Z [6364/7616] 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-06-01T21:14:44.6128320Z [6365/7616] 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-06-01T21:14:44.6294756Z [6366/7616] 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-06-01T21:14:44.6476569Z [6367/7616] 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-06-01T21:14:44.6582125Z [6368/7616] 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-06-01T21:14:44.6841417Z [6369/7616] 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-06-01T21:14:44.6979860Z [6370/7616] 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-06-01T21:14:44.7465167Z [6371/7616] 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-06-01T21:14:44.7482865Z [6372/7616] 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-06-01T21:14:44.7596993Z [6373/7616] 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-06-01T21:14:44.7795138Z [6374/7616] 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-06-01T21:14:44.8084619Z [6375/7616] 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-06-01T21:14:44.8180371Z [6376/7616] 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-06-01T21:14:44.8264965Z [6377/7616] 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-06-01T21:14:44.8761741Z [6378/7616] 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-06-01T21:14:44.8870397Z [6379/7616] 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-06-01T21:14:44.8983050Z [6380/7616] 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-06-01T21:14:44.9227074Z [6381/7616] 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-06-01T21:14:44.9336281Z [6382/7616] 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-06-01T21:14:44.9496156Z [6383/7616] 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-06-01T21:14:44.9549710Z [6384/7616] 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-06-01T21:14:45.0222608Z [6385/7616] 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-06-01T21:14:45.0322338Z [6386/7616] 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-06-01T21:14:45.0593482Z [6387/7616] 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-06-01T21:14:45.0611945Z [6388/7616] 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-06-01T21:14:45.0685009Z [6389/7616] 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-06-01T21:14:45.0861149Z [6390/7616] 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-06-01T21:14:45.0916234Z [6391/7616] 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-06-01T21:14:45.1693152Z [6392/7616] 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-06-01T21:14:45.1867112Z [6393/7616] 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-06-01T21:14:45.1919702Z [6394/7616] 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-06-01T21:14:45.1965171Z [6395/7616] 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-06-01T21:14:45.2027588Z [6396/7616] 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-06-01T21:14:45.2199252Z [6397/7616] 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-06-01T21:14:45.2264966Z [6398/7616] 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-06-01T21:14:45.2989744Z [6399/7616] 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-06-01T21:14:45.3249998Z [6400/7616] 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-06-01T21:14:45.3380285Z [6401/7616] 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-06-01T21:14:45.3393285Z [6402/7616] 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-06-01T21:14:45.3588556Z [6403/7616] 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-06-01T21:14:45.3644513Z [6404/7616] 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-06-01T21:14:45.3661022Z [6405/7616] 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-06-01T21:14:45.4354837Z [6406/7616] 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-06-01T21:14:45.4614801Z [6407/7616] 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-06-01T21:14:45.4710048Z [6408/7616] 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-06-01T21:14:45.4764757Z [6409/7616] 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-06-01T21:14:45.4914127Z [6410/7616] 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-06-01T21:14:45.5048769Z [6411/7616] 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-06-01T21:14:45.5061941Z [6412/7616] 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-06-01T21:14:45.5914698Z [6413/7616] 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-06-01T21:14:45.6001179Z [6414/7616] 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-06-01T21:14:45.6515620Z [6415/7616] 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-06-01T21:14:45.6528706Z [6416/7616] 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-06-01T21:14:45.7289089Z [6417/7616] 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-06-01T21:14:45.7304906Z [6418/7616] 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-06-01T21:14:45.7317285Z [6419/7616] 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-06-01T21:14:45.7376271Z [6420/7616] 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-06-01T21:14:45.7513737Z [6421/7616] 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-06-01T21:14:45.8163063Z [6422/7616] 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-06-01T21:14:45.8316751Z [6423/7616] 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-06-01T21:14:45.8635131Z [6424/7616] 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-06-01T21:14:45.8648724Z [6425/7616] 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-06-01T21:14:45.8730639Z [6426/7616] 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-06-01T21:14:45.8799487Z [6427/7616] 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-06-01T21:14:45.8896776Z [6428/7616] 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-06-01T21:14:45.9536852Z [6429/7616] 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-06-01T21:14:45.9647185Z [6430/7616] 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-06-01T21:14:45.9710711Z [6431/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c8-gemm-goi-avx256vnni.c.obj 2025-06-01T21:14:45.9772414Z [6432/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x16c8-gemm-goi-avx256vnni.c.obj 2025-06-01T21:14:45.9854964Z [6433/7616] 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-06-01T21:14:46.0205356Z [6434/7616] 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-06-01T21:14:46.0264176Z [6435/7616] 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-06-01T21:14:46.0897099Z [6436/7616] 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-06-01T21:14:46.0909921Z [6437/7616] 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-06-01T21:14:46.1124263Z [6438/7616] 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-06-01T21:14:46.1138013Z [6439/7616] 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-06-01T21:14:46.1427795Z [6440/7616] 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-06-01T21:14:46.1695513Z [6441/7616] 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-06-01T21:14:46.1800097Z [6442/7616] 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-06-01T21:14:46.2138140Z [6443/7616] 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-06-01T21:14:46.2200638Z [6444/7616] 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-06-01T21:14:46.2446784Z [6445/7616] 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-06-01T21:14:46.2573529Z [6446/7616] 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-06-01T21:14:46.2927501Z [6447/7616] 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-06-01T21:14:46.3275118Z [6448/7616] 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-06-01T21:14:46.3287669Z [6449/7616] 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-06-01T21:14:46.3536435Z [6450/7616] 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-06-01T21:14:46.3591329Z [6451/7616] 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-06-01T21:14:46.3729113Z [6452/7616] 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-06-01T21:14:46.4393820Z [6453/7616] 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-06-01T21:14:46.4586560Z [6454/7616] 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-06-01T21:14:46.4640899Z [6455/7616] 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-06-01T21:14:46.4829693Z [6456/7616] 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-06-01T21:14:46.4846859Z [6457/7616] 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-06-01T21:14:46.5106145Z [6458/7616] 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-06-01T21:14:46.5219155Z [6459/7616] 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-06-01T21:14:46.5703603Z [6460/7616] 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-06-01T21:14:46.6035852Z [6461/7616] 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-06-01T21:14:46.6219413Z [6462/7616] 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-06-01T21:14:46.6266850Z [6463/7616] 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-06-01T21:14:46.6396078Z [6464/7616] 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-06-01T21:14:46.6412706Z [6465/7616] 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-06-01T21:14:46.6601178Z [6466/7616] 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-06-01T21:14:46.6770246Z [6467/7616] 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-06-01T21:14:46.7132604Z [6468/7616] 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-06-01T21:14:46.7321036Z [6469/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256vnni-u32.c.obj 2025-06-01T21:14:46.7337240Z [6470/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256vnni-u64-acc2.c.obj 2025-06-01T21:14:46.7497780Z [6471/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256vnni-u128-acc2.c.obj 2025-06-01T21:14:46.7593102Z [6472/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256vnni-u128-acc4.c.obj 2025-06-01T21:14:46.7840824Z [6473/7616] 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-06-01T21:14:46.8061423Z [6474/7616] 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-06-01T21:14:46.8373447Z [6475/7616] 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-06-01T21:14:46.8703114Z [6476/7616] 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-06-01T21:14:46.8715669Z [6477/7616] 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-06-01T21:14:46.8880135Z [6478/7616] 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-06-01T21:14:46.9088948Z [6479/7616] 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-06-01T21:14:46.9290808Z [6480/7616] 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-06-01T21:14:46.9554738Z [6481/7616] 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-06-01T21:14:46.9748531Z [6482/7616] 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-06-01T21:14:47.0033899Z [6483/7616] 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-06-01T21:14:47.0221237Z [6484/7616] 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-06-01T21:14:47.0430928Z [6485/7616] 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-06-01T21:14:47.0600337Z [6486/7616] 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-06-01T21:14:47.0797267Z [6487/7616] 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-06-01T21:14:47.0988644Z [6488/7616] 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-06-01T21:14:47.1300711Z [6489/7616] 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-06-01T21:14:47.1472352Z [6490/7616] 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-06-01T21:14:47.1654917Z [6491/7616] 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-06-01T21:14:47.1828217Z [6492/7616] 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-06-01T21:14:47.2025904Z [6493/7616] 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-06-01T21:14:47.2201134Z [6494/7616] 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-06-01T21:14:47.2407541Z [6495/7616] 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-06-01T21:14:47.2568604Z [6496/7616] 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-06-01T21:14:48.2582632Z [6497/7616] 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-06-01T21:14:48.2753833Z [6498/7616] 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-06-01T21:14:48.2931664Z [6499/7616] 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-06-01T21:14:48.3101137Z [6500/7616] 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-06-01T21:14:48.3285239Z [6501/7616] 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-06-01T21:14:48.3663258Z [6502/7616] 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-06-01T21:14:48.3862693Z [6503/7616] 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-06-01T21:14:48.4050510Z [6504/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-avx512f-acc2.c.obj 2025-06-01T21:14:48.4241354Z [6505/7616] 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-06-01T21:14:48.4406434Z [6506/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p32c-minmax-avx512f-acc2.c.obj 2025-06-01T21:14:48.4620019Z [6507/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p32c-minmax-avx512f.c.obj 2025-06-01T21:14:48.4898740Z [6508/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-avx512f-acc2.c.obj 2025-06-01T21:14:48.5134627Z [6509/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p32c-minmax-avx512f-acc2.c.obj 2025-06-01T21:14:48.5338042Z [6510/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p32c-minmax-avx512f.c.obj 2025-06-01T21:14:48.5489207Z [6511/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c16s1r-minmax-avx512f-acc2.c.obj 2025-06-01T21:14:48.5639629Z [6512/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c16s1r-minmax-avx512f.c.obj 2025-06-01T21:14:48.5825135Z [6513/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l32c16s1r-minmax-avx512f-acc2.c.obj 2025-06-01T21:14:48.6105583Z [6514/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-avx512f-acc2.c.obj 2025-06-01T21:14:48.6265724Z [6515/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p32c-minmax-avx512f-acc2.c.obj 2025-06-01T21:14:48.6464877Z [6516/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p32c-minmax-avx512f.c.obj 2025-06-01T21:14:48.6610349Z [6517/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-avx512f-acc2.c.obj 2025-06-01T21:14:48.6789387Z [6518/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p32c-minmax-avx512f-acc2.c.obj 2025-06-01T21:14:48.6995961Z [6519/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p32c-minmax-avx512f.c.obj 2025-06-01T21:14:48.7183948Z [6520/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:48.7370789Z [6521/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x64-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:48.7673637Z [6522/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:48.7884601Z [6523/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x32-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:48.8047211Z [6524/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x64-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:48.8243130Z [6525/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:48.8576541Z [6526/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x32-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:48.8777509Z [6527/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x64-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:48.8975925Z [6528/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:48.9311526Z [6529/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x32-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:48.9505342Z [6530/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x64-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:48.9914102Z [6531/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-7x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.0290650Z [6532/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-7x64-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.0480730Z [6533/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-8x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.0672673Z [6534/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-8x32-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.0921966Z [6535/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-8x64-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.1092741Z [6536/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-9x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.1288087Z [6537/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-9x32-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.1471823Z [6538/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-9x64-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.1674793Z [6539/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-10x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.1868904Z [6540/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-10x32-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.2041084Z [6541/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-10x64-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.2279031Z [6542/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-11x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.2457679Z [6543/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-11x32-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.2812717Z [6544/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-11x64-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.3020953Z [6545/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-12x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.3190697Z [6546/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-12x32-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.3558971Z [6547/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-12x64-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.3572179Z [6548/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-13x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.3729555Z [6549/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-13x32-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.3985826Z [6550/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-13x64-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.4154771Z [6551/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-14x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.4467867Z [6552/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-14x32-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.4695669Z [6553/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-14x64-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.5036499Z [6554/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-15x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.5201138Z [6555/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-15x32-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.5406988Z [6556/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-15x64-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.5602947Z [6557/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-16x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.5809866Z [6558/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-16x32-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.5998756Z [6559/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-16x64-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.6214933Z [6560/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.6362830Z [6561/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.6546434Z [6562/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.6753070Z [6563/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.6928616Z [6564/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-7x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.7111897Z [6565/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-8x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.7316662Z [6566/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-1x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.7500682Z [6567/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.7696867Z [6568/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x32-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.7879647Z [6569/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.8076040Z [6570/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x32-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.8296478Z [6571/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.8469888Z [6572/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x32-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.8645825Z [6573/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-7x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.8860164Z [6574/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-8x16-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.9052785Z [6575/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u64-acc2.c.obj 2025-06-01T21:14:49.9248286Z [6576/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-8x32-minmax-avx512f-broadcast.c.obj 2025-06-01T21:14:49.9418210Z [6577/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u64-acc4.c.obj 2025-06-01T21:14:49.9593160Z [6578/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u64.c.obj 2025-06-01T21:14:49.9753785Z [6579/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u128-acc2.c.obj 2025-06-01T21:14:49.9955320Z [6580/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u128-acc4.c.obj 2025-06-01T21:14:50.0133130Z [6581/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u128.c.obj 2025-06-01T21:14:50.0300634Z [6582/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u144-acc3.c.obj 2025-06-01T21:14:50.0576834Z [6583/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u144.c.obj 2025-06-01T21:14:50.0742755Z [6584/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u160-acc2.c.obj 2025-06-01T21:14:50.0976912Z [6585/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u160-acc5.c.obj 2025-06-01T21:14:50.1207688Z [6586/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u160.c.obj 2025-06-01T21:14:50.1413472Z [6587/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u192-acc2.c.obj 2025-06-01T21:14:50.1597709Z [6588/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u192-acc3.c.obj 2025-06-01T21:14:50.1780446Z [6589/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u192-acc6.c.obj 2025-06-01T21:14:50.1957700Z [6590/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u192.c.obj 2025-06-01T21:14:50.2299455Z [6591/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u64-acc2.c.obj 2025-06-01T21:14:50.2469657Z [6592/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u64-acc4.c.obj 2025-06-01T21:14:50.2715351Z [6593/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u64.c.obj 2025-06-01T21:14:50.2910212Z [6594/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u128-acc2.c.obj 2025-06-01T21:14:50.3176160Z [6595/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u128-acc4.c.obj 2025-06-01T21:14:50.3382221Z [6596/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u128.c.obj 2025-06-01T21:14:50.6456427Z [6597/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u144-acc3.c.obj 2025-06-01T21:14:50.6644169Z [6598/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u144.c.obj 2025-06-01T21:14:50.6796096Z [6599/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u160-acc2.c.obj 2025-06-01T21:14:50.7011238Z [6600/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u160-acc5.c.obj 2025-06-01T21:14:50.7149018Z [6601/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u160.c.obj 2025-06-01T21:14:50.7343641Z [6602/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u192-acc2.c.obj 2025-06-01T21:14:50.7500696Z [6603/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u192-acc6.c.obj 2025-06-01T21:14:50.7558330Z [6604/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u192-acc3.c.obj 2025-06-01T21:14:50.7708645Z [6605/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u192.c.obj 2025-06-01T21:14:50.7810283Z [6606/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-u16.c.obj 2025-06-01T21:14:50.7990272Z [6607/7616] 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-06-01T21:14:50.8153533Z [6608/7616] 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-06-01T21:14:50.8457418Z [6609/7616] 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-06-01T21:14:50.8605999Z [6610/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr2-p5-u16.c.obj 2025-06-01T21:14:50.8816512Z [6611/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx512f-c16.c.obj 2025-06-01T21:14:50.8869974Z [6612/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr2-p5-u32-acc2.c.obj 2025-06-01T21:14:50.8929152Z [6613/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr2-p5-u64-acc4.c.obj 2025-06-01T21:14:50.9098628Z [6614/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx512f-c32.c.obj 2025-06-01T21:14:50.9402753Z [6615/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx512f-c128.c.obj 2025-06-01T21:14:50.9461276Z [6616/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u16.c.obj 2025-06-01T21:14:50.9576372Z [6617/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u32-acc2.c.obj 2025-06-01T21:14:50.9870645Z [6618/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u48-acc3.c.obj 2025-06-01T21:14:50.9923424Z [6619/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u64-acc2.c.obj 2025-06-01T21:14:50.9975959Z [6620/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u16.c.obj 2025-06-01T21:14:51.0081841Z [6621/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u32-acc2.c.obj 2025-06-01T21:14:51.0437963Z [6622/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u48-acc3.c.obj 2025-06-01T21:14:51.0525776Z [6623/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u64-acc2.c.obj 2025-06-01T21:14:51.0679821Z [6624/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u64-acc4.c.obj 2025-06-01T21:14:51.0936071Z [6625/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u16.c.obj 2025-06-01T21:14:51.0989986Z [6626/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u32-acc2.c.obj 2025-06-01T21:14:51.1003834Z [6627/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u48-acc3.c.obj 2025-06-01T21:14:51.1379773Z [6628/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u64-acc2.c.obj 2025-06-01T21:14:51.1471350Z [6629/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx512f-u16.c.obj 2025-06-01T21:14:51.1529462Z [6630/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx512f-u32-acc2.c.obj 2025-06-01T21:14:51.1716393Z [6631/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx512f-u48-acc3.c.obj 2025-06-01T21:14:51.1891157Z [6632/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx512f-u64-acc2.c.obj 2025-06-01T21:14:51.2131927Z [6633/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-avx512f-u16.c.obj 2025-06-01T21:14:51.2238129Z [6634/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-avx512f-u16.c.obj 2025-06-01T21:14:51.2486792Z [6635/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-avx512f-u16.c.obj 2025-06-01T21:14:51.2566654Z [6636/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-avx512f-u16.c.obj 2025-06-01T21:14:51.2675964Z [6637/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-avx512f-u16.c.obj 2025-06-01T21:14:51.2787580Z [6638/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-avx512f-u16.c.obj 2025-06-01T21:14:51.3082994Z [6639/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-avx512f-u16.c.obj 2025-06-01T21:14:51.3279640Z [6640/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-avx512f-u16.c.obj 2025-06-01T21:14:51.3364564Z [6641/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-avx512f-u16.c.obj 2025-06-01T21:14:51.3562560Z [6642/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-avx512f-u16.c.obj 2025-06-01T21:14:51.3780589Z [6643/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-avx512f-u16.c.obj 2025-06-01T21:14:51.4191523Z [6644/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-avx512f-u16.c.obj 2025-06-01T21:14:51.4243579Z [6645/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-avx512f-u16.c.obj 2025-06-01T21:14:51.4311713Z [6646/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-avx512f-u16.c.obj 2025-06-01T21:14:51.4559386Z [6647/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-avx512f-u16.c.obj 2025-06-01T21:14:51.4698294Z [6648/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-avx512f-u16.c.obj 2025-06-01T21:14:51.4866532Z [6649/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-avx512f-u16.c.obj 2025-06-01T21:14:51.5312207Z [6650/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-avx512f-u16.c.obj 2025-06-01T21:14:51.5327054Z [6651/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-avx512f-u32.c.obj 2025-06-01T21:14:51.5396041Z [6652/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-avx512f-u16.c.obj 2025-06-01T21:14:51.5655854Z [6653/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-avx512f-u64.c.obj 2025-06-01T21:14:51.5845988Z [6654/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-avx512f-u128.c.obj 2025-06-01T21:14:51.5902515Z [6655/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-avx512f-u16.c.obj 2025-06-01T21:14:51.5998515Z [6656/7616] 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-06-01T21:14:51.6640771Z [6657/7616] 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-06-01T21:14:51.6718325Z [6658/7616] 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-06-01T21:14:51.6733400Z [6659/7616] 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-06-01T21:14:51.6962404Z [6660/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-p6-u32.c.obj 2025-06-01T21:14:51.7017754Z [6661/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-p6-u16.c.obj 2025-06-01T21:14:51.7068981Z [6662/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-p6-u48.c.obj 2025-06-01T21:14:51.7084232Z [6663/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vgelu\gen\f32-vgelu-avx512f-rational-12-10-div.c.obj 2025-06-01T21:14:51.8176585Z [6664/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlog\gen\f32-vlog-avx512f-rational-3-3-nr.c.obj 2025-06-01T21:14:51.8242819Z [6665/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-avx512f-u16.c.obj 2025-06-01T21:14:51.8256194Z [6666/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-avx512f-u32.c.obj 2025-06-01T21:14:51.8312268Z [6667/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-avx512f-u32.c.obj 2025-06-01T21:14:51.8325413Z [6668/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-avx512f-u32.c.obj 2025-06-01T21:14:51.8390628Z [6669/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-avx512f-u32.c.obj 2025-06-01T21:14:51.8475943Z [6670/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-avx512f-u32.c.obj 2025-06-01T21:14:51.9369060Z [6671/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-avx512f-u32.c.obj 2025-06-01T21:14:51.9501039Z [6672/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx512f-p5-scalef-u32.c.obj 2025-06-01T21:14:51.9548326Z [6673/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx512f-p5-scalef-u16.c.obj 2025-06-01T21:14:51.9565906Z [6674/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx512f-rsqrt-u64.c.obj 2025-06-01T21:14:51.9624138Z [6675/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx512f-rsqrt-u16.c.obj 2025-06-01T21:14:51.9686131Z [6676/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx512f-p5-scalef-u48.c.obj 2025-06-01T21:14:51.9807103Z [6677/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-avx512f-u32.c.obj 2025-06-01T21:14:52.0424778Z [6678/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx512f-p5-scalef-u32.c.obj 2025-06-01T21:14:52.0437680Z [6679/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx512f-p5-scalef-u16.c.obj 2025-06-01T21:14:52.0619214Z [6680/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx512f-p5-scalef-u64.c.obj 2025-06-01T21:14:52.0720459Z [6681/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx512f-p5-scalef-u48.c.obj 2025-06-01T21:14:52.0766730Z [6682/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx512f-p5-scalef-u64.c.obj 2025-06-01T21:14:52.0825713Z [6683/7616] 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-06-01T21:14:52.0941144Z [6684/7616] 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-06-01T21:14:52.1805569Z [6685/7616] 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-06-01T21:14:52.2284590Z [6686/7616] 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-06-01T21:14:52.2298909Z [6687/7616] 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-06-01T21:14:52.2313084Z [6688/7616] 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-06-01T21:14:52.2324852Z [6689/7616] 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-06-01T21:14:52.2339817Z [6690/7616] 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-06-01T21:14:52.2357425Z [6691/7616] 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-06-01T21:14:52.3289109Z [6692/7616] 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-06-01T21:14:52.3500986Z [6693/7616] 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-06-01T21:14:52.3599704Z [6694/7616] 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-06-01T21:14:52.3656902Z [6695/7616] 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-06-01T21:14:52.3813439Z [6696/7616] 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-06-01T21:14:52.3903450Z [6697/7616] 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-06-01T21:14:52.4186671Z [6698/7616] 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-06-01T21:14:52.4396607Z [6699/7616] 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-06-01T21:14:52.4796296Z [6700/7616] 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-06-01T21:14:52.4873706Z [6701/7616] 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-06-01T21:14:52.4927370Z [6702/7616] 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-06-01T21:14:52.4986345Z [6703/7616] 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-06-01T21:14:52.5113294Z [6704/7616] 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-06-01T21:14:52.5576312Z [6705/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx512f-rsqrt-u32.c.obj 2025-06-01T21:14:52.5645818Z [6706/7616] 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-06-01T21:14:52.6043995Z [6707/7616] 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-06-01T21:14:52.6057781Z [6708/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx512f-u1.c.obj 2025-06-01T21:14:52.6118615Z [6709/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vtanh\gen\f32-vtanh-avx512f-rational-9-8-div.c.obj 2025-06-01T21:14:52.6301652Z [6710/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx512f-rsqrt-u48.c.obj 2025-06-01T21:14:52.6699341Z [6711/7616] 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-06-01T21:14:52.6717309Z [6712/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx512f-u8.c.obj 2025-06-01T21:14:52.6784254Z [6713/7616] 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-06-01T21:14:52.7190663Z [6714/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-avx512f-u4.c.obj 2025-06-01T21:14:52.7340793Z [6715/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx512f-u1.c.obj 2025-06-01T21:14:52.7355030Z [6716/7616] 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-06-01T21:14:52.7451769Z [6717/7616] 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-06-01T21:14:52.7962867Z [6718/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-avx512skx-c16.c.obj 2025-06-01T21:14:52.7976738Z [6719/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx512skx-u32.c.obj 2025-06-01T21:14:52.8104059Z [6720/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-goi-avx512f-u4.c.obj 2025-06-01T21:14:52.8399909Z [6721/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-avx512skx-c32.c.obj 2025-06-01T21:14:52.8487945Z [6722/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u16.c.obj 2025-06-01T21:14:52.8544556Z [6723/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-avx512skx-c128.c.obj 2025-06-01T21:14:52.8611762Z [6724/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u32-acc2.c.obj 2025-06-01T21:14:52.9133382Z [6725/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u64-acc2.c.obj 2025-06-01T21:14:52.9147808Z [6726/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u48-acc3.c.obj 2025-06-01T21:14:52.9204848Z [6727/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u128-acc4.c.obj 2025-06-01T21:14:52.9631943Z [6728/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u16.c.obj 2025-06-01T21:14:52.9803396Z [6729/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u48-acc3.c.obj 2025-06-01T21:14:52.9944648Z [6730/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u64-acc2.c.obj 2025-06-01T21:14:52.9960918Z [6731/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u32-acc2.c.obj 2025-06-01T21:14:53.0152771Z [6732/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u32-acc2.c.obj 2025-06-01T21:14:53.0235101Z [6733/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u16.c.obj 2025-06-01T21:14:53.0316094Z [6734/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u48-acc3.c.obj 2025-06-01T21:14:53.0871998Z [6735/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u64-acc2.c.obj 2025-06-01T21:14:53.0993449Z [6736/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u32-acc2.c.obj 2025-06-01T21:14:53.1050850Z [6737/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u64-acc4.c.obj 2025-06-01T21:14:53.1104464Z [6738/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u16.c.obj 2025-06-01T21:14:53.1351779Z [6739/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u64-acc2.c.obj 2025-06-01T21:14:53.1577692Z [6740/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-avx512skx-sqrt-u16.c.obj 2025-06-01T21:14:53.1724010Z [6741/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u48-acc3.c.obj 2025-06-01T21:14:53.2054482Z [6742/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-avx512skx-sqrt-u32.c.obj 2025-06-01T21:14:53.2199883Z [6743/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx512skx-u32.c.obj 2025-06-01T21:14:53.2299282Z [6744/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-avx512skx-sqrt-u64.c.obj 2025-06-01T21:14:53.2473145Z [6745/7616] 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-06-01T21:14:53.2756539Z [6746/7616] 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-06-01T21:14:53.3117055Z [6747/7616] 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-06-01T21:14:53.3170028Z [6748/7616] 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-06-01T21:14:53.3463271Z [6749/7616] 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-06-01T21:14:53.3639578Z [6750/7616] 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-06-01T21:14:53.3879489Z [6751/7616] 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-06-01T21:14:53.3948427Z [6752/7616] 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-06-01T21:14:53.4676839Z [6753/7616] 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-06-01T21:14:53.4804266Z [6754/7616] 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-06-01T21:14:53.4864183Z [6755/7616] 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-06-01T21:14:53.4882873Z [6756/7616] 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-06-01T21:14:53.5191774Z [6757/7616] 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-06-01T21:14:53.5489152Z [6758/7616] 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-06-01T21:14:53.5799778Z [6759/7616] 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-06-01T21:14:53.6257146Z [6760/7616] 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-06-01T21:14:53.6395761Z [6761/7616] 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-06-01T21:14:53.6485476Z [6762/7616] 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-06-01T21:14:53.6687353Z [6763/7616] 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-06-01T21:14:53.6756314Z [6764/7616] 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-06-01T21:14:53.6871414Z [6765/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx512skx-u32.c.obj 2025-06-01T21:14:53.7144396Z [6766/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx512skx-u64.c.obj 2025-06-01T21:14:53.7531659Z [6767/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx512skx-u32.c.obj 2025-06-01T21:14:53.7619393Z [6768/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx512skx-u96.c.obj 2025-06-01T21:14:53.7940740Z [6769/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx512skx-u96.c.obj 2025-06-01T21:14:53.7992505Z [6770/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx512skx-u64.c.obj 2025-06-01T21:14:53.8164166Z [6771/7616] 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-06-01T21:14:53.8180812Z [6772/7616] 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-06-01T21:14:53.8502282Z [6773/7616] 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-06-01T21:14:53.9160181Z [6774/7616] 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-06-01T21:14:53.9686307Z [6775/7616] 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-06-01T21:14:53.9743563Z [6776/7616] 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-06-01T21:14:53.9805907Z [6777/7616] 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-06-01T21:14:53.9819692Z [6778/7616] 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-06-01T21:14:53.9832195Z [6779/7616] 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-06-01T21:14:54.0145619Z [6780/7616] 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-06-01T21:14:54.0753698Z [6781/7616] 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-06-01T21:14:54.1016560Z [6782/7616] 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-06-01T21:14:54.1286302Z [6783/7616] 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-06-01T21:14:54.1461202Z [6784/7616] 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-06-01T21:14:54.1478898Z [6785/7616] 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-06-01T21:14:54.1531400Z [6786/7616] 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-06-01T21:14:54.2100443Z [6787/7616] 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-06-01T21:14:54.2216475Z [6788/7616] 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-06-01T21:14:54.2278665Z [6789/7616] 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-06-01T21:14:54.2856922Z [6790/7616] 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-06-01T21:14:54.2915814Z [6791/7616] 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-06-01T21:14:54.2928570Z [6792/7616] 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-06-01T21:14:54.3004511Z [6793/7616] 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-06-01T21:14:54.3561823Z [6794/7616] 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-06-01T21:14:54.3615349Z [6795/7616] 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-06-01T21:14:54.3772033Z [6796/7616] 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-06-01T21:14:54.4257308Z [6797/7616] 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-06-01T21:14:54.4315054Z [6798/7616] 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-06-01T21:14:54.4538980Z [6799/7616] 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-06-01T21:14:54.4737484Z [6800/7616] 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-06-01T21:14:54.4918929Z [6801/7616] 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-06-01T21:14:54.4981009Z [6802/7616] 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-06-01T21:14:54.5574780Z [6803/7616] 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-06-01T21:14:54.5637364Z [6804/7616] 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-06-01T21:14:54.5776305Z [6805/7616] 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-06-01T21:14:54.6200961Z [6806/7616] 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-06-01T21:14:54.6300374Z [6807/7616] 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-06-01T21:14:54.6374485Z [6808/7616] 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-06-01T21:14:54.6832888Z [6809/7616] 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-06-01T21:14:54.7137712Z [6810/7616] 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-06-01T21:14:54.7225532Z [6811/7616] 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-06-01T21:14:54.7460115Z [6812/7616] 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-06-01T21:14:54.7621677Z [6813/7616] 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-06-01T21:14:54.7685446Z [6814/7616] 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-06-01T21:14:54.8073711Z [6815/7616] 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-06-01T21:14:54.8425048Z [6816/7616] 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-06-01T21:14:54.8440148Z [6817/7616] 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-06-01T21:14:54.8489843Z [6818/7616] 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-06-01T21:14:54.9023609Z [6819/7616] 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-06-01T21:14:54.9125360Z [6820/7616] 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-06-01T21:14:54.9317629Z [6821/7616] 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-06-01T21:14:54.9554979Z [6822/7616] 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-06-01T21:14:54.9631902Z [6823/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-06-01T21:14:54.9828416Z [6824/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-06-01T21:14:54.9934022Z [6825/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-06-01T21:14:55.0591301Z [6826/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-06-01T21:14:55.0605101Z [6827/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-06-01T21:14:55.0680484Z [6828/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-06-01T21:14:55.0766291Z [6829/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx512skx-mul32.c.obj 2025-06-01T21:14:55.0837081Z [6830/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx512skx-u16.c.obj 2025-06-01T21:14:55.0968376Z [6831/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx512skx-u48.c.obj 2025-06-01T21:14:55.1023926Z [6832/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx512skx-mul32.c.obj 2025-06-01T21:14:55.1862358Z [6833/7616] 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-06-01T21:14:55.1992660Z [6834/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx512skx-u64.c.obj 2025-06-01T21:14:55.2043993Z [6835/7616] 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-06-01T21:14:55.2093225Z [6836/7616] 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-06-01T21:14:55.2210369Z [6837/7616] 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-06-01T21:14:55.2301809Z [6838/7616] 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-06-01T21:14:55.2499403Z [6839/7616] 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-06-01T21:14:55.3351368Z [6840/7616] 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-06-01T21:14:55.3370114Z [6841/7616] 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-06-01T21:14:55.3456353Z [6842/7616] 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-06-01T21:14:55.3657318Z [6843/7616] 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-06-01T21:14:55.3724500Z [6844/7616] 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-06-01T21:14:55.3929339Z [6845/7616] 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-06-01T21:14:55.3983798Z [6846/7616] 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-06-01T21:14:55.4712370Z [6847/7616] 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-06-01T21:14:55.4761461Z [6848/7616] 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-06-01T21:14:55.4976459Z [6849/7616] 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-06-01T21:14:55.4990989Z [6850/7616] 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-06-01T21:14:55.5140853Z [6851/7616] 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-06-01T21:14:55.5201934Z [6852/7616] 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-06-01T21:14:55.5214155Z [6853/7616] 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-06-01T21:14:55.5787957Z [6854/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512skx-u64.c.obj 2025-06-01T21:14:55.5802346Z [6855/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-avx512skx-c128.c.obj 2025-06-01T21:14:55.6013040Z [6856/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512skx-u256-acc2.c.obj 2025-06-01T21:14:55.6079242Z [6857/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512skx-u256-acc4.c.obj 2025-06-01T21:14:55.6227722Z [6858/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx512skx-mul32-ld128-u32.c.obj 2025-06-01T21:14:55.6286993Z [6859/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx512skx-mul32-ld128-u32.c.obj 2025-06-01T21:14:55.6411305Z [6860/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-06-01T21:14:55.7047727Z [6861/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-06-01T21:14:55.7120101Z [6862/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-06-01T21:14:55.7294749Z [6863/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-06-01T21:14:55.7404460Z [6864/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-06-01T21:14:55.7563867Z [6865/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-avx512skx-mul32.c.obj 2025-06-01T21:14:55.7644796Z [6866/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-avx512skx-mul32.c.obj 2025-06-01T21:14:55.7919538Z [6867/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-06-01T21:14:55.8109851Z [6868/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx512skx-u48.c.obj 2025-06-01T21:14:55.8173921Z [6869/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx512skx-u16.c.obj 2025-06-01T21:14:55.8618582Z [6870/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx512skx-u64.c.obj 2025-06-01T21:14:55.8698677Z [6871/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x16c8-minmax-fp32-avx512skx.c.obj 2025-06-01T21:14:55.8836482Z [6872/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-5x16c8-minmax-fp32-avx512skx.c.obj 2025-06-01T21:14:55.8891271Z [6873/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-5x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-06-01T21:14:55.9307081Z [6874/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-7x16c8-minmax-fp32-avx512skx.c.obj 2025-06-01T21:14:55.9566882Z [6875/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-8x16c8-minmax-fp32-avx512skx.c.obj 2025-06-01T21:14:55.9679255Z [6876/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-8x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-06-01T21:14:55.9792673Z [6877/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x16c8-minmax-fp32-avx512skx.c.obj 2025-06-01T21:14:55.9863289Z [6878/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-5x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-06-01T21:14:56.0100589Z [6879/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-7x16c8-minmax-fp32-avx512skx.c.obj 2025-06-01T21:14:56.0113115Z [6880/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-5x16c8-minmax-fp32-avx512skx.c.obj 2025-06-01T21:14:56.0450281Z [6881/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-8x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-06-01T21:14:56.0757287Z [6882/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512skx-vpshufb-u128.c.obj 2025-06-01T21:14:56.0822772Z [6883/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx512skx-mul32-ld128-u32.c.obj 2025-06-01T21:14:56.0841175Z [6884/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-8x16c8-minmax-fp32-avx512skx.c.obj 2025-06-01T21:14:56.0975190Z [6885/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512skx-vpshufb-u256.c.obj 2025-06-01T21:14:56.1166058Z [6886/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx512skx-mul32-ld128-u32.c.obj 2025-06-01T21:14:56.1178390Z [6887/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512skx-vpshufb-u192.c.obj 2025-06-01T21:14:56.1231487Z [6888/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512vbmi-vpermx2b-u64.c.obj 2025-06-01T21:14:56.1838350Z [6889/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512vbmi-vpermx2b-u256.c.obj 2025-06-01T21:14:56.1853047Z [6890/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512vbmi-vpermx2b-u192.c.obj 2025-06-01T21:14:56.2072343Z [6891/7616] 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-06-01T21:14:56.2186811Z [6892/7616] 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-06-01T21:14:56.2838427Z [6893/7616] 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-06-01T21:14:56.2978881Z [6894/7616] 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-06-01T21:14:56.2992910Z [6895/7616] 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-06-01T21:14:56.3154244Z [6896/7616] 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-06-01T21:14:56.3218531Z [6897/7616] 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-06-01T21:14:56.3371997Z [6898/7616] 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-06-01T21:14:56.3630969Z [6899/7616] 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-06-01T21:14:56.4235022Z [6900/7616] 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-06-01T21:14:56.4326668Z [6901/7616] 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-06-01T21:14:56.4388668Z [6902/7616] 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-06-01T21:14:56.4490827Z [6903/7616] 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-06-01T21:14:56.4595564Z [6904/7616] 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-06-01T21:14:56.4797308Z [6905/7616] 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-06-01T21:14:56.4958041Z [6906/7616] 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-06-01T21:14:56.5597170Z [6907/7616] 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-06-01T21:14:56.5666230Z [6908/7616] 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-06-01T21:14:56.5851298Z [6909/7616] 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-06-01T21:14:56.6004246Z [6910/7616] 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-06-01T21:14:56.6165652Z [6911/7616] 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-06-01T21:14:56.6253466Z [6912/7616] 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-06-01T21:14:56.6314759Z [6913/7616] 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-06-01T21:14:56.6969134Z [6914/7616] 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-06-01T21:14:56.7045586Z [6915/7616] 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-06-01T21:14:56.7206733Z [6916/7616] 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-06-01T21:14:56.7404768Z [6917/7616] 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-06-01T21:14:56.7558982Z [6918/7616] 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-06-01T21:14:56.7618549Z [6919/7616] 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-06-01T21:14:56.7694590Z [6920/7616] 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-06-01T21:14:56.8452507Z [6921/7616] 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-06-01T21:14:56.8555500Z [6922/7616] 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-06-01T21:14:56.8743084Z [6923/7616] 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-06-01T21:14:56.8878203Z [6924/7616] 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-06-01T21:14:56.8940119Z [6925/7616] 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-06-01T21:14:56.9166831Z [6926/7616] 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-06-01T21:14:56.9503305Z [6927/7616] 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-06-01T21:14:56.9810940Z [6928/7616] 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-06-01T21:14:56.9948584Z [6929/7616] 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-06-01T21:14:57.0044437Z [6930/7616] 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-06-01T21:14:57.0126411Z [6931/7616] 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-06-01T21:14:57.0312870Z [6932/7616] 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-06-01T21:14:57.0503720Z [6933/7616] 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-06-01T21:14:57.0851452Z [6934/7616] 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-06-01T21:14:57.1175650Z [6935/7616] 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-06-01T21:14:57.1462616Z [6936/7616] 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-06-01T21:14:57.1513748Z [6937/7616] 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-06-01T21:14:57.1584766Z [6938/7616] 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-06-01T21:14:57.1640405Z [6939/7616] 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-06-01T21:14:57.1792222Z [6940/7616] 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-06-01T21:14:57.2162085Z [6941/7616] 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-06-01T21:14:57.2538788Z [6942/7616] 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-06-01T21:14:57.2778670Z [6943/7616] 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-06-01T21:14:57.2947350Z [6944/7616] 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-06-01T21:14:57.3011026Z [6945/7616] 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-06-01T21:14:57.3205685Z [6946/7616] 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-06-01T21:14:57.3353386Z [6947/7616] 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-06-01T21:14:57.3479806Z [6948/7616] 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-06-01T21:14:57.3840263Z [6949/7616] 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-06-01T21:14:57.4103294Z [6950/7616] 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-06-01T21:14:57.4247386Z [6951/7616] 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-06-01T21:14:57.4311606Z [6952/7616] 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-06-01T21:14:57.4598268Z [6953/7616] 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-06-01T21:14:57.4724269Z [6954/7616] 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-06-01T21:14:57.4821570Z [6955/7616] 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-06-01T21:14:57.5211825Z [6956/7616] 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-06-01T21:14:57.5530920Z [6957/7616] 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-06-01T21:14:57.5619566Z [6958/7616] 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-06-01T21:14:57.5669670Z [6959/7616] 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-06-01T21:14:57.5965333Z [6960/7616] 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-06-01T21:14:57.6070253Z [6961/7616] 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-06-01T21:14:57.6277483Z [6962/7616] 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-06-01T21:14:57.6485657Z [6963/7616] 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-06-01T21:14:57.6977227Z [6964/7616] 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-06-01T21:14:57.6994728Z [6965/7616] 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-06-01T21:14:57.7060867Z [6966/7616] 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-06-01T21:14:57.7517337Z [6967/7616] 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-06-01T21:14:57.7719001Z [6968/7616] 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-06-01T21:14:57.7773589Z [6969/7616] 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-06-01T21:14:57.7848732Z [6970/7616] 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-06-01T21:14:57.8335732Z [6971/7616] 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-06-01T21:14:57.8419234Z [6972/7616] 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-06-01T21:14:57.8666651Z [6973/7616] 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-06-01T21:14:57.8917529Z [6974/7616] 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-06-01T21:14:57.8980729Z [6975/7616] 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-06-01T21:14:57.9114060Z [6976/7616] 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-06-01T21:14:57.9268432Z [6977/7616] 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-06-01T21:14:57.9707644Z [6978/7616] 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-06-01T21:14:57.9815858Z [6979/7616] 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-06-01T21:14:58.0079538Z [6980/7616] 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-06-01T21:14:58.0319832Z [6981/7616] 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-06-01T21:14:58.0391012Z [6982/7616] 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-06-01T21:14:58.0487331Z [6983/7616] 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-06-01T21:14:58.0691020Z [6984/7616] 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-06-01T21:14:58.1066739Z [6985/7616] 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-06-01T21:14:58.1219833Z [6986/7616] 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-06-01T21:14:58.1426773Z [6987/7616] 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-06-01T21:14:58.1748490Z [6988/7616] 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-06-01T21:14:58.1799014Z [6989/7616] 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-06-01T21:14:58.2062857Z [6990/7616] 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-06-01T21:14:58.2232666Z [6991/7616] 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-06-01T21:14:58.2369341Z [6992/7616] 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-06-01T21:14:58.2575170Z [6993/7616] 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-06-01T21:14:58.2707500Z [6994/7616] 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-06-01T21:14:58.3015188Z [6995/7616] 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-06-01T21:14:58.3073365Z [6996/7616] 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-06-01T21:14:58.3351566Z [6997/7616] 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-06-01T21:14:58.3675306Z [6998/7616] 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-06-01T21:14:58.3691601Z [6999/7616] 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-06-01T21:14:58.3949768Z [7000/7616] 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-06-01T21:14:58.4051738Z [7001/7616] 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-06-01T21:14:58.4462003Z [7002/7616] 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-06-01T21:14:58.4517065Z [7003/7616] 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-06-01T21:14:58.4649071Z [7004/7616] 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-06-01T21:14:58.5032280Z [7005/7616] 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-06-01T21:14:58.5086818Z [7006/7616] 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-06-01T21:14:58.5289834Z [7007/7616] 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-06-01T21:14:58.5540666Z [7008/7616] 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-06-01T21:14:58.5751754Z [7009/7616] 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-06-01T21:14:58.5848306Z [7010/7616] 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-06-01T21:14:58.5946683Z [7011/7616] 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-06-01T21:14:58.6355031Z [7012/7616] 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-06-01T21:14:58.6600532Z [7013/7616] 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-06-01T21:14:58.7076872Z [7014/7616] 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-06-01T21:14:58.7169337Z [7015/7616] 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-06-01T21:14:58.7183204Z [7016/7616] 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-06-01T21:14:58.7236441Z [7017/7616] 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-06-01T21:14:58.7364952Z [7018/7616] 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-06-01T21:14:58.7625311Z [7019/7616] 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-06-01T21:14:58.7863805Z [7020/7616] 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-06-01T21:14:58.8453689Z [7021/7616] 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-06-01T21:14:58.8601356Z [7022/7616] 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-06-01T21:14:58.8655233Z [7023/7616] 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-06-01T21:14:58.8712394Z [7024/7616] 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-06-01T21:14:58.8885998Z [7025/7616] 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-06-01T21:14:58.9122419Z [7026/7616] 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-06-01T21:14:58.9272051Z [7027/7616] 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-06-01T21:14:59.0038040Z [7028/7616] 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-06-01T21:14:59.0101652Z [7029/7616] 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-06-01T21:14:59.0117930Z [7030/7616] 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-06-01T21:14:59.0178247Z [7031/7616] 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-06-01T21:14:59.0309675Z [7032/7616] 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-06-01T21:14:59.0619722Z [7033/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x16c4-minmax-avx512vnni.c.obj 2025-06-01T21:14:59.0633379Z [7034/7616] 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-06-01T21:14:59.1377859Z [7035/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x16c8-minmax-avx512vnni.c.obj 2025-06-01T21:14:59.1511297Z [7036/7616] 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-06-01T21:14:59.1564605Z [7037/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x16c4-minmax-avx512vnni.c.obj 2025-06-01T21:14:59.1617811Z [7038/7616] 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-06-01T21:14:59.1699547Z [7039/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-5x16c4-minmax-avx512vnni.c.obj 2025-06-01T21:14:59.1931060Z [7040/7616] 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-06-01T21:14:59.1995848Z [7041/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-5x16c8-minmax-avx512vnni.c.obj 2025-06-01T21:14:59.2712096Z [7042/7616] 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-06-01T21:14:59.2970981Z [7043/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-7x16c8-minmax-avx512vnni.c.obj 2025-06-01T21:14:59.2985546Z [7044/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-7x16c4-minmax-avx512vnni.c.obj 2025-06-01T21:14:59.3058198Z [7045/7616] 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-06-01T21:14:59.3229398Z [7046/7616] 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-06-01T21:14:59.3309871Z [7047/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-8x16c4-minmax-avx512vnni.c.obj 2025-06-01T21:14:59.3480715Z [7048/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-8x16c8-minmax-avx512vnni.c.obj 2025-06-01T21:14:59.4010180Z [7049/7616] 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-06-01T21:14:59.4394617Z [7050/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-9x16c4-minmax-avx512vnni.c.obj 2025-06-01T21:14:59.4489958Z [7051/7616] 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-06-01T21:14:59.4549335Z [7052/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-9x16c8-minmax-avx512vnni.c.obj 2025-06-01T21:14:59.4625750Z [7053/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-10x16c4-minmax-avx512vnni.c.obj 2025-06-01T21:14:59.4733284Z [7054/7616] 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-06-01T21:14:59.4831715Z [7055/7616] 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-06-01T21:14:59.5464133Z [7056/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-10x16c8-minmax-avx512vnni.c.obj 2025-06-01T21:14:59.5749324Z [7057/7616] 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-06-01T21:14:59.5822405Z [7058/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-12x16c4-minmax-avx512vnni.c.obj 2025-06-01T21:14:59.6035119Z [7059/7616] 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-06-01T21:14:59.6047425Z [7060/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-12x16c8-minmax-avx512vnni.c.obj 2025-06-01T21:14:59.6100875Z [7061/7616] 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-06-01T21:14:59.6162750Z [7062/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-14x16c4-minmax-avx512vnni.c.obj 2025-06-01T21:14:59.6813608Z [7063/7616] 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-06-01T21:14:59.6882148Z [7064/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512vnni-u64.c.obj 2025-06-01T21:14:59.7129178Z [7065/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512vnni-u256-acc2.c.obj 2025-06-01T21:14:59.7146105Z [7066/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-14x16c8-minmax-avx512vnni.c.obj 2025-06-01T21:14:59.7204356Z [7067/7616] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512vnni-u256-acc4.c.obj 2025-06-01T21:14:59.7369023Z [7068/7616] 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-06-01T21:14:59.7575297Z [7069/7616] 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-06-01T21:14:59.8184592Z [7070/7616] 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-06-01T21:14:59.8198458Z [7071/7616] 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-06-01T21:14:59.8416225Z [7072/7616] 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-06-01T21:14:59.8490453Z [7073/7616] 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-06-01T21:14:59.8506608Z [7074/7616] 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-06-01T21:14:59.8637426Z [7075/7616] 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-06-01T21:14:59.8839996Z [7076/7616] 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-06-01T21:14:59.9587483Z [7077/7616] 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-06-01T21:14:59.9602550Z [7078/7616] 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-06-01T21:14:59.9795473Z [7079/7616] 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-06-01T21:14:59.9943433Z [7080/7616] 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-06-01T21:14:59.9996282Z [7081/7616] 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-06-01T21:15:00.0052066Z [7082/7616] 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-06-01T21:15:00.0180795Z [7083/7616] 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-06-01T21:15:00.0911623Z [7084/7616] 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-06-01T21:15:00.0968449Z [7085/7616] 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-06-01T21:15:00.1152098Z [7086/7616] 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-06-01T21:15:00.1305044Z [7087/7616] 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-06-01T21:15:00.1384496Z [7088/7616] 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-06-01T21:15:00.1457973Z [7089/7616] 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-06-01T21:15:00.1643589Z [7090/7616] 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-06-01T21:15:00.2193440Z [7091/7616] 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-06-01T21:15:00.2280535Z [7092/7616] 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-06-01T21:15:00.2505428Z [7093/7616] 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-06-01T21:15:00.2717353Z [7094/7616] 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-06-01T21:15:00.2813534Z [7095/7616] 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-06-01T21:15:00.3076152Z [7096/7616] 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-06-01T21:15:00.3325626Z [7097/7616] 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-06-01T21:15:00.3492458Z [7098/7616] 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-06-01T21:15:00.3544478Z [7099/7616] 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-06-01T21:15:00.3749312Z [7100/7616] 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-06-01T21:15:00.4030880Z [7101/7616] 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-06-01T21:15:00.4295958Z [7102/7616] 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-06-01T21:15:00.4579887Z [7103/7616] 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-06-01T21:15:00.4719422Z [7104/7616] 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-06-01T21:15:00.4948149Z [7105/7616] 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-06-01T21:15:00.5005039Z [7106/7616] 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-06-01T21:15:00.5081232Z [7107/7616] 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-06-01T21:15:00.5393123Z [7108/7616] 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-06-01T21:15:00.7227420Z [7109/7616] 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-06-01T21:15:00.7928845Z [7110/7616] 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-06-01T21:15:00.7942534Z [7111/7616] 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-06-01T21:15:00.8279338Z [7112/7616] 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-06-01T21:15:01.0333801Z [7113/7616] 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-06-01T21:15:02.1936242Z [7114/7616] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark_main.dir\benchmark_main.cc.obj 2025-06-01T21:15:02.8439754Z [7115/7616] Linking CXX static library lib\gtest_main.lib 2025-06-01T21:15:03.1683606Z [7116/7616] Building CXX object third_party\fmt\CMakeFiles\fmt.dir\src\format.cc.obj 2025-06-01T21:15:03.6535701Z [7117/7616] Building CXX object third_party\fmt\CMakeFiles\fmt.dir\src\os.cc.obj 2025-06-01T21:15:04.3827214Z [7118/7616] Building CXX object c10\test\CMakeFiles\c10_CompileTimeFunctionPointer_test.dir\core\CompileTimeFunctionPointer_test.cpp.obj 2025-06-01T21:15:04.5274664Z [7119/7616] Linking CXX static library lib\gmock.lib 2025-06-01T21:15:04.6113718Z [7120/7616] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock_main.dir\src\gmock_main.cc.obj 2025-06-01T21:15:04.6225551Z [7121/7616] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock_main.dir\src\gmock-all.cc.obj 2025-06-01T21:15:04.8282962Z [7122/7616] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock_main.dir\__\googletest\src\gtest-all.cc.obj 2025-06-01T21:15:04.9280148Z [7123/7616] Building CXX object c10\test\CMakeFiles\c10_DeviceGuard_test.dir\core\DeviceGuard_test.cpp.obj 2025-06-01T21:15:04.9656163Z [7124/7616] Building CXX object c10\test\CMakeFiles\c10_Device_test.dir\core\Device_test.cpp.obj 2025-06-01T21:15:05.1383840Z [7125/7616] Building CXX object c10\test\CMakeFiles\c10_DispatchKeySet_test.dir\core\DispatchKeySet_test.cpp.obj 2025-06-01T21:15:05.2116114Z [7126/7616] Building CXX object c10\test\CMakeFiles\c10_StreamGuard_test.dir\core\StreamGuard_test.cpp.obj 2025-06-01T21:15:05.2328132Z [7127/7616] Linking CXX static library lib\benchmark.lib 2025-06-01T21:15:05.2689418Z [7128/7616] Building CXX object c10\test\CMakeFiles\c10_Scalar_test.dir\core\Scalar_test.cpp.obj 2025-06-01T21:15:05.4588702Z [7129/7616] Building CXX object c10\test\CMakeFiles\c10_SymInt_test.dir\core\SymInt_test.cpp.obj 2025-06-01T21:15:05.4761022Z [7130/7616] Building CXX object c10\test\CMakeFiles\c10_InlineDeviceGuard_test.dir\core\impl\InlineDeviceGuard_test.cpp.obj 2025-06-01T21:15:05.6500923Z [7131/7616] Building CXX object c10\test\CMakeFiles\c10_InlineStreamGuard_test.dir\core\impl\InlineStreamGuard_test.cpp.obj 2025-06-01T21:15:05.7314975Z [7132/7616] Building C object third_party\ittapi\CMakeFiles\jitprofiling.dir\src\ittnotify\jitprofiling.c.obj 2025-06-01T21:15:05.7537939Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:15:05.7538877Z [7133/7616] Building CXX object c10\test\CMakeFiles\c10_cow_test.dir\core\impl\cow_test.cpp.obj 2025-06-01T21:15:05.7734850Z [7134/7616] Building CXX object c10\test\CMakeFiles\c10_SizesAndStrides_test.dir\core\impl\SizesAndStrides_test.cpp.obj 2025-06-01T21:15:05.8055783Z [7135/7616] Building CXX object c10\test\CMakeFiles\c10_ArrayRef_test.dir\util\ArrayRef_test.cpp.obj 2025-06-01T21:15:05.8472191Z [7136/7616] Building CXX object c10\test\CMakeFiles\c10_ConstexprCrc_test.dir\util\ConstexprCrc_test.cpp.obj 2025-06-01T21:15:05.9484746Z [7137/7616] Building CXX object c10\test\CMakeFiles\c10_Bitset_test.dir\util\Bitset_test.cpp.obj 2025-06-01T21:15:06.0849085Z [7138/7616] Building CXX object c10\test\CMakeFiles\c10_DeadlockDetection_test.dir\util\DeadlockDetection_test.cpp.obj 2025-06-01T21:15:06.2025729Z [7139/7616] Building CXX object c10\test\CMakeFiles\c10_Enumerate_test.dir\util\Enumerate_test.cpp.obj 2025-06-01T21:15:06.2801761Z [7140/7616] Building CXX object c10\test\CMakeFiles\c10_IntrusiveList_test.dir\util\IntrusiveList_test.cpp.obj 2025-06-01T21:15:06.2849931Z [7141/7616] Building CXX object c10\test\CMakeFiles\c10_LeftRight_test.dir\util\LeftRight_test.cpp.obj 2025-06-01T21:15:06.3012522Z [7142/7616] Building CXX object c10\test\CMakeFiles\c10_Half_test.dir\util\Half_test.cpp.obj 2025-06-01T21:15:06.3771723Z [7143/7616] Building CXX object c10\test\CMakeFiles\c10_Metaprogramming_test.dir\util\Metaprogramming_test.cpp.obj 2025-06-01T21:15:06.4020909Z [7144/7616] Building CXX object c10\test\CMakeFiles\c10_NetworkFlow_test.dir\util\NetworkFlow_test.cpp.obj 2025-06-01T21:15:06.5827161Z [7145/7616] Building CXX object c10\test\CMakeFiles\c10_Semaphore_test.dir\util\Semaphore_test.cpp.obj 2025-06-01T21:15:06.6162673Z [7146/7616] Building CXX object c10\test\CMakeFiles\c10_Synchronized_test.dir\util\Synchronized_test.cpp.obj 2025-06-01T21:15:06.7948352Z [7147/7616] Building CXX object c10\test\CMakeFiles\c10_ThreadLocal_test.dir\util\ThreadLocal_test.cpp.obj 2025-06-01T21:15:06.8390282Z [7148/7616] Building CXX object c10\test\CMakeFiles\c10_TypeTraits_test.dir\util\TypeTraits_test.cpp.obj 2025-06-01T21:15:06.8447215Z [7149/7616] Building CXX object c10\test\CMakeFiles\c10_TypeList_test.dir\util\TypeList_test.cpp.obj 2025-06-01T21:15:06.8671675Z [7150/7616] Building CXX object c10\test\CMakeFiles\c10_TypeIndex_test.dir\util\TypeIndex_test.cpp.obj 2025-06-01T21:15:06.8793375Z [7151/7616] Building CXX object c10\test\CMakeFiles\c10_accumulate_test.dir\util\accumulate_test.cpp.obj 2025-06-01T21:15:07.0976313Z [7152/7616] Building CXX object c10\test\CMakeFiles\c10_bit_cast_test.dir\util\bit_cast_test.cpp.obj 2025-06-01T21:15:07.1192201Z [7153/7616] Building CXX object c10\test\CMakeFiles\c10_bfloat16_test.dir\util\bfloat16_test.cpp.obj 2025-06-01T21:15:07.2871964Z [7154/7616] Building CXX object c10\test\CMakeFiles\c10_error_test.dir\util\error_test.cpp.obj 2025-06-01T21:15:07.3290490Z [7155/7616] Building CXX object c10\test\CMakeFiles\c10_complex_math_test.dir\util\complex_math_test.cpp.obj 2025-06-01T21:15:07.3305751Z [7156/7616] Building CXX object c10\test\CMakeFiles\c10_flags_test.dir\util\flags_test.cpp.obj 2025-06-01T21:15:07.3830315Z [7157/7616] Building CXX object c10\test\CMakeFiles\c10_exception_test.dir\util\exception_test.cpp.obj 2025-06-01T21:15:07.4369465Z [7158/7616] Building CXX object c10\test\CMakeFiles\c10_complex_test.dir\util\complex_test.cpp.obj 2025-06-01T21:15:07.5582496Z [7159/7616] Building CXX object c10\test\CMakeFiles\c10_generic_math_test.dir\util\generic_math_test.cpp.obj 2025-06-01T21:15:07.7301824Z [7160/7616] Building CXX object c10\test\CMakeFiles\c10_intrusive_ptr_test.dir\util\intrusive_ptr_test.cpp.obj 2025-06-01T21:15:07.7653933Z [7161/7616] Building CXX object c10\test\CMakeFiles\c10_irange_test.dir\util\irange_test.cpp.obj 2025-06-01T21:15:07.8765396Z [7162/7616] Building CXX object c10\test\CMakeFiles\c10_lazy_test.dir\util\lazy_test.cpp.obj 2025-06-01T21:15:07.8781846Z [7163/7616] Building CXX object c10\test\CMakeFiles\c10_logging_test.dir\util\logging_test.cpp.obj 2025-06-01T21:15:07.9667730Z [7164/7616] Building CXX object c10\test\CMakeFiles\c10_ordered_preserving_dict_test.dir\util\ordered_preserving_dict_test.cpp.obj 2025-06-01T21:15:08.0052699Z [7165/7616] Building CXX object c10\test\CMakeFiles\c10_optional_test.dir\util\optional_test.cpp.obj 2025-06-01T21:15:08.0054509Z C:\actions-runner\_work\pytorch\pytorch\c10\test\util\optional_test.cpp(70): warning C4834: discarding return value of function with 'nodiscard' attribute 2025-06-01T21:15:08.0057023Z 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-06-01T21:15:08.0058717Z with 2025-06-01T21:15:08.0059044Z [ 2025-06-01T21:15:08.0059353Z T=Type 2025-06-01T21:15:08.0059676Z ] 2025-06-01T21:15:08.0061791Z 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-06-01T21:15:08.0064069Z with 2025-06-01T21:15:08.0064375Z [ 2025-06-01T21:15:08.0064685Z T=Type 2025-06-01T21:15:08.0065001Z ] 2025-06-01T21:15:08.0066870Z C:\actions-runner\_work\pytorch\pytorch\cmake\..\third_party\googletest\googletest\include\gtest/internal/gtest-internal.h(705): note: see reference to class template instantiation 'testing::internal::SuiteApiResolver' being compiled 2025-06-01T21:15:08.0072621Z C:\actions-runner\_work\pytorch\pytorch\cmake\..\third_party\googletest\googletest\include\gtest/internal/gtest-internal.h(697): 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-06-01T21:15:08.0081186Z C:\actions-runner\_work\pytorch\pytorch\c10\test\util\optional_test.cpp(63): note: see reference to function template instantiation '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> &)' being compiled 2025-06-01T21:15:08.0812680Z 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-06-01T21:15:08.0816156Z [7166/7616] Building CXX object c10\test\CMakeFiles\c10_registry_test.dir\util\registry_test.cpp.obj 2025-06-01T21:15:08.1959017Z [7167/7616] Building CXX object c10\test\CMakeFiles\c10_small_vector_test.dir\util\small_vector_test.cpp.obj 2025-06-01T21:15:08.2502181Z [7168/7616] Building CXX object c10\test\CMakeFiles\c10_ssize_test.dir\util\ssize_test.cpp.obj 2025-06-01T21:15:08.3508490Z [7169/7616] Building CXX object c10\test\CMakeFiles\c10_string_util_test.dir\util\string_util_test.cpp.obj 2025-06-01T21:15:08.3776028Z [7170/7616] Building CXX object c10\test\CMakeFiles\c10_string_view_test.dir\util\string_view_test.cpp.obj 2025-06-01T21:15:08.5123970Z [7171/7616] Building CXX object c10\test\CMakeFiles\c10_tempfile_test.dir\util\tempfile_test.cpp.obj 2025-06-01T21:15:08.5717516Z [7172/7616] Building CXX object c10\benchmark\CMakeFiles\c10_intrusive_ptr_benchmark.dir\intrusive_ptr_benchmark.cpp.obj 2025-06-01T21:15:08.6080548Z [7173/7616] Building CXX object c10\test\CMakeFiles\c10_typeid_test.dir\util\typeid_test.cpp.obj 2025-06-01T21:15:09.7357266Z [7174/7616] Building CUDA object c10\cuda\test\CMakeFiles\c10_cuda_CUDAAssertionsTest_1_var_test.dir\impl\CUDAAssertionsTest_1_var_test.cu.obj 2025-06-01T21:15:09.7675182Z CUDAAssertionsTest_1_var_test.cu 2025-06-01T21:15:09.7675635Z tmpxft_00000ccc_00000000-7_CUDAAssertionsTest_1_var_test.cudafe1.cpp 2025-06-01T21:15:09.7676454Z [7175/7616] Building CUDA object c10\cuda\test\CMakeFiles\c10_cuda_CUDAAssertionsTest_catches_stream.dir\impl\CUDAAssertionsTest_catches_stream.cu.obj 2025-06-01T21:15:09.9235658Z CUDAAssertionsTest_catches_stream.cu 2025-06-01T21:15:09.9236144Z tmpxft_00001388_00000000-7_CUDAAssertionsTest_catches_stream.cudafe1.cpp 2025-06-01T21:15:09.9237113Z [7176/7616] 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-06-01T21:15:09.9458721Z CUDAAssertionsTest_multiple_writes_from_same_block.cu 2025-06-01T21:15:09.9459303Z tmpxft_00001570_00000000-7_CUDAAssertionsTest_multiple_writes_from_same_block.cudafe1.cpp 2025-06-01T21:15:09.9460208Z [7177/7616] Building CUDA object c10\cuda\test\CMakeFiles\c10_cuda_CUDAAssertionsTest_from_2_processes.dir\impl\CUDAAssertionsTest_from_2_processes.cu.obj 2025-06-01T21:15:09.9602173Z CUDAAssertionsTest_from_2_processes.cu 2025-06-01T21:15:09.9602748Z tmpxft_00001164_00000000-7_CUDAAssertionsTest_from_2_processes.cudafe1.cpp 2025-06-01T21:15:09.9603829Z [7178/7616] 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-06-01T21:15:09.9667944Z CUDAAssertionsTest_multiple_writes_from_multiple_blocks.cu 2025-06-01T21:15:09.9668568Z tmpxft_00000b60_00000000-7_CUDAAssertionsTest_multiple_writes_from_multiple_blocks.cudafe1.cpp 2025-06-01T21:15:09.9669866Z [7179/7616] 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-06-01T21:15:09.9806708Z CUDAAssertionsTest_multiple_writes_from_blocks_and_threads.cu 2025-06-01T21:15:09.9807363Z tmpxft_00001598_00000000-7_CUDAAssertionsTest_multiple_writes_from_blocks_and_threads.cudafe1.cpp 2025-06-01T21:15:09.9808091Z [7180/7616] Building C object caffe2\CMakeFiles\torch_global_deps.dir\__\torch\csrc\empty.c.obj 2025-06-01T21:15:10.0232138Z [7181/7616] 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-06-01T21:15:10.0955742Z CUDAAssertionsTest_catches_thread_and_block_and_device.cu 2025-06-01T21:15:10.0956382Z tmpxft_00001148_00000000-7_CUDAAssertionsTest_catches_thread_and_block_and_device.cudafe1.cpp 2025-06-01T21:15:10.0957323Z [7182/7616] Building CXX object c10\cuda\test\CMakeFiles\c10_cuda_CUDATest.dir\impl\CUDATest.cpp.obj 2025-06-01T21:15:10.1782109Z [7183/7616] Building CXX object caffe2\CMakeFiles\caffe2_nvrtc.dir\__\aten\src\ATen\cuda\nvrtc_stub\ATenNVRTC.cpp.obj 2025-06-01T21:15:10.6186585Z [7184/7616] Building CXX object caffe2\CMakeFiles\vec_test_all_types_AVX2.dir\__\aten\src\ATen\test\vec_test_all_types.cpp.obj 2025-06-01T21:15:10.6188539Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_half.h(17): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-06-01T21:15:10.6190774Z 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-06-01T21:15:10.6386437Z 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-06-01T21:15:10.6387887Z 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-06-01T21:15:10.6389038Z [7185/7616] Building CXX object caffe2\CMakeFiles\Dimname_test.dir\__\aten\src\ATen\test\Dimname_test.cpp.obj 2025-06-01T21:15:10.7566550Z [7186/7616] Building CXX object caffe2\CMakeFiles\vec_test_all_types_DEFAULT.dir\__\aten\src\ATen\test\vec_test_all_types.cpp.obj 2025-06-01T21:15:10.9876591Z [7187/7616] Building CXX object caffe2\CMakeFiles\vec_test_all_types_AVX512.dir\__\aten\src\ATen\test\vec_test_all_types.cpp.obj 2025-06-01T21:15:13.1388546Z [7188/7616] Building CXX object caffe2\CMakeFiles\Dict_test.dir\__\aten\src\ATen\test\Dict_test.cpp.obj 2025-06-01T21:15:13.2140851Z [7189/7616] Building CXX object caffe2\CMakeFiles\MaybeOwned_test.dir\__\aten\src\ATen\test\MaybeOwned_test.cpp.obj 2025-06-01T21:15:13.2700403Z [7190/7616] Building CXX object caffe2\CMakeFiles\NamedTensor_test.dir\__\aten\src\ATen\test\NamedTensor_test.cpp.obj 2025-06-01T21:15:13.7260470Z [7191/7616] Building CXX object caffe2\CMakeFiles\atest.dir\__\aten\src\ATen\test\atest.cpp.obj 2025-06-01T21:15:13.8384782Z [7192/7616] Building CXX object caffe2\CMakeFiles\apply_utils_test.dir\__\aten\src\ATen\test\apply_utils_test.cpp.obj 2025-06-01T21:15:13.8801856Z [7193/7616] Building CXX object caffe2\CMakeFiles\basic.dir\__\aten\src\ATen\test\basic.cpp.obj 2025-06-01T21:15:14.0909000Z [7194/7616] Building CXX object caffe2\CMakeFiles\broadcast_test.dir\__\aten\src\ATen\test\broadcast_test.cpp.obj 2025-06-01T21:15:16.1312455Z [7195/7616] Building CXX object caffe2\CMakeFiles\cpu_allocator_test.dir\__\aten\src\ATen\test\cpu_allocator_test.cpp.obj 2025-06-01T21:15:16.3476496Z [7196/7616] Building CXX object caffe2\CMakeFiles\cpu_generator_test.dir\__\aten\src\ATen\test\cpu_generator_test.cpp.obj 2025-06-01T21:15:16.3777927Z [7197/7616] Building CXX object caffe2\CMakeFiles\cpu_profiling_allocator_test.dir\__\aten\src\ATen\test\cpu_profiling_allocator_test.cpp.obj 2025-06-01T21:15:16.8778117Z [7198/7616] Building CXX object caffe2\CMakeFiles\dlconvertor_test.dir\__\aten\src\ATen\test\dlconvertor_test.cpp.obj 2025-06-01T21:15:17.1287575Z [7199/7616] Building CXX object caffe2\CMakeFiles\extension_backend_test.dir\__\aten\src\ATen\test\extension_backend_test.cpp.obj 2025-06-01T21:15:17.1431105Z [7200/7616] Building CXX object caffe2\CMakeFiles\half_test.dir\__\aten\src\ATen\test\half_test.cpp.obj 2025-06-01T21:15:17.4383321Z [7201/7616] Building CXX object caffe2\CMakeFiles\cpu_rng_test.dir\__\aten\src\ATen\test\cpu_rng_test.cpp.obj 2025-06-01T21:15:19.4799421Z [7202/7616] Building CXX object caffe2\CMakeFiles\lazy_tensor_test.dir\__\aten\src\ATen\test\lazy_tensor_test.cpp.obj 2025-06-01T21:15:19.5815329Z [7203/7616] Building CXX object caffe2\CMakeFiles\ivalue_test.dir\__\aten\src\ATen\test\ivalue_test.cpp.obj 2025-06-01T21:15:19.9040866Z [7204/7616] Building CXX object caffe2\CMakeFiles\memory_format_test.dir\__\aten\src\ATen\test\memory_format_test.cpp.obj 2025-06-01T21:15:19.9946320Z [7205/7616] Building CXX object caffe2\CMakeFiles\math_kernel_test.dir\__\aten\src\ATen\test\math_kernel_test.cpp.obj 2025-06-01T21:15:20.0072070Z [7206/7616] Building CXX object caffe2\CMakeFiles\operator_name_test.dir\__\aten\src\ATen\test\operator_name_test.cpp.obj 2025-06-01T21:15:20.2384667Z [7207/7616] Building CXX object caffe2\CMakeFiles\memory_overlapping_test.dir\__\aten\src\ATen\test\memory_overlapping_test.cpp.obj 2025-06-01T21:15:20.3305831Z [7208/7616] Building CXX object caffe2\CMakeFiles\native_test.dir\__\aten\src\ATen\test\native_test.cpp.obj 2025-06-01T21:15:20.5021979Z [7209/7616] Building CXX object caffe2\CMakeFiles\mobile_memory_cleanup.dir\__\aten\src\ATen\test\mobile_memory_cleanup.cpp.obj 2025-06-01T21:15:22.5861736Z [7210/7616] Building CXX object caffe2\CMakeFiles\operators_test.dir\__\aten\src\ATen\test\operators_test.cpp.obj 2025-06-01T21:15:22.9208766Z [7211/7616] Building CXX object caffe2\CMakeFiles\packedtensoraccessor_test.dir\__\aten\src\ATen\test\packedtensoraccessor_test.cpp.obj 2025-06-01T21:15:23.1352479Z [7212/7616] Building CXX object caffe2\CMakeFiles\quantized_test.dir\__\aten\src\ATen\test\quantized_test.cpp.obj 2025-06-01T21:15:23.1792616Z [7213/7616] Building CXX object caffe2\CMakeFiles\pow_test.dir\__\aten\src\ATen\test\pow_test.cpp.obj 2025-06-01T21:15:23.2676695Z [7214/7616] Building CXX object caffe2\CMakeFiles\reduce_ops_test.dir\__\aten\src\ATen\test\reduce_ops_test.cpp.obj 2025-06-01T21:15:23.3681477Z [7215/7616] Building CXX object caffe2\CMakeFiles\reportMemoryUsage_test.dir\__\aten\src\ATen\test\reportMemoryUsage_test.cpp.obj 2025-06-01T21:15:23.5219229Z [7216/7616] Building CXX object caffe2\CMakeFiles\scalar_tensor_test.dir\__\aten\src\ATen\test\scalar_tensor_test.cpp.obj 2025-06-01T21:15:24.4889343Z [7217/7616] Building CXX object caffe2\CMakeFiles\type_ptr_test.dir\__\aten\src\ATen\test\type_ptr_test.cpp.obj 2025-06-01T21:15:25.0750464Z [7218/7616] Building CXX object caffe2\CMakeFiles\StorageUtils_test.dir\__\aten\src\ATen\test\StorageUtils_test.cpp.obj 2025-06-01T21:15:25.6992084Z [7219/7616] Building CXX object caffe2\CMakeFiles\scalar_test.dir\__\aten\src\ATen\test\scalar_test.cpp.obj 2025-06-01T21:15:26.2458204Z [7220/7616] Building CXX object caffe2\CMakeFiles\stride_properties_test.dir\__\aten\src\ATen\test\stride_properties_test.cpp.obj 2025-06-01T21:15:26.5128412Z [7221/7616] Building CXX object caffe2\CMakeFiles\tensor_iterator_test.dir\__\aten\src\ATen\test\tensor_iterator_test.cpp.obj 2025-06-01T21:15:26.5686102Z [7222/7616] Building CXX object caffe2\CMakeFiles\thread_init_test.dir\__\aten\src\ATen\test\thread_init_test.cpp.obj 2025-06-01T21:15:27.7617942Z [7223/7616] Building CXX object caffe2\CMakeFiles\type_test.dir\__\aten\src\ATen\test\type_test.cpp.obj 2025-06-01T21:15:28.0096251Z [7224/7616] Building CXX object caffe2\CMakeFiles\undefined_tensor_test.dir\__\aten\src\ATen\test\undefined_tensor_test.cpp.obj 2025-06-01T21:15:28.5406453Z [7225/7616] Building CXX object caffe2\CMakeFiles\test_parallel.dir\__\aten\src\ATen\test\test_parallel.cpp.obj 2025-06-01T21:15:28.5877304Z [7226/7616] Building CXX object caffe2\CMakeFiles\verify_api_visibility.dir\__\aten\src\ATen\test\verify_api_visibility.cpp.obj 2025-06-01T21:15:29.3365445Z [7227/7616] Building CXX object caffe2\CMakeFiles\weakref_test.dir\__\aten\src\ATen\test\weakref_test.cpp.obj 2025-06-01T21:15:29.3531760Z [7228/7616] Building CXX object caffe2\CMakeFiles\legacy_vmap_test.dir\__\aten\src\ATen\test\legacy_vmap_test.cpp.obj 2025-06-01T21:15:29.5957395Z [7229/7616] Building CXX object caffe2\CMakeFiles\wrapdim_test.dir\__\aten\src\ATen\test\wrapdim_test.cpp.obj 2025-06-01T21:15:29.6122322Z [7230/7616] Building CXX object caffe2\CMakeFiles\List_test.dir\__\aten\src\ATen\core\List_test.cpp.obj 2025-06-01T21:15:30.0332877Z [7231/7616] Building CXX object caffe2\CMakeFiles\IListRef_test.dir\__\aten\src\ATen\core\IListRef_test.cpp.obj 2025-06-01T21:15:30.4935237Z [7232/7616] Building CXX object caffe2\CMakeFiles\kernel_function_legacy_test.dir\__\aten\src\ATen\core\boxing\impl\kernel_function_legacy_test.cpp.obj 2025-06-01T21:15:30.6101197Z [7233/7616] Building CXX object caffe2\CMakeFiles\kernel_function_test.dir\__\aten\src\ATen\core\boxing\impl\kernel_function_test.cpp.obj 2025-06-01T21:15:30.7212474Z [7234/7616] Building CXX object caffe2\CMakeFiles\kernel_lambda_test.dir\__\aten\src\ATen\core\boxing\impl\kernel_lambda_test.cpp.obj 2025-06-01T21:15:30.7845273Z [7235/7616] Building CXX object caffe2\CMakeFiles\xla_tensor_test.dir\__\aten\src\ATen\test\xla_tensor_test.cpp.obj 2025-06-01T21:15:30.8186130Z [7236/7616] Building CXX object caffe2\CMakeFiles\kernel_lambda_legacy_test.dir\__\aten\src\ATen\core\boxing\impl\kernel_lambda_legacy_test.cpp.obj 2025-06-01T21:15:31.1000189Z [7237/7616] Building CXX object caffe2\CMakeFiles\CppSignature_test.dir\__\aten\src\ATen\core\dispatch\CppSignature_test.cpp.obj 2025-06-01T21:15:31.1412679Z [7238/7616] Building CXX object caffe2\CMakeFiles\kernel_stackbased_test.dir\__\aten\src\ATen\core\boxing\impl\kernel_stackbased_test.cpp.obj 2025-06-01T21:15:31.2810447Z [7239/7616] Building CXX object caffe2\CMakeFiles\op_allowlist_test.dir\__\aten\src\ATen\core\op_registration\op_allowlist_test.cpp.obj 2025-06-01T21:15:31.5655218Z [7240/7616] 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-06-01T21:15:31.7449931Z [7241/7616] Building CXX object caffe2\CMakeFiles\KernelFunction_test.dir\__\aten\src\ATen\core\boxing\KernelFunction_test.cpp.obj 2025-06-01T21:15:31.7539060Z [7242/7616] Building CXX object caffe2\CMakeFiles\inline_container_test.dir\serialize\inline_container_test.cc.obj 2025-06-01T21:15:32.2663518Z [7243/7616] Building CXX object caffe2\CMakeFiles\op_registration_test.dir\__\aten\src\ATen\core\op_registration\op_registration_test.cpp.obj 2025-06-01T21:15:32.3162843Z [7244/7616] Building CXX object caffe2\CMakeFiles\cuda_apply_test.dir\__\aten\src\ATen\test\cuda_apply_test.cpp.obj 2025-06-01T21:15:33.8354061Z [7245/7616] Building CUDA object caffe2\CMakeFiles\cuda_complex_math_test.dir\__\aten\src\ATen\test\cuda_complex_math_test.cu.obj 2025-06-01T21:15:34.0147009Z cuda_complex_math_test.cu 2025-06-01T21:15:34.0147424Z tmpxft_00000e7c_00000000-7_cuda_complex_math_test.cudafe1.cpp 2025-06-01T21:15:34.0148102Z [7246/7616] Building CUDA object caffe2\CMakeFiles\cuda_atomic_ops_test.dir\__\aten\src\ATen\test\cuda_atomic_ops_test.cu.obj 2025-06-01T21:15:34.0758127Z cuda_atomic_ops_test.cu 2025-06-01T21:15:34.0758726Z tmpxft_00000840_00000000-7_cuda_atomic_ops_test.cudafe1.cpp 2025-06-01T21:15:34.0759904Z [7247/7616] Building CXX object caffe2\CMakeFiles\backend_fallback_test.dir\__\aten\src\ATen\core\dispatch\backend_fallback_test.cpp.obj 2025-06-01T21:15:34.3083806Z [7248/7616] Building CXX object caffe2\CMakeFiles\cuda_allocator_test.dir\__\aten\src\ATen\test\cuda_allocator_test.cpp.obj 2025-06-01T21:15:34.6471659Z [7249/7616] Building CUDA object caffe2\CMakeFiles\cuda_complex_test.dir\__\aten\src\ATen\test\cuda_complex_test.cu.obj 2025-06-01T21:15:34.7509208Z cuda_complex_test.cu 2025-06-01T21:15:34.7509778Z tmpxft_000017dc_00000000-7_cuda_complex_test.cudafe1.cpp 2025-06-01T21:15:34.7510808Z [7250/7616] Building CXX object caffe2\CMakeFiles\cuda_device_test.dir\__\aten\src\ATen\test\cuda_device_test.cpp.obj 2025-06-01T21:15:35.2301101Z [7251/7616] Building CUDA object caffe2\CMakeFiles\cuda_cub_test.dir\__\aten\src\ATen\test\cuda_cub_test.cu.obj 2025-06-01T21:15:35.2985292Z cuda_cub_test.cu 2025-06-01T21:15:35.2985643Z tmpxft_0000039c_00000000-7_cuda_cub_test.cudafe1.cpp 2025-06-01T21:15:35.2986380Z [7252/7616] Building CXX object caffe2\CMakeFiles\cuda_caching_host_allocator_test.dir\__\aten\src\ATen\test\cuda_caching_host_allocator_test.cpp.obj 2025-06-01T21:15:35.3592334Z [7253/7616] Building CXX object caffe2\CMakeFiles\cuda_exchange_device_test.dir\__\aten\src\ATen\test\cuda_exchange_device_test.cpp.obj 2025-06-01T21:15:37.9831074Z [7254/7616] Building CUDA object caffe2\CMakeFiles\cuda_integer_divider_test.dir\__\aten\src\ATen\test\cuda_integer_divider_test.cu.obj 2025-06-01T21:15:37.9832216Z cuda_integer_divider_test.cu 2025-06-01T21:15:37.9832815Z tmpxft_000015d0_00000000-7_cuda_integer_divider_test.cudafe1.cpp 2025-06-01T21:15:37.9834509Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\xmemory(674): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data 2025-06-01T21:15:37.9837867Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vector(708): 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-06-01T21:15:37.9840105Z with 2025-06-01T21:15:37.9840422Z [ 2025-06-01T21:15:37.9840870Z _Alloc=std::allocator>, 2025-06-01T21:15:37.9841535Z _Ty=TestCase, 2025-06-01T21:15:37.9842079Z Value=unsigned __int64, 2025-06-01T21:15:37.9842579Z _Objty=TestCase 2025-06-01T21:15:37.9843072Z ] 2025-06-01T21:15:37.9844977Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vector(713): 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-06-01T21:15:37.9847434Z with 2025-06-01T21:15:37.9847775Z [ 2025-06-01T21:15:37.9848242Z _Alloc=std::allocator>, 2025-06-01T21:15:37.9848859Z _Ty=TestCase, 2025-06-01T21:15:37.9849374Z Value=unsigned __int64, 2025-06-01T21:15:37.9849898Z _Objty=TestCase 2025-06-01T21:15:37.9850484Z ] 2025-06-01T21:15:37.9852337Z C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include\vector(726): 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-06-01T21:15:37.9854750Z with 2025-06-01T21:15:37.9855064Z [ 2025-06-01T21:15:37.9855402Z _Ty=TestCase, 2025-06-01T21:15:37.9855910Z Value=unsigned __int64 2025-06-01T21:15:37.9856338Z ] 2025-06-01T21:15:37.9857965Z 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-06-01T21:15:37.9860181Z with 2025-06-01T21:15:37.9860492Z [ 2025-06-01T21:15:37.9860824Z _Ty=TestCase, 2025-06-01T21:15:37.9861328Z Value=unsigned __int64 2025-06-01T21:15:37.9861767Z ] 2025-06-01T21:15:37.9863371Z 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-06-01T21:15:37.9864755Z with 2025-06-01T21:15:37.9865024Z [ 2025-06-01T21:15:37.9865347Z Value=unsigned __int64 2025-06-01T21:15:37.9865816Z ] 2025-06-01T21:15:38.0529447Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen\test\cuda_integer_divider_test.cu(188): note: see reference to function template instantiation 'void IntDividerTester::addTestCase(Value,Value,int)' being compiled 2025-06-01T21:15:38.0531333Z with 2025-06-01T21:15:38.0531635Z [ 2025-06-01T21:15:38.0532157Z Value=unsigned __int64 2025-06-01T21:15:38.0532557Z ] 2025-06-01T21:15:38.0533981Z 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-06-01T21:15:38.0536295Z [7255/7616] Building CXX object caffe2\CMakeFiles\cuda_dlconvertor_test.dir\__\aten\src\ATen\test\cuda_dlconvertor_test.cpp.obj 2025-06-01T21:15:38.7382652Z [7256/7616] Building CXX object caffe2\CMakeFiles\cuda_allocatorTraceTracker_test.dir\__\aten\src\ATen\test\cuda_allocatorTraceTracker_test.cpp.obj 2025-06-01T21:15:39.8525806Z [7257/7616] Building CXX object caffe2\CMakeFiles\cuda_stream_test.dir\__\aten\src\ATen\test\cuda_stream_test.cpp.obj 2025-06-01T21:15:41.0092631Z [7258/7616] Building CXX object caffe2\CMakeFiles\cuda_reportMemoryUsage_test.dir\__\aten\src\ATen\test\cuda_reportMemoryUsage_test.cpp.obj 2025-06-01T21:15:41.9532983Z [7259/7616] Building CUDA object caffe2\CMakeFiles\cuda_distributions_test.dir\__\aten\src\ATen\test\cuda_distributions_test.cu.obj 2025-06-01T21:15:42.1429432Z cuda_distributions_test.cu 2025-06-01T21:15:42.1429932Z tmpxft_00000080_00000000-7_cuda_distributions_test.cudafe1.cpp 2025-06-01T21:15:42.1430524Z [7260/7616] Building C object sleef\src\libm\CMakeFiles\mkrename_gnuabi.dir\mkrename_gnuabi.c.obj 2025-06-01T21:15:42.1940931Z [7261/7616] Building CUDA object caffe2\CMakeFiles\cuda_generator_test.dir\__\aten\src\ATen\test\cuda_generator_test.cu.obj 2025-06-01T21:15:42.3873268Z cuda_generator_test.cu 2025-06-01T21:15:42.3873622Z tmpxft_00001020_00000000-7_cuda_generator_test.cudafe1.cpp 2025-06-01T21:15:42.3874245Z [7262/7616] Building CUDA object caffe2\CMakeFiles\cuda_half_test.dir\__\aten\src\ATen\test\cuda_half_test.cu.obj 2025-06-01T21:15:42.4373812Z cuda_half_test.cu 2025-06-01T21:15:42.4374140Z tmpxft_00000efc_00000000-7_cuda_half_test.cudafe1.cpp 2025-06-01T21:15:42.4374738Z [7263/7616] Building C object sleef\src\libm\CMakeFiles\mkmasked_gnuabi.dir\mkmasked_gnuabi.c.obj 2025-06-01T21:15:42.4564399Z [7264/7616] Building C object sleef\src\common\CMakeFiles\addSuffix.dir\addSuffix.c.obj 2025-06-01T21:15:42.7242417Z [7265/7616] Building CUDA object caffe2\CMakeFiles\cuda_packedtensoraccessor_test.dir\__\aten\src\ATen\test\cuda_packedtensoraccessor_test.cu.obj 2025-06-01T21:15:42.8286456Z cuda_packedtensoraccessor_test.cu 2025-06-01T21:15:42.8287445Z tmpxft_00001414_00000000-7_cuda_packedtensoraccessor_test.cudafe1.cpp 2025-06-01T21:15:42.8288755Z [7266/7616] Building CUDA object caffe2\CMakeFiles\cuda_optional_test.dir\__\aten\src\ATen\test\cuda_optional_test.cu.obj 2025-06-01T21:15:42.8679764Z cuda_optional_test.cu 2025-06-01T21:15:42.8680363Z tmpxft_00000c74_00000000-7_cuda_optional_test.cudafe1.cpp 2025-06-01T21:15:42.8681335Z [7267/7616] Building CXX object test_edge_op_registration\CMakeFiles\test_edge_op_registration.dir\test_main.cpp.obj 2025-06-01T21:15:43.2047159Z [7268/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\__\common\main.cpp.obj 2025-06-01T21:15:43.3937887Z [7269/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\source_range_test.cpp.obj 2025-06-01T21:15:43.9734578Z [7270/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_add_if_then_else.cpp.obj 2025-06-01T21:15:44.5775664Z [7271/7616] Building CXX object caffe2\CMakeFiles\cuda_cudnn_test.dir\__\aten\src\ATen\test\cuda_cudnn_test.cpp.obj 2025-06-01T21:15:45.3617417Z [7272/7616] Building CXX object test_jit\CMakeFiles\torchbind_test.dir\test_custom_class_registrations.cpp.obj 2025-06-01T21:15:45.4302989Z [7273/7616] Building CXX object test_edge_op_registration\CMakeFiles\test_edge_op_registration.dir\test_operator_registration.cpp.obj 2025-06-01T21:15:45.6045659Z [7274/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_alias_analysis.cpp.obj 2025-06-01T21:15:45.7533812Z [7275/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_load_upgraders.cpp.obj 2025-06-01T21:15:46.4588829Z [7276/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_op_replacement.cpp.obj 2025-06-01T21:15:46.5798633Z [7277/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_argument_spec.cpp.obj 2025-06-01T21:15:46.6703207Z [7278/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_upgrader_utils.cpp.obj 2025-06-01T21:15:46.7122769Z [7279/7616] Building CUDA object caffe2\CMakeFiles\cuda_vectorized_test.dir\__\aten\src\ATen\test\cuda_vectorized_test.cu.obj 2025-06-01T21:15:47.6063938Z cuda_vectorized_test.cu 2025-06-01T21:15:47.6064397Z tmpxft_00000398_00000000-7_cuda_vectorized_test.cudafe1.cpp 2025-06-01T21:15:47.6064909Z [7280/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_autodiff.cpp.obj 2025-06-01T21:15:47.6100055Z [7281/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_class_parser.cpp.obj 2025-06-01T21:15:47.7636145Z [7282/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_code_template.cpp.obj 2025-06-01T21:15:48.7532752Z [7283/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_cleanup_passes.cpp.obj 2025-06-01T21:15:48.7972412Z [7284/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_constant_pooling.cpp.obj 2025-06-01T21:15:48.9166676Z [7285/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_create_autodiff_subgraphs.cpp.obj 2025-06-01T21:15:49.0147236Z [7286/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_concat_opt.cpp.obj 2025-06-01T21:15:49.0754942Z [7287/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_backend.cpp.obj 2025-06-01T21:15:49.2930924Z [7288/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_class_import.cpp.obj 2025-06-01T21:15:50.1696260Z [7289/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_dce.cpp.obj 2025-06-01T21:15:50.2427994Z [7290/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_class_type.cpp.obj 2025-06-01T21:15:52.0349181Z [7291/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_custom_class_registrations.cpp.obj 2025-06-01T21:15:52.0804617Z [7292/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_custom_class.cpp.obj 2025-06-01T21:15:52.3168060Z [7293/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_custom_operators.cpp.obj 2025-06-01T21:15:52.6464214Z [7294/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_fuser.cpp.obj 2025-06-01T21:15:52.7988941Z [7295/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_graph_executor.cpp.obj 2025-06-01T21:15:53.1520859Z [7296/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_inliner.cpp.obj 2025-06-01T21:15:53.7110627Z [7297/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_graph_iterator.cpp.obj 2025-06-01T21:15:53.7444454Z [7298/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_cs_debug_info_serialization.cpp.obj 2025-06-01T21:15:53.7622279Z [7299/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_ir.cpp.obj 2025-06-01T21:15:53.9155204Z [7300/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_irparser.cpp.obj 2025-06-01T21:15:54.2994044Z [7301/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_jit_type.cpp.obj 2025-06-01T21:15:54.3469177Z [7302/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_lexer.cpp.obj 2025-06-01T21:15:55.4413084Z [7303/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_memory_dag.cpp.obj 2025-06-01T21:15:55.6621440Z [7304/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_interface.cpp.obj 2025-06-01T21:15:55.8908739Z [7305/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_interpreter.cpp.obj 2025-06-01T21:15:56.6156865Z [7306/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_mobile_type_parser.cpp.obj 2025-06-01T21:15:56.9794141Z [7307/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_peephole_optimize.cpp.obj 2025-06-01T21:15:57.1040312Z [7308/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_qualified_name.cpp.obj 2025-06-01T21:15:57.2984718Z [7309/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_lite_interpreter.cpp.obj 2025-06-01T21:15:57.3755891Z [7310/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_lite_interpreter_direct.cpp.obj 2025-06-01T21:15:57.4305627Z [7311/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_lite_trainer.cpp.obj 2025-06-01T21:15:58.1852108Z [7312/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_misc.cpp.obj 2025-06-01T21:15:58.4468931Z [7313/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_schema_matching.cpp.obj 2025-06-01T21:15:58.5513104Z [7314/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_subgraph_matcher.cpp.obj 2025-06-01T21:15:59.2749205Z [7315/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_schema_info.cpp.obj 2025-06-01T21:15:59.3139880Z [7316/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_subgraph_rewriter.cpp.obj 2025-06-01T21:15:59.3269657Z [7317/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_module_api.cpp.obj 2025-06-01T21:15:59.5338172Z [7318/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_subgraph_utils.cpp.obj 2025-06-01T21:15:59.6787449Z [7319/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_union.cpp.obj 2025-06-01T21:15:59.7386822Z [7320/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_stack_opt.cpp.obj 2025-06-01T21:16:00.2527438Z [7321/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_file_format.cpp.obj 2025-06-01T21:16:00.5863006Z [7322/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_script_profile.cpp.obj 2025-06-01T21:16:00.6276912Z [7323/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_save_load.cpp.obj 2025-06-01T21:16:00.6906221Z [7324/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_jit_logging_levels.cpp.obj 2025-06-01T21:16:00.7062827Z [7325/7616] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\common\main.cpp.obj 2025-06-01T21:16:01.0365970Z [7326/7616] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_file_util.cpp.obj 2025-06-01T21:16:01.2261546Z [7327/7616] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_mpmc_queue.cpp.obj 2025-06-01T21:16:01.2447116Z [7328/7616] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_placement.cpp.obj 2025-06-01T21:16:01.3057103Z [7329/7616] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_graph_signature.cpp.obj 2025-06-01T21:16:01.7784170Z [7330/7616] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_tensor_meta.cpp.obj 2025-06-01T21:16:01.9233212Z [7331/7616] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\PlacementUtils.cpp.obj 2025-06-01T21:16:01.9814900Z [7332/7616] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\graph\TensorMeta.cpp.obj 2025-06-01T21:16:02.0393430Z [7333/7616] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\graph\GraphSignature.cpp.obj 2025-06-01T21:16:02.2984754Z [7334/7616] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\common\FileUtil.cpp.obj 2025-06-01T21:16:02.3646412Z [7335/7616] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_approx.cpp.obj 2025-06-01T21:16:02.5026712Z [7336/7616] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\__\common\main.cpp.obj 2025-06-01T21:16:02.5616333Z [7337/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_shape_analysis.cpp.obj 2025-06-01T21:16:02.6420496Z [7338/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_utils.cpp.obj 2025-06-01T21:16:03.3355578Z [7339/7616] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_flatbuffer.cpp.obj 2025-06-01T21:16:04.7302441Z [7340/7616] Building CXX object test_inductor\CMakeFiles\aoti_custom_ops.dir\custom_ops.cpp.obj 2025-06-01T21:16:04.8845507Z [7341/7616] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\padded_buffer.cpp.obj 2025-06-01T21:16:05.3852960Z [7342/7616] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_aten.cpp.obj 2025-06-01T21:16:05.4574665Z [7343/7616] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_boundsinference.cpp.obj 2025-06-01T21:16:05.6076092Z [7344/7616] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_cpp_codegen.cpp.obj 2025-06-01T21:16:05.8526964Z [7345/7616] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_conv.cpp.obj 2025-06-01T21:16:06.5191695Z [7346/7616] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_ir_printer.cpp.obj 2025-06-01T21:16:06.6589540Z [7347/7616] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_ir_verifier.cpp.obj 2025-06-01T21:16:06.7600505Z [7348/7616] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_dynamic_shapes.cpp.obj 2025-06-01T21:16:07.8526688Z [7349/7616] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_expr.cpp.obj 2025-06-01T21:16:08.4325725Z [7350/7616] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_external_calls.cpp.obj 2025-06-01T21:16:08.5590267Z [7351/7616] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_graph_opt.cpp.obj 2025-06-01T21:16:09.2097201Z [7352/7616] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_kernel.cpp.obj 2025-06-01T21:16:09.4659050Z [7353/7616] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_loopnest.cpp.obj 2025-06-01T21:16:09.8105513Z [7354/7616] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_memdependency.cpp.obj 2025-06-01T21:16:10.1088584Z [7355/7616] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_ops.cpp.obj 2025-06-01T21:16:11.1825152Z [7356/7616] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_quantization.cpp.obj 2025-06-01T21:16:11.4891689Z [7357/7616] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_memplanning.cpp.obj 2025-06-01T21:16:11.5266306Z [7358/7616] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_reductions.cpp.obj 2025-06-01T21:16:12.2271650Z [7359/7616] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_registerizer.cpp.obj 2025-06-01T21:16:12.5846584Z [7360/7616] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_simplify.cpp.obj 2025-06-01T21:16:12.8407378Z [7361/7616] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_te_fuser_pass.cpp.obj 2025-06-01T21:16:13.1634134Z [7362/7616] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_type.cpp.obj 2025-06-01T21:16:13.2601300Z [7363/7616] Building CXX object test_cpp_c10d\CMakeFiles\BackoffTest.dir\BackoffTest.cpp.obj 2025-06-01T21:16:13.5007639Z [7364/7616] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_type_specializations.cpp.obj 2025-06-01T21:16:13.5600653Z [7365/7616] Building CXX object test_cpp_c10d\CMakeFiles\FileStoreTest.dir\FileStoreTest.cpp.obj 2025-06-01T21:16:13.9046687Z [7366/7616] Building CXX object test_cpp_c10d\CMakeFiles\TCPStoreTest.dir\TCPStoreTest.cpp.obj 2025-06-01T21:16:13.9629955Z [7367/7616] Building CXX object test_api\CMakeFiles\test_api.dir\__\common\main.cpp.obj 2025-06-01T21:16:14.5414688Z [7368/7616] Building CXX object test_tensorexpr\CMakeFiles\tutorial_tensorexpr.dir\tutorial.cpp.obj 2025-06-01T21:16:14.8100032Z [7369/7616] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_cuda.cpp.obj 2025-06-01T21:16:16.7410988Z [7370/7616] Building CXX object test_cpp_c10d\CMakeFiles\ProcessGroupGlooTest.dir\ProcessGroupGlooTest.cpp.obj 2025-06-01T21:16:17.1469395Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:16:17.1470479Z [7371/7616] Building CXX object test_cpp_c10d\CMakeFiles\ProcessGroupGlooAsyncTest.dir\ProcessGroupGlooAsyncTest.cpp.obj 2025-06-01T21:16:17.1767960Z C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um\winbase.h(9531): warning C5105: macro expansion producing 'defined' has undefined behavior 2025-06-01T21:16:17.1768803Z [7372/7616] Building CXX object test_api\CMakeFiles\test_api.dir\autograd.cpp.obj 2025-06-01T21:16:17.2775564Z [7373/7616] Building CXX object test_api\CMakeFiles\test_api.dir\any.cpp.obj 2025-06-01T21:16:17.4063891Z [7374/7616] Building CXX object test_api\CMakeFiles\test_api.dir\dataloader.cpp.obj 2025-06-01T21:16:17.8847329Z [7375/7616] Building CXX object test_api\CMakeFiles\test_api.dir\enum.cpp.obj 2025-06-01T21:16:18.1716243Z [7376/7616] Building CXX object test_api\CMakeFiles\test_api.dir\expanding-array.cpp.obj 2025-06-01T21:16:18.6373067Z [7377/7616] Building CXX object test_api\CMakeFiles\test_api.dir\memory.cpp.obj 2025-06-01T21:16:20.0113999Z [7378/7616] Building CXX object test_api\CMakeFiles\test_api.dir\fft.cpp.obj 2025-06-01T21:16:20.4669199Z [7379/7616] Building CXX object test_api\CMakeFiles\test_api.dir\functional.cpp.obj 2025-06-01T21:16:20.5119864Z [7380/7616] Building CXX object test_api\CMakeFiles\test_api.dir\init.cpp.obj 2025-06-01T21:16:20.6251160Z [7381/7616] Building CXX object test_api\CMakeFiles\test_api.dir\integration.cpp.obj 2025-06-01T21:16:20.7040091Z [7382/7616] Building CXX object test_api\CMakeFiles\test_api.dir\ivalue.cpp.obj 2025-06-01T21:16:21.0412512Z [7383/7616] Building CXX object test_api\CMakeFiles\test_api.dir\jit.cpp.obj 2025-06-01T21:16:22.6167251Z [7384/7616] Building CXX object test_api\CMakeFiles\test_api.dir\meta_tensor.cpp.obj 2025-06-01T21:16:23.3275470Z [7385/7616] Building CXX object test_api\CMakeFiles\test_api.dir\misc.cpp.obj 2025-06-01T21:16:23.7592156Z [7386/7616] Building CXX object test_api\CMakeFiles\test_api.dir\module.cpp.obj 2025-06-01T21:16:23.8350959Z [7387/7616] Building CXX object test_api\CMakeFiles\test_api.dir\moduledict.cpp.obj 2025-06-01T21:16:24.0029532Z [7388/7616] Building CXX object test_api\CMakeFiles\test_api.dir\modulelist.cpp.obj 2025-06-01T21:16:24.3397781Z [7389/7616] Building CXX object test_api\CMakeFiles\test_api.dir\nested.cpp.obj 2025-06-01T21:16:24.4052990Z [7390/7616] Building CXX object test_api\CMakeFiles\test_api.dir\modules.cpp.obj 2025-06-01T21:16:25.9360015Z [7391/7616] Building CXX object test_api\CMakeFiles\test_api.dir\parameterdict.cpp.obj 2025-06-01T21:16:26.6967538Z [7392/7616] Building CXX object test_api\CMakeFiles\test_api.dir\parameterlist.cpp.obj 2025-06-01T21:16:27.1216939Z [7393/7616] Building CXX object test_api\CMakeFiles\test_api.dir\namespace.cpp.obj 2025-06-01T21:16:27.2594973Z [7394/7616] Building CXX object test_api\CMakeFiles\test_api.dir\nn_utils.cpp.obj 2025-06-01T21:16:27.3271680Z [7395/7616] Building CXX object test_api\CMakeFiles\test_api.dir\optim.cpp.obj 2025-06-01T21:16:27.6506870Z [7396/7616] Building CXX object test_api\CMakeFiles\test_api.dir\ordered_dict.cpp.obj 2025-06-01T21:16:27.9996337Z [7397/7616] Building CXX object test_api\CMakeFiles\test_api.dir\rnn.cpp.obj 2025-06-01T21:16:29.2883003Z [7398/7616] Building CXX object test_api\CMakeFiles\test_api.dir\sequential.cpp.obj 2025-06-01T21:16:30.0841497Z [7399/7616] Building CXX object test_api\CMakeFiles\test_api.dir\transformer.cpp.obj 2025-06-01T21:16:30.3956836Z [7400/7616] Building CXX object test_api\CMakeFiles\test_api.dir\serialize.cpp.obj 2025-06-01T21:16:30.4543658Z [7401/7616] Building CXX object test_api\CMakeFiles\test_api.dir\special.cpp.obj 2025-06-01T21:16:30.7076009Z [7402/7616] Building CXX object test_api\CMakeFiles\test_api.dir\support.cpp.obj 2025-06-01T21:16:30.7368945Z [7403/7616] Building CXX object test_api\CMakeFiles\test_api.dir\static.cpp.obj 2025-06-01T21:16:31.0307669Z [7404/7616] Building CXX object test_api\CMakeFiles\test_api.dir\tensor_cuda.cpp.obj 2025-06-01T21:16:32.6385140Z [7405/7616] Building CXX object test_api\CMakeFiles\test_api.dir\tensor_indexing.cpp.obj 2025-06-01T21:16:33.3291413Z [7406/7616] Building CXX object test_api\CMakeFiles\test_api.dir\tensor_options_cuda.cpp.obj 2025-06-01T21:16:33.6939878Z [7407/7616] Building CXX object test_api\CMakeFiles\test_api.dir\tensor_options.cpp.obj 2025-06-01T21:16:33.7554411Z [7408/7616] Building CXX object test_api\CMakeFiles\test_api.dir\tensor.cpp.obj 2025-06-01T21:16:33.9100440Z [7409/7616] Building CXX object test_api\CMakeFiles\test_api.dir\torch_include.cpp.obj 2025-06-01T21:16:33.9937577Z [7410/7616] Building CXX object test_api\CMakeFiles\test_api.dir\inference_mode.cpp.obj 2025-06-01T21:16:34.3878344Z [7411/7616] Building CXX object test_api\CMakeFiles\test_api.dir\grad_mode.cpp.obj 2025-06-01T21:16:34.4187987Z [7412/7616] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\__\common\main.cpp.obj 2025-06-01T21:16:35.5026859Z [7413/7616] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_cache.cpp.obj 2025-06-01T21:16:35.6458518Z [7414/7616] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_ir.cpp.obj 2025-06-01T21:16:35.8932984Z [7415/7616] Building CXX object test_api\CMakeFiles\test_api.dir\operations.cpp.obj 2025-06-01T21:16:36.3462791Z [7416/7616] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_permutation_util.cpp.obj 2025-06-01T21:16:36.5010469Z [7417/7616] Building CXX object test_api\CMakeFiles\test_api.dir\nested_int.cpp.obj 2025-06-01T21:16:36.5713736Z [7418/7616] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_ir_util.cpp.obj 2025-06-01T21:16:36.5958400Z [7419/7616] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_misc.cpp.obj 2025-06-01T21:16:36.8364559Z [7420/7616] Building CXX object test_api\CMakeFiles\parallel_benchmark.dir\parallel_benchmark.cpp.obj 2025-06-01T21:16:36.9049824Z [7421/7616] Building CXX object test_api\CMakeFiles\test_api.dir\parallel.cpp.obj 2025-06-01T21:16:37.1132628Z [7422/7616] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_util.cpp.obj 2025-06-01T21:16:37.2374653Z [7423/7616] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_backend_device.cpp.obj 2025-06-01T21:16:37.3949648Z [7424/7616] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_shape.cpp.obj 2025-06-01T21:16:37.5189009Z [7425/7616] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_trie_cache.cpp.obj 2025-06-01T21:16:37.7554767Z [7426/7616] Building C object functorch\CMakeFiles\functorch.dir\csrc\dim\dim_opcode.c.obj 2025-06-01T21:16:39.9339410Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/utils/python_compat.h(40): warning C4273: '_PyWeakref_ClearRef': inconsistent dll linkage 2025-06-01T21:16:39.9340419Z C:\Jenkins\Miniconda3\include\weakrefobject.h(67): note: see previous definition of '_PyWeakref_ClearRef' 2025-06-01T21:16:39.9341208Z [7427/7616] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_lazy_graph_executor.cpp.obj 2025-06-01T21:16:40.2438416Z [7428/7616] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_lazy_ops_util.cpp.obj 2025-06-01T21:16:40.4829732Z [7429/7616] Building CXX object caffe2\torch\CMakeFiles\nnapi_backend.dir\csrc\jit\backends\nnapi\nnapi_backend_lib.cpp.obj 2025-06-01T21:16:40.8640988Z [7430/7616] Building CXX object caffe2\torch\CMakeFiles\nnapi_backend.dir\csrc\jit\backends\nnapi\nnapi_backend_preprocess.cpp.obj 2025-06-01T21:16:41.0858769Z [7431/7616] Building CXX object functorch\CMakeFiles\functorch.dir\csrc\init_dim_only.cpp.obj 2025-06-01T21:16:41.4114509Z [7432/7616] Linking CXX static library lib\benchmark_main.lib 2025-06-01T21:16:41.5520238Z [7433/7616] Linking C static library lib\libjitprofiling.lib 2025-06-01T21:16:41.7119322Z [7434/7616] Linking CXX static library lib\gmock_main.lib 2025-06-01T21:16:41.7255719Z [7435/7616] Linking CXX static library lib\fmt.lib 2025-06-01T21:16:41.9531665Z [7436/7616] Building CXX object functorch\CMakeFiles\functorch.dir\csrc\dim\dim.cpp.obj 2025-06-01T21:16:42.5725362Z [7437/7616] Linking C static library lib\cpuinfo_internals.lib 2025-06-01T21:16:42.5891334Z [7438/7616] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_lazy_ops.cpp.obj 2025-06-01T21:16:43.9082654Z [7439/7616] Linking CXX executable bin\c10_DeviceGuard_test.exe 2025-06-01T21:16:43.9098982Z [7440/7616] Linking CXX executable bin\c10_Scalar_test.exe 2025-06-01T21:16:43.9109540Z [7441/7616] Linking CXX executable bin\c10_CompileTimeFunctionPointer_test.exe 2025-06-01T21:16:43.9118954Z [7442/7616] Linking CXX executable bin\c10_Device_test.exe 2025-06-01T21:16:43.9134621Z [7443/7616] Linking CXX executable bin\c10_DispatchKeySet_test.exe 2025-06-01T21:16:44.0781576Z [7444/7616] Linking CXX executable bin\c10_SymInt_test.exe 2025-06-01T21:16:44.0941040Z [7445/7616] Linking CXX executable bin\c10_InlineDeviceGuard_test.exe 2025-06-01T21:16:44.1075778Z [7446/7616] Linking CXX executable bin\c10_InlineStreamGuard_test.exe 2025-06-01T21:16:44.1671989Z [7447/7616] Linking CXX executable bin\c10_SizesAndStrides_test.exe 2025-06-01T21:16:44.1687466Z [7448/7616] Linking CXX executable bin\c10_StreamGuard_test.exe 2025-06-01T21:16:44.2797809Z [7449/7616] Linking CXX executable bin\c10_cow_test.exe 2025-06-01T21:16:44.2959411Z [7450/7616] Linking CXX executable bin\c10_ArrayRef_test.exe 2025-06-01T21:16:44.2971219Z [7451/7616] Linking CXX executable bin\c10_Bitset_test.exe 2025-06-01T21:16:44.3258656Z [7452/7616] Linking CXX static library lib\libprotobuf-lite.lib 2025-06-01T21:16:44.3270852Z [7453/7616] Linking CXX executable bin\c10_ConstexprCrc_test.exe 2025-06-01T21:16:44.3324755Z [7454/7616] Linking CXX executable bin\c10_DeadlockDetection_test.exe 2025-06-01T21:16:44.5122774Z [7455/7616] Linking CXX executable bin\c10_Enumerate_test.exe 2025-06-01T21:16:44.5272149Z [7456/7616] Linking CXX executable bin\c10_IntrusiveList_test.exe 2025-06-01T21:16:44.5286136Z [7457/7616] Linking CXX executable bin\c10_Half_test.exe 2025-06-01T21:16:44.5318009Z [7458/7616] Linking CXX executable bin\c10_LeftRight_test.exe 2025-06-01T21:16:44.5329112Z [7459/7616] Linking CXX executable bin\c10_Metaprogramming_test.exe 2025-06-01T21:16:44.5489041Z [7460/7616] Linking CXX executable bin\c10_NetworkFlow_test.exe 2025-06-01T21:16:44.8042602Z [7461/7616] Linking CXX executable bin\c10_Synchronized_test.exe 2025-06-01T21:16:44.8055792Z [7462/7616] Linking CXX executable bin\c10_TypeIndex_test.exe 2025-06-01T21:16:44.8065966Z [7463/7616] Linking CXX executable bin\c10_ThreadLocal_test.exe 2025-06-01T21:16:44.8076659Z [7464/7616] Linking CXX executable bin\c10_Semaphore_test.exe 2025-06-01T21:16:44.8135138Z [7465/7616] Linking CXX executable bin\c10_TypeList_test.exe 2025-06-01T21:16:44.8172226Z [7466/7616] Linking CXX executable bin\c10_TypeTraits_test.exe 2025-06-01T21:16:45.0124635Z [7467/7616] Linking CXX executable bin\c10_bit_cast_test.exe 2025-06-01T21:16:45.0144359Z [7468/7616] Linking CXX executable bin\c10_bfloat16_test.exe 2025-06-01T21:16:45.0278140Z [7469/7616] Linking CXX executable bin\c10_accumulate_test.exe 2025-06-01T21:16:45.0513555Z [7470/7616] Linking CXX executable bin\c10_complex_test.exe 2025-06-01T21:16:45.0524894Z [7471/7616] Linking CXX executable bin\c10_complex_math_test.exe 2025-06-01T21:16:45.0564464Z [7472/7616] Linking CXX executable bin\c10_error_test.exe 2025-06-01T21:16:45.2240329Z [7473/7616] Linking CXX executable bin\c10_generic_math_test.exe 2025-06-01T21:16:45.2399484Z [7474/7616] Linking CXX executable bin\c10_exception_test.exe 2025-06-01T21:16:45.2449509Z [7475/7616] Linking CXX executable bin\c10_irange_test.exe 2025-06-01T21:16:45.2556572Z [7476/7616] Linking CXX executable bin\c10_lazy_test.exe 2025-06-01T21:16:45.3171347Z [7477/7616] Linking CXX executable bin\c10_intrusive_ptr_test.exe 2025-06-01T21:16:45.3360990Z [7478/7616] Linking CXX executable bin\c10_flags_test.exe 2025-06-01T21:16:45.4333306Z [7479/7616] Linking CXX executable bin\c10_logging_test.exe 2025-06-01T21:16:45.4717472Z [7480/7616] Linking CXX executable bin\c10_ordered_preserving_dict_test.exe 2025-06-01T21:16:45.4753195Z [7481/7616] Linking CXX executable bin\c10_optional_test.exe 2025-06-01T21:16:45.5196195Z [7482/7616] Linking CXX executable bin\c10_ssize_test.exe 2025-06-01T21:16:45.5552406Z [7483/7616] Linking CXX executable bin\c10_registry_test.exe 2025-06-01T21:16:45.5584504Z [7484/7616] Linking CXX executable bin\c10_small_vector_test.exe 2025-06-01T21:16:45.5856402Z [7485/7616] Linking CXX executable bin\c10_string_util_test.exe 2025-06-01T21:16:45.7224594Z [7486/7616] Linking CXX executable bin\c10_string_view_test.exe 2025-06-01T21:16:45.7720908Z [7487/7616] Linking CXX executable bin\c10_tempfile_test.exe 2025-06-01T21:16:45.8350321Z [7488/7616] Linking CXX executable bin\c10_typeid_test.exe 2025-06-01T21:16:45.8500253Z [7489/7616] Linking CXX executable bin\c10_intrusive_ptr_benchmark.exe 2025-06-01T21:16:46.0612096Z [7490/7616] Linking CXX executable bin\c10_cuda_CUDAAssertionsTest_1_var_test.exe 2025-06-01T21:16:46.0728637Z [7491/7616] Linking CXX executable bin\c10_cuda_CUDAAssertionsTest_catches_stream.exe 2025-06-01T21:16:46.0930611Z [7492/7616] Linking CXX executable bin\c10_cuda_CUDAAssertionsTest_catches_thread_and_block_and_device.exe 2025-06-01T21:16:46.0984291Z [7493/7616] Linking CXX executable bin\c10_cuda_CUDAAssertionsTest_from_2_processes.exe 2025-06-01T21:16:46.1093483Z [7494/7616] Linking CXX executable bin\c10_cuda_CUDAAssertionsTest_multiple_writes_from_blocks_and_threads.exe 2025-06-01T21:16:46.1242540Z [7495/7616] Linking CXX executable bin\c10_cuda_CUDAAssertionsTest_multiple_writes_from_multiple_blocks.exe 2025-06-01T21:16:46.2498954Z [7496/7616] Linking CXX executable bin\c10_cuda_CUDAAssertionsTest_multiple_writes_from_same_block.exe 2025-06-01T21:16:46.3131316Z [7497/7616] Linking CXX executable bin\c10_cuda_CUDATest.exe 2025-06-01T21:16:46.3423623Z [7498/7616] Linking C shared library bin\torch_global_deps.dll 2025-06-01T21:16:46.3649310Z [7499/7616] Linking C executable sleef\bin\mkrename_gnuabi.exe 2025-06-01T21:16:46.3814748Z [7500/7616] Linking C executable sleef\bin\mkmasked_gnuabi.exe 2025-06-01T21:16:46.4185339Z [7501/7616] Linking C executable sleef\bin\addSuffix.exe 2025-06-01T21:16:46.5170563Z [7502/7616] Building C object sleef\src\common\CMakeFiles\arraymap.dir\arraymap.c.obj 2025-06-01T21:16:46.7269326Z [7503/7616] Linking CXX shared library bin\caffe2_nvrtc.dll 2025-06-01T21:16:48.7838637Z [7504/7616] Linking C static library lib\microkernels-all.lib 2025-06-01T21:23:51.5377475Z [7505/7616] Linking CXX shared library bin\torch_cpu.dll 2025-06-01T21:23:51.9756756Z [7506/7616] Linking CXX static library lib\unbox_lib.lib 2025-06-01T21:23:52.4709168Z [7507/7616] Linking CXX executable bin\BackoffTest.exe 2025-06-01T21:23:52.4719382Z [7508/7616] Linking CXX executable bin\FileStoreTest.exe 2025-06-01T21:23:52.4845026Z [7509/7616] Linking CXX executable bin\TCPStoreTest.exe 2025-06-01T21:23:52.4900053Z [7510/7616] Linking CXX executable bin\test_edge_op_registration.exe 2025-06-01T21:24:36.0895693Z [7511/7616] Linking CXX shared library bin\torch_cuda.dll 2025-06-01T21:24:36.2233190Z [7512/7616] Linking CXX shared library bin\torch.dll 2025-06-01T21:24:36.2347336Z [7513/7616] Linking CXX shared library bin\c10d_cuda_test.dll 2025-06-01T21:24:36.4167110Z [7514/7616] Linking CXX shared library bin\shm.dll 2025-06-01T21:24:36.5447464Z [7515/7616] Linking CXX executable bin\Dimname_test.exe 2025-06-01T21:24:36.8145975Z [7516/7616] Linking CXX shared library bin\jitbackend_test.dll 2025-06-01T21:24:36.9245987Z [7517/7616] Linking CXX executable bin\Dict_test.exe 2025-06-01T21:24:37.0757287Z [7518/7616] Linking CXX shared library bin\backend_with_compiler.dll 2025-06-01T21:24:37.2030595Z [7519/7616] Linking CXX executable bin\MaybeOwned_test.exe 2025-06-01T21:24:37.3050639Z [7520/7616] Linking CXX executable bin\NamedTensor_test.exe 2025-06-01T21:24:37.4103217Z [7521/7616] Linking CXX executable bin\apply_utils_test.exe 2025-06-01T21:24:37.5458259Z [7522/7616] Linking CXX executable bin\atest.exe 2025-06-01T21:24:37.6322424Z [7523/7616] Linking CXX executable bin\basic.exe 2025-06-01T21:24:37.6476681Z [7524/7616] Linking CXX executable bin\cpu_allocator_test.exe 2025-06-01T21:24:37.7030397Z [7525/7616] Linking CXX executable bin\broadcast_test.exe 2025-06-01T21:24:37.8520448Z [7526/7616] Linking CXX executable bin\cpu_generator_test.exe 2025-06-01T21:24:37.8883433Z [7527/7616] Linking CXX executable bin\cpu_profiling_allocator_test.exe 2025-06-01T21:24:37.9188934Z [7528/7616] Linking CXX executable bin\cpu_rng_test.exe 2025-06-01T21:24:37.9721255Z [7529/7616] Linking CXX executable bin\dlconvertor_test.exe 2025-06-01T21:24:38.1185641Z [7530/7616] Linking CXX executable bin\extension_backend_test.exe 2025-06-01T21:24:38.1212725Z [7531/7616] Linking CXX executable bin\half_test.exe 2025-06-01T21:24:38.2197328Z [7532/7616] Linking CXX executable bin\lazy_tensor_test.exe 2025-06-01T21:24:38.2323878Z [7533/7616] Linking CXX executable bin\ivalue_test.exe 2025-06-01T21:24:38.3966418Z [7534/7616] Linking CXX executable bin\math_kernel_test.exe 2025-06-01T21:24:38.4172923Z [7535/7616] Linking CXX executable bin\memory_format_test.exe 2025-06-01T21:24:38.4650202Z [7536/7616] Linking CXX executable bin\memory_overlapping_test.exe 2025-06-01T21:24:38.4804417Z [7537/7616] Linking CXX executable bin\mobile_memory_cleanup.exe 2025-06-01T21:24:38.6351222Z [7538/7616] Linking CXX executable bin\operator_name_test.exe 2025-06-01T21:24:38.6445991Z [7539/7616] Linking CXX executable bin\native_test.exe 2025-06-01T21:24:38.7378488Z [7540/7616] Linking CXX executable bin\packedtensoraccessor_test.exe 2025-06-01T21:24:38.7389067Z [7541/7616] Linking CXX executable bin\operators_test.exe 2025-06-01T21:24:38.9102514Z [7542/7616] Linking CXX executable bin\quantized_test.exe 2025-06-01T21:24:38.9113743Z [7543/7616] Linking CXX executable bin\pow_test.exe 2025-06-01T21:24:39.0245749Z [7544/7616] Linking CXX executable bin\reportMemoryUsage_test.exe 2025-06-01T21:24:39.0393362Z [7545/7616] Linking CXX executable bin\reduce_ops_test.exe 2025-06-01T21:24:39.1876277Z [7546/7616] Linking CXX executable bin\scalar_tensor_test.exe 2025-06-01T21:24:39.1888949Z [7547/7616] Linking CXX executable bin\scalar_test.exe 2025-06-01T21:24:39.2543227Z [7548/7616] Linking CXX executable bin\StorageUtils_test.exe 2025-06-01T21:24:39.2697973Z [7549/7616] Linking CXX executable bin\stride_properties_test.exe 2025-06-01T21:24:39.4703448Z [7550/7616] Linking CXX executable bin\test_parallel.exe 2025-06-01T21:24:39.4876108Z [7551/7616] Linking CXX executable bin\thread_init_test.exe 2025-06-01T21:24:39.4887002Z [7552/7616] Linking CXX executable bin\tensor_iterator_test.exe 2025-06-01T21:24:39.5500367Z [7553/7616] Linking CXX executable bin\type_ptr_test.exe 2025-06-01T21:24:39.7153439Z [7554/7616] Linking CXX executable bin\verify_api_visibility.exe 2025-06-01T21:24:39.7639679Z [7555/7616] Linking CXX executable bin\type_test.exe 2025-06-01T21:24:39.7698095Z [7556/7616] Linking CXX executable bin\undefined_tensor_test.exe 2025-06-01T21:24:39.8131013Z [7557/7616] Linking CXX executable bin\legacy_vmap_test.exe 2025-06-01T21:24:39.9747218Z [7558/7616] Linking CXX executable bin\weakref_test.exe 2025-06-01T21:24:40.0436700Z [7559/7616] Linking CXX executable bin\wrapdim_test.exe 2025-06-01T21:24:40.0642341Z [7560/7616] Linking CXX executable bin\xla_tensor_test.exe 2025-06-01T21:24:40.0654343Z [7561/7616] Linking CXX executable bin\IListRef_test.exe 2025-06-01T21:24:40.2784899Z [7562/7616] Linking CXX executable bin\List_test.exe 2025-06-01T21:24:40.3223959Z [7563/7616] Linking CXX executable bin\KernelFunction_test.exe 2025-06-01T21:24:40.3557168Z [7564/7616] Linking CXX executable bin\kernel_function_test.exe 2025-06-01T21:24:40.4099279Z [7565/7616] Linking CXX executable bin\kernel_function_legacy_test.exe 2025-06-01T21:24:40.5767489Z [7566/7616] Linking CXX executable bin\kernel_lambda_legacy_test.exe 2025-06-01T21:24:40.6141437Z [7567/7616] Linking CXX executable bin\kernel_stackbased_test.exe 2025-06-01T21:24:40.6436737Z [7568/7616] Linking CXX executable bin\kernel_lambda_test.exe 2025-06-01T21:24:40.7053552Z [7569/7616] Linking CXX executable bin\make_boxed_from_unboxed_functor_test.exe 2025-06-01T21:24:40.8028199Z [7570/7616] Linking CXX executable bin\CppSignature_test.exe 2025-06-01T21:24:40.8514193Z [7571/7616] Linking CXX executable bin\vec_test_all_types_AVX2.exe 2025-06-01T21:24:40.8685495Z [7572/7616] Linking CXX executable bin\op_allowlist_test.exe 2025-06-01T21:24:40.8891943Z [7573/7616] Linking CXX executable bin\backend_fallback_test.exe 2025-06-01T21:24:40.9030810Z [7574/7616] Linking CXX executable bin\vec_test_all_types_DEFAULT.exe 2025-06-01T21:24:40.9523966Z [7575/7616] Linking CXX executable bin\vec_test_all_types_AVX512.exe 2025-06-01T21:24:41.0018314Z [7576/7616] Linking CXX executable bin\inline_container_test.exe 2025-06-01T21:24:41.0867823Z [7577/7616] Linking CXX executable bin\cuda_allocator_test.exe 2025-06-01T21:24:41.1027570Z [7578/7616] Linking CXX executable bin\cuda_apply_test.exe 2025-06-01T21:24:41.1805214Z [7579/7616] Linking CXX executable bin\cuda_complex_math_test.exe 2025-06-01T21:24:41.1816747Z [7580/7616] Linking CXX executable bin\cuda_atomic_ops_test.exe 2025-06-01T21:24:41.1827776Z [7581/7616] Linking CXX executable bin\cuda_caching_host_allocator_test.exe 2025-06-01T21:24:41.1893152Z [7582/7616] Linking CXX executable bin\op_registration_test.exe 2025-06-01T21:24:41.2843363Z [7583/7616] Linking CXX executable bin\cuda_complex_test.exe 2025-06-01T21:24:41.4137852Z [7584/7616] Linking CXX executable bin\cuda_device_test.exe 2025-06-01T21:24:41.4405939Z [7585/7616] Linking CXX executable bin\cuda_cub_test.exe 2025-06-01T21:24:41.5061394Z [7586/7616] Linking CXX executable bin\cuda_dlconvertor_test.exe 2025-06-01T21:24:41.5364414Z [7587/7616] Linking CXX executable bin\cuda_generator_test.exe 2025-06-01T21:24:41.5378553Z [7588/7616] Linking CXX executable bin\cuda_exchange_device_test.exe 2025-06-01T21:24:41.5528971Z [7589/7616] Linking CXX executable bin\cuda_distributions_test.exe 2025-06-01T21:24:41.5884286Z [7590/7616] Linking CXX executable bin\cuda_half_test.exe 2025-06-01T21:24:41.6903539Z [7591/7616] Linking CXX executable bin\cuda_integer_divider_test.exe 2025-06-01T21:24:41.7709565Z [7592/7616] Linking CXX executable bin\cuda_optional_test.exe 2025-06-01T21:24:41.8221035Z [7593/7616] Linking CXX executable bin\cuda_allocatorTraceTracker_test.exe 2025-06-01T21:24:41.8573352Z [7594/7616] Linking CXX executable bin\cuda_packedtensoraccessor_test.exe 2025-06-01T21:24:41.8731764Z [7595/7616] Linking CXX executable bin\cuda_reportMemoryUsage_test.exe 2025-06-01T21:24:41.8880948Z [7596/7616] Linking CXX executable bin\cuda_stream_test.exe 2025-06-01T21:24:41.9110782Z [7597/7616] Linking CXX executable bin\cuda_vectorized_test.exe 2025-06-01T21:24:41.9870309Z [7598/7616] Linking CXX executable bin\cuda_cudnn_test.exe 2025-06-01T21:24:42.0780660Z [7599/7616] Linking CXX shared library bin\torchbind_test.dll 2025-06-01T21:24:42.1121932Z [7600/7616] Linking CXX shared library bin\aoti_custom_ops.dll 2025-06-01T21:24:42.1641610Z [7601/7616] Linking CXX executable bin\tutorial_tensorexpr.exe 2025-06-01T21:24:42.2298549Z [7602/7616] Linking CXX executable bin\test_nativert.exe 2025-06-01T21:24:42.2671703Z [7603/7616] Linking CXX executable bin\ProcessGroupGlooTest.exe 2025-06-01T21:24:42.3459189Z [7604/7616] Linking CXX executable bin\ProcessGroupGlooAsyncTest.exe 2025-06-01T21:24:42.3933410Z [7605/7616] Linking CXX executable bin\parallel_benchmark.exe 2025-06-01T21:24:42.7656463Z [7606/7616] Linking CXX executable bin\test_lazy.exe 2025-06-01T21:24:42.7703828Z [7607/7616] Linking CXX executable bin\test_tensorexpr.exe 2025-06-01T21:24:43.6132961Z [7608/7616] Linking CXX executable bin\test_jit.exe 2025-06-01T21:24:43.6490421Z [7609/7616] Linking CXX executable bin\test_api.exe 2025-06-01T21:24:54.6065045Z [7610/7616] Linking CXX shared library bin\torch_python.dll 2025-06-01T21:24:54.7873752Z [7611/7616] Linking CXX shared module functorch\functorch.pyd 2025-06-01T21:24:54.7881068Z [7612/7616] Linking CXX shared library bin\nnapi_backend.dll 2025-06-01T21:24:54.8063940Z [7612/7616] Install the project... 2025-06-01T21:24:54.8857655Z -- Install configuration: "Release" 2025-06-01T21:25:54.8569507Z -- Building version 2.8.0a0+gitf7c09f8 2025-06-01T21:25:54.8569948Z -- Checkout nccl release tag: v2.26.5-1 2025-06-01T21:25:54.8575108Z 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 -DTORCH_BUILD_VERSION=2.8.0a0+gitf7c09f8 -DTORCH_CUDA_ARCH_LIST=8.6 -DUSE_CUDA=1 -DUSE_NUMPY=True -DUSE_XPU=0 C:\actions-runner\_work\pytorch\pytorch 2025-06-01T21:25:54.8580488Z cmake --build . --target install --config Release -j 8 2025-06-01T21:25:54.8580850Z running bdist_wheel 2025-06-01T21:26:01.5065449Z running build 2025-06-01T21:26:01.5065730Z running build_py 2025-06-01T21:26:01.5151795Z creating build\lib.win-amd64-cpython-39\functorch 2025-06-01T21:26:01.5156427Z copying functorch\__init__.py -> build\lib.win-amd64-cpython-39\functorch 2025-06-01T21:26:01.5183668Z creating build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.5187202Z copying torch\functional.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.5227598Z copying torch\hub.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.5249105Z copying torch\library.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.5283053Z copying torch\overrides.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.5321853Z copying torch\quasirandom.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.5337977Z copying torch\random.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.5353488Z copying torch\return_types.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.5363613Z copying torch\serialization.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.5398561Z copying torch\storage.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.5423692Z copying torch\torch_version.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.5439213Z copying torch\types.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.5449077Z copying torch\version.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.5454567Z copying torch\_appdirs.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.5470683Z copying torch\_classes.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.5484374Z copying torch\_compile.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.5493580Z copying torch\_custom_ops.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.5504695Z copying torch\_deploy.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.5515025Z copying torch\_environment.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.5525238Z copying torch\_guards.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.5546598Z copying torch\_jit_internal.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.5571028Z copying torch\_linalg_utils.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.5582489Z copying torch\_lobpcg.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.5604767Z copying torch\_lowrank.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.5615142Z copying torch\_meta_registrations.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.5700904Z copying torch\_namedtensor_internals.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.5710284Z copying torch\_ops.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.5745137Z copying torch\_python_dispatcher.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.5756652Z copying torch\_size_docs.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.5768420Z copying torch\_sources.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.5816357Z copying torch\_storage_docs.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.5816934Z copying torch\_streambase.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.5817469Z copying torch\_tensor.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.5834932Z copying torch\_tensor_docs.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.5893309Z copying torch\_tensor_str.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.5918217Z copying torch\_thread_safe_fork.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.5922926Z copying torch\_torch_docs.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.6069062Z copying torch\_utils.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.6097297Z copying torch\_utils_internal.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.6104141Z copying torch\_VF.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.6111990Z copying torch\_vmap_internals.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.6121288Z copying torch\_weights_only_unpickler.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.6139846Z copying torch\__config__.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.6145522Z copying torch\__future__.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.6173062Z copying torch\__init__.py -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:01.6217147Z creating build\lib.win-amd64-cpython-39\torchgen 2025-06-01T21:26:01.6221227Z copying torchgen\code_template.py -> build\lib.win-amd64-cpython-39\torchgen 2025-06-01T21:26:01.6231410Z copying torchgen\context.py -> build\lib.win-amd64-cpython-39\torchgen 2025-06-01T21:26:01.6241177Z copying torchgen\gen.py -> build\lib.win-amd64-cpython-39\torchgen 2025-06-01T21:26:01.6289436Z copying torchgen\gen_aoti_c_shim.py -> build\lib.win-amd64-cpython-39\torchgen 2025-06-01T21:26:01.6309059Z copying torchgen\gen_backend_stubs.py -> build\lib.win-amd64-cpython-39\torchgen 2025-06-01T21:26:01.6331944Z copying torchgen\gen_executorch.py -> build\lib.win-amd64-cpython-39\torchgen 2025-06-01T21:26:01.6356249Z copying torchgen\gen_functionalization_type.py -> build\lib.win-amd64-cpython-39\torchgen 2025-06-01T21:26:01.6376706Z copying torchgen\gen_lazy_tensor.py -> build\lib.win-amd64-cpython-39\torchgen 2025-06-01T21:26:01.6396191Z copying torchgen\gen_schema_utils.py -> build\lib.win-amd64-cpython-39\torchgen 2025-06-01T21:26:01.6405730Z copying torchgen\gen_vmap_plumbing.py -> build\lib.win-amd64-cpython-39\torchgen 2025-06-01T21:26:01.6416440Z copying torchgen\local.py -> build\lib.win-amd64-cpython-39\torchgen 2025-06-01T21:26:01.6426392Z copying torchgen\model.py -> build\lib.win-amd64-cpython-39\torchgen 2025-06-01T21:26:01.6470897Z copying torchgen\native_function_generation.py -> build\lib.win-amd64-cpython-39\torchgen 2025-06-01T21:26:01.6489734Z copying torchgen\utils.py -> build\lib.win-amd64-cpython-39\torchgen 2025-06-01T21:26:01.6504150Z copying torchgen\yaml_utils.py -> build\lib.win-amd64-cpython-39\torchgen 2025-06-01T21:26:01.6514467Z copying torchgen\__init__.py -> build\lib.win-amd64-cpython-39\torchgen 2025-06-01T21:26:01.6521418Z creating build\lib.win-amd64-cpython-39\functorch\compile 2025-06-01T21:26:01.6524627Z copying functorch\compile\__init__.py -> build\lib.win-amd64-cpython-39\functorch\compile 2025-06-01T21:26:01.6537854Z creating build\lib.win-amd64-cpython-39\functorch\dim 2025-06-01T21:26:01.6540790Z copying functorch\dim\batch_tensor.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-06-01T21:26:01.6557089Z copying functorch\dim\delayed_mul_tensor.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-06-01T21:26:01.6566098Z copying functorch\dim\dim.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-06-01T21:26:01.6577922Z copying functorch\dim\magic_trace.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-06-01T21:26:01.6592306Z copying functorch\dim\op_properties.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-06-01T21:26:01.6603191Z copying functorch\dim\reference.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-06-01T21:26:01.6620466Z copying functorch\dim\tree_map.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-06-01T21:26:01.6624975Z copying functorch\dim\wrap_type.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-06-01T21:26:01.6637117Z copying functorch\dim\__init__.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-06-01T21:26:01.6649399Z creating build\lib.win-amd64-cpython-39\functorch\einops 2025-06-01T21:26:01.6652517Z copying functorch\einops\rearrange.py -> build\lib.win-amd64-cpython-39\functorch\einops 2025-06-01T21:26:01.6664318Z copying functorch\einops\_parsing.py -> build\lib.win-amd64-cpython-39\functorch\einops 2025-06-01T21:26:01.6676114Z copying functorch\einops\__init__.py -> build\lib.win-amd64-cpython-39\functorch\einops 2025-06-01T21:26:01.6688229Z creating build\lib.win-amd64-cpython-39\functorch\experimental 2025-06-01T21:26:01.6696427Z copying functorch\experimental\control_flow.py -> build\lib.win-amd64-cpython-39\functorch\experimental 2025-06-01T21:26:01.6702057Z copying functorch\experimental\ops.py -> build\lib.win-amd64-cpython-39\functorch\experimental 2025-06-01T21:26:01.6707693Z copying functorch\experimental\__init__.py -> build\lib.win-amd64-cpython-39\functorch\experimental 2025-06-01T21:26:01.6721836Z creating build\lib.win-amd64-cpython-39\functorch\_src 2025-06-01T21:26:01.6724705Z copying functorch\_src\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src 2025-06-01T21:26:01.6730833Z creating build\lib.win-amd64-cpython-39\functorch\_src\aot_autograd 2025-06-01T21:26:01.6733760Z copying functorch\_src\aot_autograd\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src\aot_autograd 2025-06-01T21:26:01.6742128Z creating build\lib.win-amd64-cpython-39\functorch\_src\eager_transforms 2025-06-01T21:26:01.6743584Z copying functorch\_src\eager_transforms\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src\eager_transforms 2025-06-01T21:26:01.6750730Z creating build\lib.win-amd64-cpython-39\functorch\_src\make_functional 2025-06-01T21:26:01.6760531Z copying functorch\_src\make_functional\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src\make_functional 2025-06-01T21:26:01.6768013Z creating build\lib.win-amd64-cpython-39\functorch\_src\vmap 2025-06-01T21:26:01.6769719Z copying functorch\_src\vmap\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src\vmap 2025-06-01T21:26:01.6781614Z creating build\lib.win-amd64-cpython-39\torch\accelerator 2025-06-01T21:26:01.6785821Z copying torch\accelerator\_utils.py -> build\lib.win-amd64-cpython-39\torch\accelerator 2025-06-01T21:26:01.6797212Z copying torch\accelerator\__init__.py -> build\lib.win-amd64-cpython-39\torch\accelerator 2025-06-01T21:26:01.6809486Z creating build\lib.win-amd64-cpython-39\torch\amp 2025-06-01T21:26:01.6811329Z copying torch\amp\autocast_mode.py -> build\lib.win-amd64-cpython-39\torch\amp 2025-06-01T21:26:01.6832780Z copying torch\amp\grad_scaler.py -> build\lib.win-amd64-cpython-39\torch\amp 2025-06-01T21:26:01.6850119Z copying torch\amp\__init__.py -> build\lib.win-amd64-cpython-39\torch\amp 2025-06-01T21:26:01.6856863Z creating build\lib.win-amd64-cpython-39\torch\ao 2025-06-01T21:26:01.6859906Z copying torch\ao\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao 2025-06-01T21:26:01.6876286Z creating build\lib.win-amd64-cpython-39\torch\autograd 2025-06-01T21:26:01.6879203Z copying torch\autograd\anomaly_mode.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-06-01T21:26:01.6893349Z copying torch\autograd\forward_ad.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-06-01T21:26:01.6903780Z copying torch\autograd\function.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-06-01T21:26:01.6927122Z copying torch\autograd\functional.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-06-01T21:26:01.6959524Z copying torch\autograd\gradcheck.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-06-01T21:26:01.6998675Z copying torch\autograd\grad_mode.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-06-01T21:26:01.7013205Z copying torch\autograd\graph.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-06-01T21:26:01.7031356Z copying torch\autograd\profiler.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-06-01T21:26:01.7058301Z copying torch\autograd\profiler_legacy.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-06-01T21:26:01.7070235Z copying torch\autograd\profiler_util.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-06-01T21:26:01.7092810Z copying torch\autograd\variable.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-06-01T21:26:01.7100309Z copying torch\autograd\__init__.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-06-01T21:26:01.7121633Z creating build\lib.win-amd64-cpython-39\torch\backends 2025-06-01T21:26:01.7123910Z copying torch\backends\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends 2025-06-01T21:26:01.7136141Z creating build\lib.win-amd64-cpython-39\torch\compiler 2025-06-01T21:26:01.7139908Z copying torch\compiler\config.py -> build\lib.win-amd64-cpython-39\torch\compiler 2025-06-01T21:26:01.7149571Z copying torch\compiler\_cache.py -> build\lib.win-amd64-cpython-39\torch\compiler 2025-06-01T21:26:01.7161755Z copying torch\compiler\__init__.py -> build\lib.win-amd64-cpython-39\torch\compiler 2025-06-01T21:26:01.7181887Z creating build\lib.win-amd64-cpython-39\torch\contrib 2025-06-01T21:26:01.7185022Z copying torch\contrib\_tensorboard_vis.py -> build\lib.win-amd64-cpython-39\torch\contrib 2025-06-01T21:26:01.7195487Z copying torch\contrib\__init__.py -> build\lib.win-amd64-cpython-39\torch\contrib 2025-06-01T21:26:01.7201283Z creating build\lib.win-amd64-cpython-39\torch\cpu 2025-06-01T21:26:01.7231862Z copying torch\cpu\__init__.py -> build\lib.win-amd64-cpython-39\torch\cpu 2025-06-01T21:26:01.7235974Z creating build\lib.win-amd64-cpython-39\torch\cuda 2025-06-01T21:26:01.7236456Z copying torch\cuda\comm.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-06-01T21:26:01.7236978Z copying torch\cuda\error.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-06-01T21:26:01.7237508Z copying torch\cuda\gds.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-06-01T21:26:01.7249258Z copying torch\cuda\graphs.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-06-01T21:26:01.7262994Z copying torch\cuda\jiterator.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-06-01T21:26:01.7272816Z copying torch\cuda\memory.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-06-01T21:26:01.7302430Z copying torch\cuda\nccl.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-06-01T21:26:01.7312689Z copying torch\cuda\nvtx.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-06-01T21:26:01.7323357Z copying torch\cuda\profiler.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-06-01T21:26:01.7333139Z copying torch\cuda\random.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-06-01T21:26:01.7350352Z copying torch\cuda\sparse.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-06-01T21:26:01.7355555Z copying torch\cuda\streams.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-06-01T21:26:01.7413089Z copying torch\cuda\tunable.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-06-01T21:26:01.7431699Z copying torch\cuda\_gpu_trace.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-06-01T21:26:01.7447564Z copying torch\cuda\_memory_viz.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-06-01T21:26:01.7472046Z copying torch\cuda\_sanitizer.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-06-01T21:26:01.7487276Z copying torch\cuda\_utils.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-06-01T21:26:01.7498636Z copying torch\cuda\__init__.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-06-01T21:26:01.7538025Z creating build\lib.win-amd64-cpython-39\torch\distributed 2025-06-01T21:26:01.7541124Z copying torch\distributed\argparse_util.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-06-01T21:26:01.7552027Z copying torch\distributed\c10d_logger.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-06-01T21:26:01.7562271Z copying torch\distributed\collective_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-06-01T21:26:01.7581669Z copying torch\distributed\constants.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-06-01T21:26:01.7591494Z copying torch\distributed\device_mesh.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-06-01T21:26:01.7616554Z copying torch\distributed\distributed_c10d.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-06-01T21:26:01.7694929Z copying torch\distributed\launch.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-06-01T21:26:01.7740490Z copying torch\distributed\logging_handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-06-01T21:26:01.7746215Z copying torch\distributed\remote_device.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-06-01T21:26:01.7756949Z copying torch\distributed\rendezvous.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-06-01T21:26:01.7767867Z copying torch\distributed\run.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-06-01T21:26:01.7787048Z copying torch\distributed\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-06-01T21:26:01.7798365Z copying torch\distributed\_checkpointable.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-06-01T21:26:01.7808505Z copying torch\distributed\_composable_state.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-06-01T21:26:01.7819652Z copying torch\distributed\_functional_collectives.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-06-01T21:26:01.7847053Z copying torch\distributed\_functional_collectives_impl.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-06-01T21:26:01.7857239Z copying torch\distributed\_serialization.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-06-01T21:26:01.7867724Z copying torch\distributed\_state_dict_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-06-01T21:26:01.7904104Z copying torch\distributed\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-06-01T21:26:01.7939478Z creating build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.7941864Z copying torch\distributions\bernoulli.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.7954288Z copying torch\distributions\beta.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.7965379Z copying torch\distributions\binomial.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.7977985Z copying torch\distributions\categorical.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.7999580Z copying torch\distributions\cauchy.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8011918Z copying torch\distributions\chi2.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8023640Z copying torch\distributions\constraints.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8048720Z copying torch\distributions\constraint_registry.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8061516Z copying torch\distributions\continuous_bernoulli.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8073049Z copying torch\distributions\dirichlet.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8084449Z copying torch\distributions\distribution.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8100791Z copying torch\distributions\exponential.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8110705Z copying torch\distributions\exp_family.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8120847Z copying torch\distributions\fishersnedecor.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8130621Z copying torch\distributions\gamma.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8144575Z copying torch\distributions\generalized_pareto.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8155269Z copying torch\distributions\geometric.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8165607Z copying torch\distributions\gumbel.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8202954Z copying torch\distributions\half_cauchy.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8217810Z copying torch\distributions\half_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8227246Z copying torch\distributions\independent.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8237099Z copying torch\distributions\inverse_gamma.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8259422Z copying torch\distributions\kl.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8267647Z copying torch\distributions\kumaraswamy.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8282481Z copying torch\distributions\laplace.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8292187Z copying torch\distributions\lkj_cholesky.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8301936Z copying torch\distributions\logistic_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8317972Z copying torch\distributions\log_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8328393Z copying torch\distributions\lowrank_multivariate_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8342815Z copying torch\distributions\mixture_same_family.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8356186Z copying torch\distributions\multinomial.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8365216Z copying torch\distributions\multivariate_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8381332Z copying torch\distributions\negative_binomial.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8393793Z copying torch\distributions\normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8405941Z copying torch\distributions\one_hot_categorical.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8416568Z copying torch\distributions\pareto.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8426463Z copying torch\distributions\poisson.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8435988Z copying torch\distributions\relaxed_bernoulli.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8446699Z copying torch\distributions\relaxed_categorical.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8462491Z copying torch\distributions\studentT.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8473660Z copying torch\distributions\transformed_distribution.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8484830Z copying torch\distributions\transforms.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8507199Z copying torch\distributions\uniform.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8520661Z copying torch\distributions\utils.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8531401Z copying torch\distributions\von_mises.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8546513Z copying torch\distributions\weibull.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8556546Z copying torch\distributions\wishart.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8567507Z copying torch\distributions\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-06-01T21:26:01.8582856Z creating build\lib.win-amd64-cpython-39\torch\export 2025-06-01T21:26:01.8596026Z copying torch\export\custom_obj.py -> build\lib.win-amd64-cpython-39\torch\export 2025-06-01T21:26:01.8602596Z copying torch\export\custom_ops.py -> build\lib.win-amd64-cpython-39\torch\export 2025-06-01T21:26:01.8613180Z copying torch\export\decomp_utils.py -> build\lib.win-amd64-cpython-39\torch\export 2025-06-01T21:26:01.8623295Z copying torch\export\dynamic_shapes.py -> build\lib.win-amd64-cpython-39\torch\export 2025-06-01T21:26:01.8652309Z copying torch\export\exported_program.py -> build\lib.win-amd64-cpython-39\torch\export 2025-06-01T21:26:01.8679007Z copying torch\export\graph_signature.py -> build\lib.win-amd64-cpython-39\torch\export 2025-06-01T21:26:01.8700486Z copying torch\export\unflatten.py -> build\lib.win-amd64-cpython-39\torch\export 2025-06-01T21:26:01.8732895Z copying torch\export\_draft_export.py -> build\lib.win-amd64-cpython-39\torch\export 2025-06-01T21:26:01.8749545Z copying torch\export\_remove_auto_functionalized_pass.py -> build\lib.win-amd64-cpython-39\torch\export 2025-06-01T21:26:01.8760961Z copying torch\export\_remove_effect_tokens_pass.py -> build\lib.win-amd64-cpython-39\torch\export 2025-06-01T21:26:01.8777541Z copying torch\export\_safeguard.py -> build\lib.win-amd64-cpython-39\torch\export 2025-06-01T21:26:01.8787597Z copying torch\export\_swap.py -> build\lib.win-amd64-cpython-39\torch\export 2025-06-01T21:26:01.8803405Z copying torch\export\_trace.py -> build\lib.win-amd64-cpython-39\torch\export 2025-06-01T21:26:01.8845233Z copying torch\export\_tree_utils.py -> build\lib.win-amd64-cpython-39\torch\export 2025-06-01T21:26:01.8856036Z copying torch\export\_unlift.py -> build\lib.win-amd64-cpython-39\torch\export 2025-06-01T21:26:01.8870496Z copying torch\export\_wrapper_utils.py -> build\lib.win-amd64-cpython-39\torch\export 2025-06-01T21:26:01.8876556Z copying torch\export\__init__.py -> build\lib.win-amd64-cpython-39\torch\export 2025-06-01T21:26:01.8895548Z creating build\lib.win-amd64-cpython-39\torch\fft 2025-06-01T21:26:01.8899293Z copying torch\fft\__init__.py -> build\lib.win-amd64-cpython-39\torch\fft 2025-06-01T21:26:01.8927803Z creating build\lib.win-amd64-cpython-39\torch\func 2025-06-01T21:26:01.8930860Z copying torch\func\__init__.py -> build\lib.win-amd64-cpython-39\torch\func 2025-06-01T21:26:01.8937381Z creating build\lib.win-amd64-cpython-39\torch\futures 2025-06-01T21:26:01.8940240Z copying torch\futures\__init__.py -> build\lib.win-amd64-cpython-39\torch\futures 2025-06-01T21:26:01.8955753Z creating build\lib.win-amd64-cpython-39\torch\fx 2025-06-01T21:26:01.8958588Z copying torch\fx\annotate.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-06-01T21:26:01.8969060Z copying torch\fx\config.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-06-01T21:26:01.8983206Z copying torch\fx\graph.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-06-01T21:26:01.9015466Z copying torch\fx\graph_module.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-06-01T21:26:01.9038259Z copying torch\fx\immutable_collections.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-06-01T21:26:01.9058360Z copying torch\fx\interpreter.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-06-01T21:26:01.9072523Z copying torch\fx\node.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-06-01T21:26:01.9093356Z copying torch\fx\operator_schemas.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-06-01T21:26:01.9108788Z copying torch\fx\proxy.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-06-01T21:26:01.9131404Z copying torch\fx\subgraph_rewriter.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-06-01T21:26:01.9142786Z copying torch\fx\tensor_type.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-06-01T21:26:01.9169676Z copying torch\fx\traceback.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-06-01T21:26:01.9180700Z copying torch\fx\_compatibility.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-06-01T21:26:01.9191313Z copying torch\fx\_graph_pickler.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-06-01T21:26:01.9209154Z copying torch\fx\_lazy_graph_module.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-06-01T21:26:02.0045417Z copying torch\fx\_pytree.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-06-01T21:26:02.0057458Z copying torch\fx\_symbolic_trace.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-06-01T21:26:02.0082108Z copying torch\fx\_utils.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-06-01T21:26:02.0092683Z copying torch\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-06-01T21:26:02.0108897Z creating build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:26:02.0112768Z copying torch\jit\annotations.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:26:02.0129742Z copying torch\jit\frontend.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:26:02.0154890Z copying torch\jit\generate_bytecode.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:26:02.0164858Z copying torch\jit\quantized.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:26:02.0181500Z copying torch\jit\supported_ops.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:26:02.0198034Z copying torch\jit\unsupported_tensor_ops.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:26:02.0207081Z copying torch\jit\_async.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:26:02.0218104Z copying torch\jit\_await.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:26:02.0228257Z copying torch\jit\_builtins.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:26:02.0239275Z copying torch\jit\_check.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:26:02.0250627Z copying torch\jit\_dataclass_impls.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:26:02.0262822Z copying torch\jit\_decompositions.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:26:02.0271783Z copying torch\jit\_decomposition_utils.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:26:02.0283193Z copying torch\jit\_freeze.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:26:02.0296723Z copying torch\jit\_fuser.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:26:02.0305957Z copying torch\jit\_ir_utils.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:26:02.0315486Z copying torch\jit\_logging.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:26:02.0326900Z copying torch\jit\_monkeytype_config.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:26:02.0335772Z copying torch\jit\_pickle.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:26:02.0345929Z copying torch\jit\_recursive.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:26:02.0366607Z copying torch\jit\_script.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:26:02.0396340Z copying torch\jit\_serialization.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:26:02.0408869Z copying torch\jit\_shape_functions.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:26:02.0453089Z copying torch\jit\_state.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:26:02.0461775Z copying torch\jit\_trace.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:26:02.0493805Z copying torch\jit\__init__.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:26:02.0507221Z creating build\lib.win-amd64-cpython-39\torch\linalg 2025-06-01T21:26:02.0510575Z copying torch\linalg\__init__.py -> build\lib.win-amd64-cpython-39\torch\linalg 2025-06-01T21:26:02.0560207Z creating build\lib.win-amd64-cpython-39\torch\masked 2025-06-01T21:26:02.0568487Z copying torch\masked\_docs.py -> build\lib.win-amd64-cpython-39\torch\masked 2025-06-01T21:26:02.0594169Z copying torch\masked\_ops.py -> build\lib.win-amd64-cpython-39\torch\masked 2025-06-01T21:26:02.0638099Z copying torch\masked\__init__.py -> build\lib.win-amd64-cpython-39\torch\masked 2025-06-01T21:26:02.0650953Z creating build\lib.win-amd64-cpython-39\torch\monitor 2025-06-01T21:26:02.0654880Z copying torch\monitor\__init__.py -> build\lib.win-amd64-cpython-39\torch\monitor 2025-06-01T21:26:02.0667441Z creating build\lib.win-amd64-cpython-39\torch\mps 2025-06-01T21:26:02.0670414Z copying torch\mps\event.py -> build\lib.win-amd64-cpython-39\torch\mps 2025-06-01T21:26:02.0680051Z copying torch\mps\profiler.py -> build\lib.win-amd64-cpython-39\torch\mps 2025-06-01T21:26:02.0695027Z copying torch\mps\__init__.py -> build\lib.win-amd64-cpython-39\torch\mps 2025-06-01T21:26:02.0706612Z creating build\lib.win-amd64-cpython-39\torch\mtia 2025-06-01T21:26:02.0709583Z copying torch\mtia\memory.py -> build\lib.win-amd64-cpython-39\torch\mtia 2025-06-01T21:26:02.0720173Z copying torch\mtia\_utils.py -> build\lib.win-amd64-cpython-39\torch\mtia 2025-06-01T21:26:02.0729598Z copying torch\mtia\__init__.py -> build\lib.win-amd64-cpython-39\torch\mtia 2025-06-01T21:26:02.0761871Z creating build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-06-01T21:26:02.0764979Z copying torch\multiprocessing\pool.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-06-01T21:26:02.0776952Z copying torch\multiprocessing\queue.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-06-01T21:26:02.0786834Z copying torch\multiprocessing\reductions.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-06-01T21:26:02.0803730Z copying torch\multiprocessing\spawn.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-06-01T21:26:02.0818467Z copying torch\multiprocessing\_atfork.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-06-01T21:26:02.0832433Z copying torch\multiprocessing\__init__.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-06-01T21:26:02.0843486Z creating build\lib.win-amd64-cpython-39\torch\nested 2025-06-01T21:26:02.0846448Z copying torch\nested\__init__.py -> build\lib.win-amd64-cpython-39\torch\nested 2025-06-01T21:26:02.0869218Z creating build\lib.win-amd64-cpython-39\torch\nn 2025-06-01T21:26:02.0872121Z copying torch\nn\common_types.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-06-01T21:26:02.0882133Z copying torch\nn\cpp.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-06-01T21:26:02.0892726Z copying torch\nn\functional.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-06-01T21:26:02.0990366Z copying torch\nn\grad.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-06-01T21:26:02.1007170Z copying torch\nn\init.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-06-01T21:26:02.1030623Z copying torch\nn\parameter.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-06-01T21:26:02.1042357Z copying torch\nn\_reduction.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-06-01T21:26:02.1055588Z copying torch\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-06-01T21:26:02.1071103Z creating build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:26:02.1073595Z copying torch\onnx\errors.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:26:02.1102175Z copying torch\onnx\operators.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:26:02.1111323Z copying torch\onnx\symbolic_caffe2.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:26:02.1127141Z copying torch\onnx\symbolic_helper.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:26:02.1168632Z copying torch\onnx\symbolic_opset10.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:26:02.1188500Z copying torch\onnx\symbolic_opset11.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:26:02.1220208Z copying torch\onnx\symbolic_opset12.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:26:02.1232063Z copying torch\onnx\symbolic_opset13.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:26:02.1259270Z copying torch\onnx\symbolic_opset14.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:26:02.1274379Z copying torch\onnx\symbolic_opset15.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:26:02.1281724Z copying torch\onnx\symbolic_opset16.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:26:02.1292434Z copying torch\onnx\symbolic_opset17.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:26:02.1303828Z copying torch\onnx\symbolic_opset18.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:26:02.1314839Z copying torch\onnx\symbolic_opset19.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:26:02.1325455Z copying torch\onnx\symbolic_opset20.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:26:02.1335429Z copying torch\onnx\symbolic_opset7.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:26:02.1346315Z copying torch\onnx\symbolic_opset8.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:26:02.1357449Z copying torch\onnx\symbolic_opset9.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:26:02.1443141Z copying torch\onnx\utils.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:26:02.1475598Z copying torch\onnx\verification.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:26:02.1518315Z copying torch\onnx\_constants.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:26:02.1529795Z copying torch\onnx\_experimental.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:26:02.1543980Z copying torch\onnx\_flags.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:26:02.1554131Z copying torch\onnx\_globals.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:26:02.1565481Z copying torch\onnx\_onnx_supported_ops.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:26:02.1577733Z copying torch\onnx\_type_utils.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:26:02.1591176Z copying torch\onnx\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-06-01T21:26:02.1610164Z creating build\lib.win-amd64-cpython-39\torch\optim 2025-06-01T21:26:02.1614044Z copying torch\optim\adadelta.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-06-01T21:26:02.1631203Z copying torch\optim\adagrad.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-06-01T21:26:02.1647062Z copying torch\optim\adam.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-06-01T21:26:02.1672282Z copying torch\optim\adamax.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-06-01T21:26:02.1710199Z copying torch\optim\adamw.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-06-01T21:26:02.1721270Z copying torch\optim\asgd.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-06-01T21:26:02.1735508Z copying torch\optim\lbfgs.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-06-01T21:26:02.1761043Z copying torch\optim\lr_scheduler.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-06-01T21:26:02.1799091Z copying torch\optim\nadam.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-06-01T21:26:02.1815520Z copying torch\optim\optimizer.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-06-01T21:26:02.1846220Z copying torch\optim\radam.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-06-01T21:26:02.1863746Z copying torch\optim\rmsprop.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-06-01T21:26:02.1877549Z copying torch\optim\rprop.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-06-01T21:26:02.1892398Z copying torch\optim\sgd.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-06-01T21:26:02.1907776Z copying torch\optim\sparse_adam.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-06-01T21:26:02.1917380Z copying torch\optim\swa_utils.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-06-01T21:26:02.1933240Z copying torch\optim\_adafactor.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-06-01T21:26:02.1954515Z copying torch\optim\_functional.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-06-01T21:26:02.1969698Z copying torch\optim\__init__.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-06-01T21:26:02.1982445Z creating build\lib.win-amd64-cpython-39\torch\package 2025-06-01T21:26:02.1985594Z copying torch\package\file_structure_representation.py -> build\lib.win-amd64-cpython-39\torch\package 2025-06-01T21:26:02.1997087Z copying torch\package\find_file_dependencies.py -> build\lib.win-amd64-cpython-39\torch\package 2025-06-01T21:26:02.2007933Z copying torch\package\glob_group.py -> build\lib.win-amd64-cpython-39\torch\package 2025-06-01T21:26:02.2021724Z copying torch\package\importer.py -> build\lib.win-amd64-cpython-39\torch\package 2025-06-01T21:26:02.2032726Z copying torch\package\package_exporter.py -> build\lib.win-amd64-cpython-39\torch\package 2025-06-01T21:26:02.2059041Z copying torch\package\package_importer.py -> build\lib.win-amd64-cpython-39\torch\package 2025-06-01T21:26:02.2079135Z copying torch\package\_digraph.py -> build\lib.win-amd64-cpython-39\torch\package 2025-06-01T21:26:02.2090671Z copying torch\package\_directory_reader.py -> build\lib.win-amd64-cpython-39\torch\package 2025-06-01T21:26:02.2100957Z copying torch\package\_importlib.py -> build\lib.win-amd64-cpython-39\torch\package 2025-06-01T21:26:02.2110541Z copying torch\package\_mangling.py -> build\lib.win-amd64-cpython-39\torch\package 2025-06-01T21:26:02.2120603Z copying torch\package\_mock.py -> build\lib.win-amd64-cpython-39\torch\package 2025-06-01T21:26:02.2130038Z copying torch\package\_package_pickler.py -> build\lib.win-amd64-cpython-39\torch\package 2025-06-01T21:26:02.2141702Z copying torch\package\_package_unpickler.py -> build\lib.win-amd64-cpython-39\torch\package 2025-06-01T21:26:02.2151110Z copying torch\package\_stdlib.py -> build\lib.win-amd64-cpython-39\torch\package 2025-06-01T21:26:02.2165075Z copying torch\package\__init__.py -> build\lib.win-amd64-cpython-39\torch\package 2025-06-01T21:26:02.2173188Z creating build\lib.win-amd64-cpython-39\torch\profiler 2025-06-01T21:26:02.2176017Z copying torch\profiler\itt.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-06-01T21:26:02.2201776Z copying torch\profiler\profiler.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-06-01T21:26:02.2222557Z copying torch\profiler\python_tracer.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-06-01T21:26:02.2232985Z copying torch\profiler\_memory_profiler.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-06-01T21:26:02.2259995Z copying torch\profiler\_pattern_matcher.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-06-01T21:26:02.2282408Z copying torch\profiler\_utils.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-06-01T21:26:02.2298661Z copying torch\profiler\__init__.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-06-01T21:26:02.2313396Z creating build\lib.win-amd64-cpython-39\torch\quantization 2025-06-01T21:26:02.2318741Z copying torch\quantization\fake_quantize.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-06-01T21:26:02.2326480Z copying torch\quantization\fuser_method_mappings.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-06-01T21:26:02.2333044Z copying torch\quantization\fuse_modules.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-06-01T21:26:02.2351332Z copying torch\quantization\observer.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-06-01T21:26:02.2358870Z copying torch\quantization\qconfig.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-06-01T21:26:02.2369739Z copying torch\quantization\quantization_mappings.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-06-01T21:26:02.2385458Z copying torch\quantization\quantize.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-06-01T21:26:02.2398233Z copying torch\quantization\quantize_fx.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-06-01T21:26:02.2407206Z copying torch\quantization\quantize_jit.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-06-01T21:26:02.2420535Z copying torch\quantization\quant_type.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-06-01T21:26:02.2431601Z copying torch\quantization\stubs.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-06-01T21:26:02.2437823Z copying torch\quantization\utils.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-06-01T21:26:02.2448006Z copying torch\quantization\_numeric_suite.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-06-01T21:26:02.2459403Z copying torch\quantization\_numeric_suite_fx.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-06-01T21:26:02.2469162Z copying torch\quantization\_quantized_conversions.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-06-01T21:26:02.2480800Z copying torch\quantization\__init__.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-06-01T21:26:02.2493765Z creating build\lib.win-amd64-cpython-39\torch\signal 2025-06-01T21:26:02.2496689Z copying torch\signal\__init__.py -> build\lib.win-amd64-cpython-39\torch\signal 2025-06-01T21:26:02.2504130Z creating build\lib.win-amd64-cpython-39\torch\sparse 2025-06-01T21:26:02.2507090Z copying torch\sparse\semi_structured.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-06-01T21:26:02.2533105Z copying torch\sparse\_semi_structured_conversions.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-06-01T21:26:02.2544665Z copying torch\sparse\_semi_structured_ops.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-06-01T21:26:02.2560725Z copying torch\sparse\_triton_ops.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-06-01T21:26:02.2611030Z copying torch\sparse\_triton_ops_meta.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-06-01T21:26:02.2791044Z copying torch\sparse\__init__.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-06-01T21:26:02.2810510Z creating build\lib.win-amd64-cpython-39\torch\special 2025-06-01T21:26:02.2814799Z copying torch\special\__init__.py -> build\lib.win-amd64-cpython-39\torch\special 2025-06-01T21:26:02.2836661Z creating build\lib.win-amd64-cpython-39\torch\testing 2025-06-01T21:26:02.2841676Z copying torch\testing\_comparison.py -> build\lib.win-amd64-cpython-39\torch\testing 2025-06-01T21:26:02.2879234Z copying torch\testing\_creation.py -> build\lib.win-amd64-cpython-39\torch\testing 2025-06-01T21:26:02.2891189Z copying torch\testing\_utils.py -> build\lib.win-amd64-cpython-39\torch\testing 2025-06-01T21:26:02.2902708Z copying torch\testing\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing 2025-06-01T21:26:02.2917379Z creating build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.2920598Z copying torch\utils\backend_registration.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.2939434Z copying torch\utils\bundled_inputs.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.2955812Z copying torch\utils\checkpoint.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.2986946Z copying torch\utils\collect_env.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.3013661Z copying torch\utils\cpp_backtrace.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.3019249Z copying torch\utils\cpp_extension.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.3077823Z copying torch\utils\deterministic.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.3088815Z copying torch\utils\dlpack.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.3103462Z copying torch\utils\file_baton.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.3115131Z copying torch\utils\flop_counter.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.3134637Z copying torch\utils\hooks.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.3145462Z copying torch\utils\mkldnn.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.3161131Z copying torch\utils\mobile_optimizer.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.3172084Z copying torch\utils\model_zoo.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.3177694Z copying torch\utils\module_tracker.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.3189330Z copying torch\utils\show_pickle.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.3199239Z copying torch\utils\throughput_benchmark.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.3209246Z copying torch\utils\weak.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.3220404Z copying torch\utils\_appending_byte_serializer.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.3230830Z copying torch\utils\_backport_slots.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.3246421Z copying torch\utils\_config_module.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.3268395Z copying torch\utils\_content_store.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.3280024Z copying torch\utils\_contextlib.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.3292434Z copying torch\utils\_cpp_embed_headers.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.3307605Z copying torch\utils\_cpp_extension_versioner.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.3320030Z copying torch\utils\_cxx_pytree.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.3346348Z copying torch\utils\_device.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.3375762Z copying torch\utils\_dtype_abbrs.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.3395578Z copying torch\utils\_exposed_in.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.3404959Z copying torch\utils\_filelock.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.3416061Z copying torch\utils\_foreach_utils.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.3431337Z copying torch\utils\_freeze.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.3449098Z copying torch\utils\_functools.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.3458479Z copying torch\utils\_get_clean_triton.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.3468638Z copying torch\utils\_import_utils.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.3479142Z copying torch\utils\_mode_utils.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.3489887Z copying torch\utils\_ordered_set.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.3501604Z copying torch\utils\_python_dispatch.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.3518628Z copying torch\utils\_pytree.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.3549738Z copying torch\utils\_stats.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.3566714Z copying torch\utils\_thunk.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.3572326Z copying torch\utils\_traceback.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.3592361Z copying torch\utils\_triton.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.3603760Z copying torch\utils\_typing_utils.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.3609483Z copying torch\utils\_zip.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.3620474Z copying torch\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:02.3635057Z creating build\lib.win-amd64-cpython-39\torch\xpu 2025-06-01T21:26:02.3637042Z copying torch\xpu\memory.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-06-01T21:26:02.3647750Z copying torch\xpu\random.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-06-01T21:26:02.3658248Z copying torch\xpu\streams.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-06-01T21:26:02.3668229Z copying torch\xpu\_gpu_trace.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-06-01T21:26:02.3681626Z copying torch\xpu\_utils.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-06-01T21:26:02.3692766Z copying torch\xpu\__init__.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-06-01T21:26:02.3716983Z creating build\lib.win-amd64-cpython-39\torch\_awaits 2025-06-01T21:26:02.3719818Z copying torch\_awaits\__init__.py -> build\lib.win-amd64-cpython-39\torch\_awaits 2025-06-01T21:26:02.3732205Z creating build\lib.win-amd64-cpython-39\torch\_custom_op 2025-06-01T21:26:02.3735362Z copying torch\_custom_op\autograd.py -> build\lib.win-amd64-cpython-39\torch\_custom_op 2025-06-01T21:26:02.3746537Z copying torch\_custom_op\impl.py -> build\lib.win-amd64-cpython-39\torch\_custom_op 2025-06-01T21:26:02.3768214Z copying torch\_custom_op\__init__.py -> build\lib.win-amd64-cpython-39\torch\_custom_op 2025-06-01T21:26:02.3774610Z creating build\lib.win-amd64-cpython-39\torch\_decomp 2025-06-01T21:26:02.3777555Z copying torch\_decomp\decompositions.py -> build\lib.win-amd64-cpython-39\torch\_decomp 2025-06-01T21:26:02.3855192Z copying torch\_decomp\decompositions_for_jvp.py -> build\lib.win-amd64-cpython-39\torch\_decomp 2025-06-01T21:26:02.3880601Z copying torch\_decomp\decompositions_for_rng.py -> build\lib.win-amd64-cpython-39\torch\_decomp 2025-06-01T21:26:02.3896392Z copying torch\_decomp\__init__.py -> build\lib.win-amd64-cpython-39\torch\_decomp 2025-06-01T21:26:02.3912585Z creating build\lib.win-amd64-cpython-39\torch\_dispatch 2025-06-01T21:26:02.3916048Z copying torch\_dispatch\python.py -> build\lib.win-amd64-cpython-39\torch\_dispatch 2025-06-01T21:26:02.3925474Z copying torch\_dispatch\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dispatch 2025-06-01T21:26:02.3938452Z creating build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.3941601Z copying torch\_dynamo\bytecode_analysis.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.3952356Z copying torch\_dynamo\bytecode_transformation.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.3983255Z copying torch\_dynamo\cache_size.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.3997152Z copying torch\_dynamo\callback.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4007337Z copying torch\_dynamo\codegen.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4024353Z copying torch\_dynamo\code_context.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4035451Z copying torch\_dynamo\compiled_autograd.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4061603Z copying torch\_dynamo\comptime.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4072780Z copying torch\_dynamo\config.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4090856Z copying torch\_dynamo\convert_frame.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4117181Z copying torch\_dynamo\create_parameter_op.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4128392Z copying torch\_dynamo\current_scope_id.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4138329Z copying torch\_dynamo\debug_utils.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4161366Z copying torch\_dynamo\decorators.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4183204Z copying torch\_dynamo\device_interface.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4199218Z copying torch\_dynamo\distributed.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4210339Z copying torch\_dynamo\eval_frame.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4250457Z copying torch\_dynamo\exc.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4266272Z copying torch\_dynamo\external_utils.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4277032Z copying torch\_dynamo\funcname_cache.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4287941Z copying torch\_dynamo\graph_break_hints.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4302135Z copying torch\_dynamo\graph_deduplication.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4317781Z copying torch\_dynamo\graph_region_tracker.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4335151Z copying torch\_dynamo\graph_utils.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4344977Z copying torch\_dynamo\guards.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4403985Z copying torch\_dynamo\hooks.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4414539Z copying torch\_dynamo\logging.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4424063Z copying torch\_dynamo\metrics_context.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4453460Z copying torch\_dynamo\mutation_guard.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4468198Z copying torch\_dynamo\output_graph.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4524437Z copying torch\_dynamo\pgo.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4543493Z copying torch\_dynamo\profiler.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4554071Z copying torch\_dynamo\replay_record.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4573764Z copying torch\_dynamo\resume_execution.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4589676Z copying torch\_dynamo\side_effects.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4612051Z copying torch\_dynamo\source.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4629092Z copying torch\_dynamo\symbolic_convert.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4695421Z copying torch\_dynamo\tensor_version_op.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4705907Z copying torch\_dynamo\testing.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4723590Z copying torch\_dynamo\test_case.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4735206Z copying torch\_dynamo\test_dont_skip_tracing_functions.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4749387Z copying torch\_dynamo\test_minifier_common.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4760663Z copying torch\_dynamo\trace_rules.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4824917Z copying torch\_dynamo\types.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4833654Z copying torch\_dynamo\utils.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4892186Z copying torch\_dynamo\_trace_wrapped_higher_order_op.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4903394Z copying torch\_dynamo\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-06-01T21:26:02.4916025Z creating build\lib.win-amd64-cpython-39\torch\_export 2025-06-01T21:26:02.4918877Z copying torch\_export\converter.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-06-01T21:26:02.4947347Z copying torch\_export\error.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-06-01T21:26:02.4961119Z copying torch\_export\non_strict_utils.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-06-01T21:26:02.4983604Z copying torch\_export\pass_base.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-06-01T21:26:02.5002582Z copying torch\_export\tools.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-06-01T21:26:02.5016827Z copying torch\_export\utils.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-06-01T21:26:02.5042201Z copying torch\_export\verifier.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-06-01T21:26:02.5059030Z copying torch\_export\wrappers.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-06-01T21:26:02.5070356Z copying torch\_export\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-06-01T21:26:02.5089703Z creating build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:26:02.5093414Z copying torch\_functorch\aot_autograd.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:26:02.5128012Z copying torch\_functorch\apis.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:26:02.5187335Z copying torch\_functorch\autograd_function.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:26:02.5205230Z copying torch\_functorch\batch_norm_replacement.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:26:02.5220029Z copying torch\_functorch\benchmark_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:26:02.5229576Z copying torch\_functorch\compilers.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:26:02.5264329Z copying torch\_functorch\compile_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:26:02.5278594Z copying torch\_functorch\config.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:26:02.5289622Z copying torch\_functorch\deprecated.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:26:02.5300514Z copying torch\_functorch\eager_transforms.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:26:02.5334378Z copying torch\_functorch\functional_call.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:26:02.5351549Z copying torch\_functorch\fx_minifier.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:26:02.5379191Z copying torch\_functorch\make_functional.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:26:02.5398743Z copying torch\_functorch\partitioners.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:26:02.5436906Z copying torch\_functorch\pyfunctorch.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:26:02.5456217Z copying torch\_functorch\python_key.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:26:02.5462073Z copying torch\_functorch\pytree_hacks.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:26:02.5475124Z copying torch\_functorch\top_operators_github_usage.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:26:02.5492305Z copying torch\_functorch\utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:26:02.5506436Z copying torch\_functorch\vmap.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:26:02.5521446Z copying torch\_functorch\__init__.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-06-01T21:26:02.5536680Z creating build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:26:02.5540909Z copying torch\_higher_order_ops\aoti_call_delegate.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:26:02.5552407Z copying torch\_higher_order_ops\associative_scan.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:26:02.5567580Z copying torch\_higher_order_ops\auto_functionalize.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:26:02.5595954Z copying torch\_higher_order_ops\base_hop.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:26:02.5606137Z copying torch\_higher_order_ops\cond.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:26:02.5627506Z copying torch\_higher_order_ops\effects.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:26:02.5638502Z copying torch\_higher_order_ops\executorch_call_delegate.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:26:02.5650521Z copying torch\_higher_order_ops\flat_apply.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:26:02.5660237Z copying torch\_higher_order_ops\flex_attention.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:26:02.5682350Z copying torch\_higher_order_ops\foreach_map.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:26:02.5691424Z copying torch\_higher_order_ops\hints_wrap.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:26:02.5702458Z copying torch\_higher_order_ops\invoke_subgraph.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:26:02.5735422Z copying torch\_higher_order_ops\map.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:26:02.5745613Z copying torch\_higher_order_ops\out_dtype.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:26:02.5756346Z copying torch\_higher_order_ops\run_const_graph.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:26:02.5766408Z copying torch\_higher_order_ops\scan.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:26:02.5796973Z copying torch\_higher_order_ops\schema.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:26:02.5808134Z copying torch\_higher_order_ops\strict_mode.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:26:02.5818095Z copying torch\_higher_order_ops\torchbind.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:26:02.5828725Z copying torch\_higher_order_ops\triton_kernel_wrap.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:26:02.5864326Z copying torch\_higher_order_ops\utils.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:26:02.5890272Z copying torch\_higher_order_ops\while_loop.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:26:02.5908691Z copying torch\_higher_order_ops\wrap.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:26:02.5919751Z copying torch\_higher_order_ops\_invoke_quant.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:26:02.5931817Z copying torch\_higher_order_ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-06-01T21:26:02.5952770Z creating build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.5955836Z copying torch\_inductor\analyze_preserves_zero_mask.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.5966910Z copying torch\_inductor\aoti_eager.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.5978420Z copying torch\_inductor\async_compile.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.6001366Z copying torch\_inductor\autotune_process.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.6019957Z copying torch\_inductor\bounds.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.6030650Z copying torch\_inductor\choices.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.6047130Z copying torch\_inductor\codecache.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.6111777Z copying torch\_inductor\comms.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.6136322Z copying torch\_inductor\comm_analysis.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.6148584Z copying torch\_inductor\comm_lowering.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.6161377Z copying torch\_inductor\compiler_bisector.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.6177265Z copying torch\_inductor\compile_fx.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.6220591Z copying torch\_inductor\compile_fx_async.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.6231610Z copying torch\_inductor\compile_fx_ext.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.6249767Z copying torch\_inductor\compile_fx_subproc.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.6264284Z copying torch\_inductor\config.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.6296661Z copying torch\_inductor\constant_folding.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.6308649Z copying torch\_inductor\cpp_builder.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.6364612Z copying torch\_inductor\cpu_vec_isa.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.6381798Z copying torch\_inductor\cudagraph_trees.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.6418537Z copying torch\_inductor\cudagraph_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.6434072Z copying torch\_inductor\custom_graph_pass.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.6443560Z copying torch\_inductor\debug.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.6469297Z copying torch\_inductor\decomposition.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.6490485Z copying torch\_inductor\dependencies.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.6507915Z copying torch\_inductor\dtype_propagation.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.6519388Z copying torch\_inductor\exc.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.6535021Z copying torch\_inductor\extern_node_serializer.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.6544503Z copying torch\_inductor\freezing.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.6555950Z copying torch\_inductor\freezing_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.6565918Z copying torch\_inductor\fuzzer.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.6593392Z copying torch\_inductor\fx_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.6606679Z copying torch\_inductor\graph.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.6649057Z copying torch\_inductor\hooks.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.6655776Z copying torch\_inductor\index_propagation.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.6666490Z copying torch\_inductor\inductor_prims.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.6677750Z copying torch\_inductor\ir.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.6783838Z copying torch\_inductor\jagged_lowerings.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.6794940Z copying torch\_inductor\loop_body.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.6815980Z copying torch\_inductor\lowering.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.6901033Z copying torch\_inductor\memory.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.6918085Z copying torch\_inductor\metrics.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.6931404Z copying torch\_inductor\mkldnn_ir.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.6965946Z copying torch\_inductor\mkldnn_lowerings.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.6989139Z copying torch\_inductor\mock_cache.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.7003224Z copying torch\_inductor\ops_handler.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.7023841Z copying torch\_inductor\optimize_indexing.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.7034026Z copying torch\_inductor\output_code.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.7097852Z copying torch\_inductor\pattern_matcher.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.7129840Z copying torch\_inductor\quantized_lowerings.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.7140896Z copying torch\_inductor\remote_cache.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.7156890Z copying torch\_inductor\scheduler.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.7224636Z copying torch\_inductor\select_algorithm.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.7268841Z copying torch\_inductor\sizevars.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.7289193Z copying torch\_inductor\standalone_compile.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.7313829Z copying torch\_inductor\subgraph_lowering.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.7324992Z copying torch\_inductor\template_heuristics.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.7341631Z copying torch\_inductor\test_case.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.7352075Z copying torch\_inductor\test_operators.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.7361973Z copying torch\_inductor\triton_bundler.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.7377058Z copying torch\_inductor\utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.7417671Z copying torch\_inductor\virtualized.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.7428928Z copying torch\_inductor\wrapper_benchmark.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.7446752Z copying torch\_inductor\__autotune_main__.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.7460403Z copying torch\_inductor\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:02.7474340Z creating build\lib.win-amd64-cpython-39\torch\_lazy 2025-06-01T21:26:02.7478018Z copying torch\_lazy\closure.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-06-01T21:26:02.7487934Z copying torch\_lazy\computation.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-06-01T21:26:02.7501800Z copying torch\_lazy\config.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-06-01T21:26:02.7507101Z copying torch\_lazy\debug.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-06-01T21:26:02.7516913Z copying torch\_lazy\device_context.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-06-01T21:26:02.7532041Z copying torch\_lazy\extract_compiled_graph.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-06-01T21:26:02.7542952Z copying torch\_lazy\ir_cache.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-06-01T21:26:02.7548434Z copying torch\_lazy\metrics.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-06-01T21:26:02.7554211Z copying torch\_lazy\tensor_factory_functions.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-06-01T21:26:02.7567202Z copying torch\_lazy\ts_backend.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-06-01T21:26:02.7572933Z copying torch\_lazy\__init__.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-06-01T21:26:02.7586297Z creating build\lib.win-amd64-cpython-39\torch\_library 2025-06-01T21:26:02.7589189Z copying torch\_library\autograd.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-06-01T21:26:02.7600300Z copying torch\_library\custom_ops.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-06-01T21:26:02.7642015Z copying torch\_library\fake_class_registry.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-06-01T21:26:02.7656644Z copying torch\_library\fake_impl.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-06-01T21:26:02.7696447Z copying torch\_library\fake_profile.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-06-01T21:26:02.7697076Z copying torch\_library\infer_schema.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-06-01T21:26:02.7703174Z copying torch\_library\simple_registry.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-06-01T21:26:02.7714177Z copying torch\_library\triton.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-06-01T21:26:02.7724884Z copying torch\_library\utils.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-06-01T21:26:02.7746601Z copying torch\_library\__init__.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-06-01T21:26:02.7753572Z creating build\lib.win-amd64-cpython-39\torch\_logging 2025-06-01T21:26:02.7756578Z copying torch\_logging\scribe.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-06-01T21:26:02.7766958Z copying torch\_logging\structured.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-06-01T21:26:02.7777091Z copying torch\_logging\_internal.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-06-01T21:26:02.7805954Z copying torch\_logging\_registrations.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-06-01T21:26:02.7820699Z copying torch\_logging\__init__.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-06-01T21:26:02.7835522Z creating build\lib.win-amd64-cpython-39\torch\_numpy 2025-06-01T21:26:02.7838410Z copying torch\_numpy\fft.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-06-01T21:26:02.7855329Z copying torch\_numpy\linalg.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-06-01T21:26:02.7864979Z copying torch\_numpy\random.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-06-01T21:26:02.7875580Z copying torch\_numpy\_binary_ufuncs_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-06-01T21:26:02.7885459Z copying torch\_numpy\_casting_dicts.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-06-01T21:26:02.7915466Z copying torch\_numpy\_dtypes.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-06-01T21:26:02.7926568Z copying torch\_numpy\_dtypes_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-06-01T21:26:02.7937835Z copying torch\_numpy\_funcs.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-06-01T21:26:02.7945731Z copying torch\_numpy\_funcs_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-06-01T21:26:02.7972648Z copying torch\_numpy\_getlimits.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-06-01T21:26:02.7979571Z copying torch\_numpy\_ndarray.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-06-01T21:26:02.7994155Z copying torch\_numpy\_normalizations.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-06-01T21:26:02.8009599Z copying torch\_numpy\_reductions_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-06-01T21:26:02.8020747Z copying torch\_numpy\_ufuncs.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-06-01T21:26:02.8033415Z copying torch\_numpy\_unary_ufuncs_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-06-01T21:26:02.8043790Z copying torch\_numpy\_util.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-06-01T21:26:02.8059141Z copying torch\_numpy\__init__.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-06-01T21:26:02.8067016Z creating build\lib.win-amd64-cpython-39\torch\_prims 2025-06-01T21:26:02.8070238Z copying torch\_prims\context.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-06-01T21:26:02.8103220Z copying torch\_prims\debug_prims.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-06-01T21:26:02.8112414Z copying torch\_prims\executor.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-06-01T21:26:02.8122575Z copying torch\_prims\rng_prims.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-06-01T21:26:02.8133968Z copying torch\_prims\__init__.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-06-01T21:26:02.8179455Z creating build\lib.win-amd64-cpython-39\torch\_prims_common 2025-06-01T21:26:02.8182582Z copying torch\_prims_common\wrappers.py -> build\lib.win-amd64-cpython-39\torch\_prims_common 2025-06-01T21:26:02.8200709Z copying torch\_prims_common\__init__.py -> build\lib.win-amd64-cpython-39\torch\_prims_common 2025-06-01T21:26:02.8235192Z creating build\lib.win-amd64-cpython-39\torch\_refs 2025-06-01T21:26:02.8237541Z copying torch\_refs\fft.py -> build\lib.win-amd64-cpython-39\torch\_refs 2025-06-01T21:26:02.8253010Z copying torch\_refs\_conversions.py -> build\lib.win-amd64-cpython-39\torch\_refs 2025-06-01T21:26:02.8262499Z copying torch\_refs\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs 2025-06-01T21:26:02.8475066Z creating build\lib.win-amd64-cpython-39\torch\_strobelight 2025-06-01T21:26:02.8484752Z copying torch\_strobelight\cli_function_profiler.py -> build\lib.win-amd64-cpython-39\torch\_strobelight 2025-06-01T21:26:02.8496872Z copying torch\_strobelight\compile_time_profiler.py -> build\lib.win-amd64-cpython-39\torch\_strobelight 2025-06-01T21:26:02.8507690Z copying torch\_strobelight\__init__.py -> build\lib.win-amd64-cpython-39\torch\_strobelight 2025-06-01T21:26:02.8518943Z creating build\lib.win-amd64-cpython-39\torch\_subclasses 2025-06-01T21:26:02.8522832Z copying torch\_subclasses\fake_impls.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-06-01T21:26:02.8543875Z copying torch\_subclasses\fake_tensor.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-06-01T21:26:02.8596420Z copying torch\_subclasses\fake_utils.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-06-01T21:26:02.8611842Z copying torch\_subclasses\functional_tensor.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-06-01T21:26:02.8638131Z copying torch\_subclasses\meta_utils.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-06-01T21:26:02.8674573Z copying torch\_subclasses\schema_check_mode.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-06-01T21:26:02.8685936Z copying torch\_subclasses\_fake_tensor_utils.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-06-01T21:26:02.8696349Z copying torch\_subclasses\__init__.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-06-01T21:26:02.8703304Z creating build\lib.win-amd64-cpython-39\torch\_vendor 2025-06-01T21:26:02.8706240Z copying torch\_vendor\__init__.py -> build\lib.win-amd64-cpython-39\torch\_vendor 2025-06-01T21:26:02.8712079Z creating build\lib.win-amd64-cpython-39\torch\ao\nn 2025-06-01T21:26:02.8715060Z copying torch\ao\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn 2025-06-01T21:26:02.8726584Z creating build\lib.win-amd64-cpython-39\torch\ao\ns 2025-06-01T21:26:02.8729734Z copying torch\ao\ns\_numeric_suite.py -> build\lib.win-amd64-cpython-39\torch\ao\ns 2025-06-01T21:26:02.8749869Z copying torch\ao\ns\_numeric_suite_fx.py -> build\lib.win-amd64-cpython-39\torch\ao\ns 2025-06-01T21:26:02.8770610Z copying torch\ao\ns\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\ns 2025-06-01T21:26:02.8776421Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning 2025-06-01T21:26:02.8779416Z copying torch\ao\pruning\_mappings.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning 2025-06-01T21:26:02.8790064Z copying torch\ao\pruning\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning 2025-06-01T21:26:02.8799231Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-06-01T21:26:02.8802401Z copying torch\ao\quantization\fake_quantize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-06-01T21:26:02.8817613Z copying torch\ao\quantization\fuser_method_mappings.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-06-01T21:26:02.8827329Z copying torch\ao\quantization\fuse_modules.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-06-01T21:26:02.8848572Z copying torch\ao\quantization\observer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-06-01T21:26:02.8879002Z copying torch\ao\quantization\qconfig.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-06-01T21:26:02.8897758Z copying torch\ao\quantization\qconfig_mapping.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-06-01T21:26:02.8919307Z copying torch\ao\quantization\quantization_mappings.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-06-01T21:26:02.8941918Z copying torch\ao\quantization\quantize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-06-01T21:26:02.8959107Z copying torch\ao\quantization\quantize_fx.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-06-01T21:26:02.8981916Z copying torch\ao\quantization\quantize_jit.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-06-01T21:26:02.8997237Z copying torch\ao\quantization\quantize_pt2e.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-06-01T21:26:02.9008720Z copying torch\ao\quantization\quant_type.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-06-01T21:26:02.9018857Z copying torch\ao\quantization\stubs.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-06-01T21:26:02.9028504Z copying torch\ao\quantization\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-06-01T21:26:02.9046947Z copying torch\ao\quantization\_correct_bias.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-06-01T21:26:02.9058656Z copying torch\ao\quantization\_equalize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-06-01T21:26:02.9070437Z copying torch\ao\quantization\_learnable_fake_quantize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-06-01T21:26:02.9081470Z copying torch\ao\quantization\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-06-01T21:26:02.9093667Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic 2025-06-01T21:26:02.9096345Z copying torch\ao\nn\intrinsic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic 2025-06-01T21:26:02.9108292Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\qat 2025-06-01T21:26:02.9111563Z copying torch\ao\nn\qat\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat 2025-06-01T21:26:02.9118686Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable 2025-06-01T21:26:02.9122459Z copying torch\ao\nn\quantizable\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable 2025-06-01T21:26:02.9129535Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized 2025-06-01T21:26:02.9138717Z copying torch\ao\nn\quantized\functional.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized 2025-06-01T21:26:02.9156951Z copying torch\ao\nn\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized 2025-06-01T21:26:02.9162940Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\sparse 2025-06-01T21:26:02.9165869Z copying torch\ao\nn\sparse\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse 2025-06-01T21:26:02.9174233Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\modules 2025-06-01T21:26:02.9176211Z copying torch\ao\nn\intrinsic\modules\fused.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\modules 2025-06-01T21:26:02.9211575Z copying torch\ao\nn\intrinsic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\modules 2025-06-01T21:26:02.9218751Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat 2025-06-01T21:26:02.9221622Z copying torch\ao\nn\intrinsic\qat\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat 2025-06-01T21:26:02.9228804Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized 2025-06-01T21:26:02.9232048Z copying torch\ao\nn\intrinsic\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized 2025-06-01T21:26:02.9238838Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules 2025-06-01T21:26:02.9241954Z copying torch\ao\nn\intrinsic\qat\modules\conv_fused.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules 2025-06-01T21:26:02.9269846Z copying torch\ao\nn\intrinsic\qat\modules\linear_fused.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules 2025-06-01T21:26:02.9280405Z copying torch\ao\nn\intrinsic\qat\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules 2025-06-01T21:26:02.9290638Z copying torch\ao\nn\intrinsic\qat\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules 2025-06-01T21:26:02.9308149Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic 2025-06-01T21:26:02.9312171Z copying torch\ao\nn\intrinsic\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic 2025-06-01T21:26:02.9320279Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-06-01T21:26:02.9324137Z copying torch\ao\nn\intrinsic\quantized\modules\bn_relu.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-06-01T21:26:02.9334059Z copying torch\ao\nn\intrinsic\quantized\modules\conv_add.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-06-01T21:26:02.9345005Z copying torch\ao\nn\intrinsic\quantized\modules\conv_relu.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-06-01T21:26:02.9360858Z copying torch\ao\nn\intrinsic\quantized\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-06-01T21:26:02.9397297Z copying torch\ao\nn\intrinsic\quantized\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-06-01T21:26:02.9409333Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic\modules 2025-06-01T21:26:02.9412539Z 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-06-01T21:26:02.9427965Z copying torch\ao\nn\intrinsic\quantized\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic\modules 2025-06-01T21:26:02.9434910Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic 2025-06-01T21:26:02.9437597Z copying torch\ao\nn\qat\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic 2025-06-01T21:26:02.9444854Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-06-01T21:26:02.9447786Z copying torch\ao\nn\qat\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-06-01T21:26:02.9458841Z copying torch\ao\nn\qat\modules\embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-06-01T21:26:02.9472969Z copying torch\ao\nn\qat\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-06-01T21:26:02.9482175Z copying torch\ao\nn\qat\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-06-01T21:26:02.9490554Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic\modules 2025-06-01T21:26:02.9492663Z copying torch\ao\nn\qat\dynamic\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic\modules 2025-06-01T21:26:02.9503178Z copying torch\ao\nn\qat\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic\modules 2025-06-01T21:26:02.9515994Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules 2025-06-01T21:26:02.9518997Z copying torch\ao\nn\quantizable\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules 2025-06-01T21:26:02.9552399Z copying torch\ao\nn\quantizable\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules 2025-06-01T21:26:02.9566225Z copying torch\ao\nn\quantizable\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules 2025-06-01T21:26:02.9573210Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic 2025-06-01T21:26:02.9576123Z copying torch\ao\nn\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic 2025-06-01T21:26:02.9591741Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-06-01T21:26:02.9595218Z copying torch\ao\nn\quantized\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-06-01T21:26:02.9608145Z copying torch\ao\nn\quantized\modules\batchnorm.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-06-01T21:26:02.9618966Z copying torch\ao\nn\quantized\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-06-01T21:26:02.9641833Z copying torch\ao\nn\quantized\modules\dropout.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-06-01T21:26:02.9664130Z copying torch\ao\nn\quantized\modules\embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-06-01T21:26:02.9742106Z copying torch\ao\nn\quantized\modules\functional_modules.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-06-01T21:26:02.9753193Z copying torch\ao\nn\quantized\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-06-01T21:26:02.9769534Z copying torch\ao\nn\quantized\modules\normalization.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-06-01T21:26:02.9780441Z copying torch\ao\nn\quantized\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-06-01T21:26:02.9794676Z copying torch\ao\nn\quantized\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-06-01T21:26:02.9914572Z copying torch\ao\nn\quantized\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-06-01T21:26:02.9933139Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference 2025-06-01T21:26:02.9942027Z copying torch\ao\nn\quantized\reference\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference 2025-06-01T21:26:02.9950228Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-06-01T21:26:02.9953641Z copying torch\ao\nn\quantized\dynamic\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-06-01T21:26:02.9970801Z copying torch\ao\nn\quantized\dynamic\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-06-01T21:26:02.9987528Z copying torch\ao\nn\quantized\dynamic\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-06-01T21:26:03.0011893Z copying torch\ao\nn\quantized\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-06-01T21:26:03.0019552Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-06-01T21:26:03.0048358Z copying torch\ao\nn\quantized\reference\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-06-01T21:26:03.0061690Z copying torch\ao\nn\quantized\reference\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-06-01T21:26:03.0077963Z copying torch\ao\nn\quantized\reference\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-06-01T21:26:03.0097384Z copying torch\ao\nn\quantized\reference\modules\sparse.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-06-01T21:26:03.0107364Z copying torch\ao\nn\quantized\reference\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-06-01T21:26:03.0118476Z copying torch\ao\nn\quantized\reference\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-06-01T21:26:03.0130542Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized 2025-06-01T21:26:03.0133654Z copying torch\ao\nn\sparse\quantized\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized 2025-06-01T21:26:03.0144143Z copying torch\ao\nn\sparse\quantized\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized 2025-06-01T21:26:03.0154036Z copying torch\ao\nn\sparse\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized 2025-06-01T21:26:03.0161701Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized\dynamic 2025-06-01T21:26:03.0164914Z copying torch\ao\nn\sparse\quantized\dynamic\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized\dynamic 2025-06-01T21:26:03.0175492Z copying torch\ao\nn\sparse\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized\dynamic 2025-06-01T21:26:03.0183638Z creating build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-06-01T21:26:03.0186551Z copying torch\ao\ns\fx\graph_matcher.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-06-01T21:26:03.0203185Z copying torch\ao\ns\fx\graph_passes.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-06-01T21:26:03.0224907Z copying torch\ao\ns\fx\mappings.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-06-01T21:26:03.0243966Z copying torch\ao\ns\fx\ns_types.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-06-01T21:26:03.0255279Z copying torch\ao\ns\fx\n_shadows_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-06-01T21:26:03.0281912Z copying torch\ao\ns\fx\pattern_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-06-01T21:26:03.0296633Z copying torch\ao\ns\fx\qconfig_multi_mapping.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-06-01T21:26:03.0307360Z copying torch\ao\ns\fx\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-06-01T21:26:03.0324359Z copying torch\ao\ns\fx\weight_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-06-01T21:26:03.0335724Z copying torch\ao\ns\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-06-01T21:26:03.0344401Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-06-01T21:26:03.0345798Z copying torch\ao\pruning\scheduler\base_scheduler.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-06-01T21:26:03.0361856Z copying torch\ao\pruning\scheduler\cubic_scheduler.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-06-01T21:26:03.0372514Z copying torch\ao\pruning\scheduler\lambda_scheduler.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-06-01T21:26:03.0388083Z copying torch\ao\pruning\scheduler\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-06-01T21:26:03.0394648Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-06-01T21:26:03.0407563Z copying torch\ao\pruning\sparsifier\base_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-06-01T21:26:03.0417190Z copying torch\ao\pruning\sparsifier\nearly_diagonal_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-06-01T21:26:03.0427070Z copying torch\ao\pruning\sparsifier\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-06-01T21:26:03.0446953Z copying torch\ao\pruning\sparsifier\weight_norm_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-06-01T21:26:03.0456825Z copying torch\ao\pruning\sparsifier\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-06-01T21:26:03.0462536Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental 2025-06-01T21:26:03.0465728Z copying torch\ao\pruning\_experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental 2025-06-01T21:26:03.0472039Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\activation_sparsifier 2025-06-01T21:26:03.0475547Z copying torch\ao\pruning\_experimental\activation_sparsifier\activation_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\activation_sparsifier 2025-06-01T21:26:03.0491437Z copying torch\ao\pruning\_experimental\activation_sparsifier\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\activation_sparsifier 2025-06-01T21:26:03.0508866Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_scheduler 2025-06-01T21:26:03.0512058Z copying torch\ao\pruning\_experimental\data_scheduler\base_data_scheduler.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_scheduler 2025-06-01T21:26:03.0522385Z copying torch\ao\pruning\_experimental\data_scheduler\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_scheduler 2025-06-01T21:26:03.0534413Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier 2025-06-01T21:26:03.0542812Z copying torch\ao\pruning\_experimental\data_sparsifier\base_data_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier 2025-06-01T21:26:03.0554559Z copying torch\ao\pruning\_experimental\data_sparsifier\data_norm_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier 2025-06-01T21:26:03.0565526Z copying torch\ao\pruning\_experimental\data_sparsifier\quantization_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier 2025-06-01T21:26:03.0586728Z copying torch\ao\pruning\_experimental\data_sparsifier\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier 2025-06-01T21:26:03.0594488Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-06-01T21:26:03.0597541Z copying torch\ao\pruning\_experimental\pruner\base_structured_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-06-01T21:26:03.0607606Z copying torch\ao\pruning\_experimental\pruner\FPGM_pruner.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-06-01T21:26:03.0621328Z copying torch\ao\pruning\_experimental\pruner\lstm_saliency_pruner.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-06-01T21:26:03.0635842Z copying torch\ao\pruning\_experimental\pruner\match_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-06-01T21:26:03.0646920Z copying torch\ao\pruning\_experimental\pruner\parametrization.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-06-01T21:26:03.0656519Z copying torch\ao\pruning\_experimental\pruner\prune_functions.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-06-01T21:26:03.0672654Z copying torch\ao\pruning\_experimental\pruner\saliency_pruner.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-06-01T21:26:03.0683627Z copying torch\ao\pruning\_experimental\pruner\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-06-01T21:26:03.0690552Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning 2025-06-01T21:26:03.0694046Z copying torch\ao\pruning\_experimental\data_sparsifier\lightning\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning 2025-06-01T21:26:03.0700827Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks 2025-06-01T21:26:03.0704603Z 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-06-01T21:26:03.0714735Z 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-06-01T21:26:03.0725417Z 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-06-01T21:26:03.0737875Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-06-01T21:26:03.0741034Z copying torch\ao\quantization\backend_config\backend_config.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-06-01T21:26:03.0758451Z copying torch\ao\quantization\backend_config\executorch.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-06-01T21:26:03.0781683Z copying torch\ao\quantization\backend_config\fbgemm.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-06-01T21:26:03.0792998Z copying torch\ao\quantization\backend_config\native.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-06-01T21:26:03.0809081Z copying torch\ao\quantization\backend_config\observation_type.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-06-01T21:26:03.0814114Z copying torch\ao\quantization\backend_config\onednn.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-06-01T21:26:03.0832146Z copying torch\ao\quantization\backend_config\qnnpack.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-06-01T21:26:03.0844070Z copying torch\ao\quantization\backend_config\tensorrt.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-06-01T21:26:03.0851934Z copying torch\ao\quantization\backend_config\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-06-01T21:26:03.0863268Z copying torch\ao\quantization\backend_config\x86.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-06-01T21:26:03.0879403Z copying torch\ao\quantization\backend_config\_common_operator_config_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-06-01T21:26:03.0901083Z copying torch\ao\quantization\backend_config\_qnnpack_pt2e.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-06-01T21:26:03.0908682Z copying torch\ao\quantization\backend_config\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-06-01T21:26:03.0922761Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-06-01T21:26:03.0926316Z copying torch\ao\quantization\fx\convert.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-06-01T21:26:03.0951685Z copying torch\ao\quantization\fx\custom_config.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-06-01T21:26:03.0967498Z copying torch\ao\quantization\fx\fuse.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-06-01T21:26:03.0977900Z copying torch\ao\quantization\fx\fuse_handler.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-06-01T21:26:03.0987883Z copying torch\ao\quantization\fx\graph_module.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-06-01T21:26:03.1051476Z copying torch\ao\quantization\fx\lower_to_fbgemm.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-06-01T21:26:03.1061955Z copying torch\ao\quantization\fx\lower_to_qnnpack.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-06-01T21:26:03.1068304Z copying torch\ao\quantization\fx\lstm_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-06-01T21:26:03.1083675Z copying torch\ao\quantization\fx\match_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-06-01T21:26:03.1094869Z copying torch\ao\quantization\fx\pattern_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-06-01T21:26:03.1104807Z copying torch\ao\quantization\fx\prepare.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-06-01T21:26:03.1146307Z copying torch\ao\quantization\fx\qconfig_mapping_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-06-01T21:26:03.1164242Z copying torch\ao\quantization\fx\quantize_handler.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-06-01T21:26:03.1176081Z copying torch\ao\quantization\fx\tracer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-06-01T21:26:03.1187467Z copying torch\ao\quantization\fx\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-06-01T21:26:03.1210225Z copying torch\ao\quantization\fx\_decomposed.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-06-01T21:26:03.1230350Z copying torch\ao\quantization\fx\_equalize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-06-01T21:26:03.1250825Z copying torch\ao\quantization\fx\_lower_to_native_backend.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-06-01T21:26:03.1279358Z copying torch\ao\quantization\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-06-01T21:26:03.1287511Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-06-01T21:26:03.1291152Z copying torch\ao\quantization\pt2e\duplicate_dq_pass.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-06-01T21:26:03.1302517Z copying torch\ao\quantization\pt2e\export_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-06-01T21:26:03.1315201Z copying torch\ao\quantization\pt2e\graph_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-06-01T21:26:03.1327402Z copying torch\ao\quantization\pt2e\lowering.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-06-01T21:26:03.1346379Z copying torch\ao\quantization\pt2e\port_metadata_pass.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-06-01T21:26:03.1367181Z copying torch\ao\quantization\pt2e\prepare.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-06-01T21:26:03.1379155Z copying torch\ao\quantization\pt2e\qat_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-06-01T21:26:03.1401627Z copying torch\ao\quantization\pt2e\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-06-01T21:26:03.1425411Z copying torch\ao\quantization\pt2e\_affine_quantization.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-06-01T21:26:03.1446950Z copying torch\ao\quantization\pt2e\_numeric_debugger.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-06-01T21:26:03.1458806Z copying torch\ao\quantization\pt2e\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-06-01T21:26:03.1466930Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-06-01T21:26:03.1470569Z copying torch\ao\quantization\quantizer\composable_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-06-01T21:26:03.1608859Z copying torch\ao\quantization\quantizer\embedding_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-06-01T21:26:03.1610044Z copying torch\ao\quantization\quantizer\quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-06-01T21:26:03.1611029Z copying torch\ao\quantization\quantizer\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-06-01T21:26:03.1620829Z copying torch\ao\quantization\quantizer\x86_inductor_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-06-01T21:26:03.1655491Z copying torch\ao\quantization\quantizer\xnnpack_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-06-01T21:26:03.1671732Z copying torch\ao\quantization\quantizer\xnnpack_quantizer_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-06-01T21:26:03.1699635Z copying torch\ao\quantization\quantizer\xpu_inductor_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-06-01T21:26:03.1710086Z copying torch\ao\quantization\quantizer\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-06-01T21:26:03.1722817Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-06-01T21:26:03.1726940Z copying torch\ao\quantization\fx\_model_report\detector.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-06-01T21:26:03.1758403Z copying torch\ao\quantization\fx\_model_report\model_report.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-06-01T21:26:03.1775785Z copying torch\ao\quantization\fx\_model_report\model_report_observer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-06-01T21:26:03.1798664Z copying torch\ao\quantization\fx\_model_report\model_report_visualizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-06-01T21:26:03.1819313Z copying torch\ao\quantization\fx\_model_report\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-06-01T21:26:03.1826130Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\representation 2025-06-01T21:26:03.1830401Z copying torch\ao\quantization\pt2e\representation\rewrite.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\representation 2025-06-01T21:26:03.1849673Z copying torch\ao\quantization\pt2e\representation\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\representation 2025-06-01T21:26:03.1859731Z creating build\lib.win-amd64-cpython-39\torch\autograd\_functions 2025-06-01T21:26:03.1860969Z copying torch\autograd\_functions\tensor.py -> build\lib.win-amd64-cpython-39\torch\autograd\_functions 2025-06-01T21:26:03.1874931Z copying torch\autograd\_functions\utils.py -> build\lib.win-amd64-cpython-39\torch\autograd\_functions 2025-06-01T21:26:03.1882722Z copying torch\autograd\_functions\__init__.py -> build\lib.win-amd64-cpython-39\torch\autograd\_functions 2025-06-01T21:26:03.1889456Z creating build\lib.win-amd64-cpython-39\torch\backends\cpu 2025-06-01T21:26:03.1892883Z copying torch\backends\cpu\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\cpu 2025-06-01T21:26:03.1899895Z creating build\lib.win-amd64-cpython-39\torch\backends\cuda 2025-06-01T21:26:03.1902590Z copying torch\backends\cuda\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\cuda 2025-06-01T21:26:03.1920437Z creating build\lib.win-amd64-cpython-39\torch\backends\cudnn 2025-06-01T21:26:03.1923394Z copying torch\backends\cudnn\rnn.py -> build\lib.win-amd64-cpython-39\torch\backends\cudnn 2025-06-01T21:26:03.1934217Z copying torch\backends\cudnn\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\cudnn 2025-06-01T21:26:03.1945194Z creating build\lib.win-amd64-cpython-39\torch\backends\cusparselt 2025-06-01T21:26:03.1948152Z copying torch\backends\cusparselt\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\cusparselt 2025-06-01T21:26:03.1959869Z creating build\lib.win-amd64-cpython-39\torch\backends\kleidiai 2025-06-01T21:26:03.1975832Z copying torch\backends\kleidiai\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\kleidiai 2025-06-01T21:26:03.1981403Z creating build\lib.win-amd64-cpython-39\torch\backends\mha 2025-06-01T21:26:03.1984345Z copying torch\backends\mha\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\mha 2025-06-01T21:26:03.1995824Z creating build\lib.win-amd64-cpython-39\torch\backends\mkl 2025-06-01T21:26:03.1998615Z copying torch\backends\mkl\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\mkl 2025-06-01T21:26:03.2009872Z creating build\lib.win-amd64-cpython-39\torch\backends\mkldnn 2025-06-01T21:26:03.2013177Z copying torch\backends\mkldnn\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\mkldnn 2025-06-01T21:26:03.2024859Z creating build\lib.win-amd64-cpython-39\torch\backends\mps 2025-06-01T21:26:03.2027340Z copying torch\backends\mps\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\mps 2025-06-01T21:26:03.2040234Z creating build\lib.win-amd64-cpython-39\torch\backends\nnpack 2025-06-01T21:26:03.2043007Z copying torch\backends\nnpack\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\nnpack 2025-06-01T21:26:03.2054815Z creating build\lib.win-amd64-cpython-39\torch\backends\openmp 2025-06-01T21:26:03.2057649Z copying torch\backends\openmp\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\openmp 2025-06-01T21:26:03.2064513Z creating build\lib.win-amd64-cpython-39\torch\backends\opt_einsum 2025-06-01T21:26:03.2067461Z copying torch\backends\opt_einsum\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\opt_einsum 2025-06-01T21:26:03.2078599Z creating build\lib.win-amd64-cpython-39\torch\backends\quantized 2025-06-01T21:26:03.2081482Z copying torch\backends\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\quantized 2025-06-01T21:26:03.2093660Z creating build\lib.win-amd64-cpython-39\torch\backends\xeon 2025-06-01T21:26:03.2096607Z copying torch\backends\xeon\run_cpu.py -> build\lib.win-amd64-cpython-39\torch\backends\xeon 2025-06-01T21:26:03.2120306Z copying torch\backends\xeon\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\xeon 2025-06-01T21:26:03.2125857Z creating build\lib.win-amd64-cpython-39\torch\backends\xnnpack 2025-06-01T21:26:03.2128745Z copying torch\backends\xnnpack\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\xnnpack 2025-06-01T21:26:03.2139392Z creating build\lib.win-amd64-cpython-39\torch\backends\_coreml 2025-06-01T21:26:03.2142720Z copying torch\backends\_coreml\preprocess.py -> build\lib.win-amd64-cpython-39\torch\backends\_coreml 2025-06-01T21:26:03.2153258Z copying torch\backends\_coreml\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\_coreml 2025-06-01T21:26:03.2159075Z creating build\lib.win-amd64-cpython-39\torch\backends\_nnapi 2025-06-01T21:26:03.2179038Z copying torch\backends\_nnapi\prepare.py -> build\lib.win-amd64-cpython-39\torch\backends\_nnapi 2025-06-01T21:26:03.2189126Z copying torch\backends\_nnapi\serializer.py -> build\lib.win-amd64-cpython-39\torch\backends\_nnapi 2025-06-01T21:26:03.2232830Z copying torch\backends\_nnapi\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\_nnapi 2025-06-01T21:26:03.2285593Z creating build\lib.win-amd64-cpython-39\torch\cpu\amp 2025-06-01T21:26:03.2288967Z copying torch\cpu\amp\autocast_mode.py -> build\lib.win-amd64-cpython-39\torch\cpu\amp 2025-06-01T21:26:03.2300090Z copying torch\cpu\amp\grad_scaler.py -> build\lib.win-amd64-cpython-39\torch\cpu\amp 2025-06-01T21:26:03.2314380Z copying torch\cpu\amp\__init__.py -> build\lib.win-amd64-cpython-39\torch\cpu\amp 2025-06-01T21:26:03.2321959Z creating build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-06-01T21:26:03.2325037Z copying torch\cuda\amp\autocast_mode.py -> build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-06-01T21:26:03.2336579Z copying torch\cuda\amp\common.py -> build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-06-01T21:26:03.2342053Z copying torch\cuda\amp\grad_scaler.py -> build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-06-01T21:26:03.2358419Z copying torch\cuda\amp\__init__.py -> build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-06-01T21:26:03.2365405Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms 2025-06-01T21:26:03.2368542Z copying torch\distributed\algorithms\join.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms 2025-06-01T21:26:03.2392480Z copying torch\distributed\algorithms\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms 2025-06-01T21:26:03.2393228Z creating build\lib.win-amd64-cpython-39\torch\distributed\autograd 2025-06-01T21:26:03.2396473Z copying torch\distributed\autograd\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\autograd 2025-06-01T21:26:03.2421974Z creating build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:26:03.2423249Z copying torch\distributed\checkpoint\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:26:03.2438864Z copying torch\distributed\checkpoint\default_planner.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:26:03.2458945Z copying torch\distributed\checkpoint\filesystem.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:26:03.2482428Z copying torch\distributed\checkpoint\format_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:26:03.2505808Z copying torch\distributed\checkpoint\logger.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:26:03.2515974Z copying torch\distributed\checkpoint\logging_handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:26:03.2521564Z copying torch\distributed\checkpoint\metadata.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:26:03.2531307Z copying torch\distributed\checkpoint\optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:26:03.2542509Z copying torch\distributed\checkpoint\planner.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:26:03.2556694Z copying torch\distributed\checkpoint\planner_helpers.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:26:03.2571765Z copying torch\distributed\checkpoint\resharding.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:26:03.2586067Z copying torch\distributed\checkpoint\staging.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:26:03.2596177Z copying torch\distributed\checkpoint\stateful.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:26:03.2606473Z copying torch\distributed\checkpoint\state_dict.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:26:03.2631674Z copying torch\distributed\checkpoint\state_dict_loader.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:26:03.2654236Z copying torch\distributed\checkpoint\state_dict_saver.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:26:03.2665391Z copying torch\distributed\checkpoint\storage.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:26:03.2677179Z copying torch\distributed\checkpoint\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:26:03.2692682Z copying torch\distributed\checkpoint\_async_executor.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:26:03.2704164Z copying torch\distributed\checkpoint\_async_process_executor.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:26:03.2715919Z copying torch\distributed\checkpoint\_async_thread_executor.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:26:03.2752129Z copying torch\distributed\checkpoint\_checkpointer.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:26:03.2763056Z copying torch\distributed\checkpoint\_dedup_save_plans.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:26:03.2779172Z copying torch\distributed\checkpoint\_dedup_tensors.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:26:03.2791485Z copying torch\distributed\checkpoint\_extension.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:26:03.2804641Z copying torch\distributed\checkpoint\_fsspec_filesystem.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:26:03.2818698Z copying torch\distributed\checkpoint\_hf_planner.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:26:03.2833636Z copying torch\distributed\checkpoint\_hf_storage.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:26:03.2845884Z copying torch\distributed\checkpoint\_nested_dict.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:26:03.2857279Z copying torch\distributed\checkpoint\_sharded_tensor_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:26:03.2867623Z copying torch\distributed\checkpoint\_storage_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:26:03.2883096Z copying torch\distributed\checkpoint\_traverse.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:26:03.2900135Z copying torch\distributed\checkpoint\_version.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:26:03.2905785Z copying torch\distributed\checkpoint\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-06-01T21:26:03.2918904Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic 2025-06-01T21:26:03.2922007Z copying torch\distributed\elastic\control_plane.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic 2025-06-01T21:26:03.2941087Z copying torch\distributed\elastic\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic 2025-06-01T21:26:03.2955696Z creating build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:26:03.2958703Z copying torch\distributed\fsdp\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:26:03.2975417Z copying torch\distributed\fsdp\fully_sharded_data_parallel.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:26:03.3018160Z copying torch\distributed\fsdp\sharded_grad_scaler.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:26:03.3033590Z copying torch\distributed\fsdp\wrap.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:26:03.3051077Z copying torch\distributed\fsdp\_common_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:26:03.3071619Z copying torch\distributed\fsdp\_debug_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:26:03.3082906Z copying torch\distributed\fsdp\_dynamo_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:26:03.3093456Z copying torch\distributed\fsdp\_exec_order_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:26:03.3126355Z copying torch\distributed\fsdp\_flat_param.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:26:03.3175969Z copying torch\distributed\fsdp\_fsdp_extensions.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:26:03.3191822Z copying torch\distributed\fsdp\_init_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:26:03.3217526Z copying torch\distributed\fsdp\_limiter_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:26:03.3227873Z copying torch\distributed\fsdp\_optim_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:26:03.3265060Z copying torch\distributed\fsdp\_runtime_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:26:03.3296390Z copying torch\distributed\fsdp\_shard_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:26:03.3306670Z copying torch\distributed\fsdp\_state_dict_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:26:03.3347194Z copying torch\distributed\fsdp\_trace_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:26:03.3358326Z copying torch\distributed\fsdp\_traversal_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:26:03.3373924Z copying torch\distributed\fsdp\_unshard_param_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:26:03.3384572Z copying torch\distributed\fsdp\_wrap_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:26:03.3401296Z copying torch\distributed\fsdp\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-06-01T21:26:03.3412579Z creating build\lib.win-amd64-cpython-39\torch\distributed\launcher 2025-06-01T21:26:03.3415635Z copying torch\distributed\launcher\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\launcher 2025-06-01T21:26:03.3430711Z copying torch\distributed\launcher\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\launcher 2025-06-01T21:26:03.3437754Z creating build\lib.win-amd64-cpython-39\torch\distributed\nn 2025-06-01T21:26:03.3440775Z copying torch\distributed\nn\functional.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn 2025-06-01T21:26:03.3452650Z copying torch\distributed\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn 2025-06-01T21:26:03.3461515Z creating build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-06-01T21:26:03.3464839Z copying torch\distributed\optim\apply_optimizer_in_backward.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-06-01T21:26:03.3480571Z copying torch\distributed\optim\functional_adadelta.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-06-01T21:26:03.3493311Z copying torch\distributed\optim\functional_adagrad.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-06-01T21:26:03.3509364Z copying torch\distributed\optim\functional_adam.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-06-01T21:26:03.3521007Z copying torch\distributed\optim\functional_adamax.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-06-01T21:26:03.3532216Z copying torch\distributed\optim\functional_adamw.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-06-01T21:26:03.3542299Z copying torch\distributed\optim\functional_rmsprop.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-06-01T21:26:03.3553279Z copying torch\distributed\optim\functional_rprop.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-06-01T21:26:03.3566821Z copying torch\distributed\optim\functional_sgd.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-06-01T21:26:03.3576958Z copying torch\distributed\optim\named_optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-06-01T21:26:03.3588952Z copying torch\distributed\optim\optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-06-01T21:26:03.3600051Z copying torch\distributed\optim\post_localSGD_optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-06-01T21:26:03.3617321Z copying torch\distributed\optim\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-06-01T21:26:03.3626611Z copying torch\distributed\optim\zero_redundancy_optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-06-01T21:26:03.3655696Z copying torch\distributed\optim\_deprecation_warning.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-06-01T21:26:03.3661569Z copying torch\distributed\optim\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-06-01T21:26:03.3674859Z creating build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-06-01T21:26:03.3677815Z copying torch\distributed\pipelining\microbatch.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-06-01T21:26:03.3694485Z copying torch\distributed\pipelining\schedules.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-06-01T21:26:03.3738300Z copying torch\distributed\pipelining\stage.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-06-01T21:26:03.3764553Z copying torch\distributed\pipelining\_backward.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-06-01T21:26:03.3783735Z copying torch\distributed\pipelining\_debug.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-06-01T21:26:03.3814359Z copying torch\distributed\pipelining\_IR.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-06-01T21:26:03.3841772Z copying torch\distributed\pipelining\_schedule_visualizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-06-01T21:26:03.3855708Z copying torch\distributed\pipelining\_unflatten.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-06-01T21:26:03.3865595Z copying torch\distributed\pipelining\_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-06-01T21:26:03.3878961Z copying torch\distributed\pipelining\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-06-01T21:26:03.3887376Z creating build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-06-01T21:26:03.3890855Z copying torch\distributed\rpc\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-06-01T21:26:03.3919618Z copying torch\distributed\rpc\backend_registry.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-06-01T21:26:03.3935499Z copying torch\distributed\rpc\constants.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-06-01T21:26:03.3944740Z copying torch\distributed\rpc\functions.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-06-01T21:26:03.3960800Z copying torch\distributed\rpc\internal.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-06-01T21:26:03.3971525Z copying torch\distributed\rpc\options.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-06-01T21:26:03.3981495Z copying torch\distributed\rpc\rref_proxy.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-06-01T21:26:03.3991145Z copying torch\distributed\rpc\server_process_global_profiler.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-06-01T21:26:03.4002299Z copying torch\distributed\rpc\_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-06-01T21:26:03.4013785Z copying torch\distributed\rpc\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-06-01T21:26:03.4028096Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-06-01T21:26:03.4031691Z copying torch\distributed\tensor\device_mesh.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-06-01T21:26:03.4037199Z copying torch\distributed\tensor\placement_types.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-06-01T21:26:03.4053952Z copying torch\distributed\tensor\_api.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-06-01T21:26:03.4076440Z copying torch\distributed\tensor\_collective_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-06-01T21:26:03.4091111Z copying torch\distributed\tensor\_dispatch.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-06-01T21:26:03.4110258Z copying torch\distributed\tensor\_dtensor_spec.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-06-01T21:26:03.4122461Z copying torch\distributed\tensor\_op_schema.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-06-01T21:26:03.4139293Z copying torch\distributed\tensor\_random.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-06-01T21:26:03.4155836Z copying torch\distributed\tensor\_redistribute.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-06-01T21:26:03.4172938Z copying torch\distributed\tensor\_sharding_prop.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-06-01T21:26:03.4188934Z copying torch\distributed\tensor\_shards_wrapper.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-06-01T21:26:03.4200713Z copying torch\distributed\tensor\_tp_conv.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-06-01T21:26:03.4212933Z copying torch\distributed\tensor\_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-06-01T21:26:03.4236218Z copying torch\distributed\tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-06-01T21:26:03.4248284Z creating build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-06-01T21:26:03.4251807Z copying torch\distributed\_composable\checkpoint_activation.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-06-01T21:26:03.4268813Z copying torch\distributed\_composable\contract.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-06-01T21:26:03.4279933Z copying torch\distributed\_composable\replicate.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-06-01T21:26:03.4298742Z copying torch\distributed\_composable\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-06-01T21:26:03.4311186Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-06-01T21:26:03.4314221Z copying torch\distributed\_shard\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-06-01T21:26:03.4325843Z copying torch\distributed\_shard\common_op_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-06-01T21:26:03.4335001Z copying torch\distributed\_shard\metadata.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-06-01T21:26:03.4345391Z copying torch\distributed\_shard\op_registry_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-06-01T21:26:03.4354752Z copying torch\distributed\_shard\sharder.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-06-01T21:26:03.4370504Z copying torch\distributed\_shard\_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-06-01T21:26:03.4380438Z copying torch\distributed\_shard\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-06-01T21:26:03.4387368Z creating build\lib.win-amd64-cpython-39\torch\distributed\_sharded_tensor 2025-06-01T21:26:03.4390514Z copying torch\distributed\_sharded_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_sharded_tensor 2025-06-01T21:26:03.4397546Z creating build\lib.win-amd64-cpython-39\torch\distributed\_sharding_spec 2025-06-01T21:26:03.4400574Z copying torch\distributed\_sharding_spec\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_sharding_spec 2025-06-01T21:26:03.4416923Z creating build\lib.win-amd64-cpython-39\torch\distributed\_symmetric_memory 2025-06-01T21:26:03.4419974Z copying torch\distributed\_symmetric_memory\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_symmetric_memory 2025-06-01T21:26:03.4449594Z creating build\lib.win-amd64-cpython-39\torch\distributed\_tensor 2025-06-01T21:26:03.4452760Z copying torch\distributed\_tensor\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tensor 2025-06-01T21:26:03.4458779Z copying torch\distributed\_tensor\placement_types.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tensor 2025-06-01T21:26:03.4464351Z copying torch\distributed\_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tensor 2025-06-01T21:26:03.4477972Z creating build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-06-01T21:26:03.4479996Z copying torch\distributed\_tools\common_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-06-01T21:26:03.4492331Z copying torch\distributed\_tools\fake_collectives.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-06-01T21:26:03.4504149Z copying torch\distributed\_tools\fsdp2_mem_tracker.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-06-01T21:26:03.4521496Z copying torch\distributed\_tools\ilp_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-06-01T21:26:03.4540842Z copying torch\distributed\_tools\memory_tracker.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-06-01T21:26:03.4554969Z copying torch\distributed\_tools\mem_tracker.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-06-01T21:26:03.4576503Z copying torch\distributed\_tools\mod_tracker.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-06-01T21:26:03.4591514Z copying torch\distributed\_tools\runtime_estimator.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-06-01T21:26:03.4606857Z copying torch\distributed\_tools\sac_estimator.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-06-01T21:26:03.4630092Z copying torch\distributed\_tools\sac_ilp.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-06-01T21:26:03.4640996Z copying torch\distributed\_tools\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-06-01T21:26:03.4649550Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-06-01T21:26:03.4652726Z copying torch\distributed\algorithms\ddp_comm_hooks\ddp_zero_hook.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-06-01T21:26:03.4669357Z copying torch\distributed\algorithms\ddp_comm_hooks\debugging_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-06-01T21:26:03.4679561Z copying torch\distributed\algorithms\ddp_comm_hooks\default_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-06-01T21:26:03.4693892Z copying torch\distributed\algorithms\ddp_comm_hooks\mixed_precision_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-06-01T21:26:03.4703866Z copying torch\distributed\algorithms\ddp_comm_hooks\optimizer_overlap_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-06-01T21:26:03.4714780Z copying torch\distributed\algorithms\ddp_comm_hooks\post_localSGD_hook.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-06-01T21:26:03.4725298Z copying torch\distributed\algorithms\ddp_comm_hooks\powerSGD_hook.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-06-01T21:26:03.4754908Z copying torch\distributed\algorithms\ddp_comm_hooks\quantization_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-06-01T21:26:03.4766100Z copying torch\distributed\algorithms\ddp_comm_hooks\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-06-01T21:26:03.4777552Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-06-01T21:26:03.4785083Z copying torch\distributed\algorithms\model_averaging\averagers.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-06-01T21:26:03.4795916Z copying torch\distributed\algorithms\model_averaging\hierarchical_model_averager.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-06-01T21:26:03.4809025Z copying torch\distributed\algorithms\model_averaging\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-06-01T21:26:03.4827206Z copying torch\distributed\algorithms\model_averaging\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-06-01T21:26:03.4833187Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_checkpoint 2025-06-01T21:26:03.4837154Z copying torch\distributed\algorithms\_checkpoint\checkpoint_wrapper.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_checkpoint 2025-06-01T21:26:03.4847863Z copying torch\distributed\algorithms\_checkpoint\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_checkpoint 2025-06-01T21:26:03.4853904Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_comm_hooks 2025-06-01T21:26:03.4857594Z copying torch\distributed\algorithms\_comm_hooks\default_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_comm_hooks 2025-06-01T21:26:03.4870993Z copying torch\distributed\algorithms\_comm_hooks\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_comm_hooks 2025-06-01T21:26:03.4877916Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_optimizer_overlap 2025-06-01T21:26:03.4881436Z copying torch\distributed\algorithms\_optimizer_overlap\optimizer_overlap.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_optimizer_overlap 2025-06-01T21:26:03.4891432Z copying torch\distributed\algorithms\_optimizer_overlap\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_optimizer_overlap 2025-06-01T21:26:03.4903356Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_quantization 2025-06-01T21:26:03.4906648Z copying torch\distributed\algorithms\_quantization\quantization.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_quantization 2025-06-01T21:26:03.4917772Z copying torch\distributed\algorithms\_quantization\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_quantization 2025-06-01T21:26:03.4923336Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent 2025-06-01T21:26:03.4926370Z copying torch\distributed\elastic\agent\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent 2025-06-01T21:26:03.4932538Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\events 2025-06-01T21:26:03.4935636Z copying torch\distributed\elastic\events\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\events 2025-06-01T21:26:03.4946566Z copying torch\distributed\elastic\events\handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\events 2025-06-01T21:26:03.4951818Z copying torch\distributed\elastic\events\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\events 2025-06-01T21:26:03.4967217Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\metrics 2025-06-01T21:26:03.4970256Z copying torch\distributed\elastic\metrics\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\metrics 2025-06-01T21:26:03.4981196Z copying torch\distributed\elastic\metrics\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\metrics 2025-06-01T21:26:03.4996394Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-06-01T21:26:03.5004291Z copying torch\distributed\elastic\multiprocessing\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-06-01T21:26:03.5030349Z copying torch\distributed\elastic\multiprocessing\redirects.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-06-01T21:26:03.5042111Z copying torch\distributed\elastic\multiprocessing\tail_log.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-06-01T21:26:03.5053314Z copying torch\distributed\elastic\multiprocessing\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-06-01T21:26:03.5066559Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-06-01T21:26:03.5068651Z copying torch\distributed\elastic\rendezvous\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-06-01T21:26:03.5080333Z copying torch\distributed\elastic\rendezvous\c10d_rendezvous_backend.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-06-01T21:26:03.5092535Z copying torch\distributed\elastic\rendezvous\dynamic_rendezvous.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-06-01T21:26:03.5123298Z copying torch\distributed\elastic\rendezvous\etcd_rendezvous.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-06-01T21:26:03.5150745Z copying torch\distributed\elastic\rendezvous\etcd_rendezvous_backend.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-06-01T21:26:03.5161279Z copying torch\distributed\elastic\rendezvous\etcd_server.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-06-01T21:26:03.5172910Z copying torch\distributed\elastic\rendezvous\etcd_store.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-06-01T21:26:03.5184966Z copying torch\distributed\elastic\rendezvous\registry.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-06-01T21:26:03.5202001Z copying torch\distributed\elastic\rendezvous\static_tcp_rendezvous.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-06-01T21:26:03.5214105Z copying torch\distributed\elastic\rendezvous\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-06-01T21:26:03.5225881Z copying torch\distributed\elastic\rendezvous\_etcd_stub.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-06-01T21:26:03.5236223Z copying torch\distributed\elastic\rendezvous\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-06-01T21:26:03.5249038Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-06-01T21:26:03.5252060Z copying torch\distributed\elastic\timer\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-06-01T21:26:03.5266963Z copying torch\distributed\elastic\timer\debug_info_logging.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-06-01T21:26:03.5276959Z copying torch\distributed\elastic\timer\file_based_local_timer.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-06-01T21:26:03.5292558Z copying torch\distributed\elastic\timer\local_timer.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-06-01T21:26:03.5311839Z copying torch\distributed\elastic\timer\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-06-01T21:26:03.5323657Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-06-01T21:26:03.5326927Z copying torch\distributed\elastic\utils\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-06-01T21:26:03.5337191Z copying torch\distributed\elastic\utils\distributed.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-06-01T21:26:03.5355059Z copying torch\distributed\elastic\utils\logging.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-06-01T21:26:03.5364336Z copying torch\distributed\elastic\utils\log_level.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-06-01T21:26:03.5369935Z copying torch\distributed\elastic\utils\store.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-06-01T21:26:03.5387492Z copying torch\distributed\elastic\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-06-01T21:26:03.5395307Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-06-01T21:26:03.5398833Z copying torch\distributed\elastic\agent\server\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-06-01T21:26:03.5419942Z copying torch\distributed\elastic\agent\server\health_check_server.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-06-01T21:26:03.5429733Z copying torch\distributed\elastic\agent\server\local_elastic_agent.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-06-01T21:26:03.5447869Z copying torch\distributed\elastic\agent\server\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-06-01T21:26:03.5460019Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors 2025-06-01T21:26:03.5467899Z copying torch\distributed\elastic\multiprocessing\errors\error_handler.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors 2025-06-01T21:26:03.5479241Z copying torch\distributed\elastic\multiprocessing\errors\handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors 2025-06-01T21:26:03.5488330Z copying torch\distributed\elastic\multiprocessing\errors\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors 2025-06-01T21:26:03.5500654Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-06-01T21:26:03.5504241Z copying torch\distributed\elastic\multiprocessing\subprocess_handler\handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-06-01T21:26:03.5514714Z copying torch\distributed\elastic\multiprocessing\subprocess_handler\subprocess_handler.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-06-01T21:26:03.5523785Z copying torch\distributed\elastic\multiprocessing\subprocess_handler\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-06-01T21:26:03.5535345Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data 2025-06-01T21:26:03.5538761Z copying torch\distributed\elastic\utils\data\cycling_iterator.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data 2025-06-01T21:26:03.5549755Z copying torch\distributed\elastic\utils\data\elastic_distributed_sampler.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data 2025-06-01T21:26:03.5558604Z copying torch\distributed\elastic\utils\data\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data 2025-06-01T21:26:03.5566472Z creating build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-06-01T21:26:03.5569451Z copying torch\distributed\fsdp\_fully_shard\_fsdp_api.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-06-01T21:26:03.5580863Z copying torch\distributed\fsdp\_fully_shard\_fsdp_collectives.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-06-01T21:26:03.5598171Z copying torch\distributed\fsdp\_fully_shard\_fsdp_common.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-06-01T21:26:03.5612675Z copying torch\distributed\fsdp\_fully_shard\_fsdp_init.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-06-01T21:26:03.5623911Z copying torch\distributed\fsdp\_fully_shard\_fsdp_param.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-06-01T21:26:03.5645372Z copying torch\distributed\fsdp\_fully_shard\_fsdp_param_group.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-06-01T21:26:03.5670536Z copying torch\distributed\fsdp\_fully_shard\_fsdp_state.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-06-01T21:26:03.5686051Z copying torch\distributed\fsdp\_fully_shard\_fully_shard.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-06-01T21:26:03.5707090Z copying torch\distributed\fsdp\_fully_shard\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-06-01T21:26:03.5714374Z creating build\lib.win-amd64-cpython-39\torch\distributed\nn\api 2025-06-01T21:26:03.5717642Z copying torch\distributed\nn\api\remote_module.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\api 2025-06-01T21:26:03.5733947Z copying torch\distributed\nn\api\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\api 2025-06-01T21:26:03.5740102Z creating build\lib.win-amd64-cpython-39\torch\distributed\nn\jit 2025-06-01T21:26:03.5743276Z copying torch\distributed\nn\jit\instantiator.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\jit 2025-06-01T21:26:03.5753418Z copying torch\distributed\nn\jit\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\jit 2025-06-01T21:26:03.5760181Z creating build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\templates 2025-06-01T21:26:03.5763733Z copying torch\distributed\nn\jit\templates\remote_module_template.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\templates 2025-06-01T21:26:03.5775347Z copying torch\distributed\nn\jit\templates\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\templates 2025-06-01T21:26:03.5781397Z creating build\lib.win-amd64-cpython-39\torch\distributed\rpc\_testing 2025-06-01T21:26:03.5784890Z copying torch\distributed\rpc\_testing\faulty_agent_backend_registry.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc\_testing 2025-06-01T21:26:03.5794910Z copying torch\distributed\rpc\_testing\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc\_testing 2025-06-01T21:26:03.5802312Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-06-01T21:26:03.5805468Z copying torch\distributed\tensor\debug\_comm_mode.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-06-01T21:26:03.5821281Z copying torch\distributed\tensor\debug\_op_coverage.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-06-01T21:26:03.5842078Z copying torch\distributed\tensor\debug\_visualize_sharding.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-06-01T21:26:03.5856081Z copying torch\distributed\tensor\debug\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-06-01T21:26:03.5870798Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-06-01T21:26:03.5873995Z copying torch\distributed\tensor\experimental\_attention.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-06-01T21:26:03.5906778Z copying torch\distributed\tensor\experimental\_func_map.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-06-01T21:26:03.5916399Z copying torch\distributed\tensor\experimental\_register_sharding.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-06-01T21:26:03.5930851Z copying torch\distributed\tensor\experimental\_tp_transform.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-06-01T21:26:03.5958072Z copying torch\distributed\tensor\experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-06-01T21:26:03.5971239Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-06-01T21:26:03.5974214Z copying torch\distributed\tensor\parallel\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-06-01T21:26:03.5985667Z copying torch\distributed\tensor\parallel\ddp.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-06-01T21:26:03.5996083Z copying torch\distributed\tensor\parallel\fsdp.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-06-01T21:26:03.6007935Z copying torch\distributed\tensor\parallel\input_reshard.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-06-01T21:26:03.6018202Z copying torch\distributed\tensor\parallel\loss.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-06-01T21:26:03.6033443Z copying torch\distributed\tensor\parallel\style.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-06-01T21:26:03.6065316Z copying torch\distributed\tensor\parallel\_data_parallel_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-06-01T21:26:03.6076696Z copying torch\distributed\tensor\parallel\_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-06-01T21:26:03.6087754Z copying torch\distributed\tensor\parallel\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-06-01T21:26:03.6096408Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-06-01T21:26:03.6122213Z copying torch\distributed\tensor\_ops\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-06-01T21:26:03.6134611Z copying torch\distributed\tensor\_ops\_common_rules.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-06-01T21:26:03.6147958Z copying torch\distributed\tensor\_ops\_conv_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-06-01T21:26:03.6158094Z copying torch\distributed\tensor\_ops\_einsum_strategy.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-06-01T21:26:03.6183581Z copying torch\distributed\tensor\_ops\_embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-06-01T21:26:03.6195220Z copying torch\distributed\tensor\_ops\_math_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-06-01T21:26:03.6220991Z copying torch\distributed\tensor\_ops\_matrix_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-06-01T21:26:03.6245275Z copying torch\distributed\tensor\_ops\_pointwise_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-06-01T21:26:03.6263122Z copying torch\distributed\tensor\_ops\_random_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-06-01T21:26:03.6273495Z copying torch\distributed\tensor\_ops\_tensor_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-06-01T21:26:03.6299707Z copying torch\distributed\tensor\_ops\_view_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-06-01T21:26:03.6316598Z copying torch\distributed\tensor\_ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-06-01T21:26:03.6331073Z creating build\lib.win-amd64-cpython-39\torch\distributed\_composable\fsdp 2025-06-01T21:26:03.6334934Z copying torch\distributed\_composable\fsdp\fully_shard.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable\fsdp 2025-06-01T21:26:03.6340650Z copying torch\distributed\_composable\fsdp\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable\fsdp 2025-06-01T21:26:03.6347078Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\checkpoint 2025-06-01T21:26:03.6350186Z copying torch\distributed\_shard\checkpoint\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\checkpoint 2025-06-01T21:26:03.6357987Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_optim 2025-06-01T21:26:03.6360897Z copying torch\distributed\_shard\sharded_optim\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_optim 2025-06-01T21:26:03.6372452Z copying torch\distributed\_shard\sharded_optim\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_optim 2025-06-01T21:26:03.6405963Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-06-01T21:26:03.6406768Z copying torch\distributed\_shard\sharded_tensor\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-06-01T21:26:03.6430972Z copying torch\distributed\_shard\sharded_tensor\logger.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-06-01T21:26:03.6441350Z copying torch\distributed\_shard\sharded_tensor\logging_handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-06-01T21:26:03.6454315Z copying torch\distributed\_shard\sharded_tensor\metadata.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-06-01T21:26:03.6463835Z copying torch\distributed\_shard\sharded_tensor\reshard.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-06-01T21:26:03.6478927Z copying torch\distributed\_shard\sharded_tensor\shard.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-06-01T21:26:03.6488988Z copying torch\distributed\_shard\sharded_tensor\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-06-01T21:26:03.6499731Z copying torch\distributed\_shard\sharded_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-06-01T21:26:03.6515953Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_plan 2025-06-01T21:26:03.6519112Z copying torch\distributed\_shard\sharding_plan\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_plan 2025-06-01T21:26:03.6528871Z copying torch\distributed\_shard\sharding_plan\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_plan 2025-06-01T21:26:03.6540722Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-06-01T21:26:03.6544014Z copying torch\distributed\_shard\sharding_spec\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-06-01T21:26:03.6555080Z copying torch\distributed\_shard\sharding_spec\chunk_sharding_spec.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-06-01T21:26:03.6565779Z copying torch\distributed\_shard\sharding_spec\_internals.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-06-01T21:26:03.6577032Z copying torch\distributed\_shard\sharding_spec\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-06-01T21:26:03.6598346Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-06-01T21:26:03.6601399Z copying torch\distributed\_shard\sharded_tensor\_ops\binary_cmp.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-06-01T21:26:03.6612731Z copying torch\distributed\_shard\sharded_tensor\_ops\init.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-06-01T21:26:03.6622946Z copying torch\distributed\_shard\sharded_tensor\_ops\misc_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-06-01T21:26:03.6632874Z copying torch\distributed\_shard\sharded_tensor\_ops\tensor_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-06-01T21:26:03.6642223Z copying torch\distributed\_shard\sharded_tensor\_ops\_common.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-06-01T21:26:03.6658265Z copying torch\distributed\_shard\sharded_tensor\_ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-06-01T21:26:03.6673929Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops 2025-06-01T21:26:03.6677319Z 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-06-01T21:26:03.6689490Z 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-06-01T21:26:03.6705181Z 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-06-01T21:26:03.6724959Z 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-06-01T21:26:03.6730779Z creating build\lib.win-amd64-cpython-39\torch\export\experimental 2025-06-01T21:26:03.6733913Z copying torch\export\experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\export\experimental 2025-06-01T21:26:03.6746895Z creating build\lib.win-amd64-cpython-39\torch\export\passes 2025-06-01T21:26:03.6749685Z copying torch\export\passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\export\passes 2025-06-01T21:26:03.6764195Z creating build\lib.win-amd64-cpython-39\torch\export\pt2_archive 2025-06-01T21:26:03.6766379Z copying torch\export\pt2_archive\constants.py -> build\lib.win-amd64-cpython-39\torch\export\pt2_archive 2025-06-01T21:26:03.6776307Z copying torch\export\pt2_archive\_package.py -> build\lib.win-amd64-cpython-39\torch\export\pt2_archive 2025-06-01T21:26:03.6793658Z copying torch\export\pt2_archive\__init__.py -> build\lib.win-amd64-cpython-39\torch\export\pt2_archive 2025-06-01T21:26:03.6804262Z creating build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:26:03.6806856Z copying torch\fx\experimental\accelerator_partitioner.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:26:03.6831036Z copying torch\fx\experimental\const_fold.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:26:03.6842135Z copying torch\fx\experimental\debug.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:26:03.6860298Z copying torch\fx\experimental\graph_gradual_typechecker.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:26:03.6882258Z copying torch\fx\experimental\merge_matmul.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:26:03.6913026Z copying torch\fx\experimental\meta_tracer.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:26:03.6913772Z copying torch\fx\experimental\normalize.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:26:03.6915580Z copying torch\fx\experimental\optimization.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:26:03.6932380Z copying torch\fx\experimental\partitioner_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:26:03.6943872Z copying torch\fx\experimental\proxy_tensor.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:26:03.6987554Z copying torch\fx\experimental\recording.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:26:03.7003250Z copying torch\fx\experimental\refinement_types.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:26:03.7008956Z copying torch\fx\experimental\rewriter.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:26:03.7019991Z copying torch\fx\experimental\schema_type_annotation.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:26:03.7041704Z copying torch\fx\experimental\symbolic_shapes.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:26:03.7169913Z copying torch\fx\experimental\sym_node.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:26:03.7206780Z copying torch\fx\experimental\unify_refinements.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:26:03.7227206Z copying torch\fx\experimental\validator.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:26:03.7247272Z copying torch\fx\experimental\_backward_state.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:26:03.7258174Z copying torch\fx\experimental\_config.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:26:03.7268661Z copying torch\fx\experimental\_constant_symnode.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:26:03.7285402Z copying torch\fx\experimental\_dynamism.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:26:03.7297239Z copying torch\fx\experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-06-01T21:26:03.7305708Z creating build\lib.win-amd64-cpython-39\torch\fx\passes 2025-06-01T21:26:03.7308990Z copying torch\fx\passes\annotate_getitem_nodes.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-06-01T21:26:03.7320176Z copying torch\fx\passes\fake_tensor_prop.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-06-01T21:26:03.7331636Z copying torch\fx\passes\graph_drawer.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-06-01T21:26:03.7346486Z copying torch\fx\passes\graph_manipulation.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-06-01T21:26:03.7366216Z copying torch\fx\passes\graph_transform_observer.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-06-01T21:26:03.7376784Z copying torch\fx\passes\net_min_base.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-06-01T21:26:03.7400710Z copying torch\fx\passes\operator_support.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-06-01T21:26:03.7410476Z copying torch\fx\passes\param_fetch.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-06-01T21:26:03.7420236Z copying torch\fx\passes\pass_manager.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-06-01T21:26:03.7438064Z copying torch\fx\passes\reinplace.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-06-01T21:26:03.7457130Z copying torch\fx\passes\runtime_assert.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-06-01T21:26:03.7477968Z copying torch\fx\passes\shape_prop.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-06-01T21:26:03.7489957Z copying torch\fx\passes\splitter_base.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-06-01T21:26:03.7509467Z copying torch\fx\passes\split_module.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-06-01T21:26:03.7525871Z copying torch\fx\passes\split_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-06-01T21:26:03.7536292Z copying torch\fx\passes\tools_common.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-06-01T21:26:03.7546978Z copying torch\fx\passes\_tensorify_python_scalars.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-06-01T21:26:03.7558776Z copying torch\fx\passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-06-01T21:26:03.7566837Z creating build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-06-01T21:26:03.7570124Z copying torch\fx\experimental\migrate_gradual_types\constraint.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-06-01T21:26:03.7589780Z copying torch\fx\experimental\migrate_gradual_types\constraint_generator.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-06-01T21:26:03.7618451Z copying torch\fx\experimental\migrate_gradual_types\constraint_transformation.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-06-01T21:26:03.7649494Z copying torch\fx\experimental\migrate_gradual_types\operation.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-06-01T21:26:03.7655385Z copying torch\fx\experimental\migrate_gradual_types\transform_to_z3.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-06-01T21:26:03.7670531Z copying torch\fx\experimental\migrate_gradual_types\util.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-06-01T21:26:03.7680983Z copying torch\fx\experimental\migrate_gradual_types\z3_types.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-06-01T21:26:03.7696448Z copying torch\fx\experimental\migrate_gradual_types\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-06-01T21:26:03.7704702Z creating build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-06-01T21:26:03.7707863Z copying torch\fx\experimental\unification\core.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-06-01T21:26:03.7723191Z copying torch\fx\experimental\unification\dispatch.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-06-01T21:26:03.7729163Z copying torch\fx\experimental\unification\match.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-06-01T21:26:03.7739386Z copying torch\fx\experimental\unification\more.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-06-01T21:26:03.7749032Z copying torch\fx\experimental\unification\unification_tools.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-06-01T21:26:03.7764607Z copying torch\fx\experimental\unification\utils.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-06-01T21:26:03.7775813Z copying torch\fx\experimental\unification\variable.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-06-01T21:26:03.7786822Z copying torch\fx\experimental\unification\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-06-01T21:26:03.7799009Z creating build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-06-01T21:26:03.7802640Z copying torch\fx\experimental\unification\multipledispatch\conflict.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-06-01T21:26:03.7812866Z copying torch\fx\experimental\unification\multipledispatch\core.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-06-01T21:26:03.7822939Z copying torch\fx\experimental\unification\multipledispatch\dispatcher.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-06-01T21:26:03.7834107Z copying torch\fx\experimental\unification\multipledispatch\utils.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-06-01T21:26:03.7843652Z copying torch\fx\experimental\unification\multipledispatch\variadic.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-06-01T21:26:03.7858333Z copying torch\fx\experimental\unification\multipledispatch\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-06-01T21:26:03.7865758Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\backends 2025-06-01T21:26:03.7868687Z copying torch\fx\passes\backends\cudagraphs.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\backends 2025-06-01T21:26:03.7878562Z copying torch\fx\passes\backends\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\backends 2025-06-01T21:26:03.7885014Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\dialect 2025-06-01T21:26:03.7892729Z copying torch\fx\passes\dialect\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\dialect 2025-06-01T21:26:03.7899046Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-06-01T21:26:03.7902118Z copying torch\fx\passes\infra\partitioner.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-06-01T21:26:03.7917010Z copying torch\fx\passes\infra\pass_base.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-06-01T21:26:03.7928197Z copying torch\fx\passes\infra\pass_manager.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-06-01T21:26:03.7939124Z copying torch\fx\passes\infra\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-06-01T21:26:03.7961965Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\tests 2025-06-01T21:26:03.7962984Z copying torch\fx\passes\tests\test_pass_manager.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\tests 2025-06-01T21:26:03.7974180Z copying torch\fx\passes\tests\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\tests 2025-06-01T21:26:03.7981056Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-06-01T21:26:03.7985390Z copying torch\fx\passes\utils\common.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-06-01T21:26:03.7994439Z copying torch\fx\passes\utils\fuser_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-06-01T21:26:03.8011721Z copying torch\fx\passes\utils\matcher_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-06-01T21:26:03.8027341Z copying torch\fx\passes\utils\matcher_with_name_node_map_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-06-01T21:26:03.8043888Z copying torch\fx\passes\utils\source_matcher_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-06-01T21:26:03.8054221Z copying torch\fx\passes\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-06-01T21:26:03.8061779Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\dialect\common 2025-06-01T21:26:03.8065176Z copying torch\fx\passes\dialect\common\cse_pass.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\dialect\common 2025-06-01T21:26:03.8075128Z copying torch\fx\passes\dialect\common\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\dialect\common 2025-06-01T21:26:03.8081386Z creating build\lib.win-amd64-cpython-39\torch\jit\mobile 2025-06-01T21:26:03.8084308Z copying torch\jit\mobile\__init__.py -> build\lib.win-amd64-cpython-39\torch\jit\mobile 2025-06-01T21:26:03.8096543Z creating build\lib.win-amd64-cpython-39\torch\jit\_passes 2025-06-01T21:26:03.8099405Z copying torch\jit\_passes\_property_propagation.py -> build\lib.win-amd64-cpython-39\torch\jit\_passes 2025-06-01T21:26:03.8109476Z copying torch\jit\_passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\jit\_passes 2025-06-01T21:26:03.8126475Z creating build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-06-01T21:26:03.8129929Z copying torch\masked\maskedtensor\binary.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-06-01T21:26:03.8141596Z copying torch\masked\maskedtensor\core.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-06-01T21:26:03.8151634Z copying torch\masked\maskedtensor\creation.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-06-01T21:26:03.8157324Z copying torch\masked\maskedtensor\passthrough.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-06-01T21:26:03.8176492Z copying torch\masked\maskedtensor\reductions.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-06-01T21:26:03.8190835Z copying torch\masked\maskedtensor\unary.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-06-01T21:26:03.8200671Z copying torch\masked\maskedtensor\_ops_refs.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-06-01T21:26:03.8222959Z copying torch\masked\maskedtensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-06-01T21:26:03.8230619Z creating build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-06-01T21:26:03.8233950Z copying torch\nested\_internal\nested_int.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-06-01T21:26:03.8245039Z copying torch\nested\_internal\nested_tensor.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-06-01T21:26:03.8263534Z copying torch\nested\_internal\ops.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-06-01T21:26:03.8305837Z copying torch\nested\_internal\sdpa.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-06-01T21:26:03.8330162Z copying torch\nested\_internal\__init__.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-06-01T21:26:03.8336687Z creating build\lib.win-amd64-cpython-39\torch\nn\attention 2025-06-01T21:26:03.8340076Z copying torch\nn\attention\bias.py -> build\lib.win-amd64-cpython-39\torch\nn\attention 2025-06-01T21:26:03.8351549Z copying torch\nn\attention\flex_attention.py -> build\lib.win-amd64-cpython-39\torch\nn\attention 2025-06-01T21:26:03.8384773Z copying torch\nn\attention\_utils.py -> build\lib.win-amd64-cpython-39\torch\nn\attention 2025-06-01T21:26:03.8394542Z copying torch\nn\attention\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\attention 2025-06-01T21:26:03.8408270Z creating build\lib.win-amd64-cpython-39\torch\nn\backends 2025-06-01T21:26:03.8411556Z copying torch\nn\backends\thnn.py -> build\lib.win-amd64-cpython-39\torch\nn\backends 2025-06-01T21:26:03.8416960Z copying torch\nn\backends\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\backends 2025-06-01T21:26:03.8422745Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic 2025-06-01T21:26:03.8425780Z copying torch\nn\intrinsic\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic 2025-06-01T21:26:03.8440799Z creating build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:26:03.8443698Z copying torch\nn\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:26:03.8468934Z copying torch\nn\modules\adaptive.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:26:03.8479143Z copying torch\nn\modules\batchnorm.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:26:03.8498378Z copying torch\nn\modules\channelshuffle.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:26:03.8515424Z copying torch\nn\modules\container.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:26:03.8539868Z copying torch\nn\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:26:03.8739502Z copying torch\nn\modules\distance.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:26:03.8750262Z copying torch\nn\modules\dropout.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:26:03.8764239Z copying torch\nn\modules\flatten.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:26:03.8774053Z copying torch\nn\modules\fold.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:26:03.8787183Z copying torch\nn\modules\instancenorm.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:26:03.8802166Z copying torch\nn\modules\lazy.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:26:03.8812804Z copying torch\nn\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:26:03.8824374Z copying torch\nn\modules\loss.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:26:03.8868064Z copying torch\nn\modules\module.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:26:03.8915517Z copying torch\nn\modules\normalization.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:26:03.8927504Z copying torch\nn\modules\padding.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:26:03.8944648Z copying torch\nn\modules\pixelshuffle.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:26:03.8954262Z copying torch\nn\modules\pooling.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:26:03.8987939Z copying torch\nn\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:26:03.9020266Z copying torch\nn\modules\sparse.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:26:03.9035388Z copying torch\nn\modules\transformer.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:26:03.9059581Z copying torch\nn\modules\upsampling.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:26:03.9076717Z copying torch\nn\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:26:03.9086214Z copying torch\nn\modules\_functions.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:26:03.9097787Z copying torch\nn\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-06-01T21:26:03.9111723Z creating build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-06-01T21:26:03.9114781Z copying torch\nn\parallel\comm.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-06-01T21:26:03.9144425Z copying torch\nn\parallel\data_parallel.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-06-01T21:26:03.9887711Z copying torch\nn\parallel\distributed.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-06-01T21:26:03.9946308Z copying torch\nn\parallel\parallel_apply.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-06-01T21:26:03.9961538Z copying torch\nn\parallel\replicate.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-06-01T21:26:03.9972656Z copying torch\nn\parallel\scatter_gather.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-06-01T21:26:03.9984149Z copying torch\nn\parallel\_functions.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-06-01T21:26:03.9995498Z copying torch\nn\parallel\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-06-01T21:26:04.0013163Z creating build\lib.win-amd64-cpython-39\torch\nn\qat 2025-06-01T21:26:04.0016056Z copying torch\nn\qat\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\qat 2025-06-01T21:26:04.0023352Z creating build\lib.win-amd64-cpython-39\torch\nn\quantizable 2025-06-01T21:26:04.0026273Z copying torch\nn\quantizable\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantizable 2025-06-01T21:26:04.0032808Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized 2025-06-01T21:26:04.0036047Z copying torch\nn\quantized\functional.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized 2025-06-01T21:26:04.0041197Z copying torch\nn\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized 2025-06-01T21:26:04.0057223Z creating build\lib.win-amd64-cpython-39\torch\nn\utils 2025-06-01T21:26:04.0060213Z copying torch\nn\utils\clip_grad.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-06-01T21:26:04.0071552Z copying torch\nn\utils\convert_parameters.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-06-01T21:26:04.0082249Z copying torch\nn\utils\fusion.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-06-01T21:26:04.0093083Z copying torch\nn\utils\init.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-06-01T21:26:04.0107225Z copying torch\nn\utils\memory_format.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-06-01T21:26:04.0120772Z copying torch\nn\utils\parametrizations.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-06-01T21:26:04.0145514Z copying torch\nn\utils\parametrize.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-06-01T21:26:04.0163713Z copying torch\nn\utils\prune.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-06-01T21:26:04.0192038Z copying torch\nn\utils\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-06-01T21:26:04.0208505Z copying torch\nn\utils\spectral_norm.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-06-01T21:26:04.0220614Z copying torch\nn\utils\stateless.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-06-01T21:26:04.0233517Z copying torch\nn\utils\weight_norm.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-06-01T21:26:04.0245709Z copying torch\nn\utils\_deprecation_utils.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-06-01T21:26:04.0257170Z copying torch\nn\utils\_named_member_accessor.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-06-01T21:26:04.0268301Z copying torch\nn\utils\_per_sample_grad.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-06-01T21:26:04.0282876Z copying torch\nn\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-06-01T21:26:04.0294828Z creating build\lib.win-amd64-cpython-39\torch\nn\attention\experimental 2025-06-01T21:26:04.0302519Z copying torch\nn\attention\experimental\_paged_attention.py -> build\lib.win-amd64-cpython-39\torch\nn\attention\experimental 2025-06-01T21:26:04.0313296Z copying torch\nn\attention\experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\attention\experimental 2025-06-01T21:26:04.0320477Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\modules 2025-06-01T21:26:04.0323459Z copying torch\nn\intrinsic\modules\fused.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\modules 2025-06-01T21:26:04.0329010Z copying torch\nn\intrinsic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\modules 2025-06-01T21:26:04.0335537Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat 2025-06-01T21:26:04.0338406Z copying torch\nn\intrinsic\qat\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat 2025-06-01T21:26:04.0345005Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized 2025-06-01T21:26:04.0349470Z copying torch\nn\intrinsic\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized 2025-06-01T21:26:04.0355532Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-06-01T21:26:04.0358483Z copying torch\nn\intrinsic\qat\modules\conv_fused.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-06-01T21:26:04.0370596Z copying torch\nn\intrinsic\qat\modules\linear_fused.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-06-01T21:26:04.0376186Z copying torch\nn\intrinsic\qat\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-06-01T21:26:04.0382281Z copying torch\nn\intrinsic\qat\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-06-01T21:26:04.0401450Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic 2025-06-01T21:26:04.0404375Z copying torch\nn\intrinsic\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic 2025-06-01T21:26:04.0411715Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-06-01T21:26:04.0415002Z copying torch\nn\intrinsic\quantized\modules\bn_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-06-01T21:26:04.0421144Z copying torch\nn\intrinsic\quantized\modules\conv_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-06-01T21:26:04.0427430Z copying torch\nn\intrinsic\quantized\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-06-01T21:26:04.0433231Z copying torch\nn\intrinsic\quantized\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-06-01T21:26:04.0440941Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic\modules 2025-06-01T21:26:04.0443480Z copying torch\nn\intrinsic\quantized\dynamic\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic\modules 2025-06-01T21:26:04.0449002Z copying torch\nn\intrinsic\quantized\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic\modules 2025-06-01T21:26:04.0460702Z creating build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic 2025-06-01T21:26:04.0463653Z copying torch\nn\qat\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic 2025-06-01T21:26:04.0470634Z creating build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-06-01T21:26:04.0473586Z copying torch\nn\qat\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-06-01T21:26:04.0479625Z copying torch\nn\qat\modules\embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-06-01T21:26:04.0484674Z copying torch\nn\qat\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-06-01T21:26:04.0518114Z copying torch\nn\qat\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-06-01T21:26:04.0525000Z creating build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic\modules 2025-06-01T21:26:04.0528035Z copying torch\nn\qat\dynamic\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic\modules 2025-06-01T21:26:04.0533648Z copying torch\nn\qat\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic\modules 2025-06-01T21:26:04.0540841Z creating build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules 2025-06-01T21:26:04.0543938Z copying torch\nn\quantizable\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules 2025-06-01T21:26:04.0549590Z copying torch\nn\quantizable\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules 2025-06-01T21:26:04.0574964Z copying torch\nn\quantizable\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules 2025-06-01T21:26:04.0581646Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic 2025-06-01T21:26:04.0584632Z copying torch\nn\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic 2025-06-01T21:26:04.0592797Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-06-01T21:26:04.0595873Z copying torch\nn\quantized\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-06-01T21:26:04.0601621Z copying torch\nn\quantized\modules\batchnorm.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-06-01T21:26:04.0607420Z copying torch\nn\quantized\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-06-01T21:26:04.0613130Z copying torch\nn\quantized\modules\dropout.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-06-01T21:26:04.0619049Z copying torch\nn\quantized\modules\embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-06-01T21:26:04.0641315Z copying torch\nn\quantized\modules\functional_modules.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-06-01T21:26:04.0645906Z copying torch\nn\quantized\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-06-01T21:26:04.0651744Z copying torch\nn\quantized\modules\normalization.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-06-01T21:26:04.0662866Z copying torch\nn\quantized\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-06-01T21:26:04.0668382Z copying torch\nn\quantized\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-06-01T21:26:04.0673828Z copying torch\nn\quantized\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-06-01T21:26:04.0687250Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference 2025-06-01T21:26:04.0699083Z copying torch\nn\quantized\_reference\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference 2025-06-01T21:26:04.0705672Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-06-01T21:26:04.0708751Z copying torch\nn\quantized\dynamic\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-06-01T21:26:04.0714677Z copying torch\nn\quantized\dynamic\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-06-01T21:26:04.0720281Z copying torch\nn\quantized\dynamic\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-06-01T21:26:04.0729552Z copying torch\nn\quantized\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-06-01T21:26:04.0863077Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-06-01T21:26:04.0866176Z copying torch\nn\quantized\_reference\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-06-01T21:26:04.0871961Z copying torch\nn\quantized\_reference\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-06-01T21:26:04.0877423Z copying torch\nn\quantized\_reference\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-06-01T21:26:04.0887898Z copying torch\nn\quantized\_reference\modules\sparse.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-06-01T21:26:04.0893637Z copying torch\nn\quantized\_reference\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-06-01T21:26:04.0899365Z copying torch\nn\quantized\_reference\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-06-01T21:26:04.0913398Z creating build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-06-01T21:26:04.0916592Z copying torch\nn\utils\_expanded_weights\conv_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-06-01T21:26:04.0940607Z copying torch\nn\utils\_expanded_weights\conv_utils.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-06-01T21:26:04.0952927Z copying torch\nn\utils\_expanded_weights\embedding_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-06-01T21:26:04.0971559Z copying torch\nn\utils\_expanded_weights\expanded_weights_impl.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-06-01T21:26:04.0982052Z copying torch\nn\utils\_expanded_weights\expanded_weights_utils.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-06-01T21:26:04.0993394Z copying torch\nn\utils\_expanded_weights\group_norm_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-06-01T21:26:04.1004419Z copying torch\nn\utils\_expanded_weights\instance_norm_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-06-01T21:26:04.1014979Z copying torch\nn\utils\_expanded_weights\layer_norm_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-06-01T21:26:04.1026505Z copying torch\nn\utils\_expanded_weights\linear_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-06-01T21:26:04.1036036Z copying torch\nn\utils\_expanded_weights\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-06-01T21:26:04.1043263Z creating build\lib.win-amd64-cpython-39\torch\onnx\ops 2025-06-01T21:26:04.1046407Z copying torch\onnx\ops\_symbolic_impl.py -> build\lib.win-amd64-cpython-39\torch\onnx\ops 2025-06-01T21:26:04.1057848Z copying torch\onnx\ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\ops 2025-06-01T21:26:04.1078667Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-06-01T21:26:04.1081508Z copying torch\onnx\_internal\io_adapter.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-06-01T21:26:04.1099073Z copying torch\onnx\_internal\jit_utils.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-06-01T21:26:04.1111439Z copying torch\onnx\_internal\onnxruntime.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-06-01T21:26:04.1145304Z copying torch\onnx\_internal\onnx_proto_utils.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-06-01T21:26:04.1158445Z copying torch\onnx\_internal\registration.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-06-01T21:26:04.1169268Z copying torch\onnx\_internal\_exporter_legacy.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-06-01T21:26:04.1184217Z copying torch\onnx\_internal\_lazy_import.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-06-01T21:26:04.1195908Z copying torch\onnx\_internal\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-06-01T21:26:04.1205455Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:26:04.1208530Z copying torch\onnx\_internal\exporter\_analysis.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:26:04.1220364Z copying torch\onnx\_internal\exporter\_building.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:26:04.1237492Z copying torch\onnx\_internal\exporter\_capture_strategies.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:26:04.1248448Z copying torch\onnx\_internal\exporter\_compat.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:26:04.1261920Z copying torch\onnx\_internal\exporter\_constants.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:26:04.1267568Z copying torch\onnx\_internal\exporter\_core.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:26:04.1300924Z copying torch\onnx\_internal\exporter\_decomp.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:26:04.1310961Z copying torch\onnx\_internal\exporter\_dispatching.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:26:04.1322444Z copying torch\onnx\_internal\exporter\_dynamic_shapes.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:26:04.1332680Z copying torch\onnx\_internal\exporter\_errors.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:26:04.1338160Z copying torch\onnx\_internal\exporter\_flags.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:26:04.1348449Z copying torch\onnx\_internal\exporter\_fx_passes.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:26:04.1357863Z copying torch\onnx\_internal\exporter\_ir_passes.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:26:04.1368463Z copying torch\onnx\_internal\exporter\_isolated.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:26:04.1378460Z copying torch\onnx\_internal\exporter\_onnx_program.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:26:04.1398616Z copying torch\onnx\_internal\exporter\_registration.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:26:04.1413558Z copying torch\onnx\_internal\exporter\_reporting.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:26:04.1423232Z copying torch\onnx\_internal\exporter\_schemas.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:26:04.1439419Z copying torch\onnx\_internal\exporter\_tensors.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:26:04.1453929Z copying torch\onnx\_internal\exporter\_testing.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:26:04.1465089Z copying torch\onnx\_internal\exporter\_type_casting.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:26:04.1475845Z copying torch\onnx\_internal\exporter\_verification.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:26:04.1489152Z copying torch\onnx\_internal\exporter\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-06-01T21:26:04.1497168Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-06-01T21:26:04.1502554Z copying torch\onnx\_internal\fx\decomposition_table.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-06-01T21:26:04.1515520Z copying torch\onnx\_internal\fx\dynamo_graph_extractor.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-06-01T21:26:04.1524996Z copying torch\onnx\_internal\fx\fx_onnx_interpreter.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-06-01T21:26:04.1552424Z copying torch\onnx\_internal\fx\onnxfunction_dispatcher.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-06-01T21:26:04.1569670Z copying torch\onnx\_internal\fx\patcher.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-06-01T21:26:04.1581867Z copying torch\onnx\_internal\fx\registration.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-06-01T21:26:04.1592054Z copying torch\onnx\_internal\fx\serialization.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-06-01T21:26:04.1606783Z copying torch\onnx\_internal\fx\type_utils.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-06-01T21:26:04.1621488Z copying torch\onnx\_internal\fx\_pass.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-06-01T21:26:04.1633792Z copying torch\onnx\_internal\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-06-01T21:26:04.1641098Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib 2025-06-01T21:26:04.1649036Z copying torch\onnx\_internal\exporter\_torchlib\_tensor_typing.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib 2025-06-01T21:26:04.1659152Z copying torch\onnx\_internal\exporter\_torchlib\_torchlib_registry.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib 2025-06-01T21:26:04.1674195Z copying torch\onnx\_internal\exporter\_torchlib\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib 2025-06-01T21:26:04.1681372Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-06-01T21:26:04.1689579Z copying torch\onnx\_internal\exporter\_torchlib\ops\core.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-06-01T21:26:04.1698969Z copying torch\onnx\_internal\exporter\_torchlib\ops\hop.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-06-01T21:26:04.1708779Z copying torch\onnx\_internal\exporter\_torchlib\ops\nn.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-06-01T21:26:04.1718724Z copying torch\onnx\_internal\exporter\_torchlib\ops\symbolic.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-06-01T21:26:04.1728270Z copying torch\onnx\_internal\exporter\_torchlib\ops\symops.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-06-01T21:26:04.1738360Z copying torch\onnx\_internal\exporter\_torchlib\ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-06-01T21:26:04.1746012Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-06-01T21:26:04.1748967Z copying torch\onnx\_internal\fx\passes\decomp.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-06-01T21:26:04.1767803Z copying torch\onnx\_internal\fx\passes\functionalization.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-06-01T21:26:04.1778565Z copying torch\onnx\_internal\fx\passes\modularization.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-06-01T21:26:04.1814679Z copying torch\onnx\_internal\fx\passes\readability.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-06-01T21:26:04.1830471Z copying torch\onnx\_internal\fx\passes\type_promotion.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-06-01T21:26:04.1857035Z copying torch\onnx\_internal\fx\passes\virtualization.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-06-01T21:26:04.1867249Z copying torch\onnx\_internal\fx\passes\_utils.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-06-01T21:26:04.1879301Z copying torch\onnx\_internal\fx\passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-06-01T21:26:04.1891106Z creating build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor 2025-06-01T21:26:04.1894597Z copying torch\optim\_multi_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor 2025-06-01T21:26:04.1907198Z creating build\lib.win-amd64-cpython-39\torch\package\analyze 2025-06-01T21:26:04.1910229Z copying torch\package\analyze\find_first_use_of_broken_modules.py -> build\lib.win-amd64-cpython-39\torch\package\analyze 2025-06-01T21:26:04.1932066Z copying torch\package\analyze\is_from_package.py -> build\lib.win-amd64-cpython-39\torch\package\analyze 2025-06-01T21:26:04.1932941Z copying torch\package\analyze\trace_dependencies.py -> build\lib.win-amd64-cpython-39\torch\package\analyze 2025-06-01T21:26:04.1946485Z copying torch\package\analyze\__init__.py -> build\lib.win-amd64-cpython-39\torch\package\analyze 2025-06-01T21:26:04.1955524Z creating build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-06-01T21:26:04.1959756Z copying torch\quantization\fx\convert.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-06-01T21:26:04.1968467Z copying torch\quantization\fx\fuse.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-06-01T21:26:04.1970730Z copying torch\quantization\fx\fusion_patterns.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-06-01T21:26:04.1976802Z copying torch\quantization\fx\graph_module.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-06-01T21:26:04.1982569Z copying torch\quantization\fx\match_utils.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-06-01T21:26:04.1998762Z copying torch\quantization\fx\pattern_utils.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-06-01T21:26:04.2009091Z copying torch\quantization\fx\prepare.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-06-01T21:26:04.2042111Z copying torch\quantization\fx\quantization_patterns.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-06-01T21:26:04.2053566Z copying torch\quantization\fx\quantization_types.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-06-01T21:26:04.2060346Z copying torch\quantization\fx\utils.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-06-01T21:26:04.2068909Z copying torch\quantization\fx\_equalize.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-06-01T21:26:04.2080582Z copying torch\quantization\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-06-01T21:26:04.2089787Z creating build\lib.win-amd64-cpython-39\torch\signal\windows 2025-06-01T21:26:04.2093388Z copying torch\signal\windows\windows.py -> build\lib.win-amd64-cpython-39\torch\signal\windows 2025-06-01T21:26:04.2110234Z copying torch\signal\windows\__init__.py -> build\lib.win-amd64-cpython-39\torch\signal\windows 2025-06-01T21:26:04.2202793Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.2210251Z copying torch\testing\_internal\autocast_test_lists.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.2231990Z copying torch\testing\_internal\autograd_function_db.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.2252692Z copying torch\testing\_internal\check_kernel_launches.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.2265546Z copying torch\testing\_internal\common_cuda.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.2276129Z copying torch\testing\_internal\common_device_type.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.2310048Z copying torch\testing\_internal\common_distributed.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.2336141Z copying torch\testing\_internal\common_dist_composable.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.2346033Z copying torch\testing\_internal\common_dtype.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.2358506Z copying torch\testing\_internal\common_fsdp.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.2389121Z copying torch\testing\_internal\common_jit.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.2402803Z copying torch\testing\_internal\common_methods_invocations.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.2815941Z copying torch\testing\_internal\common_mkldnn.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.2830276Z copying torch\testing\_internal\common_modules.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.2916400Z copying torch\testing\_internal\common_mps.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.2938005Z copying torch\testing\_internal\common_nn.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.2994583Z copying torch\testing\_internal\common_optimizers.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.3046166Z copying torch\testing\_internal\common_pruning.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.3059368Z copying torch\testing\_internal\common_quantization.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.3108727Z copying torch\testing\_internal\common_quantized.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.3124295Z copying torch\testing\_internal\common_subclass.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.3137141Z copying torch\testing\_internal\common_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.3217511Z copying torch\testing\_internal\composite_compliance.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.3234190Z copying torch\testing\_internal\custom_op_db.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.3248545Z copying torch\testing\_internal\custom_tensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.3263548Z copying torch\testing\_internal\dist_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.3274752Z copying torch\testing\_internal\dynamo_test_failures.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.3285910Z copying torch\testing\_internal\fake_config_module.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.3297405Z copying torch\testing\_internal\fake_config_module2.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.3306749Z copying torch\testing\_internal\fake_config_module3.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.3317537Z copying torch\testing\_internal\hop_db.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.3329130Z copying torch\testing\_internal\hypothesis_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.3340908Z copying torch\testing\_internal\inductor_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.3351255Z copying torch\testing\_internal\jit_metaprogramming_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.3369910Z copying torch\testing\_internal\jit_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.3389080Z copying torch\testing\_internal\logging_tensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.3490200Z copying torch\testing\_internal\logging_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.3491136Z copying torch\testing\_internal\quantization_torch_package_models.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.3491984Z copying torch\testing\_internal\static_module.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.3492741Z copying torch\testing\_internal\subclasses.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.3505681Z copying torch\testing\_internal\torchbind_impls.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.3519487Z copying torch\testing\_internal\triton_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.3535581Z copying torch\testing\_internal\two_tensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.3545292Z copying torch\testing\_internal\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-06-01T21:26:04.3551558Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\codegen 2025-06-01T21:26:04.3554717Z copying torch\testing\_internal\codegen\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\codegen 2025-06-01T21:26:04.3562223Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\data 2025-06-01T21:26:04.3565348Z copying torch\testing\_internal\data\network1.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\data 2025-06-01T21:26:04.3572082Z copying torch\testing\_internal\data\network2.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\data 2025-06-01T21:26:04.3576458Z copying torch\testing\_internal\data\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\data 2025-06-01T21:26:04.3584365Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-06-01T21:26:04.3587907Z copying torch\testing\_internal\distributed\checkpoint_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-06-01T21:26:04.3598793Z copying torch\testing\_internal\distributed\common_state_dict.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-06-01T21:26:04.3609493Z copying torch\testing\_internal\distributed\ddp_under_dist_autograd_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-06-01T21:26:04.3654945Z copying torch\testing\_internal\distributed\distributed_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-06-01T21:26:04.3781517Z copying torch\testing\_internal\distributed\distributed_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-06-01T21:26:04.3791788Z copying torch\testing\_internal\distributed\fake_pg.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-06-01T21:26:04.3801875Z copying torch\testing\_internal\distributed\multi_threaded_pg.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-06-01T21:26:04.3815989Z copying torch\testing\_internal\distributed\rpc_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-06-01T21:26:04.3826512Z copying torch\testing\_internal\distributed\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-06-01T21:26:04.3833209Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\generated 2025-06-01T21:26:04.3837575Z copying torch\testing\_internal\generated\annotated_fn_args.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\generated 2025-06-01T21:26:04.4908941Z copying torch\testing\_internal\generated\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\generated 2025-06-01T21:26:04.4916428Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-06-01T21:26:04.4919765Z copying torch\testing\_internal\opinfo\core.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-06-01T21:26:04.4968259Z copying torch\testing\_internal\opinfo\refs.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-06-01T21:26:04.4979744Z copying torch\testing\_internal\opinfo\utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-06-01T21:26:04.4991704Z copying torch\testing\_internal\opinfo\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-06-01T21:26:04.5004743Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-06-01T21:26:04.5007642Z copying torch\testing\_internal\optests\aot_autograd.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-06-01T21:26:04.5018345Z copying torch\testing\_internal\optests\autograd_registration.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-06-01T21:26:04.5028199Z copying torch\testing\_internal\optests\fake_tensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-06-01T21:26:04.5034203Z copying torch\testing\_internal\optests\generate_tests.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-06-01T21:26:04.5054481Z copying torch\testing\_internal\optests\make_fx.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-06-01T21:26:04.5063480Z copying torch\testing\_internal\optests\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-06-01T21:26:04.5070760Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module 2025-06-01T21:26:04.5074138Z copying torch\testing\_internal\test_module\future_div.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module 2025-06-01T21:26:04.5084968Z copying torch\testing\_internal\test_module\no_future_div.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module 2025-06-01T21:26:04.5090778Z copying torch\testing\_internal\test_module\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module 2025-06-01T21:26:04.5097127Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn 2025-06-01T21:26:04.5100267Z copying torch\testing\_internal\distributed\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn 2025-06-01T21:26:04.5107449Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-06-01T21:26:04.5110671Z copying torch\testing\_internal\distributed\rpc\dist_autograd_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-06-01T21:26:04.5157134Z copying torch\testing\_internal\distributed\rpc\dist_optimizer_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-06-01T21:26:04.5168371Z copying torch\testing\_internal\distributed\rpc\faulty_agent_rpc_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-06-01T21:26:04.5188228Z copying torch\testing\_internal\distributed\rpc\faulty_rpc_agent_test_fixture.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-06-01T21:26:04.5198396Z copying torch\testing\_internal\distributed\rpc\rpc_agent_test_fixture.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-06-01T21:26:04.5208523Z copying torch\testing\_internal\distributed\rpc\rpc_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-06-01T21:26:04.5296623Z copying torch\testing\_internal\distributed\rpc\tensorpipe_rpc_agent_test_fixture.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-06-01T21:26:04.5307503Z copying torch\testing\_internal\distributed\rpc\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-06-01T21:26:04.5315620Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard 2025-06-01T21:26:04.5320348Z copying torch\testing\_internal\distributed\_shard\test_common.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard 2025-06-01T21:26:04.5332159Z copying torch\testing\_internal\distributed\_shard\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard 2025-06-01T21:26:04.5340967Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_tensor 2025-06-01T21:26:04.5345623Z copying torch\testing\_internal\distributed\_tensor\common_dtensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_tensor 2025-06-01T21:26:04.5364831Z copying torch\testing\_internal\distributed\_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_tensor 2025-06-01T21:26:04.5374101Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn\api 2025-06-01T21:26:04.5379043Z copying torch\testing\_internal\distributed\nn\api\remote_module_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn\api 2025-06-01T21:26:04.5398974Z copying torch\testing\_internal\distributed\nn\api\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn\api 2025-06-01T21:26:04.5458129Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\examples 2025-06-01T21:26:04.5461735Z copying torch\testing\_internal\distributed\rpc\examples\parameter_server_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\examples 2025-06-01T21:26:04.5473972Z 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-06-01T21:26:04.5487478Z copying torch\testing\_internal\distributed\rpc\examples\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\examples 2025-06-01T21:26:04.5494090Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit 2025-06-01T21:26:04.5497948Z copying torch\testing\_internal\distributed\rpc\jit\dist_autograd_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit 2025-06-01T21:26:04.5512078Z copying torch\testing\_internal\distributed\rpc\jit\rpc_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit 2025-06-01T21:26:04.5533711Z copying torch\testing\_internal\distributed\rpc\jit\rpc_test_faulty.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit 2025-06-01T21:26:04.5545089Z copying torch\testing\_internal\distributed\rpc\jit\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit 2025-06-01T21:26:04.5551617Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard\sharded_tensor 2025-06-01T21:26:04.5554882Z 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-06-01T21:26:04.5566738Z 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-06-01T21:26:04.5576151Z copying torch\testing\_internal\distributed\_shard\sharded_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard\sharded_tensor 2025-06-01T21:26:04.5588367Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-06-01T21:26:04.5591430Z copying torch\testing\_internal\opinfo\definitions\fft.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-06-01T21:26:04.5608442Z copying torch\testing\_internal\opinfo\definitions\linalg.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-06-01T21:26:04.5648422Z copying torch\testing\_internal\opinfo\definitions\nested.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-06-01T21:26:04.5680614Z copying torch\testing\_internal\opinfo\definitions\signal.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-06-01T21:26:04.5692614Z copying torch\testing\_internal\opinfo\definitions\sparse.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-06-01T21:26:04.5712535Z copying torch\testing\_internal\opinfo\definitions\special.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-06-01T21:26:04.5735222Z copying torch\testing\_internal\opinfo\definitions\_masked.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-06-01T21:26:04.5759324Z copying torch\testing\_internal\opinfo\definitions\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-06-01T21:26:04.5766467Z creating build\lib.win-amd64-cpython-39\torch\utils\backcompat 2025-06-01T21:26:04.5769632Z copying torch\utils\backcompat\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\backcompat 2025-06-01T21:26:04.5776640Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark 2025-06-01T21:26:04.5779693Z copying torch\utils\benchmark\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark 2025-06-01T21:26:04.5786402Z creating build\lib.win-amd64-cpython-39\torch\utils\bottleneck 2025-06-01T21:26:04.5805662Z copying torch\utils\bottleneck\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\bottleneck 2025-06-01T21:26:04.5810335Z copying torch\utils\bottleneck\__main__.py -> build\lib.win-amd64-cpython-39\torch\utils\bottleneck 2025-06-01T21:26:04.5823374Z creating build\lib.win-amd64-cpython-39\torch\utils\data 2025-06-01T21:26:04.5826568Z copying torch\utils\data\backward_compatibility.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-06-01T21:26:04.5832282Z copying torch\utils\data\dataloader.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-06-01T21:26:04.5865885Z copying torch\utils\data\dataset.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-06-01T21:26:04.5881258Z copying torch\utils\data\distributed.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-06-01T21:26:04.5897090Z copying torch\utils\data\graph.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-06-01T21:26:04.5907539Z copying torch\utils\data\graph_settings.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-06-01T21:26:04.5923870Z copying torch\utils\data\sampler.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-06-01T21:26:04.5934847Z copying torch\utils\data\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-06-01T21:26:04.5946753Z creating build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-06-01T21:26:04.5949545Z copying torch\utils\hipify\constants.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-06-01T21:26:04.5962052Z copying torch\utils\hipify\cuda_to_hip_mappings.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-06-01T21:26:04.6089730Z copying torch\utils\hipify\hipify_python.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-06-01T21:26:04.6113288Z copying torch\utils\hipify\version.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-06-01T21:26:04.6123720Z copying torch\utils\hipify\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-06-01T21:26:04.6135468Z creating build\lib.win-amd64-cpython-39\torch\utils\jit 2025-06-01T21:26:04.6138557Z copying torch\utils\jit\log_extract.py -> build\lib.win-amd64-cpython-39\torch\utils\jit 2025-06-01T21:26:04.6151060Z copying torch\utils\jit\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\jit 2025-06-01T21:26:04.6157191Z creating build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-06-01T21:26:04.6160082Z copying torch\utils\model_dump\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-06-01T21:26:04.6177328Z copying torch\utils\model_dump\__main__.py -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-06-01T21:26:04.6184354Z creating build\lib.win-amd64-cpython-39\torch\utils\serialization 2025-06-01T21:26:04.6187457Z copying torch\utils\serialization\config.py -> build\lib.win-amd64-cpython-39\torch\utils\serialization 2025-06-01T21:26:04.6193039Z copying torch\utils\serialization\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\serialization 2025-06-01T21:26:04.6200742Z creating build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-06-01T21:26:04.6204063Z copying torch\utils\tensorboard\summary.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-06-01T21:26:04.6225558Z copying torch\utils\tensorboard\writer.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-06-01T21:26:04.6247316Z copying torch\utils\tensorboard\_convert_np.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-06-01T21:26:04.6262308Z copying torch\utils\tensorboard\_embedding.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-06-01T21:26:04.6278816Z copying torch\utils\tensorboard\_onnx_graph.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-06-01T21:26:04.6289782Z copying torch\utils\tensorboard\_proto_graph.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-06-01T21:26:04.6299441Z copying torch\utils\tensorboard\_pytorch_graph.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-06-01T21:26:04.6309885Z copying torch\utils\tensorboard\_utils.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-06-01T21:26:04.6321596Z copying torch\utils\tensorboard\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-06-01T21:26:04.6329120Z creating build\lib.win-amd64-cpython-39\torch\utils\viz 2025-06-01T21:26:04.6332420Z copying torch\utils\viz\_cycles.py -> build\lib.win-amd64-cpython-39\torch\utils\viz 2025-06-01T21:26:04.6354196Z copying torch\utils\viz\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\viz 2025-06-01T21:26:04.6360782Z creating build\lib.win-amd64-cpython-39\torch\utils\_strobelight 2025-06-01T21:26:04.6364198Z copying torch\utils\_strobelight\cli_function_profiler.py -> build\lib.win-amd64-cpython-39\torch\utils\_strobelight 2025-06-01T21:26:04.6374604Z copying torch\utils\_strobelight\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\_strobelight 2025-06-01T21:26:04.6381931Z creating build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-06-01T21:26:04.6385300Z copying torch\utils\_sympy\functions.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-06-01T21:26:04.6411059Z copying torch\utils\_sympy\interp.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-06-01T21:26:04.6422132Z copying torch\utils\_sympy\numbers.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-06-01T21:26:04.6437123Z copying torch\utils\_sympy\printers.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-06-01T21:26:04.6452345Z copying torch\utils\_sympy\reference.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-06-01T21:26:04.6467765Z copying torch\utils\_sympy\singleton_int.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-06-01T21:26:04.6485682Z copying torch\utils\_sympy\solve.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-06-01T21:26:04.6495634Z copying torch\utils\_sympy\symbol.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-06-01T21:26:04.6505721Z copying torch\utils\_sympy\value_ranges.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-06-01T21:26:04.6526725Z copying torch\utils\_sympy\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-06-01T21:26:04.6534012Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-06-01T21:26:04.6537073Z copying torch\utils\benchmark\examples\compare.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-06-01T21:26:04.6552054Z copying torch\utils\benchmark\examples\fuzzer.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-06-01T21:26:04.6561307Z copying torch\utils\benchmark\examples\op_benchmark.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-06-01T21:26:04.6571310Z copying torch\utils\benchmark\examples\simple_timeit.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-06-01T21:26:04.6576976Z copying torch\utils\benchmark\examples\spectral_ops_fuzz_test.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-06-01T21:26:04.6597946Z copying torch\utils\benchmark\examples\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-06-01T21:26:04.6604674Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-06-01T21:26:04.6607825Z copying torch\utils\benchmark\op_fuzzers\binary.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-06-01T21:26:04.6618917Z copying torch\utils\benchmark\op_fuzzers\sparse_binary.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-06-01T21:26:04.6628670Z copying torch\utils\benchmark\op_fuzzers\sparse_unary.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-06-01T21:26:04.6645471Z copying torch\utils\benchmark\op_fuzzers\spectral.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-06-01T21:26:04.6657980Z copying torch\utils\benchmark\op_fuzzers\unary.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-06-01T21:26:04.6666939Z copying torch\utils\benchmark\op_fuzzers\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-06-01T21:26:04.6674049Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-06-01T21:26:04.6677222Z copying torch\utils\benchmark\utils\common.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-06-01T21:26:04.6687677Z copying torch\utils\benchmark\utils\compare.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-06-01T21:26:04.6697519Z copying torch\utils\benchmark\utils\compile.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-06-01T21:26:04.6707491Z copying torch\utils\benchmark\utils\cpp_jit.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-06-01T21:26:04.6717949Z copying torch\utils\benchmark\utils\fuzzer.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-06-01T21:26:04.6732797Z copying torch\utils\benchmark\utils\sparse_fuzzer.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-06-01T21:26:04.6746321Z copying torch\utils\benchmark\utils\timer.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-06-01T21:26:04.6761998Z copying torch\utils\benchmark\utils\_stubs.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-06-01T21:26:04.6803678Z copying torch\utils\benchmark\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-06-01T21:26:04.6810173Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-06-01T21:26:04.6813906Z copying torch\utils\benchmark\utils\valgrind_wrapper\timer_interface.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-06-01T21:26:04.6834626Z copying torch\utils\benchmark\utils\valgrind_wrapper\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-06-01T21:26:04.6841674Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-06-01T21:26:04.6844960Z copying torch\utils\data\datapipes\datapipe.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-06-01T21:26:04.6860364Z copying torch\utils\data\datapipes\gen_pyi.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-06-01T21:26:04.6871863Z copying torch\utils\data\datapipes\_decorator.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-06-01T21:26:04.6887800Z copying torch\utils\data\datapipes\_hook_iterator.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-06-01T21:26:04.6904280Z copying torch\utils\data\datapipes\_typing.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-06-01T21:26:04.6920101Z copying torch\utils\data\datapipes\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-06-01T21:26:04.6933649Z creating build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-06-01T21:26:04.6936935Z copying torch\utils\data\_utils\collate.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-06-01T21:26:04.6948355Z copying torch\utils\data\_utils\fetch.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-06-01T21:26:04.6958086Z copying torch\utils\data\_utils\pin_memory.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-06-01T21:26:04.6968818Z copying torch\utils\data\_utils\signal_handling.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-06-01T21:26:04.6978386Z copying torch\utils\data\_utils\worker.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-06-01T21:26:04.6992847Z copying torch\utils\data\_utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-06-01T21:26:04.7005053Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-06-01T21:26:04.7008344Z copying torch\utils\data\datapipes\dataframe\dataframes.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-06-01T21:26:04.7024907Z copying torch\utils\data\datapipes\dataframe\dataframe_wrapper.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-06-01T21:26:04.7034380Z copying torch\utils\data\datapipes\dataframe\datapipes.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-06-01T21:26:04.7050015Z copying torch\utils\data\datapipes\dataframe\structures.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-06-01T21:26:04.7064100Z copying torch\utils\data\datapipes\dataframe\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-06-01T21:26:04.7072655Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-06-01T21:26:04.7075756Z copying torch\utils\data\datapipes\iter\callable.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-06-01T21:26:04.7086611Z copying torch\utils\data\datapipes\iter\combinatorics.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-06-01T21:26:04.7097277Z copying torch\utils\data\datapipes\iter\combining.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-06-01T21:26:04.7118015Z copying torch\utils\data\datapipes\iter\filelister.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-06-01T21:26:04.7132486Z copying torch\utils\data\datapipes\iter\fileopener.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-06-01T21:26:04.7141833Z copying torch\utils\data\datapipes\iter\grouping.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-06-01T21:26:04.7152833Z copying torch\utils\data\datapipes\iter\routeddecoder.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-06-01T21:26:04.7162554Z copying torch\utils\data\datapipes\iter\selecting.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-06-01T21:26:04.7173542Z copying torch\utils\data\datapipes\iter\sharding.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-06-01T21:26:04.7183316Z copying torch\utils\data\datapipes\iter\streamreader.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-06-01T21:26:04.7199793Z copying torch\utils\data\datapipes\iter\utils.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-06-01T21:26:04.7209652Z copying torch\utils\data\datapipes\iter\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-06-01T21:26:04.7222400Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-06-01T21:26:04.7225549Z copying torch\utils\data\datapipes\map\callable.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-06-01T21:26:04.7236129Z copying torch\utils\data\datapipes\map\combinatorics.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-06-01T21:26:04.7254803Z copying torch\utils\data\datapipes\map\combining.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-06-01T21:26:04.7265805Z copying torch\utils\data\datapipes\map\grouping.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-06-01T21:26:04.7275543Z copying torch\utils\data\datapipes\map\utils.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-06-01T21:26:04.7293874Z copying torch\utils\data\datapipes\map\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-06-01T21:26:04.7301732Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-06-01T21:26:04.7304958Z copying torch\utils\data\datapipes\utils\common.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-06-01T21:26:04.7316312Z copying torch\utils\data\datapipes\utils\decoder.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-06-01T21:26:04.7327457Z copying torch\utils\data\datapipes\utils\snapshot.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-06-01T21:26:04.7346573Z copying torch\utils\data\datapipes\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-06-01T21:26:04.7355001Z creating build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-06-01T21:26:04.7358230Z copying torch\_dynamo\backends\common.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-06-01T21:26:04.7369964Z copying torch\_dynamo\backends\cudagraphs.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-06-01T21:26:04.7381400Z copying torch\_dynamo\backends\debugging.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-06-01T21:26:04.7393126Z copying torch\_dynamo\backends\distributed.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-06-01T21:26:04.7418983Z copying torch\_dynamo\backends\inductor.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-06-01T21:26:04.7428287Z copying torch\_dynamo\backends\onnxrt.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-06-01T21:26:04.7438669Z copying torch\_dynamo\backends\registry.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-06-01T21:26:04.7449760Z copying torch\_dynamo\backends\tensorrt.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-06-01T21:26:04.7455916Z copying torch\_dynamo\backends\torchxla.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-06-01T21:26:04.7466977Z copying torch\_dynamo\backends\tvm.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-06-01T21:26:04.7477434Z copying torch\_dynamo\backends\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-06-01T21:26:04.7485104Z creating build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-06-01T21:26:04.7488226Z copying torch\_dynamo\polyfills\builtins.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-06-01T21:26:04.7504136Z copying torch\_dynamo\polyfills\functools.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-06-01T21:26:04.7513889Z copying torch\_dynamo\polyfills\fx.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-06-01T21:26:04.7523771Z copying torch\_dynamo\polyfills\itertools.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-06-01T21:26:04.7544392Z copying torch\_dynamo\polyfills\loader.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-06-01T21:26:04.7553405Z copying torch\_dynamo\polyfills\operator.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-06-01T21:26:04.7564367Z copying torch\_dynamo\polyfills\os.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-06-01T21:26:04.7573770Z copying torch\_dynamo\polyfills\pytree.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-06-01T21:26:04.7589216Z copying torch\_dynamo\polyfills\sys.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-06-01T21:26:04.7594733Z copying torch\_dynamo\polyfills\tensor.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-06-01T21:26:04.7603925Z copying torch\_dynamo\polyfills\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-06-01T21:26:04.7616967Z creating build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-06-01T21:26:04.7620166Z copying torch\_dynamo\repro\after_aot.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-06-01T21:26:04.7646655Z copying torch\_dynamo\repro\after_dynamo.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-06-01T21:26:04.7660865Z copying torch\_dynamo\repro\aoti.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-06-01T21:26:04.7678251Z copying torch\_dynamo\repro\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-06-01T21:26:04.7687387Z creating build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:26:04.7690507Z copying torch\_dynamo\variables\base.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:26:04.7706848Z copying torch\_dynamo\variables\builder.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:26:04.7767658Z copying torch\_dynamo\variables\builtin.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:26:04.7815199Z copying torch\_dynamo\variables\constant.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:26:04.7830423Z copying torch\_dynamo\variables\ctx_manager.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:26:04.7867653Z copying torch\_dynamo\variables\dicts.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:26:04.7890001Z copying torch\_dynamo\variables\distributed.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:26:04.7904249Z copying torch\_dynamo\variables\functions.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:26:04.7938550Z copying torch\_dynamo\variables\higher_order_ops.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:26:04.7991045Z copying torch\_dynamo\variables\iter.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:26:04.8007234Z copying torch\_dynamo\variables\lazy.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:26:04.8017232Z copying torch\_dynamo\variables\lists.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:26:04.8039375Z copying torch\_dynamo\variables\misc.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:26:04.8068964Z copying torch\_dynamo\variables\nn_module.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:26:04.8091582Z copying torch\_dynamo\variables\optimizer.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:26:04.8105627Z copying torch\_dynamo\variables\script_object.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:26:04.8116082Z copying torch\_dynamo\variables\sdpa.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:26:04.8125146Z copying torch\_dynamo\variables\tensor.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:26:04.8151579Z copying torch\_dynamo\variables\torch.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:26:04.8182162Z copying torch\_dynamo\variables\torch_function.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:26:04.8198598Z copying torch\_dynamo\variables\user_defined.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:26:04.8270726Z copying torch\_dynamo\variables\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-06-01T21:26:04.8283977Z creating build\lib.win-amd64-cpython-39\torch\_export\db 2025-06-01T21:26:04.8287007Z copying torch\_export\db\case.py -> build\lib.win-amd64-cpython-39\torch\_export\db 2025-06-01T21:26:04.8297789Z copying torch\_export\db\gen_example.py -> build\lib.win-amd64-cpython-39\torch\_export\db 2025-06-01T21:26:04.8303366Z copying torch\_export\db\logging.py -> build\lib.win-amd64-cpython-39\torch\_export\db 2025-06-01T21:26:04.8313710Z copying torch\_export\db\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\db 2025-06-01T21:26:04.8322785Z creating build\lib.win-amd64-cpython-39\torch\_export\passes 2025-06-01T21:26:04.8326339Z copying torch\_export\passes\add_runtime_assertions_for_constraints_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-06-01T21:26:04.8339213Z copying torch\_export\passes\collect_tracepoints_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-06-01T21:26:04.8350018Z copying torch\_export\passes\constant_folding.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-06-01T21:26:04.8365577Z copying torch\_export\passes\functionalize_side_effectful_ops_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-06-01T21:26:04.8376013Z copying torch\_export\passes\insert_custom_op_guards.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-06-01T21:26:04.8386262Z copying torch\_export\passes\lift_constants_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-06-01T21:26:04.8405249Z copying torch\_export\passes\remove_runtime_assertions.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-06-01T21:26:04.8414832Z copying torch\_export\passes\replace_autocast_with_hop_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-06-01T21:26:04.8425948Z copying torch\_export\passes\replace_quantized_ops_with_standard_ops_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-06-01T21:26:04.8442225Z copying torch\_export\passes\replace_set_grad_with_hop_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-06-01T21:26:04.8456824Z copying torch\_export\passes\replace_view_ops_with_view_copy_ops_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-06-01T21:26:04.8466766Z copying torch\_export\passes\replace_with_hop_pass_util.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-06-01T21:26:04.8477851Z copying torch\_export\passes\_node_metadata_hook.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-06-01T21:26:04.8488094Z copying torch\_export\passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-06-01T21:26:04.8501609Z creating build\lib.win-amd64-cpython-39\torch\_export\pass_infra 2025-06-01T21:26:04.8505113Z copying torch\_export\pass_infra\node_metadata.py -> build\lib.win-amd64-cpython-39\torch\_export\pass_infra 2025-06-01T21:26:04.8515421Z copying torch\_export\pass_infra\proxy_value.py -> build\lib.win-amd64-cpython-39\torch\_export\pass_infra 2025-06-01T21:26:04.8525257Z copying torch\_export\pass_infra\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\pass_infra 2025-06-01T21:26:04.8532353Z creating build\lib.win-amd64-cpython-39\torch\_export\serde 2025-06-01T21:26:04.8535352Z copying torch\_export\serde\aoti_schema.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-06-01T21:26:04.8541007Z copying torch\_export\serde\dynamic_shapes.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-06-01T21:26:04.8551636Z copying torch\_export\serde\schema.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-06-01T21:26:04.8564935Z copying torch\_export\serde\schema_check.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-06-01T21:26:04.8587615Z copying torch\_export\serde\serialize.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-06-01T21:26:04.8643678Z copying torch\_export\serde\union.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-06-01T21:26:04.8655802Z copying torch\_export\serde\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-06-01T21:26:04.8668148Z creating build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:26:04.8732700Z copying torch\_export\db\examples\assume_constant_result.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:26:04.8742590Z copying torch\_export\db\examples\autograd_function.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:26:04.8754239Z copying torch\_export\db\examples\class_method.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:26:04.8764776Z copying torch\_export\db\examples\cond_branch_class_method.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:26:04.8774846Z copying torch\_export\db\examples\cond_branch_nested_function.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:26:04.8784890Z copying torch\_export\db\examples\cond_branch_nonlocal_variables.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:26:04.8795542Z copying torch\_export\db\examples\cond_closed_over_variable.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:26:04.8801254Z copying torch\_export\db\examples\cond_operands.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:26:04.8814363Z copying torch\_export\db\examples\cond_predicate.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:26:04.8823669Z copying torch\_export\db\examples\constrain_as_size_example.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:26:04.8833497Z copying torch\_export\db\examples\constrain_as_value_example.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:26:04.8846112Z copying torch\_export\db\examples\decorator.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:26:04.8851999Z copying torch\_export\db\examples\dictionary.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:26:04.8857865Z copying torch\_export\db\examples\dynamic_shape_assert.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:26:04.8863847Z copying torch\_export\db\examples\dynamic_shape_constructor.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:26:04.8869792Z copying torch\_export\db\examples\dynamic_shape_if_guard.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:26:04.8876079Z copying torch\_export\db\examples\dynamic_shape_map.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:26:04.8882286Z copying torch\_export\db\examples\dynamic_shape_round.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:26:04.8894879Z copying torch\_export\db\examples\dynamic_shape_slicing.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:26:04.8900907Z copying torch\_export\db\examples\dynamic_shape_view.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:26:04.8906913Z copying torch\_export\db\examples\fn_with_kwargs.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:26:04.8916753Z copying torch\_export\db\examples\list_contains.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:26:04.8922752Z copying torch\_export\db\examples\list_unpack.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:26:04.8929493Z copying torch\_export\db\examples\model_attr_mutation.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:26:04.8939373Z copying torch\_export\db\examples\nested_function.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:26:04.8945300Z copying torch\_export\db\examples\null_context_manager.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:26:04.8955548Z copying torch\_export\db\examples\optional_input.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:26:04.8961298Z copying torch\_export\db\examples\pytree_flatten.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:26:04.8967115Z copying torch\_export\db\examples\scalar_output.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:26:04.8973008Z copying torch\_export\db\examples\specialized_attribute.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:26:04.8978856Z copying torch\_export\db\examples\static_for_loop.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:26:04.8985045Z copying torch\_export\db\examples\static_if.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:26:04.8991090Z copying torch\_export\db\examples\tensor_setattr.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:26:04.8997020Z copying torch\_export\db\examples\type_reflection_method.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:26:04.9002751Z copying torch\_export\db\examples\unsupported_operator.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:26:04.9013868Z copying torch\_export\db\examples\user_input_mutation.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:26:04.9019405Z copying torch\_export\db\examples\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-06-01T21:26:04.9032013Z creating build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-06-01T21:26:04.9035324Z copying torch\_functorch\_activation_checkpointing\ac_logging_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-06-01T21:26:04.9046171Z copying torch\_functorch\_activation_checkpointing\graph_info_provider.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-06-01T21:26:04.9057546Z copying torch\_functorch\_activation_checkpointing\knapsack.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-06-01T21:26:04.9071766Z copying torch\_functorch\_activation_checkpointing\knapsack_evaluator.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-06-01T21:26:04.9082149Z copying torch\_functorch\_activation_checkpointing\__init__.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-06-01T21:26:04.9090928Z creating build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-06-01T21:26:04.9094073Z copying torch\_functorch\_aot_autograd\autograd_cache.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-06-01T21:26:04.9121825Z copying torch\_functorch\_aot_autograd\collect_metadata_analysis.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-06-01T21:26:04.9161013Z copying torch\_functorch\_aot_autograd\dispatch_and_compile_graph.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-06-01T21:26:04.9176524Z copying torch\_functorch\_aot_autograd\functional_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-06-01T21:26:04.9191629Z copying torch\_functorch\_aot_autograd\input_output_analysis.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-06-01T21:26:04.9207037Z copying torch\_functorch\_aot_autograd\jit_compile_runtime_wrappers.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-06-01T21:26:04.9238083Z copying torch\_functorch\_aot_autograd\logging_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-06-01T21:26:04.9249377Z copying torch\_functorch\_aot_autograd\runtime_wrappers.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-06-01T21:26:04.9291620Z copying torch\_functorch\_aot_autograd\schemas.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-06-01T21:26:04.9313689Z copying torch\_functorch\_aot_autograd\subclass_parametrization.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-06-01T21:26:04.9324237Z copying torch\_functorch\_aot_autograd\subclass_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-06-01T21:26:04.9339435Z copying torch\_functorch\_aot_autograd\traced_function_transforms.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-06-01T21:26:04.9368119Z copying torch\_functorch\_aot_autograd\utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-06-01T21:26:04.9381589Z copying torch\_functorch\_aot_autograd\__init__.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-06-01T21:26:04.9389711Z creating build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-06-01T21:26:04.9392967Z copying torch\_inductor\autoheuristic\autoheuristic.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-06-01T21:26:04.9403926Z copying torch\_inductor\autoheuristic\autoheuristic_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-06-01T21:26:04.9413866Z copying torch\_inductor\autoheuristic\learnedheuristic_interface.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-06-01T21:26:04.9428091Z copying torch\_inductor\autoheuristic\learned_heuristic_controller.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-06-01T21:26:04.9437300Z copying torch\_inductor\autoheuristic\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-06-01T21:26:04.9449871Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:26:04.9453079Z copying torch\_inductor\codegen\aoti_hipify_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:26:04.9463791Z copying torch\_inductor\codegen\block_analysis.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:26:04.9518383Z copying torch\_inductor\codegen\common.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:26:04.9553397Z copying torch\_inductor\codegen\cpp.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:26:04.9634046Z copying torch\_inductor\codegen\cpp_bmm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:26:04.9650550Z copying torch\_inductor\codegen\cpp_flex_attention_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:26:04.9671732Z copying torch\_inductor\codegen\cpp_gemm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:26:04.9701458Z copying torch\_inductor\codegen\cpp_grouped_gemm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:26:04.9716771Z copying torch\_inductor\codegen\cpp_micro_gemm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:26:04.9746522Z copying torch\_inductor\codegen\cpp_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:26:04.9757121Z copying torch\_inductor\codegen\cpp_template_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:26:04.9772420Z copying torch\_inductor\codegen\cpp_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:26:04.9789009Z copying torch\_inductor\codegen\cpp_wrapper_cpu.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:26:04.9833572Z copying torch\_inductor\codegen\cpp_wrapper_cpu_array_ref.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:26:04.9855482Z copying torch\_inductor\codegen\cpp_wrapper_gpu.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:26:04.9870333Z copying torch\_inductor\codegen\cpp_wrapper_mps.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:26:04.9880814Z copying torch\_inductor\codegen\cpu_device_op_overrides.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:26:04.9891813Z copying torch\_inductor\codegen\cuda_combined_scheduling.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:26:04.9902088Z copying torch\_inductor\codegen\debug_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:26:04.9917266Z copying torch\_inductor\codegen\halide.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:26:04.9944519Z copying torch\_inductor\codegen\memory_planning.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:26:04.9959851Z copying torch\_inductor\codegen\mps.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:26:04.9983291Z copying torch\_inductor\codegen\mps_device_op_overrides.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:26:04.9992871Z copying torch\_inductor\codegen\multi_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:26:05.0003078Z copying torch\_inductor\codegen\simd.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:26:05.0042268Z copying torch\_inductor\codegen\simd_kernel_features.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:26:05.0060769Z copying torch\_inductor\codegen\subgraph.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:26:05.0071313Z copying torch\_inductor\codegen\triton.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:26:05.0140222Z copying torch\_inductor\codegen\triton_combo_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:26:05.0180489Z copying torch\_inductor\codegen\triton_split_scan.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:26:05.0191922Z copying torch\_inductor\codegen\triton_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:26:05.0206694Z copying torch\_inductor\codegen\wrapper.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:26:05.0260588Z copying torch\_inductor\codegen\wrapper_fxir.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:26:05.0276693Z copying torch\_inductor\codegen\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-06-01T21:26:05.0283715Z creating build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-06-01T21:26:05.0287133Z copying torch\_inductor\compile_worker\subproc_pool.py -> build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-06-01T21:26:05.0298721Z copying torch\_inductor\compile_worker\utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-06-01T21:26:05.0309279Z copying torch\_inductor\compile_worker\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-06-01T21:26:05.0314345Z copying torch\_inductor\compile_worker\__main__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-06-01T21:26:05.0329403Z creating build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:26:05.0332619Z copying torch\_inductor\fx_passes\b2b_gemm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:26:05.0349775Z copying torch\_inductor\fx_passes\binary_folding.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:26:05.0372404Z copying torch\_inductor\fx_passes\ddp_fusion.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:26:05.0388386Z copying torch\_inductor\fx_passes\decompose_mem_bound_mm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:26:05.0402897Z copying torch\_inductor\fx_passes\dedupe_symint_uses.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:26:05.0412762Z copying torch\_inductor\fx_passes\efficient_conv_bn_eval.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:26:05.0423888Z copying torch\_inductor\fx_passes\freezing_patterns.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:26:05.0434478Z copying torch\_inductor\fx_passes\fuse_attention.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:26:05.0449762Z copying torch\_inductor\fx_passes\group_batch_fusion.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:26:05.0476615Z copying torch\_inductor\fx_passes\joint_graph.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:26:05.0498419Z copying torch\_inductor\fx_passes\micro_pipeline_tp.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:26:05.0520020Z copying torch\_inductor\fx_passes\misc_patterns.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:26:05.0531402Z copying torch\_inductor\fx_passes\mkldnn_fusion.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:26:05.0560079Z copying torch\_inductor\fx_passes\numeric_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:26:05.0571300Z copying torch\_inductor\fx_passes\pad_mm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:26:05.0590193Z copying torch\_inductor\fx_passes\post_grad.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:26:05.0619379Z copying torch\_inductor\fx_passes\pre_grad.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:26:05.0637314Z copying torch\_inductor\fx_passes\quantization.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:26:05.1958200Z copying torch\_inductor\fx_passes\reinplace.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:26:05.1976807Z copying torch\_inductor\fx_passes\replace_random.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:26:05.1992077Z copying torch\_inductor\fx_passes\split_cat.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:26:05.2040466Z copying torch\_inductor\fx_passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-06-01T21:26:05.2048474Z creating build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-06-01T21:26:05.2051761Z copying torch\_inductor\kernel\bmm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-06-01T21:26:05.2064032Z copying torch\_inductor\kernel\conv.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-06-01T21:26:05.2079526Z copying torch\_inductor\kernel\flex_attention.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-06-01T21:26:05.2125138Z copying torch\_inductor\kernel\flex_decoding.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-06-01T21:26:05.2141874Z copying torch\_inductor\kernel\mm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-06-01T21:26:05.2171174Z copying torch\_inductor\kernel\mm_common.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-06-01T21:26:05.2182140Z copying torch\_inductor\kernel\mm_plus_mm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-06-01T21:26:05.2192664Z copying torch\_inductor\kernel\mm_scaled_grouped.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-06-01T21:26:05.2204295Z copying torch\_inductor\kernel\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-06-01T21:26:05.2213067Z creating build\lib.win-amd64-cpython-39\torch\_inductor\package 2025-06-01T21:26:05.2216213Z copying torch\_inductor\package\build_package.py -> build\lib.win-amd64-cpython-39\torch\_inductor\package 2025-06-01T21:26:05.2221765Z copying torch\_inductor\package\package.py -> build\lib.win-amd64-cpython-39\torch\_inductor\package 2025-06-01T21:26:05.2234239Z copying torch\_inductor\package\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\package 2025-06-01T21:26:05.2242780Z creating build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-06-01T21:26:05.2245913Z copying torch\_inductor\runtime\autotune_cache.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-06-01T21:26:05.2262398Z copying torch\_inductor\runtime\benchmarking.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-06-01T21:26:05.2274650Z copying torch\_inductor\runtime\cache_dir_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-06-01T21:26:05.2285221Z copying torch\_inductor\runtime\compile_tasks.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-06-01T21:26:05.2301149Z copying torch\_inductor\runtime\coordinate_descent_tuner.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-06-01T21:26:05.2316040Z copying torch\_inductor\runtime\halide_helpers.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-06-01T21:26:05.2326221Z copying torch\_inductor\runtime\hints.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-06-01T21:26:05.2336623Z copying torch\_inductor\runtime\runtime_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-06-01T21:26:05.2349033Z copying torch\_inductor\runtime\static_cuda_launcher.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-06-01T21:26:05.2360432Z copying torch\_inductor\runtime\triton_compat.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-06-01T21:26:05.2370609Z copying torch\_inductor\runtime\triton_helpers.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-06-01T21:26:05.2387780Z copying torch\_inductor\runtime\triton_heuristics.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-06-01T21:26:05.2441045Z copying torch\_inductor\runtime\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-06-01T21:26:05.2449659Z creating build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-06-01T21:26:05.2453175Z copying torch\_inductor\autoheuristic\artifacts\_MixedMMA100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-06-01T21:26:05.2465233Z copying torch\_inductor\autoheuristic\artifacts\_MixedMMH100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-06-01T21:26:05.2476731Z copying torch\_inductor\autoheuristic\artifacts\_MMRankingA100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-06-01T21:26:05.2497470Z copying torch\_inductor\autoheuristic\artifacts\_MMRankingH100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-06-01T21:26:05.2513533Z copying torch\_inductor\autoheuristic\artifacts\_PadMMA100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-06-01T21:26:05.2523730Z copying torch\_inductor\autoheuristic\artifacts\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-06-01T21:26:05.2531905Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-06-01T21:26:05.2535293Z copying torch\_inductor\codegen\cuda\cuda_cpp_scheduling.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-06-01T21:26:05.2547759Z copying torch\_inductor\codegen\cuda\cuda_env.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-06-01T21:26:05.2558017Z copying torch\_inductor\codegen\cuda\cuda_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-06-01T21:26:05.2573068Z copying torch\_inductor\codegen\cuda\cuda_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-06-01T21:26:05.2589710Z copying torch\_inductor\codegen\cuda\cutlass_cache.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-06-01T21:26:05.2600418Z copying torch\_inductor\codegen\cuda\cutlass_presets.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-06-01T21:26:05.2616626Z copying torch\_inductor\codegen\cuda\cutlass_python_evt.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-06-01T21:26:05.2628964Z copying torch\_inductor\codegen\cuda\cutlass_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-06-01T21:26:05.2645632Z copying torch\_inductor\codegen\cuda\device_op_overrides.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-06-01T21:26:05.2657745Z copying torch\_inductor\codegen\cuda\gemm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-06-01T21:26:05.2693943Z copying torch\_inductor\codegen\cuda\serialization.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-06-01T21:26:05.2710414Z copying torch\_inductor\codegen\cuda\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-06-01T21:26:05.2718396Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-06-01T21:26:05.2721526Z copying torch\_inductor\codegen\rocm\ck_conv_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-06-01T21:26:05.2738435Z copying torch\_inductor\codegen\rocm\ck_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-06-01T21:26:05.2749137Z copying torch\_inductor\codegen\rocm\ck_tile_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-06-01T21:26:05.2763420Z copying torch\_inductor\codegen\rocm\ck_tile_universal_gemm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-06-01T21:26:05.2789117Z copying torch\_inductor\codegen\rocm\ck_universal_gemm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-06-01T21:26:05.2811056Z copying torch\_inductor\codegen\rocm\compile_command.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-06-01T21:26:05.2846771Z copying torch\_inductor\codegen\rocm\rocm_benchmark_request.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-06-01T21:26:05.2979219Z copying torch\_inductor\codegen\rocm\rocm_cpp_scheduling.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-06-01T21:26:05.2990790Z copying torch\_inductor\codegen\rocm\rocm_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-06-01T21:26:05.3001751Z copying torch\_inductor\codegen\rocm\rocm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-06-01T21:26:05.3012745Z copying torch\_inductor\codegen\rocm\rocm_template_buffer.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-06-01T21:26:05.3030722Z copying torch\_inductor\codegen\rocm\rocm_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-06-01T21:26:05.3036427Z copying torch\_inductor\codegen\rocm\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-06-01T21:26:05.3043147Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\xpu 2025-06-01T21:26:05.3046619Z copying torch\_inductor\codegen\xpu\device_op_overrides.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\xpu 2025-06-01T21:26:05.3058710Z copying torch\_inductor\codegen\xpu\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\xpu 2025-06-01T21:26:05.3069836Z creating build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:26:05.3073209Z copying torch\_inductor\fx_passes\serialized_patterns\addmm_pattern.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:26:05.3085917Z copying torch\_inductor\fx_passes\serialized_patterns\bmm_pattern.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:26:05.3096111Z copying torch\_inductor\fx_passes\serialized_patterns\mm_pattern.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:26:05.3109991Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_1.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:26:05.3121642Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_10.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:26:05.3133853Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_11.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:26:05.3146310Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_12.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:26:05.3159726Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_13.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:26:05.3169743Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_14.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:26:05.3181334Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_15.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:26:05.3196227Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_16.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:26:05.3220727Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_17.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:26:05.3238616Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_18.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:26:05.3259874Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_19.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:26:05.3273274Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_2.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:26:05.3287441Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_20.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:26:05.3313024Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_3.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:26:05.3325883Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_4.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:26:05.3338942Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_5.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:26:05.3354983Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_6.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:26:05.3368119Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_7.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:26:05.3380509Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_8.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:26:05.3394220Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_9.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:26:05.3405688Z copying torch\_inductor\fx_passes\serialized_patterns\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:26:05.3412278Z creating build\lib.win-amd64-cpython-39\torch\_numpy\testing 2025-06-01T21:26:05.3415579Z copying torch\_numpy\testing\utils.py -> build\lib.win-amd64-cpython-39\torch\_numpy\testing 2025-06-01T21:26:05.3449931Z copying torch\_numpy\testing\__init__.py -> build\lib.win-amd64-cpython-39\torch\_numpy\testing 2025-06-01T21:26:05.3456927Z creating build\lib.win-amd64-cpython-39\torch\_refs\linalg 2025-06-01T21:26:05.3459927Z copying torch\_refs\linalg\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs\linalg 2025-06-01T21:26:05.3471838Z creating build\lib.win-amd64-cpython-39\torch\_refs\nn 2025-06-01T21:26:05.3474774Z copying torch\_refs\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs\nn 2025-06-01T21:26:05.3481416Z creating build\lib.win-amd64-cpython-39\torch\_refs\special 2025-06-01T21:26:05.3489600Z copying torch\_refs\special\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs\special 2025-06-01T21:26:05.3501268Z creating build\lib.win-amd64-cpython-39\torch\_refs\nn\functional 2025-06-01T21:26:05.3504324Z copying torch\_refs\nn\functional\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs\nn\functional 2025-06-01T21:26:05.3529312Z creating build\lib.win-amd64-cpython-39\torch\_vendor\packaging 2025-06-01T21:26:05.3532683Z copying torch\_vendor\packaging\version.py -> build\lib.win-amd64-cpython-39\torch\_vendor\packaging 2025-06-01T21:26:05.3550698Z copying torch\_vendor\packaging\_structures.py -> build\lib.win-amd64-cpython-39\torch\_vendor\packaging 2025-06-01T21:26:05.3561524Z copying torch\_vendor\packaging\__init__.py -> build\lib.win-amd64-cpython-39\torch\_vendor\packaging 2025-06-01T21:26:05.3568652Z creating build\lib.win-amd64-cpython-39\torchgen\aoti 2025-06-01T21:26:05.3571902Z copying torchgen\aoti\fallback_ops.py -> build\lib.win-amd64-cpython-39\torchgen\aoti 2025-06-01T21:26:05.3583433Z copying torchgen\aoti\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\aoti 2025-06-01T21:26:05.3590775Z creating build\lib.win-amd64-cpython-39\torchgen\api 2025-06-01T21:26:05.3593718Z copying torchgen\api\autograd.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-06-01T21:26:05.3617873Z copying torchgen\api\cpp.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-06-01T21:26:05.3636052Z copying torchgen\api\dispatcher.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-06-01T21:26:05.3646217Z copying torchgen\api\functionalization.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-06-01T21:26:05.3657100Z copying torchgen\api\lazy.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-06-01T21:26:05.3680680Z copying torchgen\api\meta.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-06-01T21:26:05.3686429Z copying torchgen\api\native.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-06-01T21:26:05.3697392Z copying torchgen\api\python.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-06-01T21:26:05.3724954Z copying torchgen\api\structured.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-06-01T21:26:05.3734386Z copying torchgen\api\translate.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-06-01T21:26:05.3750326Z copying torchgen\api\ufunc.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-06-01T21:26:05.3761958Z copying torchgen\api\unboxing.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-06-01T21:26:05.3772197Z copying torchgen\api\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-06-01T21:26:05.3778882Z creating build\lib.win-amd64-cpython-39\torchgen\dest 2025-06-01T21:26:05.3781894Z copying torchgen\dest\lazy_ir.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-06-01T21:26:05.3796463Z copying torchgen\dest\lazy_ts_lowering.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-06-01T21:26:05.3806862Z copying torchgen\dest\native_functions.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-06-01T21:26:05.3816373Z copying torchgen\dest\register_dispatch_key.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-06-01T21:26:05.3842303Z copying torchgen\dest\ufunc.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-06-01T21:26:05.3857465Z copying torchgen\dest\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-06-01T21:26:05.3869747Z creating build\lib.win-amd64-cpython-39\torchgen\executorch 2025-06-01T21:26:05.3872801Z copying torchgen\executorch\model.py -> build\lib.win-amd64-cpython-39\torchgen\executorch 2025-06-01T21:26:05.3884097Z copying torchgen\executorch\parse.py -> build\lib.win-amd64-cpython-39\torchgen\executorch 2025-06-01T21:26:05.3894375Z copying torchgen\executorch\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\executorch 2025-06-01T21:26:05.3900486Z creating build\lib.win-amd64-cpython-39\torchgen\operator_versions 2025-06-01T21:26:05.3903566Z copying torchgen\operator_versions\gen_mobile_upgraders.py -> build\lib.win-amd64-cpython-39\torchgen\operator_versions 2025-06-01T21:26:05.3961112Z copying torchgen\operator_versions\gen_mobile_upgraders_constant.py -> build\lib.win-amd64-cpython-39\torchgen\operator_versions 2025-06-01T21:26:05.3967100Z copying torchgen\operator_versions\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\operator_versions 2025-06-01T21:26:05.3979961Z creating build\lib.win-amd64-cpython-39\torchgen\selective_build 2025-06-01T21:26:05.3983009Z copying torchgen\selective_build\operator.py -> build\lib.win-amd64-cpython-39\torchgen\selective_build 2025-06-01T21:26:05.3993911Z copying torchgen\selective_build\selector.py -> build\lib.win-amd64-cpython-39\torchgen\selective_build 2025-06-01T21:26:05.4006083Z copying torchgen\selective_build\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\selective_build 2025-06-01T21:26:05.4012368Z creating build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-06-01T21:26:05.4020083Z copying torchgen\static_runtime\config.py -> build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-06-01T21:26:05.4031787Z copying torchgen\static_runtime\generator.py -> build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-06-01T21:26:05.4056479Z copying torchgen\static_runtime\gen_static_runtime_ops.py -> build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-06-01T21:26:05.4072139Z copying torchgen\static_runtime\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-06-01T21:26:05.4078445Z creating build\lib.win-amd64-cpython-39\torchgen\api\types 2025-06-01T21:26:05.4081616Z copying torchgen\api\types\signatures.py -> build\lib.win-amd64-cpython-39\torchgen\api\types 2025-06-01T21:26:05.4093306Z copying torchgen\api\types\types.py -> build\lib.win-amd64-cpython-39\torchgen\api\types 2025-06-01T21:26:05.4105947Z copying torchgen\api\types\types_base.py -> build\lib.win-amd64-cpython-39\torchgen\api\types 2025-06-01T21:26:05.4118132Z copying torchgen\api\types\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\api\types 2025-06-01T21:26:05.4126128Z creating build\lib.win-amd64-cpython-39\torchgen\executorch\api 2025-06-01T21:26:05.4129420Z copying torchgen\executorch\api\custom_ops.py -> build\lib.win-amd64-cpython-39\torchgen\executorch\api 2025-06-01T21:26:05.4140077Z copying torchgen\executorch\api\et_cpp.py -> build\lib.win-amd64-cpython-39\torchgen\executorch\api 2025-06-01T21:26:05.4153755Z copying torchgen\executorch\api\unboxing.py -> build\lib.win-amd64-cpython-39\torchgen\executorch\api 2025-06-01T21:26:05.4165866Z copying torchgen\executorch\api\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\executorch\api 2025-06-01T21:26:05.4172307Z creating build\lib.win-amd64-cpython-39\torchgen\executorch\api\types 2025-06-01T21:26:05.4175563Z copying torchgen\executorch\api\types\signatures.py -> build\lib.win-amd64-cpython-39\torchgen\executorch\api\types 2025-06-01T21:26:05.4186173Z copying torchgen\executorch\api\types\types.py -> build\lib.win-amd64-cpython-39\torchgen\executorch\api\types 2025-06-01T21:26:05.4196164Z copying torchgen\executorch\api\types\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\executorch\api\types 2025-06-01T21:26:06.2657886Z copying torch\return_types.pyi -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:06.2686278Z copying torch\_VF.pyi -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:06.4116410Z copying torch\py.typed -> build\lib.win-amd64-cpython-39\torch 2025-06-01T21:26:06.4121429Z creating build\lib.win-amd64-cpython-39\torch\bin 2025-06-01T21:26:06.4124352Z copying torch\bin\asmjit.dll -> build\lib.win-amd64-cpython-39\torch\bin 2025-06-01T21:26:06.4135182Z copying torch\bin\fbgemm.dll -> build\lib.win-amd64-cpython-39\torch\bin 2025-06-01T21:26:06.4194150Z copying torch\bin\FileStoreTest.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-06-01T21:26:06.4205674Z copying torch\bin\ProcessGroupGlooAsyncTest.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-06-01T21:26:06.4222320Z copying torch\bin\ProcessGroupGlooTest.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-06-01T21:26:06.4233455Z copying torch\bin\protoc.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-06-01T21:26:06.4269008Z copying torch\bin\TCPStoreTest.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-06-01T21:26:06.4280535Z copying torch\bin\test_api.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-06-01T21:26:06.4369730Z copying torch\bin\test_edge_op_registration.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-06-01T21:26:06.4379640Z copying torch\bin\test_jit.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-06-01T21:26:06.4433399Z copying torch\bin\test_lazy.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-06-01T21:26:06.4476632Z copying torch\bin\test_nativert.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-06-01T21:26:06.4488555Z copying torch\bin\test_tensorexpr.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-06-01T21:26:06.4548524Z copying torch\bin\tutorial_tensorexpr.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-06-01T21:26:06.4556686Z creating build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.4559813Z copying torch\test\apply_utils_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.4569900Z copying torch\test\atest.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.4580637Z copying torch\test\backend_fallback_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.4590465Z copying torch\test\basic.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.4607033Z copying torch\test\broadcast_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.4617498Z copying torch\test\c10_accumulate_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.4626886Z copying torch\test\c10_ArrayRef_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.4636460Z copying torch\test\c10_bfloat16_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.4646273Z copying torch\test\c10_Bitset_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.4656772Z copying torch\test\c10_bit_cast_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.4665379Z copying torch\test\c10_CompileTimeFunctionPointer_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.4674943Z copying torch\test\c10_complex_math_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.4685442Z copying torch\test\c10_complex_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.4696026Z copying torch\test\c10_ConstexprCrc_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.4705737Z copying torch\test\c10_cow_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.4719422Z copying torch\test\c10_cuda_CUDAAssertionsTest_1_var_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.4726590Z copying torch\test\c10_cuda_CUDAAssertionsTest_catches_stream.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.4736426Z copying torch\test\c10_cuda_CUDAAssertionsTest_catches_thread_and_block_and_device.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.4751088Z copying torch\test\c10_cuda_CUDAAssertionsTest_from_2_processes.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.4761143Z copying torch\test\c10_cuda_CUDAAssertionsTest_multiple_writes_from_blocks_and_threads.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.4770973Z copying torch\test\c10_cuda_CUDAAssertionsTest_multiple_writes_from_multiple_blocks.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.4780578Z copying torch\test\c10_cuda_CUDAAssertionsTest_multiple_writes_from_same_block.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.4789940Z copying torch\test\c10_cuda_CUDATest.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.4799688Z copying torch\test\c10_DeadlockDetection_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.4814434Z copying torch\test\c10_DeviceGuard_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.4822849Z copying torch\test\c10_Device_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.4832158Z copying torch\test\c10_DispatchKeySet_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.4842256Z copying torch\test\c10_Enumerate_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.4851947Z copying torch\test\c10_error_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.4861143Z copying torch\test\c10_exception_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.4871246Z copying torch\test\c10_flags_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.4880388Z copying torch\test\c10_generic_math_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.4890773Z copying torch\test\c10_Half_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.4900815Z copying torch\test\c10_InlineDeviceGuard_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.4915477Z copying torch\test\c10_InlineStreamGuard_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.4925376Z copying torch\test\c10_IntrusiveList_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.4935387Z copying torch\test\c10_intrusive_ptr_benchmark.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.4944341Z copying torch\test\c10_intrusive_ptr_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.4961548Z copying torch\test\c10_irange_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.4971398Z copying torch\test\c10_lazy_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.4981445Z copying torch\test\c10_LeftRight_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.4992032Z copying torch\test\c10_logging_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5011714Z copying torch\test\c10_Metaprogramming_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5021565Z copying torch\test\c10_NetworkFlow_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5032187Z copying torch\test\c10_optional_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5043703Z copying torch\test\c10_ordered_preserving_dict_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5053452Z copying torch\test\c10_registry_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5063277Z copying torch\test\c10_Scalar_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5073728Z copying torch\test\c10_Semaphore_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5084228Z copying torch\test\c10_SizesAndStrides_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5099247Z copying torch\test\c10_small_vector_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5114682Z copying torch\test\c10_ssize_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5124460Z copying torch\test\c10_StreamGuard_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5133819Z copying torch\test\c10_string_util_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5143655Z copying torch\test\c10_string_view_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5153131Z copying torch\test\c10_SymInt_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5162649Z copying torch\test\c10_Synchronized_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5172353Z copying torch\test\c10_tempfile_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5184206Z copying torch\test\c10_ThreadLocal_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5197835Z copying torch\test\c10_typeid_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5206690Z copying torch\test\c10_TypeIndex_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5216620Z copying torch\test\c10_TypeList_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5226074Z copying torch\test\c10_TypeTraits_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5236875Z copying torch\test\CppSignature_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5246148Z copying torch\test\cpu_allocator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5256724Z copying torch\test\cpu_generator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5267040Z copying torch\test\cpu_profiling_allocator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5282545Z copying torch\test\cpu_rng_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5295013Z copying torch\test\cuda_allocatorTraceTracker_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5304416Z copying torch\test\cuda_allocator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5314421Z copying torch\test\cuda_apply_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5323377Z copying torch\test\cuda_atomic_ops_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5385064Z copying torch\test\cuda_caching_host_allocator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5395149Z copying torch\test\cuda_complex_math_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5406011Z copying torch\test\cuda_complex_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5416315Z copying torch\test\cuda_cub_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5426968Z copying torch\test\cuda_cudnn_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5436914Z copying torch\test\cuda_device_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5446683Z copying torch\test\cuda_distributions_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5458427Z copying torch\test\cuda_dlconvertor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5469163Z copying torch\test\cuda_exchange_device_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5479238Z copying torch\test\cuda_generator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5489437Z copying torch\test\cuda_half_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5499790Z copying torch\test\cuda_integer_divider_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5515227Z copying torch\test\cuda_optional_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5525345Z copying torch\test\cuda_packedtensoraccessor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5535446Z copying torch\test\cuda_reportMemoryUsage_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5545862Z copying torch\test\cuda_stream_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5555750Z copying torch\test\cuda_vectorized_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5574289Z copying torch\test\Dict_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5585157Z copying torch\test\Dimname_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5594869Z copying torch\test\dlconvertor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5604838Z copying torch\test\extension_backend_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5615778Z copying torch\test\half_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5626224Z copying torch\test\IListRef_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5636814Z copying torch\test\inline_container_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5647844Z copying torch\test\ivalue_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5661378Z copying torch\test\KernelFunction_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5671969Z copying torch\test\kernel_function_legacy_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5686675Z copying torch\test\kernel_function_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5699201Z copying torch\test\kernel_lambda_legacy_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5712946Z copying torch\test\kernel_lambda_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5731047Z copying torch\test\kernel_stackbased_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5742015Z copying torch\test\lazy_tensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5753688Z copying torch\test\legacy_vmap_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5803253Z copying torch\test\List_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5803953Z copying torch\test\make_boxed_from_unboxed_functor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5804660Z copying torch\test\math_kernel_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5805987Z copying torch\test\MaybeOwned_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5817417Z copying torch\test\memory_format_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5827782Z copying torch\test\memory_overlapping_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5838122Z copying torch\test\mobile_memory_cleanup.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5848354Z copying torch\test\NamedTensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5858828Z copying torch\test\native_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5869093Z copying torch\test\operators_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5879049Z copying torch\test\operator_name_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5889650Z copying torch\test\op_allowlist_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5898414Z copying torch\test\op_registration_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5922325Z copying torch\test\packedtensoraccessor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5932927Z copying torch\test\pow_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5944800Z copying torch\test\quantized_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5955263Z copying torch\test\reduce_ops_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5965192Z copying torch\test\reportMemoryUsage_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5975241Z copying torch\test\scalar_tensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5985618Z copying torch\test\scalar_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.5996400Z copying torch\test\StorageUtils_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.6006349Z copying torch\test\stride_properties_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.6018098Z copying torch\test\tensor_iterator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.6029807Z copying torch\test\test_parallel.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.6040096Z copying torch\test\thread_init_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.6048371Z copying torch\test\type_ptr_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.6058325Z copying torch\test\type_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.6068822Z copying torch\test\undefined_tensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.6080146Z copying torch\test\verify_api_visibility.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.6088878Z copying torch\test\weakref_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.6098525Z copying torch\test\wrapdim_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.6115774Z copying torch\test\xla_tensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-06-01T21:26:06.6127198Z copying torch\distributed\optim\zero_redundancy_optimizer.pyi -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-06-01T21:26:06.6138875Z copying torch\jit\_script.pyi -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:26:06.6152053Z copying torch\nn\functional.pyi -> build\lib.win-amd64-cpython-39\torch\nn 2025-06-01T21:26:06.6169446Z copying torch\nn\parameter.pyi -> build\lib.win-amd64-cpython-39\torch\nn 2025-06-01T21:26:06.6181710Z copying torch\optim\_multi_tensor\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor 2025-06-01T21:26:06.6188063Z copying torch\utils\_config_typing.pyi -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:06.6200612Z copying torch\utils\data\datapipes\datapipe.pyi -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-06-01T21:26:06.6221651Z creating build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:26:06.6224713Z copying torch\_C\_aoti.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:26:06.6236625Z copying torch\_C\_autograd.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:26:06.6247669Z copying torch\_C\_cpu.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:26:06.6253927Z copying torch\_C\_cudnn.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:26:06.6260121Z copying torch\_C\_cusparselt.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:26:06.6270813Z copying torch\_C\_distributed_autograd.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:26:06.6282070Z copying torch\_C\_distributed_c10d.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:26:06.6300060Z copying torch\_C\_distributed_rpc.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:26:06.6312230Z copying torch\_C\_distributed_rpc_testing.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:26:06.6323314Z copying torch\_C\_functions.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:26:06.6334594Z copying torch\_C\_functorch.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:26:06.6346571Z copying torch\_C\_instruction_counter.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:26:06.6352741Z copying torch\_C\_itt.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:26:06.6358883Z copying torch\_C\_lazy.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:26:06.6369840Z copying torch\_C\_lazy_ts_backend.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:26:06.6376322Z copying torch\_C\_monitor.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:26:06.6386528Z copying torch\_C\_nn.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:26:06.6397958Z copying torch\_C\_nvtx.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:26:06.6404165Z copying torch\_C\_onnx.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:26:06.6415260Z copying torch\_C\_profiler.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:26:06.6425767Z copying torch\_C\_VariableFunctions.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:26:06.8374234Z copying torch\_C\_verbose.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:26:06.8381027Z copying torch\_C\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-06-01T21:26:06.8533448Z creating build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-06-01T21:26:06.8542500Z copying torch\_C\_dynamo\compiled_autograd.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-06-01T21:26:06.8550179Z copying torch\_C\_dynamo\eval_frame.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-06-01T21:26:06.8562138Z copying torch\_C\_dynamo\guards.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-06-01T21:26:06.8573118Z copying torch\_C\_dynamo\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-06-01T21:26:06.8579429Z creating build\lib.win-amd64-cpython-39\torch\_C\_export 2025-06-01T21:26:06.8582366Z copying torch\_C\_export\pt2_archive_constants.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_export 2025-06-01T21:26:06.8593220Z copying torch\_C\_export\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_export 2025-06-01T21:26:06.8598710Z creating build\lib.win-amd64-cpython-39\torch\_C_flatbuffer 2025-06-01T21:26:06.8605979Z copying torch\_C_flatbuffer\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\_C_flatbuffer 2025-06-01T21:26:06.8611585Z creating build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:26:06.8614425Z copying torch\lib\shm.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:26:06.8620710Z copying torch\lib\shm.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:26:06.8626217Z creating build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-06-01T21:26:06.8629458Z copying torch\lib\libshm\alloc_info.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-06-01T21:26:06.8635961Z copying torch\lib\libshm\err.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-06-01T21:26:06.8647695Z copying torch\lib\libshm\libshm.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-06-01T21:26:06.8660717Z copying torch\lib\libshm\socket.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-06-01T21:26:06.8671905Z creating build\lib.win-amd64-cpython-39\torch\lib\libshm_windows 2025-06-01T21:26:06.8674099Z copying torch\lib\libshm_windows\libshm.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm_windows 2025-06-01T21:26:06.8679607Z creating build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:26:06.8683448Z copying torch\include\advisor-annotate.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:26:06.8689540Z copying torch\include\cpuinfo.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:26:06.8696985Z copying torch\include\dnnl.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:26:06.8702886Z copying torch\include\dnnl_config.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:26:06.8709306Z copying torch\include\dnnl_debug.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:26:06.8723273Z copying torch\include\dnnl_ocl.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:26:06.8729708Z copying torch\include\dnnl_sycl.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:26:06.8736123Z copying torch\include\dnnl_sycl_types.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:26:06.8742907Z copying torch\include\dnnl_threadpool.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:26:06.8748970Z copying torch\include\dnnl_types.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:26:06.8755768Z copying torch\include\dnnl_version.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:26:06.8762156Z copying torch\include\experiments-config.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:26:06.8768162Z copying torch\include\fp16.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:26:06.8774219Z copying torch\include\fxdiv.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:26:06.8781625Z copying torch\include\ittnotify-zca.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:26:06.8788650Z copying torch\include\ittnotify.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:26:06.8798917Z copying torch\include\jitprofiling.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:26:06.8804426Z copying torch\include\libittnotify.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:26:06.8810526Z copying torch\include\libshm.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:26:06.8817014Z copying torch\include\psimd.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:26:06.8823599Z copying torch\include\pthreadpool.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:26:06.8831150Z copying torch\include\sleef.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:26:06.8840267Z copying torch\include\xnnpack.h -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:26:06.8848191Z creating build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-06-01T21:26:06.8855954Z copying torch\include\asmjit\a64.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-06-01T21:26:06.8862314Z copying torch\include\asmjit\arm.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-06-01T21:26:06.8868555Z copying torch\include\asmjit\asmjit-scope-begin.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-06-01T21:26:06.8874527Z copying torch\include\asmjit\asmjit-scope-end.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-06-01T21:26:06.8880727Z copying torch\include\asmjit\asmjit.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-06-01T21:26:06.8891909Z copying torch\include\asmjit\core.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-06-01T21:26:06.8899146Z copying torch\include\asmjit\x86.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-06-01T21:26:06.8945618Z creating build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-06-01T21:26:06.8948373Z copying torch\include\asmjit\arm\a64assembler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-06-01T21:26:06.8954751Z copying torch\include\asmjit\arm\a64builder.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-06-01T21:26:06.8961801Z copying torch\include\asmjit\arm\a64compiler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-06-01T21:26:06.8968359Z copying torch\include\asmjit\arm\a64emitter.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-06-01T21:26:06.8984309Z copying torch\include\asmjit\arm\a64globals.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-06-01T21:26:06.8991720Z copying torch\include\asmjit\arm\a64instdb.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-06-01T21:26:06.9013842Z copying torch\include\asmjit\arm\a64operand.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-06-01T21:26:06.9014752Z copying torch\include\asmjit\arm\armglobals.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-06-01T21:26:06.9015507Z copying torch\include\asmjit\arm\armoperand.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-06-01T21:26:06.9019356Z copying torch\include\asmjit\arm\armutils.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-06-01T21:26:06.9024837Z creating build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:26:06.9026832Z copying torch\include\asmjit\core\api-config.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:26:06.9033743Z copying torch\include\asmjit\core\archcommons.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:26:06.9040428Z copying torch\include\asmjit\core\archtraits.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:26:06.9047782Z copying torch\include\asmjit\core\assembler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:26:06.9058172Z copying torch\include\asmjit\core\builder.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:26:06.9065724Z copying torch\include\asmjit\core\codebuffer.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:26:06.9071976Z copying torch\include\asmjit\core\codeholder.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:26:06.9078894Z copying torch\include\asmjit\core\compiler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:26:06.9085842Z copying torch\include\asmjit\core\compilerdefs.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:26:06.9092406Z copying torch\include\asmjit\core\constpool.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:26:06.9099847Z copying torch\include\asmjit\core\cpuinfo.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:26:06.9106583Z copying torch\include\asmjit\core\emitter.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:26:06.9113769Z copying torch\include\asmjit\core\environment.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:26:06.9120972Z copying torch\include\asmjit\core\errorhandler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:26:06.9128465Z copying torch\include\asmjit\core\formatter.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:26:06.9134383Z copying torch\include\asmjit\core\func.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:26:06.9141492Z copying torch\include\asmjit\core\globals.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:26:06.9147837Z copying torch\include\asmjit\core\inst.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:26:06.9154699Z copying torch\include\asmjit\core\jitallocator.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:26:06.9161537Z copying torch\include\asmjit\core\jitruntime.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:26:06.9191270Z copying torch\include\asmjit\core\logger.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:26:06.9197244Z copying torch\include\asmjit\core\operand.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:26:06.9204491Z copying torch\include\asmjit\core\osutils.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:26:06.9210784Z copying torch\include\asmjit\core\string.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:26:06.9217623Z copying torch\include\asmjit\core\support.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:26:06.9224659Z copying torch\include\asmjit\core\target.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:26:06.9242881Z copying torch\include\asmjit\core\type.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:26:06.9243619Z copying torch\include\asmjit\core\virtmem.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:26:06.9249963Z copying torch\include\asmjit\core\zone.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:26:06.9256167Z copying torch\include\asmjit\core\zonehash.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:26:06.9262604Z copying torch\include\asmjit\core\zonelist.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:26:06.9269069Z copying torch\include\asmjit\core\zonestack.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:26:06.9275550Z copying torch\include\asmjit\core\zonestring.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:26:06.9281879Z copying torch\include\asmjit\core\zonetree.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:26:06.9288196Z copying torch\include\asmjit\core\zonevector.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-06-01T21:26:06.9294339Z creating build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-06-01T21:26:06.9297421Z copying torch\include\asmjit\x86\x86assembler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-06-01T21:26:06.9304369Z copying torch\include\asmjit\x86\x86builder.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-06-01T21:26:06.9312157Z copying torch\include\asmjit\x86\x86compiler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-06-01T21:26:06.9317819Z copying torch\include\asmjit\x86\x86emitter.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-06-01T21:26:06.9332852Z copying torch\include\asmjit\x86\x86globals.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-06-01T21:26:06.9341220Z copying torch\include\asmjit\x86\x86instdb.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-06-01T21:26:06.9348205Z copying torch\include\asmjit\x86\x86operand.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-06-01T21:26:06.9354812Z creating build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9357685Z copying torch\include\ATen\AccumulateType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9364061Z copying torch\include\ATen\ArrayRef.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9369806Z copying torch\include\ATen\ATen.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9376163Z copying torch\include\ATen\autocast_mode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9383181Z copying torch\include\ATen\Backend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9394046Z copying torch\include\ATen\Backtrace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9400049Z copying torch\include\ATen\BlasBackend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9406528Z copying torch\include\ATen\CachedTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9412835Z copying torch\include\ATen\ceil_div.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9418796Z copying torch\include\ATen\code_template.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9425296Z copying torch\include\ATen\CollapseDims.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9431750Z copying torch\include\ATen\CompositeExplicitAutogradFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9438396Z copying torch\include\ATen\CompositeExplicitAutogradFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9445467Z copying torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9452512Z copying torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9459300Z copying torch\include\ATen\CompositeImplicitAutogradFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9465733Z copying torch\include\ATen\CompositeImplicitAutogradFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9472993Z copying torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9479737Z copying torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9490259Z copying torch\include\ATen\Config.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9496919Z copying torch\include\ATen\Context.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9503709Z copying torch\include\ATen\cpp_custom_type_hack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9510024Z copying torch\include\ATen\CPUApplyUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9516353Z copying torch\include\ATen\CPUFixedAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9523354Z copying torch\include\ATen\CPUFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9530396Z copying torch\include\ATen\CPUFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9538453Z copying torch\include\ATen\CPUGeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9544324Z copying torch\include\ATen\CUDAFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9550773Z copying torch\include\ATen\CUDAFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9562097Z copying torch\include\ATen\Device.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9568281Z copying torch\include\ATen\DeviceAccelerator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9574830Z copying torch\include\ATen\DeviceGuard.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9581841Z copying torch\include\ATen\Dimname.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9587926Z copying torch\include\ATen\DimVector.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9594065Z copying torch\include\ATen\Dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9601787Z copying torch\include\ATen\Dispatch_v2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9608795Z copying torch\include\ATen\div_rtn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9615339Z copying torch\include\ATen\DLConvertor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9621833Z copying torch\include\ATen\dlpack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9628184Z copying torch\include\ATen\DynamicLibrary.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9635311Z copying torch\include\ATen\EmptyTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9646264Z copying torch\include\ATen\ExpandBase.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9652701Z copying torch\include\ATen\ExpandUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9659822Z copying torch\include\ATen\Formatting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9666195Z copying torch\include\ATen\FunctionalStorageImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9672677Z copying torch\include\ATen\FunctionalTensorWrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9680870Z copying torch\include\ATen\Functions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9688211Z copying torch\include\ATen\FuncTorchTLS.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9695556Z copying torch\include\ATen\Generator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9701654Z copying torch\include\ATen\InferSize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9708141Z copying torch\include\ATen\InitialTensorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9722985Z copying torch\include\ATen\jiterator_macros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9726430Z copying torch\include\ATen\jit_macros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9733142Z copying torch\include\ATen\Layout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9740438Z copying torch\include\ATen\LegacyBatchedFallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9747139Z copying torch\include\ATen\LegacyBatchedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9755786Z copying torch\include\ATen\LegacyVmapMode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9759855Z copying torch\include\ATen\LegacyVmapTransforms.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9767845Z copying torch\include\ATen\LinalgBackend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9774608Z copying torch\include\ATen\MapAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9781405Z copying torch\include\ATen\MatrixRef.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9797335Z copying torch\include\ATen\MemoryOverlap.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9803581Z copying torch\include\ATen\MetaFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9810137Z copying torch\include\ATen\MetaFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9817025Z copying torch\include\ATen\MethodOperators.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9823441Z copying torch\include\ATen\NamedTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9829594Z copying torch\include\ATen\NamedTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9835931Z copying torch\include\ATen\NativeFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9843876Z copying torch\include\ATen\NativeMetaFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9851961Z copying torch\include\ATen\NestedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9864213Z copying torch\include\ATen\NumericUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9869983Z copying torch\include\ATen\OpaqueTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9876538Z copying torch\include\ATen\Operators.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9883807Z copying torch\include\ATen\OpMathType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9890174Z copying torch\include\ATen\PadNd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9896671Z copying torch\include\ATen\Parallel-inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9902721Z copying torch\include\ATen\Parallel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9909168Z copying torch\include\ATen\ParallelFuture.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9915376Z copying torch\include\ATen\ParallelNative.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9921439Z copying torch\include\ATen\ParallelOpenMP.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9932531Z copying torch\include\ATen\PTThreadPool.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9939004Z copying torch\include\ATen\PythonTorchFunctionTLS.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9945345Z copying torch\include\ATen\record_function.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9952237Z copying torch\include\ATen\RedispatchFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:06.9979354Z copying torch\include\ATen\RegistrationDeclarations.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:07.0012137Z copying torch\include\ATen\ROCmFABackend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:07.0018635Z copying torch\include\ATen\SavedTensorHooks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:07.0025024Z copying torch\include\ATen\Scalar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:07.0031318Z copying torch\include\ATen\ScalarOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:07.0038931Z copying torch\include\ATen\ScalarType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:07.0044698Z copying torch\include\ATen\SDPBackend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:07.0050738Z copying torch\include\ATen\SequenceNumber.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:07.0057202Z copying torch\include\ATen\SmallVector.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:07.0063398Z copying torch\include\ATen\SparseCsrTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:07.0069964Z copying torch\include\ATen\SparseCsrTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:07.0076979Z copying torch\include\ATen\SparseTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:07.0084545Z copying torch\include\ATen\Storage.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:07.0090539Z copying torch\include\ATen\StorageUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:07.0096662Z copying torch\include\ATen\Tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:07.0102692Z copying torch\include\ATen\TensorAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:07.0113776Z copying torch\include\ATen\TensorGeometry.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:07.0120228Z copying torch\include\ATen\TensorIndexing.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:07.0127238Z copying torch\include\ATen\TensorIterator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:07.0134456Z copying torch\include\ATen\TensorIteratorInternal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:07.0141927Z copying torch\include\ATen\TensorMeta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:07.0147806Z copying torch\include\ATen\TensorNames.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:07.0154532Z copying torch\include\ATen\TensorOperators.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:07.0161282Z copying torch\include\ATen\TensorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:07.0167956Z copying torch\include\ATen\TensorSubclassLikeUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:07.0174674Z copying torch\include\ATen\TensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:07.0182309Z copying torch\include\ATen\ThreadLocalPythonObjects.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:07.0188031Z copying torch\include\ATen\ThreadLocalState.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:07.0194737Z copying torch\include\ATen\TracerMode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:07.0201212Z copying torch\include\ATen\TypeDefault.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:07.0207079Z copying torch\include\ATen\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:07.0214471Z copying torch\include\ATen\Version.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:07.0228651Z copying torch\include\ATen\VmapGeneratedPlumbing.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:07.0245578Z copying torch\include\ATen\WrapDimUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:07.0252179Z copying torch\include\ATen\WrapDimUtilsMulti.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-06-01T21:26:07.0257976Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0261037Z copying torch\include\ATen\core\alias_info.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0267499Z copying torch\include\ATen\core\Array.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0273563Z copying torch\include\ATen\core\ATenGeneral.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0279712Z copying torch\include\ATen\core\ATenOpList.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0290764Z copying torch\include\ATen\core\ATen_fwd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0297787Z copying torch\include\ATen\core\aten_interned_strings.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0304913Z copying torch\include\ATen\core\ATen_pch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0311095Z copying torch\include\ATen\core\Backtrace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0317000Z copying torch\include\ATen\core\blob.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0324444Z copying torch\include\ATen\core\builtin_function.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0329719Z copying torch\include\ATen\core\CachingHostAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0336617Z copying torch\include\ATen\core\CheckMemoryFormat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0342938Z copying torch\include\ATen\core\class_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0349566Z copying torch\include\ATen\core\custom_class.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0355964Z copying torch\include\ATen\core\DeprecatedTypeProperties.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0362455Z copying torch\include\ATen\core\DeprecatedTypePropertiesRegistry.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0369616Z copying torch\include\ATen\core\Dict.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0376236Z copying torch\include\ATen\core\Dict_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0382674Z copying torch\include\ATen\core\Dimname.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0388976Z copying torch\include\ATen\core\DimVector.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0395209Z copying torch\include\ATen\core\DistributionsHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0401681Z copying torch\include\ATen\core\dynamic_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0413891Z copying torch\include\ATen\core\enum_tag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0419774Z copying torch\include\ATen\core\enum_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0426057Z copying torch\include\ATen\core\Formatting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0432238Z copying torch\include\ATen\core\function.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0438374Z copying torch\include\ATen\core\functional.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0444746Z copying torch\include\ATen\core\function_schema.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0451737Z copying torch\include\ATen\core\function_schema_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0458089Z copying torch\include\ATen\core\Generator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0464611Z copying torch\include\ATen\core\GeneratorForPrivateuseone.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0471133Z copying torch\include\ATen\core\grad_mode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0477445Z copying torch\include\ATen\core\IListRef.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0489560Z copying torch\include\ATen\core\IListRef_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0496188Z copying torch\include\ATen\core\interned_strings.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0503199Z copying torch\include\ATen\core\interned_strings_class.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0510845Z copying torch\include\ATen\core\ivalue.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0517311Z copying torch\include\ATen\core\ivalue_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0525013Z copying torch\include\ATen\core\ivalue_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0531348Z copying torch\include\ATen\core\jit_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0539797Z copying torch\include\ATen\core\jit_type_base.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0546558Z copying torch\include\ATen\core\LegacyTypeDispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0553057Z copying torch\include\ATen\core\List.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0559794Z copying torch\include\ATen\core\List_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0566893Z copying torch\include\ATen\core\MT19937RNGEngine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0582477Z copying torch\include\ATen\core\NamedTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0589424Z copying torch\include\ATen\core\NestedIntSymNodeImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0596297Z copying torch\include\ATen\core\operator_name.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0605415Z copying torch\include\ATen\core\PhiloxRNGEngine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0616125Z copying torch\include\ATen\core\PythonFallbackKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0625862Z copying torch\include\ATen\core\PythonOpRegistrationTrampoline.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0635477Z copying torch\include\ATen\core\qualified_name.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0645327Z copying torch\include\ATen\core\QuantizerBase.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0652859Z copying torch\include\ATen\core\Range.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0659660Z copying torch\include\ATen\core\Reduction.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0670536Z copying torch\include\ATen\core\rref_interface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0677927Z copying torch\include\ATen\core\Scalar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0684165Z copying torch\include\ATen\core\ScalarType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0690226Z copying torch\include\ATen\core\stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0697131Z copying torch\include\ATen\core\symbol.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0703445Z copying torch\include\ATen\core\Tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0710455Z copying torch\include\ATen\core\TensorAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0716954Z copying torch\include\ATen\core\TensorBase.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0724719Z copying torch\include\ATen\core\TensorBody.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0734569Z copying torch\include\ATen\core\TorchDispatchUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0741280Z copying torch\include\ATen\core\TransformationHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0760168Z copying torch\include\ATen\core\typeid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0767687Z copying torch\include\ATen\core\type_factory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0772875Z copying torch\include\ATen\core\type_ptr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0779479Z copying torch\include\ATen\core\UndefinedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0785511Z copying torch\include\ATen\core\UnsafeFromTH.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0791951Z copying torch\include\ATen\core\VariableHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0798358Z copying torch\include\ATen\core\Variadic.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0804622Z copying torch\include\ATen\core\Vitals.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-06-01T21:26:07.0810121Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-06-01T21:26:07.0813224Z copying torch\include\ATen\core\boxing\BoxedKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-06-01T21:26:07.0819832Z copying torch\include\ATen\core\boxing\BoxedKernel_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-06-01T21:26:07.0826421Z copying torch\include\ATen\core\boxing\KernelFunction.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-06-01T21:26:07.0832778Z copying torch\include\ATen\core\boxing\KernelFunction_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-06-01T21:26:07.0847466Z copying torch\include\ATen\core\boxing\OperatorKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-06-01T21:26:07.0852969Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-06-01T21:26:07.0855831Z copying torch\include\ATen\core\boxing\impl\boxing.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-06-01T21:26:07.0863066Z 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-06-01T21:26:07.0869791Z copying torch\include\ATen\core\boxing\impl\test_helpers.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-06-01T21:26:07.0879262Z copying torch\include\ATen\core\boxing\impl\WrapFunctionIntoFunctor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-06-01T21:26:07.1015290Z copying torch\include\ATen\core\boxing\impl\WrapFunctionIntoRuntimeFunctor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-06-01T21:26:07.1021273Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-06-01T21:26:07.1024464Z copying torch\include\ATen\core\dispatch\CppSignature.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-06-01T21:26:07.1030681Z copying torch\include\ATen\core\dispatch\Dispatcher.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-06-01T21:26:07.1037977Z copying torch\include\ATen\core\dispatch\DispatchKeyExtractor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-06-01T21:26:07.1044615Z copying torch\include\ATen\core\dispatch\ObservedOperators.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-06-01T21:26:07.1055230Z copying torch\include\ATen\core\dispatch\OperatorEntry.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-06-01T21:26:07.1061792Z copying torch\include\ATen\core\dispatch\OperatorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-06-01T21:26:07.1068387Z copying torch\include\ATen\core\dispatch\RegistrationHandleRAII.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-06-01T21:26:07.1074236Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration 2025-06-01T21:26:07.1077206Z copying torch\include\ATen\core\op_registration\adaption.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration 2025-06-01T21:26:07.1083667Z copying torch\include\ATen\core\op_registration\infer_schema.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration 2025-06-01T21:26:07.1090194Z copying torch\include\ATen\core\op_registration\op_allowlist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration 2025-06-01T21:26:07.1096605Z copying torch\include\ATen\core\op_registration\op_registration.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration 2025-06-01T21:26:07.1234689Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu 2025-06-01T21:26:07.1237856Z copying torch\include\ATen\cpu\FlushDenormal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu 2025-06-01T21:26:07.1244077Z copying torch\include\ATen\cpu\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu 2025-06-01T21:26:07.1250423Z copying torch\include\ATen\cpu\vml.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu 2025-06-01T21:26:07.1256109Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-06-01T21:26:07.1258955Z copying torch\include\ATen\cpu\vec\functional.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-06-01T21:26:07.1265906Z copying torch\include\ATen\cpu\vec\functional_base.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-06-01T21:26:07.1271877Z copying torch\include\ATen\cpu\vec\functional_bfloat16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-06-01T21:26:07.1278881Z copying torch\include\ATen\cpu\vec\intrinsics.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-06-01T21:26:07.1406792Z copying torch\include\ATen\cpu\vec\vec.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-06-01T21:26:07.1413098Z copying torch\include\ATen\cpu\vec\vec_base.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-06-01T21:26:07.1420540Z copying torch\include\ATen\cpu\vec\vec_convert.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-06-01T21:26:07.1426931Z copying torch\include\ATen\cpu\vec\vec_half.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-06-01T21:26:07.1700240Z copying torch\include\ATen\cpu\vec\vec_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-06-01T21:26:07.1705816Z copying torch\include\ATen\cpu\vec\vec_n.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-06-01T21:26:07.1712186Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-06-01T21:26:07.1715123Z copying torch\include\ATen\cpu\vec\sve\sve_helper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-06-01T21:26:07.1728226Z copying torch\include\ATen\cpu\vec\sve\vec_bfloat16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-06-01T21:26:07.1729493Z copying torch\include\ATen\cpu\vec\sve\vec_common_sve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-06-01T21:26:07.1739807Z copying torch\include\ATen\cpu\vec\sve\vec_double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-06-01T21:26:07.1748422Z copying torch\include\ATen\cpu\vec\sve\vec_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-06-01T21:26:07.1755411Z copying torch\include\ATen\cpu\vec\sve\vec_int.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-06-01T21:26:07.1763723Z copying torch\include\ATen\cpu\vec\sve\vec_qint.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-06-01T21:26:07.1768570Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-06-01T21:26:07.1771471Z copying torch\include\ATen\cpu\vec\vec128\vec128.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-06-01T21:26:07.1777801Z copying torch\include\ATen\cpu\vec\vec128\vec128_bfloat16_neon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-06-01T21:26:07.1784934Z copying torch\include\ATen\cpu\vec\vec128\vec128_convert.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-06-01T21:26:07.1791475Z copying torch\include\ATen\cpu\vec\vec128\vec128_float_neon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-06-01T21:26:07.1803137Z copying torch\include\ATen\cpu\vec\vec128\vec128_half_neon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-06-01T21:26:07.1810227Z 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-06-01T21:26:07.1815865Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-06-01T21:26:07.1818767Z copying torch\include\ATen\cpu\vec\vec256\missing_vld1_neon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-06-01T21:26:07.1825344Z copying torch\include\ATen\cpu\vec\vec256\missing_vst1_neon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-06-01T21:26:07.1831321Z copying torch\include\ATen\cpu\vec\vec256\vec256.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-06-01T21:26:07.1837886Z copying torch\include\ATen\cpu\vec\vec256\vec256_16bit_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-06-01T21:26:07.1855784Z copying torch\include\ATen\cpu\vec\vec256\vec256_bfloat16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-06-01T21:26:07.1862405Z copying torch\include\ATen\cpu\vec\vec256\vec256_complex_double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-06-01T21:26:07.1911415Z copying torch\include\ATen\cpu\vec\vec256\vec256_complex_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-06-01T21:26:07.1918302Z copying torch\include\ATen\cpu\vec\vec256\vec256_convert.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-06-01T21:26:07.1926228Z copying torch\include\ATen\cpu\vec\vec256\vec256_double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-06-01T21:26:07.1932297Z copying torch\include\ATen\cpu\vec\vec256\vec256_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-06-01T21:26:07.1939209Z copying torch\include\ATen\cpu\vec\vec256\vec256_half.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-06-01T21:26:07.1945837Z copying torch\include\ATen\cpu\vec\vec256\vec256_int.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-06-01T21:26:07.1954863Z copying torch\include\ATen\cpu\vec\vec256\vec256_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-06-01T21:26:07.1960867Z copying torch\include\ATen\cpu\vec\vec256\vec256_qint.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-06-01T21:26:07.1967436Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-06-01T21:26:07.1970454Z 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-06-01T21:26:07.1978118Z 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-06-01T21:26:07.1983964Z 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-06-01T21:26:07.1996633Z 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-06-01T21:26:07.2003584Z 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-06-01T21:26:07.2010614Z 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-06-01T21:26:07.2018313Z 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-06-01T21:26:07.2024802Z 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-06-01T21:26:07.2031492Z 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-06-01T21:26:07.2038036Z 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-06-01T21:26:07.2045043Z 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-06-01T21:26:07.2052789Z 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-06-01T21:26:07.2059665Z 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-06-01T21:26:07.2065842Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\zarch 2025-06-01T21:26:07.2069758Z 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-06-01T21:26:07.2076443Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-06-01T21:26:07.2079370Z copying torch\include\ATen\cpu\vec\vec512\vec512.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-06-01T21:26:07.2087190Z copying torch\include\ATen\cpu\vec\vec512\vec512_bfloat16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-06-01T21:26:07.2093938Z copying torch\include\ATen\cpu\vec\vec512\vec512_complex_double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-06-01T21:26:07.2101086Z copying torch\include\ATen\cpu\vec\vec512\vec512_complex_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-06-01T21:26:07.2113991Z copying torch\include\ATen\cpu\vec\vec512\vec512_convert.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-06-01T21:26:07.2121539Z copying torch\include\ATen\cpu\vec\vec512\vec512_double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-06-01T21:26:07.2127830Z copying torch\include\ATen\cpu\vec\vec512\vec512_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-06-01T21:26:07.2134977Z copying torch\include\ATen\cpu\vec\vec512\vec512_float8.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-06-01T21:26:07.2142174Z copying torch\include\ATen\cpu\vec\vec512\vec512_int.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-06-01T21:26:07.2150559Z copying torch\include\ATen\cpu\vec\vec512\vec512_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-06-01T21:26:07.2156638Z copying torch\include\ATen\cpu\vec\vec512\vec512_qint.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-06-01T21:26:07.2163277Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:26:07.2166171Z copying torch\include\ATen\cuda\ATenCUDAGeneral.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:26:07.2173423Z copying torch\include\ATen\cuda\CachingHostAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:26:07.2179130Z copying torch\include\ATen\cuda\cub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:26:07.2185164Z copying torch\include\ATen\cuda\CUDABlas.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:26:07.2191959Z copying torch\include\ATen\cuda\CUDAConfig.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:26:07.2203575Z copying torch\include\ATen\cuda\CUDAContext.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:26:07.2209957Z copying torch\include\ATen\cuda\CUDAContextLight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:26:07.2216685Z copying torch\include\ATen\cuda\CUDADataType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:26:07.2224384Z copying torch\include\ATen\cuda\CUDADevice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:26:07.2229172Z copying torch\include\ATen\cuda\CUDAEvent.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:26:07.2235587Z copying torch\include\ATen\cuda\CUDAGeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:26:07.2242295Z copying torch\include\ATen\cuda\CUDAGraph.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:26:07.2248808Z copying torch\include\ATen\cuda\CUDASparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:26:07.2255249Z copying torch\include\ATen\cuda\CUDASparseBlas.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:26:07.2262011Z copying torch\include\ATen\cuda\CUDASparseDescriptors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:26:07.2268433Z copying torch\include\ATen\cuda\CUDAUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:26:07.2274750Z copying torch\include\ATen\cuda\EmptyTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:26:07.2280997Z copying torch\include\ATen\cuda\Exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:26:07.2287565Z copying torch\include\ATen\cuda\jiterator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:26:07.2293963Z copying torch\include\ATen\cuda\jiterator_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:26:07.2306137Z copying torch\include\ATen\cuda\llvm_jit_strings.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:26:07.2312339Z copying torch\include\ATen\cuda\PeerToPeerAccess.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:26:07.2318484Z copying torch\include\ATen\cuda\PhiloxCudaState.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:26:07.2324915Z copying torch\include\ATen\cuda\PinnedMemoryAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:26:07.2330945Z copying torch\include\ATen\cuda\Sleep.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:26:07.2337228Z copying torch\include\ATen\cuda\ThrustAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:26:07.2342712Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-06-01T21:26:07.2345652Z copying torch\include\ATen\cuda\detail\CUDAHooks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-06-01T21:26:07.2352048Z copying torch\include\ATen\cuda\detail\DeviceThreadHandles.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-06-01T21:26:07.2358230Z copying torch\include\ATen\cuda\detail\KernelUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-06-01T21:26:07.2365022Z copying torch\include\ATen\cuda\detail\LazyNVRTC.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-06-01T21:26:07.2375945Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-06-01T21:26:07.2379301Z copying torch\include\ATen\cuda\tunable\GemmCommon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-06-01T21:26:07.2386355Z copying torch\include\ATen\cuda\tunable\GemmHipblaslt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-06-01T21:26:07.2393014Z copying torch\include\ATen\cuda\tunable\GemmRocblas.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-06-01T21:26:07.2399568Z copying torch\include\ATen\cuda\tunable\StreamTimer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-06-01T21:26:07.2412010Z copying torch\include\ATen\cuda\tunable\Tunable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-06-01T21:26:07.2418295Z copying torch\include\ATen\cuda\tunable\TunableGemm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-06-01T21:26:07.2424710Z copying torch\include\ATen\cuda\tunable\TunableOp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-06-01T21:26:07.2430515Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-06-01T21:26:07.2433424Z copying torch\include\ATen\cudnn\cudnn-wrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-06-01T21:26:07.2439384Z copying torch\include\ATen\cudnn\Descriptors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-06-01T21:26:07.2445644Z copying torch\include\ATen\cudnn\Handle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-06-01T21:26:07.2452036Z copying torch\include\ATen\cudnn\Handles.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-06-01T21:26:07.2457930Z copying torch\include\ATen\cudnn\Types.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-06-01T21:26:07.2468365Z copying torch\include\ATen\cudnn\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-06-01T21:26:07.2473708Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-06-01T21:26:07.2476753Z copying torch\include\ATen\detail\AcceleratorHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-06-01T21:26:07.2484252Z copying torch\include\ATen\detail\CUDAHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-06-01T21:26:07.2489590Z copying torch\include\ATen\detail\FunctionTraits.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-06-01T21:26:07.2500861Z copying torch\include\ATen\detail\HIPHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-06-01T21:26:07.2507165Z copying torch\include\ATen\detail\HPUHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-06-01T21:26:07.2513797Z copying torch\include\ATen\detail\IPUHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-06-01T21:26:07.2520152Z copying torch\include\ATen\detail\MAIAHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-06-01T21:26:07.2526679Z copying torch\include\ATen\detail\MPSHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-06-01T21:26:07.2533481Z copying torch\include\ATen\detail\MTIAHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-06-01T21:26:07.2539888Z copying torch\include\ATen\detail\PrivateUse1HooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-06-01T21:26:07.2546493Z copying torch\include\ATen\detail\XPUHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-06-01T21:26:07.2552221Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-06-01T21:26:07.2555328Z copying torch\include\ATen\functorch\ADInterpreters.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-06-01T21:26:07.2561880Z copying torch\include\ATen\functorch\BatchedFallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-06-01T21:26:07.2568406Z copying torch\include\ATen\functorch\BatchedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-06-01T21:26:07.2580181Z copying torch\include\ATen\functorch\BatchingMetaprogramming.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-06-01T21:26:07.2586638Z copying torch\include\ATen\functorch\BatchRulesHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-06-01T21:26:07.2593500Z copying torch\include\ATen\functorch\DynamicLayer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-06-01T21:26:07.2600072Z copying torch\include\ATen\functorch\FunctionalizeInterpreter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-06-01T21:26:07.2606448Z copying torch\include\ATen\functorch\Interpreter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-06-01T21:26:07.2613172Z copying torch\include\ATen\functorch\LegacyVmapTransforms.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-06-01T21:26:07.2619454Z copying torch\include\ATen\functorch\Macros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-06-01T21:26:07.2625973Z copying torch\include\ATen\functorch\PlumbingHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-06-01T21:26:07.2632653Z copying torch\include\ATen\functorch\TensorWrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-06-01T21:26:07.2639202Z copying torch\include\ATen\functorch\VmapInterpreter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-06-01T21:26:07.2644961Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-06-01T21:26:07.2650098Z copying torch\include\ATen\hip\impl\HIPAllocatorMasqueradingAsCUDA.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-06-01T21:26:07.2656369Z copying torch\include\ATen\hip\impl\HIPCachingAllocatorMasqueradingAsCUDA.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-06-01T21:26:07.2662957Z copying torch\include\ATen\hip\impl\HIPGuardImplMasqueradingAsCUDA.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-06-01T21:26:07.2674475Z copying torch\include\ATen\hip\impl\HIPStreamMasqueradingAsCUDA.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-06-01T21:26:07.2680345Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\metal 2025-06-01T21:26:07.2684129Z copying torch\include\ATen\metal\Context.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\metal 2025-06-01T21:26:07.2688617Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-06-01T21:26:07.2691781Z copying torch\include\ATen\miopen\Descriptors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-06-01T21:26:07.2698304Z copying torch\include\ATen\miopen\Exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-06-01T21:26:07.2704678Z copying torch\include\ATen\miopen\Handle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-06-01T21:26:07.2710758Z copying torch\include\ATen\miopen\miopen-wrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-06-01T21:26:07.2721675Z copying torch\include\ATen\miopen\Types.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-06-01T21:26:07.2728350Z copying torch\include\ATen\miopen\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-06-01T21:26:07.2733649Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-06-01T21:26:07.2736954Z copying torch\include\ATen\mps\EmptyTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-06-01T21:26:07.2744031Z copying torch\include\ATen\mps\IndexKernels.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-06-01T21:26:07.2750918Z copying torch\include\ATen\mps\MPSAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-06-01T21:26:07.2758317Z copying torch\include\ATen\mps\MPSAllocatorInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-06-01T21:26:07.2770301Z copying torch\include\ATen\mps\MPSDevice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-06-01T21:26:07.2776474Z copying torch\include\ATen\mps\MPSEvent.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-06-01T21:26:07.2782506Z copying torch\include\ATen\mps\MPSGeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-06-01T21:26:07.2788729Z copying torch\include\ATen\mps\MPSGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-06-01T21:26:07.2795267Z copying torch\include\ATen\mps\MPSHooks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-06-01T21:26:07.2801444Z copying torch\include\ATen\mps\MPSProfiler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-06-01T21:26:07.2809603Z copying torch\include\ATen\mps\MPSStream.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-06-01T21:26:07.2814538Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.2817410Z copying torch\include\ATen\native\Activation.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.2823819Z copying torch\include\ATen\native\AdaptivePooling.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.2830819Z copying torch\include\ATen\native\AmpKernels.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.2837064Z copying torch\include\ATen\native\BatchLinearAlgebra.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.2848381Z copying torch\include\ATen\native\batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.2854693Z copying torch\include\ATen\native\BinaryOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.2861118Z copying torch\include\ATen\native\BucketizationUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.2867682Z copying torch\include\ATen\native\CanUse32BitIndexMath.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.2873937Z copying torch\include\ATen\native\ComplexHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.2881270Z copying torch\include\ATen\native\CompositeRandomAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.2886748Z copying torch\include\ATen\native\CompositeRandomAccessorCommon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.2893167Z copying torch\include\ATen\native\ConvolutionMM3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.2899239Z copying torch\include\ATen\native\ConvUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.2905963Z copying torch\include\ATen\native\Copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.2911587Z copying torch\include\ATen\native\CPUBlas.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.2917621Z copying torch\include\ATen\native\CPUFallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.2924234Z copying torch\include\ATen\native\Cross.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.2930735Z copying torch\include\ATen\native\DilatedConvolutionUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.2938855Z copying torch\include\ATen\native\DispatchStub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.2946035Z copying torch\include\ATen\native\Distance.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.2952686Z copying torch\include\ATen\native\Distributions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.2968553Z copying torch\include\ATen\native\DistributionTemplates.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.2981158Z copying torch\include\ATen\native\EmbeddingBag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.2988222Z copying torch\include\ATen\native\Fill.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.2994096Z copying torch\include\ATen\native\ForeachUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3001160Z copying torch\include\ATen\native\FractionalMaxPooling.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3008113Z copying torch\include\ATen\native\FunctionOfAMatrixUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3014589Z copying torch\include\ATen\native\FusedAdagrad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3020776Z copying torch\include\ATen\native\FusedAdam.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3027173Z copying torch\include\ATen\native\FusedSGD.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3032993Z copying torch\include\ATen\native\Gelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3039308Z copying torch\include\ATen\native\GridSampler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3050176Z copying torch\include\ATen\native\GridSamplerUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3056430Z copying torch\include\ATen\native\group_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3062661Z copying torch\include\ATen\native\Histogram.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3068841Z copying torch\include\ATen\native\im2col.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3076730Z copying torch\include\ATen\native\im2col_shape_check.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3083171Z copying torch\include\ATen\native\IndexingUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3089433Z copying torch\include\ATen\native\IndexKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3096310Z copying torch\include\ATen\native\layer_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3102501Z copying torch\include\ATen\native\Lerp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3108495Z copying torch\include\ATen\native\LinearAlgebra.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3114630Z copying torch\include\ATen\native\LinearAlgebraUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3129831Z copying torch\include\ATen\native\LossMulti.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3135895Z copying torch\include\ATen\native\Math.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3143921Z copying torch\include\ATen\native\MathBitFallThroughLists.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3150309Z copying torch\include\ATen\native\MathBitsFallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3157253Z copying torch\include\ATen\native\MaxPooling.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3163435Z copying torch\include\ATen\native\NonEmptyUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3169582Z copying torch\include\ATen\native\NonSymbolicBC.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3176296Z copying torch\include\ATen\native\Normalization.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3182801Z copying torch\include\ATen\native\Padding.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3188825Z copying torch\include\ATen\native\PixelShuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3199700Z copying torch\include\ATen\native\PointwiseOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3206034Z copying torch\include\ATen\native\Pool.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3212239Z copying torch\include\ATen\native\Pow.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3219272Z copying torch\include\ATen\native\RangeFactories.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3225908Z copying torch\include\ATen\native\RangeUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3232185Z copying torch\include\ATen\native\ReduceAllOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3238087Z copying torch\include\ATen\native\ReduceOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3244358Z copying torch\include\ATen\native\ReduceOpsUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3251691Z copying torch\include\ATen\native\ReductionType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3257863Z copying torch\include\ATen\native\Repeat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3263824Z copying torch\include\ATen\native\Resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3270089Z copying torch\include\ATen\native\ResizeCommon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3285779Z copying torch\include\ATen\native\RNN.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3292020Z copying torch\include\ATen\native\ScatterGatherChecks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3298600Z copying torch\include\ATen\native\SegmentReduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3305094Z copying torch\include\ATen\native\SharedReduceOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3312382Z copying torch\include\ATen\native\SobolEngineOpsUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3319887Z copying torch\include\ATen\native\Sorting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3325656Z copying torch\include\ATen\native\SortingUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3332244Z copying torch\include\ATen\native\SparseTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3338756Z copying torch\include\ATen\native\SpectralOpsUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3345475Z copying torch\include\ATen\native\StridedRandomAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3356380Z copying torch\include\ATen\native\TensorAdvancedIndexing.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3362834Z copying torch\include\ATen\native\TensorAdvancedIndexingUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3369106Z copying torch\include\ATen\native\TensorCompare.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3375963Z copying torch\include\ATen\native\TensorConversions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3382943Z copying torch\include\ATen\native\TensorDimApply.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3389346Z copying torch\include\ATen\native\TensorFactories.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3395827Z copying torch\include\ATen\native\TensorIterator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3402073Z copying torch\include\ATen\native\TensorIteratorDynamicCasting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3408857Z copying torch\include\ATen\native\TensorProperties.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3419977Z copying torch\include\ATen\native\TensorShape.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3426571Z copying torch\include\ATen\native\TensorTransformations.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3433210Z copying torch\include\ATen\native\TopKImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3439447Z copying torch\include\ATen\native\TransposeType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3445580Z copying torch\include\ATen\native\TriangularOpsUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3453713Z copying torch\include\ATen\native\TypeProperties.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3459899Z copying torch\include\ATen\native\UnaryOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3466048Z copying torch\include\ATen\native\Unfold2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3472222Z copying torch\include\ATen\native\Unfold3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3478352Z copying torch\include\ATen\native\UnfoldBackward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3484552Z copying torch\include\ATen\native\UpSample.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3508637Z copying torch\include\ATen\native\verbose_wrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3514876Z copying torch\include\ATen\native\vol2col.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-06-01T21:26:07.3520546Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\ao_sparse\quantized\cpu 2025-06-01T21:26:07.3525974Z 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-06-01T21:26:07.3532282Z 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-06-01T21:26:07.3558514Z 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-06-01T21:26:07.3564026Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:26:07.3566943Z copying torch\include\ATen\native\cpu\AtomicAddFloat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:26:07.3573639Z copying torch\include\ATen\native\cpu\avx_mathfun.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:26:07.3580349Z copying torch\include\ATen\native\cpu\CatKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:26:07.3586780Z copying torch\include\ATen\native\cpu\ChannelShuffleKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:26:07.3598185Z copying torch\include\ATen\native\cpu\CopyKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:26:07.3604295Z copying torch\include\ATen\native\cpu\DepthwiseConvKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:26:07.3610307Z copying torch\include\ATen\native\cpu\DistributionTemplates.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:26:07.3617139Z copying torch\include\ATen\native\cpu\Elu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:26:07.3623235Z copying torch\include\ATen\native\cpu\Gelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:26:07.3629392Z copying torch\include\ATen\native\cpu\GridSamplerKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:26:07.3635601Z copying torch\include\ATen\native\cpu\IndexKernelUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:26:07.3642114Z copying torch\include\ATen\native\cpu\Intrinsics.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:26:07.3648308Z copying torch\include\ATen\native\cpu\int_mm_kernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:26:07.3654725Z copying torch\include\ATen\native\cpu\IsContiguous.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:26:07.3661176Z copying torch\include\ATen\native\cpu\LogAddExp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:26:07.3667456Z copying torch\include\ATen\native\cpu\Loops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:26:07.3673657Z copying torch\include\ATen\native\cpu\MaxUnpoolKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:26:07.3679466Z copying torch\include\ATen\native\cpu\mixed_data_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:26:07.3686350Z copying torch\include\ATen\native\cpu\moments_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:26:07.3692798Z copying torch\include\ATen\native\cpu\PixelShuffleKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:26:07.3703793Z copying torch\include\ATen\native\cpu\Reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:26:07.3710371Z copying torch\include\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:26:07.3716518Z copying torch\include\ATen\native\cpu\ReduceUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:26:07.3722847Z copying torch\include\ATen\native\cpu\SampledAddmmKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:26:07.3729171Z copying torch\include\ATen\native\cpu\SerialStackImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:26:07.3735543Z copying torch\include\ATen\native\cpu\SoftmaxKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:26:07.3741782Z copying torch\include\ATen\native\cpu\SpmmReduceKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:26:07.3747807Z copying torch\include\ATen\native\cpu\StackKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:26:07.3755536Z copying torch\include\ATen\native\cpu\UpSampleKernelAVXAntialias.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:26:07.3763638Z copying torch\include\ATen\native\cpu\utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:26:07.3770118Z copying torch\include\ATen\native\cpu\WeightNormKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:26:07.3780761Z copying torch\include\ATen\native\cpu\zmath.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-06-01T21:26:07.3791403Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:07.3792220Z copying torch\include\ATen\native\cuda\Activation.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:07.3796011Z copying torch\include\ATen\native\cuda\BinaryInternal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:07.3802145Z copying torch\include\ATen\native\cuda\CompositeRandomAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:07.3808677Z copying torch\include\ATen\native\cuda\Copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:07.3819445Z copying torch\include\ATen\native\cuda\CuFFTPlanCache.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:07.3826369Z copying torch\include\ATen\native\cuda\CuFFTUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:07.3832608Z copying torch\include\ATen\native\cuda\Distributions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:07.3838754Z copying torch\include\ATen\native\cuda\DistributionTemplates.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:07.3845735Z copying torch\include\ATen\native\cuda\GridSampler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:07.3852074Z copying torch\include\ATen\native\cuda\GroupMM.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:07.3857828Z copying torch\include\ATen\native\cuda\IndexKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:07.3863834Z copying torch\include\ATen\native\cuda\IndexKernelUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:07.3870138Z copying torch\include\ATen\native\cuda\jit_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:07.3876448Z copying torch\include\ATen\native\cuda\LaunchUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:07.3882740Z copying torch\include\ATen\native\cuda\MiscUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:07.3889325Z copying torch\include\ATen\native\cuda\ReduceOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:07.3895597Z copying torch\include\ATen\native\cuda\Resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:07.3901746Z copying torch\include\ATen\native\cuda\RowwiseScaledMM.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:07.3908130Z copying torch\include\ATen\native\cuda\ScaledGroupMM.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:07.3914311Z copying torch\include\ATen\native\cuda\ScanKernels.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:07.3942925Z copying torch\include\ATen\native\cuda\Sort.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:07.3948822Z copying torch\include\ATen\native\cuda\Sorting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:07.3955509Z copying torch\include\ATen\native\cuda\SortStable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:07.3961950Z copying torch\include\ATen\native\cuda\TensorModeKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:07.3967878Z copying torch\include\ATen\native\cuda\TensorTopK.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:07.3974121Z copying torch\include\ATen\native\cuda\thread_constants.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:07.4019591Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-06-01T21:26:07.4023315Z copying torch\include\ATen\native\hip\ck_bgemm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-06-01T21:26:07.4029650Z copying torch\include\ATen\native\hip\ck_gemm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-06-01T21:26:07.4035972Z copying torch\include\ATen\native\hip\ck_gemm_template.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-06-01T21:26:07.4042520Z copying torch\include\ATen\native\hip\ck_types.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-06-01T21:26:07.4048517Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip\bgemm_kernels 2025-06-01T21:26:07.4056806Z 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-06-01T21:26:07.4063243Z 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-06-01T21:26:07.4068918Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai 2025-06-01T21:26:07.4071923Z copying torch\include\ATen\native\kleidiai\kai_kernels.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai 2025-06-01T21:26:07.4078285Z copying torch\include\ATen\native\kleidiai\kai_pack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai 2025-06-01T21:26:07.4084612Z copying torch\include\ATen\native\kleidiai\kai_ukernel_interface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai 2025-06-01T21:26:07.4090287Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu 2025-06-01T21:26:07.4094586Z copying torch\include\ATen\native\mkldnn\xpu\FusionUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu 2025-06-01T21:26:07.4100645Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-06-01T21:26:07.4103542Z copying torch\include\ATen\native\mkldnn\xpu\detail\Attr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-06-01T21:26:07.4111528Z copying torch\include\ATen\native\mkldnn\xpu\detail\DnnlExt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-06-01T21:26:07.4118210Z copying torch\include\ATen\native\mkldnn\xpu\detail\LRUCache.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-06-01T21:26:07.4124673Z copying torch\include\ATen\native\mkldnn\xpu\detail\oneDNN.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-06-01T21:26:07.4130902Z copying torch\include\ATen\native\mkldnn\xpu\detail\oneDNNContext.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-06-01T21:26:07.4137496Z copying torch\include\ATen\native\mkldnn\xpu\detail\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-06-01T21:26:07.4147566Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-06-01T21:26:07.4150521Z copying torch\include\ATen\native\mps\Copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-06-01T21:26:07.4159283Z copying torch\include\ATen\native\mps\MetalShaderLibrary.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-06-01T21:26:07.4166860Z copying torch\include\ATen\native\mps\MPSGraphSequoiaOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-06-01T21:26:07.4173334Z copying torch\include\ATen\native\mps\MPSGraphSonomaOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-06-01T21:26:07.4273433Z copying torch\include\ATen\native\mps\MPSGraphVenturaOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-06-01T21:26:07.4280122Z copying torch\include\ATen\native\mps\OperationUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-06-01T21:26:07.4286979Z copying torch\include\ATen\native\mps\TensorFactory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-06-01T21:26:07.4293079Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-06-01T21:26:07.4296103Z copying torch\include\ATen\native\mps\operations\BinaryKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-06-01T21:26:07.4302279Z copying torch\include\ATen\native\mps\operations\FusedAdamAmsgradKernelImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-06-01T21:26:07.4308782Z copying torch\include\ATen\native\mps\operations\FusedAdamKernelImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-06-01T21:26:07.4319542Z copying torch\include\ATen\native\mps\operations\FusedAdamWAmsgradKernelImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-06-01T21:26:07.4325960Z copying torch\include\ATen\native\mps\operations\FusedAdamWKernelImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-06-01T21:26:07.4332839Z copying torch\include\ATen\native\mps\operations\Indexing.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-06-01T21:26:07.4338964Z copying torch\include\ATen\native\mps\operations\MultiTensorApply.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-06-01T21:26:07.4344855Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-06-01T21:26:07.4348324Z copying torch\include\ATen\native\nested\NestedTensorBinaryOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-06-01T21:26:07.4354314Z copying torch\include\ATen\native\nested\NestedTensorMath.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-06-01T21:26:07.4361169Z copying torch\include\ATen\native\nested\NestedTensorTransformerFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-06-01T21:26:07.4372178Z copying torch\include\ATen\native\nested\NestedTensorTransformerUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-06-01T21:26:07.4378514Z copying torch\include\ATen\native\nested\NestedTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-06-01T21:26:07.4384661Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-06-01T21:26:07.4387770Z copying torch\include\ATen\native\quantized\AffineQuantizer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-06-01T21:26:07.4393905Z copying torch\include\ATen\native\quantized\AffineQuantizerBase.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-06-01T21:26:07.4399911Z copying torch\include\ATen\native\quantized\ConvUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-06-01T21:26:07.4410865Z copying torch\include\ATen\native\quantized\Copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-06-01T21:26:07.4416864Z copying torch\include\ATen\native\quantized\FakeQuantAffine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-06-01T21:26:07.4430828Z copying torch\include\ATen\native\quantized\IndexKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-06-01T21:26:07.4438113Z copying torch\include\ATen\native\quantized\library.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-06-01T21:26:07.4444138Z copying torch\include\ATen\native\quantized\PackedParams.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-06-01T21:26:07.4449849Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-06-01T21:26:07.4452866Z copying torch\include\ATen\native\quantized\cpu\ACLUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-06-01T21:26:07.4459465Z copying torch\include\ATen\native\quantized\cpu\BinaryOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-06-01T21:26:07.4465758Z copying torch\include\ATen\native\quantized\cpu\conv_serialization.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-06-01T21:26:07.4471946Z copying torch\include\ATen\native\quantized\cpu\EmbeddingPackedParams.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-06-01T21:26:07.4484198Z copying torch\include\ATen\native\quantized\cpu\fbgemm_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-06-01T21:26:07.4490642Z copying torch\include\ATen\native\quantized\cpu\init_qnnpack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-06-01T21:26:07.4496864Z copying torch\include\ATen\native\quantized\cpu\OnednnUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-06-01T21:26:07.4503299Z copying torch\include\ATen\native\quantized\cpu\qconv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-06-01T21:26:07.4509498Z copying torch\include\ATen\native\quantized\cpu\qembeddingbag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-06-01T21:26:07.4516190Z copying torch\include\ATen\native\quantized\cpu\qembeddingbag_prepack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-06-01T21:26:07.4522226Z copying torch\include\ATen\native\quantized\cpu\qlinear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-06-01T21:26:07.4528364Z copying torch\include\ATen\native\quantized\cpu\QnnpackUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-06-01T21:26:07.4535596Z copying torch\include\ATen\native\quantized\cpu\QuantizedOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-06-01T21:26:07.4542024Z copying torch\include\ATen\native\quantized\cpu\QuantUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-06-01T21:26:07.4548356Z copying torch\include\ATen\native\quantized\cpu\RuyUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-06-01T21:26:07.4554229Z copying torch\include\ATen\native\quantized\cpu\XnnpackUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-06-01T21:26:07.4559823Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cudnn 2025-06-01T21:26:07.4562730Z copying torch\include\ATen\native\quantized\cudnn\utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cudnn 2025-06-01T21:26:07.4567942Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers 2025-06-01T21:26:07.4571072Z copying torch\include\ATen\native\transformers\attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers 2025-06-01T21:26:07.4577256Z copying torch\include\ATen\native\transformers\sdp_utils_cpp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers 2025-06-01T21:26:07.4583808Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda 2025-06-01T21:26:07.4588575Z copying torch\include\ATen\native\transformers\cuda\sdp_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda 2025-06-01T21:26:07.4594283Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\flash_attn 2025-06-01T21:26:07.4597456Z 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-06-01T21:26:07.4603789Z 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-06-01T21:26:07.4609140Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-06-01T21:26:07.4612325Z 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-06-01T21:26:07.4620487Z 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-06-01T21:26:07.4626547Z 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-06-01T21:26:07.4640667Z 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-06-01T21:26:07.4649038Z 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-06-01T21:26:07.4654708Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue 2025-06-01T21:26:07.4657016Z 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-06-01T21:26:07.4664121Z 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-06-01T21:26:07.4672062Z 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-06-01T21:26:07.4681180Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-06-01T21:26:07.4684394Z 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-06-01T21:26:07.4690899Z 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-06-01T21:26:07.4697894Z 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-06-01T21:26:07.4704863Z 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-06-01T21:26:07.4717781Z 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-06-01T21:26:07.4724085Z 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-06-01T21:26:07.4730434Z 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-06-01T21:26:07.4737767Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-06-01T21:26:07.4741413Z 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-06-01T21:26:07.4762479Z 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-06-01T21:26:07.4764103Z 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-06-01T21:26:07.4768745Z 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-06-01T21:26:07.4776913Z 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-06-01T21:26:07.4785953Z 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-06-01T21:26:07.4813761Z 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-06-01T21:26:07.4819353Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels 2025-06-01T21:26:07.4822515Z 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-06-01T21:26:07.4830078Z 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-06-01T21:26:07.4836030Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\transform 2025-06-01T21:26:07.4839213Z 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-06-01T21:26:07.4844486Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip 2025-06-01T21:26:07.4854060Z copying torch\include\ATen\native\transformers\hip\aotriton_adapter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip 2025-06-01T21:26:07.4859476Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip\flash_attn 2025-06-01T21:26:07.4863304Z 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-06-01T21:26:07.4869348Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip\flash_attn\ck 2025-06-01T21:26:07.4872421Z 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-06-01T21:26:07.4877611Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils 2025-06-01T21:26:07.4880481Z copying torch\include\ATen\native\utils\Factory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils 2025-06-01T21:26:07.4886538Z copying torch\include\ATen\native\utils\ParamsHash.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils 2025-06-01T21:26:07.4893207Z copying torch\include\ATen\native\utils\ParamUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils 2025-06-01T21:26:07.4898541Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.4901760Z copying torch\include\ATen\ops\abs.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.4907917Z copying torch\include\ATen\ops\absolute.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.4914432Z copying torch\include\ATen\ops\absolute_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.4920507Z copying torch\include\ATen\ops\absolute_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.4933083Z copying torch\include\ATen\ops\absolute_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.4939555Z copying torch\include\ATen\ops\abs_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.4946118Z copying torch\include\ATen\ops\abs_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.4952529Z copying torch\include\ATen\ops\abs_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.4959012Z copying torch\include\ATen\ops\abs_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.4965339Z copying torch\include\ATen\ops\abs_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.4971615Z copying torch\include\ATen\ops\acos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.4977733Z copying torch\include\ATen\ops\acosh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.4984276Z copying torch\include\ATen\ops\acosh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.4990580Z copying torch\include\ATen\ops\acosh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.4996983Z copying torch\include\ATen\ops\acosh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5003538Z copying torch\include\ATen\ops\acosh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5010175Z copying torch\include\ATen\ops\acosh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5017009Z copying torch\include\ATen\ops\acosh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5024525Z copying torch\include\ATen\ops\acosh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5030769Z copying torch\include\ATen\ops\acos_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5042572Z copying torch\include\ATen\ops\acos_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5048966Z copying torch\include\ATen\ops\acos_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5055525Z copying torch\include\ATen\ops\acos_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5061761Z copying torch\include\ATen\ops\acos_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5068448Z copying torch\include\ATen\ops\acos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5076279Z copying torch\include\ATen\ops\acos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5082308Z copying torch\include\ATen\ops\adaptive_avg_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5088488Z copying torch\include\ATen\ops\adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5095514Z copying torch\include\ATen\ops\adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5107413Z copying torch\include\ATen\ops\adaptive_avg_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5113828Z copying torch\include\ATen\ops\adaptive_avg_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5120792Z copying torch\include\ATen\ops\adaptive_avg_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5128343Z copying torch\include\ATen\ops\adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5134265Z copying torch\include\ATen\ops\adaptive_avg_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5141099Z copying torch\include\ATen\ops\adaptive_avg_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5147687Z copying torch\include\ATen\ops\adaptive_avg_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5154239Z copying torch\include\ATen\ops\adaptive_avg_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5168049Z copying torch\include\ATen\ops\adaptive_avg_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5174071Z copying torch\include\ATen\ops\adaptive_avg_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5180646Z copying torch\include\ATen\ops\adaptive_avg_pool3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5187250Z copying torch\include\ATen\ops\adaptive_avg_pool3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5193883Z copying torch\include\ATen\ops\adaptive_avg_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5200760Z copying torch\include\ATen\ops\adaptive_avg_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5208603Z copying torch\include\ATen\ops\adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5214560Z copying torch\include\ATen\ops\adaptive_avg_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5221341Z copying torch\include\ATen\ops\adaptive_avg_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5227969Z copying torch\include\ATen\ops\adaptive_avg_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5234680Z copying torch\include\ATen\ops\adaptive_avg_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5252363Z copying torch\include\ATen\ops\adaptive_max_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5259740Z copying torch\include\ATen\ops\adaptive_max_pool1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5272901Z copying torch\include\ATen\ops\adaptive_max_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5279830Z copying torch\include\ATen\ops\adaptive_max_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5286795Z copying torch\include\ATen\ops\adaptive_max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5293566Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5300689Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5307667Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5315213Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5322250Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5329025Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5340862Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5347783Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5355228Z copying torch\include\ATen\ops\adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5361564Z copying torch\include\ATen\ops\adaptive_max_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5368709Z copying torch\include\ATen\ops\adaptive_max_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5375127Z copying torch\include\ATen\ops\adaptive_max_pool2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5397491Z copying torch\include\ATen\ops\adaptive_max_pool2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5408590Z copying torch\include\ATen\ops\adaptive_max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5415082Z copying torch\include\ATen\ops\adaptive_max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5421507Z copying torch\include\ATen\ops\adaptive_max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5428350Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5435482Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5448439Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5455340Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5461943Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5468806Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5475383Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5481818Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5488847Z copying torch\include\ATen\ops\adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5496162Z copying torch\include\ATen\ops\adaptive_max_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5502701Z copying torch\include\ATen\ops\adaptive_max_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5509262Z copying torch\include\ATen\ops\adaptive_max_pool3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5516029Z copying torch\include\ATen\ops\adaptive_max_pool3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5522751Z copying torch\include\ATen\ops\adaptive_max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5529936Z copying torch\include\ATen\ops\adaptive_max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5536126Z copying torch\include\ATen\ops\add.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5542363Z copying torch\include\ATen\ops\addbmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5548622Z copying torch\include\ATen\ops\addbmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5555058Z copying torch\include\ATen\ops\addbmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5561446Z copying torch\include\ATen\ops\addbmm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5586719Z copying torch\include\ATen\ops\addbmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5587624Z copying torch\include\ATen\ops\addbmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5588354Z copying torch\include\ATen\ops\addcdiv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5589277Z copying torch\include\ATen\ops\addcdiv_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5595808Z copying torch\include\ATen\ops\addcdiv_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5602368Z copying torch\include\ATen\ops\addcdiv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5615266Z copying torch\include\ATen\ops\addcdiv_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5621713Z copying torch\include\ATen\ops\addcdiv_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5628537Z copying torch\include\ATen\ops\addcdiv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5634961Z copying torch\include\ATen\ops\addcdiv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5641323Z copying torch\include\ATen\ops\addcmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5648454Z copying torch\include\ATen\ops\addcmul_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5655456Z copying torch\include\ATen\ops\addcmul_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5661460Z copying torch\include\ATen\ops\addcmul_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5667868Z copying torch\include\ATen\ops\addcmul_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5674348Z copying torch\include\ATen\ops\addcmul_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5680897Z copying torch\include\ATen\ops\addcmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5687484Z copying torch\include\ATen\ops\addcmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5694375Z copying torch\include\ATen\ops\addmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5700942Z copying torch\include\ATen\ops\addmm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5707202Z copying torch\include\ATen\ops\addmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5713837Z copying torch\include\ATen\ops\addmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5720191Z copying torch\include\ATen\ops\addmm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5728017Z copying torch\include\ATen\ops\addmm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5733712Z copying torch\include\ATen\ops\addmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5740664Z copying torch\include\ATen\ops\addmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5782363Z copying torch\include\ATen\ops\addmv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5783310Z copying torch\include\ATen\ops\addmv_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5784379Z copying torch\include\ATen\ops\addmv_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5785162Z copying torch\include\ATen\ops\addmv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5785910Z copying torch\include\ATen\ops\addmv_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5790374Z copying torch\include\ATen\ops\addmv_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5796954Z copying torch\include\ATen\ops\addmv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5814523Z copying torch\include\ATen\ops\addmv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5821409Z copying torch\include\ATen\ops\addr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5827855Z copying torch\include\ATen\ops\addr_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5834512Z copying torch\include\ATen\ops\addr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5841026Z copying torch\include\ATen\ops\addr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5847376Z copying torch\include\ATen\ops\addr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5853973Z copying torch\include\ATen\ops\addr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5860507Z copying torch\include\ATen\ops\add_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5867210Z copying torch\include\ATen\ops\add_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5874116Z copying torch\include\ATen\ops\add_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5880649Z copying torch\include\ATen\ops\add_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5886992Z copying torch\include\ATen\ops\add_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5893174Z copying torch\include\ATen\ops\add_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5899665Z copying torch\include\ATen\ops\add_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5905992Z copying torch\include\ATen\ops\add_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5912243Z copying torch\include\ATen\ops\adjoint.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5918725Z copying torch\include\ATen\ops\adjoint_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5925924Z copying torch\include\ATen\ops\adjoint_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5932119Z copying torch\include\ATen\ops\adjoint_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5943921Z copying torch\include\ATen\ops\affine_grid_generator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5950527Z copying torch\include\ATen\ops\affine_grid_generator_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5957638Z copying torch\include\ATen\ops\affine_grid_generator_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5964438Z copying torch\include\ATen\ops\affine_grid_generator_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5971293Z copying torch\include\ATen\ops\affine_grid_generator_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5978352Z copying torch\include\ATen\ops\affine_grid_generator_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5990773Z copying torch\include\ATen\ops\affine_grid_generator_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.5997592Z copying torch\include\ATen\ops\affine_grid_generator_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6004284Z copying torch\include\ATen\ops\alias.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6010644Z copying torch\include\ATen\ops\alias_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6017475Z copying torch\include\ATen\ops\alias_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6024500Z copying torch\include\ATen\ops\alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6031331Z copying torch\include\ATen\ops\alias_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6038094Z copying torch\include\ATen\ops\alias_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6045408Z copying torch\include\ATen\ops\alias_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6051589Z copying torch\include\ATen\ops\alias_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6058151Z copying torch\include\ATen\ops\alias_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6065287Z copying torch\include\ATen\ops\align_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6072070Z copying torch\include\ATen\ops\align_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6078335Z copying torch\include\ATen\ops\align_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6085788Z copying torch\include\ATen\ops\align_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6092864Z copying torch\include\ATen\ops\align_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6099886Z copying torch\include\ATen\ops\align_tensors_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6108473Z copying torch\include\ATen\ops\align_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6114681Z copying torch\include\ATen\ops\align_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6121249Z copying torch\include\ATen\ops\align_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6127734Z copying torch\include\ATen\ops\align_to_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6135044Z copying torch\include\ATen\ops\align_to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6142890Z copying torch\include\ATen\ops\align_to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6148745Z copying torch\include\ATen\ops\all.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6155281Z copying torch\include\ATen\ops\allclose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6161912Z copying torch\include\ATen\ops\allclose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6168653Z copying torch\include\ATen\ops\allclose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6175348Z copying torch\include\ATen\ops\allclose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6183372Z copying torch\include\ATen\ops\all_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6189321Z copying torch\include\ATen\ops\all_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6196322Z copying torch\include\ATen\ops\all_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6202790Z copying torch\include\ATen\ops\all_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6209286Z copying torch\include\ATen\ops\all_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6216365Z copying torch\include\ATen\ops\all_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6223598Z copying torch\include\ATen\ops\all_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6229396Z copying torch\include\ATen\ops\all_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6235998Z copying torch\include\ATen\ops\all_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6251777Z copying torch\include\ATen\ops\alpha_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6252683Z copying torch\include\ATen\ops\alpha_dropout_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6258280Z copying torch\include\ATen\ops\alpha_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6275485Z copying torch\include\ATen\ops\alpha_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6280736Z copying torch\include\ATen\ops\amax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6287775Z copying torch\include\ATen\ops\amax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6294288Z copying torch\include\ATen\ops\amax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6300907Z copying torch\include\ATen\ops\amax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6307472Z copying torch\include\ATen\ops\amax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6314118Z copying torch\include\ATen\ops\amax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6320950Z copying torch\include\ATen\ops\amax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6327351Z copying torch\include\ATen\ops\amax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6334041Z copying torch\include\ATen\ops\amin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6340353Z copying torch\include\ATen\ops\aminmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6347167Z copying torch\include\ATen\ops\aminmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6354035Z copying torch\include\ATen\ops\aminmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6360372Z copying torch\include\ATen\ops\aminmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6366766Z copying torch\include\ATen\ops\aminmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6373343Z copying torch\include\ATen\ops\aminmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6379798Z copying torch\include\ATen\ops\aminmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6386372Z copying torch\include\ATen\ops\aminmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6393404Z copying torch\include\ATen\ops\amin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6400579Z copying torch\include\ATen\ops\amin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6406987Z copying torch\include\ATen\ops\amin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6413526Z copying torch\include\ATen\ops\amin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6420139Z copying torch\include\ATen\ops\amin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6426684Z copying torch\include\ATen\ops\amin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6434805Z copying torch\include\ATen\ops\amin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6440702Z copying torch\include\ATen\ops\and.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6446857Z copying torch\include\ATen\ops\and_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6453519Z copying torch\include\ATen\ops\and_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6460033Z copying torch\include\ATen\ops\and_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6466416Z copying torch\include\ATen\ops\angle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6473454Z copying torch\include\ATen\ops\angle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6481002Z copying torch\include\ATen\ops\angle_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6486981Z copying torch\include\ATen\ops\angle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6493534Z copying torch\include\ATen\ops\angle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6500175Z copying torch\include\ATen\ops\any.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6507709Z copying torch\include\ATen\ops\any_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6515743Z copying torch\include\ATen\ops\any_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6521656Z copying torch\include\ATen\ops\any_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6528150Z copying torch\include\ATen\ops\any_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6535315Z copying torch\include\ATen\ops\any_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6548209Z copying torch\include\ATen\ops\any_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6555691Z copying torch\include\ATen\ops\any_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6561713Z copying torch\include\ATen\ops\any_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6568737Z copying torch\include\ATen\ops\any_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6575454Z copying torch\include\ATen\ops\arange.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6582383Z copying torch\include\ATen\ops\arange_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6590401Z copying torch\include\ATen\ops\arange_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6596237Z copying torch\include\ATen\ops\arange_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6603003Z copying torch\include\ATen\ops\arange_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6609621Z copying torch\include\ATen\ops\arange_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6616462Z copying torch\include\ATen\ops\arange_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6623339Z copying torch\include\ATen\ops\arccos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6630541Z copying torch\include\ATen\ops\arccosh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6636679Z copying torch\include\ATen\ops\arccosh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6643752Z copying torch\include\ATen\ops\arccosh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6650768Z copying torch\include\ATen\ops\arccosh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6657963Z copying torch\include\ATen\ops\arccos_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6665192Z copying torch\include\ATen\ops\arccos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6671476Z copying torch\include\ATen\ops\arccos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6678284Z copying torch\include\ATen\ops\arcsin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6684492Z copying torch\include\ATen\ops\arcsinh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6691082Z copying torch\include\ATen\ops\arcsinh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6699461Z copying torch\include\ATen\ops\arcsinh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6705435Z copying torch\include\ATen\ops\arcsinh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6712331Z copying torch\include\ATen\ops\arcsin_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6718938Z copying torch\include\ATen\ops\arcsin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6725782Z copying torch\include\ATen\ops\arcsin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6733301Z copying torch\include\ATen\ops\arctan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6739786Z copying torch\include\ATen\ops\arctan2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6771779Z copying torch\include\ATen\ops\arctan2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6778382Z copying torch\include\ATen\ops\arctan2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6785068Z copying torch\include\ATen\ops\arctan2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6791804Z copying torch\include\ATen\ops\arctanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6798247Z copying torch\include\ATen\ops\arctanh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6804835Z copying torch\include\ATen\ops\arctanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6811329Z copying torch\include\ATen\ops\arctanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6818130Z copying torch\include\ATen\ops\arctan_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6824468Z copying torch\include\ATen\ops\arctan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6832012Z copying torch\include\ATen\ops\arctan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6837898Z copying torch\include\ATen\ops\argmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6844545Z copying torch\include\ATen\ops\argmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6850867Z copying torch\include\ATen\ops\argmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6857567Z copying torch\include\ATen\ops\argmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6864066Z copying torch\include\ATen\ops\argmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6870750Z copying torch\include\ATen\ops\argmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6877088Z copying torch\include\ATen\ops\argmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6883520Z copying torch\include\ATen\ops\argmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6891208Z copying torch\include\ATen\ops\argmin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6898780Z copying torch\include\ATen\ops\argmin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6904961Z copying torch\include\ATen\ops\argmin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6911396Z copying torch\include\ATen\ops\argmin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6918805Z copying torch\include\ATen\ops\argmin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6925776Z copying torch\include\ATen\ops\argmin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6933638Z copying torch\include\ATen\ops\argmin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6939856Z copying torch\include\ATen\ops\argmin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6946795Z copying torch\include\ATen\ops\argsort.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6953518Z copying torch\include\ATen\ops\argsort_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6960250Z copying torch\include\ATen\ops\argsort_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6967827Z copying torch\include\ATen\ops\argsort_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6973741Z copying torch\include\ATen\ops\argwhere.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6980740Z copying torch\include\ATen\ops\argwhere_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6987144Z copying torch\include\ATen\ops\argwhere_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.6993823Z copying torch\include\ATen\ops\argwhere_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7000700Z copying torch\include\ATen\ops\asin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7007053Z copying torch\include\ATen\ops\asinh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7014654Z copying torch\include\ATen\ops\asinh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7021017Z copying torch\include\ATen\ops\asinh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7027930Z copying torch\include\ATen\ops\asinh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7034516Z copying torch\include\ATen\ops\asinh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7042982Z copying torch\include\ATen\ops\asinh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7049314Z copying torch\include\ATen\ops\asinh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7056649Z copying torch\include\ATen\ops\asinh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7063766Z copying torch\include\ATen\ops\asin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7070456Z copying torch\include\ATen\ops\asin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7077757Z copying torch\include\ATen\ops\asin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7084547Z copying torch\include\ATen\ops\asin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7091554Z copying torch\include\ATen\ops\asin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7098285Z copying torch\include\ATen\ops\asin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7106538Z copying torch\include\ATen\ops\asin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7112452Z copying torch\include\ATen\ops\as_strided.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7119066Z copying torch\include\ATen\ops\as_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7126123Z copying torch\include\ATen\ops\as_strided_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7135088Z copying torch\include\ATen\ops\as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7141313Z copying torch\include\ATen\ops\as_strided_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7147950Z copying torch\include\ATen\ops\as_strided_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7160738Z copying torch\include\ATen\ops\as_strided_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7167742Z copying torch\include\ATen\ops\as_strided_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7175509Z copying torch\include\ATen\ops\as_strided_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7181252Z copying torch\include\ATen\ops\as_strided_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7188241Z copying torch\include\ATen\ops\as_strided_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7194925Z copying torch\include\ATen\ops\as_strided_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7201523Z copying torch\include\ATen\ops\as_strided_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7209353Z copying torch\include\ATen\ops\as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7216535Z copying torch\include\ATen\ops\as_strided_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7241364Z copying torch\include\ATen\ops\as_strided_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7247894Z copying torch\include\ATen\ops\as_strided_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7254465Z copying torch\include\ATen\ops\atan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7261894Z copying torch\include\ATen\ops\atan2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7267964Z copying torch\include\ATen\ops\atan2_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7274393Z copying torch\include\ATen\ops\atan2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7281102Z copying torch\include\ATen\ops\atan2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7287428Z copying torch\include\ATen\ops\atan2_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7294101Z copying torch\include\ATen\ops\atan2_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7300724Z copying torch\include\ATen\ops\atan2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7307726Z copying torch\include\ATen\ops\atan2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7314091Z copying torch\include\ATen\ops\atanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7322068Z copying torch\include\ATen\ops\atanh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7328376Z copying torch\include\ATen\ops\atanh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7335675Z copying torch\include\ATen\ops\atanh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7342834Z copying torch\include\ATen\ops\atanh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7349692Z copying torch\include\ATen\ops\atanh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7356670Z copying torch\include\ATen\ops\atanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7363787Z copying torch\include\ATen\ops\atanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7371063Z copying torch\include\ATen\ops\atan_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7377674Z copying torch\include\ATen\ops\atan_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7384264Z copying torch\include\ATen\ops\atan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7391210Z copying torch\include\ATen\ops\atan_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7397792Z copying torch\include\ATen\ops\atan_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7404641Z copying torch\include\ATen\ops\atan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7411175Z copying torch\include\ATen\ops\atan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7417462Z copying torch\include\ATen\ops\atleast_1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7424408Z copying torch\include\ATen\ops\atleast_1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7430836Z copying torch\include\ATen\ops\atleast_1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7438010Z copying torch\include\ATen\ops\atleast_1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7444535Z copying torch\include\ATen\ops\atleast_2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7451350Z copying torch\include\ATen\ops\atleast_2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7458702Z copying torch\include\ATen\ops\atleast_2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7465040Z copying torch\include\ATen\ops\atleast_2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7471965Z copying torch\include\ATen\ops\atleast_3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7479178Z copying torch\include\ATen\ops\atleast_3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7485569Z copying torch\include\ATen\ops\atleast_3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7491865Z copying torch\include\ATen\ops\atleast_3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7498530Z copying torch\include\ATen\ops\avg_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7505133Z copying torch\include\ATen\ops\avg_pool1d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7517258Z copying torch\include\ATen\ops\avg_pool1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7521742Z copying torch\include\ATen\ops\avg_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7528156Z copying torch\include\ATen\ops\avg_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7535031Z copying torch\include\ATen\ops\avg_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7541929Z copying torch\include\ATen\ops\avg_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7549390Z copying torch\include\ATen\ops\avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7555916Z copying torch\include\ATen\ops\avg_pool2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7562921Z copying torch\include\ATen\ops\avg_pool2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7570432Z copying torch\include\ATen\ops\avg_pool2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7577242Z copying torch\include\ATen\ops\avg_pool2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7583865Z copying torch\include\ATen\ops\avg_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7590578Z copying torch\include\ATen\ops\avg_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7598427Z copying torch\include\ATen\ops\avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7604433Z copying torch\include\ATen\ops\avg_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7611359Z copying torch\include\ATen\ops\avg_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7618003Z copying torch\include\ATen\ops\avg_pool2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7624596Z copying torch\include\ATen\ops\avg_pool2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7631323Z copying torch\include\ATen\ops\avg_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7638225Z copying torch\include\ATen\ops\avg_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7644732Z copying torch\include\ATen\ops\avg_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7651364Z copying torch\include\ATen\ops\avg_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7658658Z copying torch\include\ATen\ops\avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7665284Z copying torch\include\ATen\ops\avg_pool3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7671841Z copying torch\include\ATen\ops\avg_pool3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7678412Z copying torch\include\ATen\ops\avg_pool3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7685053Z copying torch\include\ATen\ops\avg_pool3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7691769Z copying torch\include\ATen\ops\avg_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7706509Z copying torch\include\ATen\ops\avg_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7713810Z copying torch\include\ATen\ops\avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7720200Z copying torch\include\ATen\ops\avg_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7727008Z copying torch\include\ATen\ops\avg_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7758924Z copying torch\include\ATen\ops\avg_pool3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7765978Z copying torch\include\ATen\ops\avg_pool3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7772716Z copying torch\include\ATen\ops\avg_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7780640Z copying torch\include\ATen\ops\avg_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7787565Z copying torch\include\ATen\ops\baddbmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7794561Z copying torch\include\ATen\ops\baddbmm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7801423Z copying torch\include\ATen\ops\baddbmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7807741Z copying torch\include\ATen\ops\baddbmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7814336Z copying torch\include\ATen\ops\baddbmm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7821397Z copying torch\include\ATen\ops\baddbmm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7827651Z copying torch\include\ATen\ops\baddbmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7834340Z copying torch\include\ATen\ops\baddbmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7841028Z copying torch\include\ATen\ops\bartlett_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7848717Z copying torch\include\ATen\ops\bartlett_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7855262Z copying torch\include\ATen\ops\bartlett_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7861926Z copying torch\include\ATen\ops\bartlett_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7868382Z copying torch\include\ATen\ops\batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7874958Z copying torch\include\ATen\ops\batch_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7881887Z copying torch\include\ATen\ops\batch_norm_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7888708Z copying torch\include\ATen\ops\batch_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7899605Z copying torch\include\ATen\ops\batch_norm_backward_elemt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7903472Z copying torch\include\ATen\ops\batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7911389Z copying torch\include\ATen\ops\batch_norm_backward_elemt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7917224Z copying torch\include\ATen\ops\batch_norm_backward_elemt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7924284Z copying torch\include\ATen\ops\batch_norm_backward_elemt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7931269Z copying torch\include\ATen\ops\batch_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7938093Z copying torch\include\ATen\ops\batch_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7945865Z copying torch\include\ATen\ops\batch_norm_backward_reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7952794Z copying torch\include\ATen\ops\batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7959786Z copying torch\include\ATen\ops\batch_norm_backward_reduce_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7966927Z copying torch\include\ATen\ops\batch_norm_backward_reduce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7974458Z copying torch\include\ATen\ops\batch_norm_backward_reduce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7980968Z copying torch\include\ATen\ops\batch_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7987689Z copying torch\include\ATen\ops\batch_norm_elemt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.7995204Z copying torch\include\ATen\ops\batch_norm_elemt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8002358Z copying torch\include\ATen\ops\batch_norm_elemt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8009609Z copying torch\include\ATen\ops\batch_norm_elemt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8021147Z copying torch\include\ATen\ops\batch_norm_gather_stats.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8024489Z copying torch\include\ATen\ops\batch_norm_gather_stats_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8033321Z copying torch\include\ATen\ops\batch_norm_gather_stats_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8039895Z copying torch\include\ATen\ops\batch_norm_gather_stats_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8046212Z copying torch\include\ATen\ops\batch_norm_gather_stats_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8053475Z copying torch\include\ATen\ops\batch_norm_gather_stats_with_counts.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8060834Z 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-06-01T21:26:07.8067642Z 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-06-01T21:26:07.8074272Z copying torch\include\ATen\ops\batch_norm_gather_stats_with_counts_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8081247Z copying torch\include\ATen\ops\batch_norm_gather_stats_with_counts_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8088158Z copying torch\include\ATen\ops\batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8095115Z copying torch\include\ATen\ops\batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8102107Z copying torch\include\ATen\ops\batch_norm_stats.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8110210Z copying torch\include\ATen\ops\batch_norm_stats_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8116746Z copying torch\include\ATen\ops\batch_norm_stats_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8123542Z copying torch\include\ATen\ops\batch_norm_stats_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8130194Z copying torch\include\ATen\ops\batch_norm_stats_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8137352Z copying torch\include\ATen\ops\batch_norm_update_stats.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8145401Z copying torch\include\ATen\ops\batch_norm_update_stats_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8151392Z copying torch\include\ATen\ops\batch_norm_update_stats_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8158097Z copying torch\include\ATen\ops\batch_norm_update_stats_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8164738Z copying torch\include\ATen\ops\batch_norm_update_stats_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8171850Z copying torch\include\ATen\ops\batch_norm_update_stats_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8178297Z copying torch\include\ATen\ops\bernoulli.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8185562Z copying torch\include\ATen\ops\bernoulli_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8192686Z copying torch\include\ATen\ops\bernoulli_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8199102Z copying torch\include\ATen\ops\bernoulli_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8205735Z copying torch\include\ATen\ops\bernoulli_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8220041Z copying torch\include\ATen\ops\bernoulli_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8226535Z copying torch\include\ATen\ops\bernoulli_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8233180Z copying torch\include\ATen\ops\bernoulli_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8239526Z copying torch\include\ATen\ops\bilinear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8246209Z copying torch\include\ATen\ops\bilinear_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8252492Z copying torch\include\ATen\ops\bilinear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8258692Z copying torch\include\ATen\ops\bilinear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8265148Z copying torch\include\ATen\ops\binary_cross_entropy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8272115Z copying torch\include\ATen\ops\binary_cross_entropy_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8279171Z copying torch\include\ATen\ops\binary_cross_entropy_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8285986Z copying torch\include\ATen\ops\binary_cross_entropy_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8292559Z copying torch\include\ATen\ops\binary_cross_entropy_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8299240Z copying torch\include\ATen\ops\binary_cross_entropy_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8306496Z copying torch\include\ATen\ops\binary_cross_entropy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8348894Z copying torch\include\ATen\ops\binary_cross_entropy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8349822Z copying torch\include\ATen\ops\binary_cross_entropy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8350642Z copying torch\include\ATen\ops\binary_cross_entropy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8351496Z copying torch\include\ATen\ops\binary_cross_entropy_with_logits.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8352537Z copying torch\include\ATen\ops\binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8354975Z copying torch\include\ATen\ops\binary_cross_entropy_with_logits_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8360326Z copying torch\include\ATen\ops\binary_cross_entropy_with_logits_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8366566Z copying torch\include\ATen\ops\bincount.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8372839Z copying torch\include\ATen\ops\bincount_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8379007Z copying torch\include\ATen\ops\bincount_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8385860Z copying torch\include\ATen\ops\bincount_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8392447Z copying torch\include\ATen\ops\bincount_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8399526Z copying torch\include\ATen\ops\bincount_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8405459Z copying torch\include\ATen\ops\binomial.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8412263Z copying torch\include\ATen\ops\binomial_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8419119Z copying torch\include\ATen\ops\binomial_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8425827Z copying torch\include\ATen\ops\binomial_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8432674Z copying torch\include\ATen\ops\binomial_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8439224Z copying torch\include\ATen\ops\binomial_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8445568Z copying torch\include\ATen\ops\bitwise_and.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8452455Z copying torch\include\ATen\ops\bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8459093Z copying torch\include\ATen\ops\bitwise_and_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8465720Z copying torch\include\ATen\ops\bitwise_and_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8472657Z copying torch\include\ATen\ops\bitwise_and_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8479513Z copying torch\include\ATen\ops\bitwise_and_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8486138Z copying torch\include\ATen\ops\bitwise_and_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8492839Z copying torch\include\ATen\ops\bitwise_and_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8499540Z copying torch\include\ATen\ops\bitwise_and_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8506260Z copying torch\include\ATen\ops\bitwise_left_shift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8513557Z copying torch\include\ATen\ops\bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8520644Z copying torch\include\ATen\ops\bitwise_left_shift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8527312Z copying torch\include\ATen\ops\bitwise_left_shift_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8534432Z copying torch\include\ATen\ops\bitwise_left_shift_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8547229Z copying torch\include\ATen\ops\bitwise_left_shift_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8554002Z copying torch\include\ATen\ops\bitwise_left_shift_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8560825Z copying torch\include\ATen\ops\bitwise_left_shift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8567642Z copying torch\include\ATen\ops\bitwise_left_shift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8574678Z copying torch\include\ATen\ops\bitwise_not.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8581956Z copying torch\include\ATen\ops\bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8589299Z copying torch\include\ATen\ops\bitwise_not_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8595554Z copying torch\include\ATen\ops\bitwise_not_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8602186Z copying torch\include\ATen\ops\bitwise_not_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8616483Z copying torch\include\ATen\ops\bitwise_not_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8624455Z copying torch\include\ATen\ops\bitwise_not_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8630317Z copying torch\include\ATen\ops\bitwise_not_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8636989Z copying torch\include\ATen\ops\bitwise_or.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8644116Z copying torch\include\ATen\ops\bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8650974Z copying torch\include\ATen\ops\bitwise_or_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8659046Z copying torch\include\ATen\ops\bitwise_or_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8665042Z copying torch\include\ATen\ops\bitwise_or_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8671702Z copying torch\include\ATen\ops\bitwise_or_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8678652Z copying torch\include\ATen\ops\bitwise_or_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8685264Z copying torch\include\ATen\ops\bitwise_or_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8691913Z copying torch\include\ATen\ops\bitwise_or_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8699361Z copying torch\include\ATen\ops\bitwise_right_shift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8740083Z copying torch\include\ATen\ops\bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8745839Z copying torch\include\ATen\ops\bitwise_right_shift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8752651Z copying torch\include\ATen\ops\bitwise_right_shift_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8760049Z copying torch\include\ATen\ops\bitwise_right_shift_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8766834Z copying torch\include\ATen\ops\bitwise_right_shift_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8776375Z copying torch\include\ATen\ops\bitwise_right_shift_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8788542Z copying torch\include\ATen\ops\bitwise_right_shift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8789416Z copying torch\include\ATen\ops\bitwise_right_shift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8798937Z copying torch\include\ATen\ops\bitwise_xor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8806717Z copying torch\include\ATen\ops\bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8812718Z copying torch\include\ATen\ops\bitwise_xor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8818803Z copying torch\include\ATen\ops\bitwise_xor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8826732Z copying torch\include\ATen\ops\bitwise_xor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8833447Z copying torch\include\ATen\ops\bitwise_xor_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8841617Z copying torch\include\ATen\ops\bitwise_xor_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8852162Z copying torch\include\ATen\ops\bitwise_xor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8858967Z copying torch\include\ATen\ops\bitwise_xor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8865746Z copying torch\include\ATen\ops\blackman_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8872624Z copying torch\include\ATen\ops\blackman_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8879483Z copying torch\include\ATen\ops\blackman_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8886506Z copying torch\include\ATen\ops\blackman_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8893417Z copying torch\include\ATen\ops\block_diag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8900478Z copying torch\include\ATen\ops\block_diag_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8907718Z copying torch\include\ATen\ops\block_diag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8914409Z copying torch\include\ATen\ops\block_diag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8920979Z copying torch\include\ATen\ops\bmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8927672Z copying torch\include\ATen\ops\bmm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8934909Z copying torch\include\ATen\ops\bmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8942698Z copying torch\include\ATen\ops\bmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8949074Z copying torch\include\ATen\ops\bmm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8955458Z copying torch\include\ATen\ops\bmm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8962119Z copying torch\include\ATen\ops\bmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8968506Z copying torch\include\ATen\ops\bmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8974896Z copying torch\include\ATen\ops\broadcast_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8982326Z copying torch\include\ATen\ops\broadcast_tensors_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.8993652Z copying torch\include\ATen\ops\broadcast_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9000029Z copying torch\include\ATen\ops\broadcast_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9006644Z copying torch\include\ATen\ops\broadcast_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9013699Z copying torch\include\ATen\ops\broadcast_to_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9020555Z copying torch\include\ATen\ops\broadcast_to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9027110Z copying torch\include\ATen\ops\broadcast_to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9033802Z copying torch\include\ATen\ops\bucketize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9040618Z copying torch\include\ATen\ops\bucketize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9053285Z copying torch\include\ATen\ops\bucketize_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9059643Z copying torch\include\ATen\ops\bucketize_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9066148Z copying torch\include\ATen\ops\bucketize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9072680Z copying torch\include\ATen\ops\bucketize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9079293Z copying torch\include\ATen\ops\can_cast.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9085702Z copying torch\include\ATen\ops\can_cast_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9093737Z copying torch\include\ATen\ops\can_cast_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9099649Z copying torch\include\ATen\ops\can_cast_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9125121Z copying torch\include\ATen\ops\cartesian_prod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9131930Z copying torch\include\ATen\ops\cartesian_prod_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9140010Z copying torch\include\ATen\ops\cartesian_prod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9145859Z copying torch\include\ATen\ops\cartesian_prod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9152725Z copying torch\include\ATen\ops\cat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9159997Z copying torch\include\ATen\ops\cat_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9167140Z copying torch\include\ATen\ops\cat_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9174795Z copying torch\include\ATen\ops\cat_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9187865Z copying torch\include\ATen\ops\cat_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9194468Z copying torch\include\ATen\ops\cat_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9201349Z copying torch\include\ATen\ops\cat_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9209273Z copying torch\include\ATen\ops\cat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9215985Z copying torch\include\ATen\ops\cat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9222535Z copying torch\include\ATen\ops\cauchy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9229290Z copying torch\include\ATen\ops\cauchy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9236103Z copying torch\include\ATen\ops\cauchy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9244078Z copying torch\include\ATen\ops\cauchy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9250904Z copying torch\include\ATen\ops\cauchy_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9264551Z copying torch\include\ATen\ops\cauchy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9271935Z copying torch\include\ATen\ops\cauchy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9278980Z copying torch\include\ATen\ops\ccol_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9286074Z copying torch\include\ATen\ops\ccol_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9292816Z copying torch\include\ATen\ops\ccol_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9300120Z copying torch\include\ATen\ops\ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9312436Z copying torch\include\ATen\ops\ccol_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9318994Z copying torch\include\ATen\ops\ccol_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9326064Z copying torch\include\ATen\ops\ccol_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9333085Z copying torch\include\ATen\ops\ccol_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9339767Z copying torch\include\ATen\ops\ccol_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9346232Z copying torch\include\ATen\ops\cdist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9352780Z copying torch\include\ATen\ops\cdist_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9359214Z copying torch\include\ATen\ops\cdist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9370432Z copying torch\include\ATen\ops\cdist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9376951Z copying torch\include\ATen\ops\ceil.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9384452Z copying torch\include\ATen\ops\ceil_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9391246Z copying torch\include\ATen\ops\ceil_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9402845Z copying torch\include\ATen\ops\ceil_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9409551Z copying torch\include\ATen\ops\ceil_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9415954Z copying torch\include\ATen\ops\ceil_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9422411Z copying torch\include\ATen\ops\ceil_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9433714Z copying torch\include\ATen\ops\ceil_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9439981Z copying torch\include\ATen\ops\celu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9447005Z copying torch\include\ATen\ops\celu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9454292Z copying torch\include\ATen\ops\celu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9465517Z copying torch\include\ATen\ops\celu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9471886Z copying torch\include\ATen\ops\chain_matmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9478963Z copying torch\include\ATen\ops\chain_matmul_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9485695Z copying torch\include\ATen\ops\chain_matmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9497749Z copying torch\include\ATen\ops\chain_matmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9504232Z copying torch\include\ATen\ops\chalf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9510799Z copying torch\include\ATen\ops\chalf_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9517385Z copying torch\include\ATen\ops\chalf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9531569Z copying torch\include\ATen\ops\chalf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9537844Z copying torch\include\ATen\ops\channel_shuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9544690Z copying torch\include\ATen\ops\channel_shuffle_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9551332Z copying torch\include\ATen\ops\channel_shuffle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9562870Z copying torch\include\ATen\ops\channel_shuffle_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9569616Z copying torch\include\ATen\ops\channel_shuffle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9576305Z copying torch\include\ATen\ops\channel_shuffle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9583531Z copying torch\include\ATen\ops\cholesky.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9595344Z copying torch\include\ATen\ops\cholesky_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9603461Z copying torch\include\ATen\ops\cholesky_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9610701Z copying torch\include\ATen\ops\cholesky_inverse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9618818Z copying torch\include\ATen\ops\cholesky_inverse_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9625012Z copying torch\include\ATen\ops\cholesky_inverse_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9631929Z copying torch\include\ATen\ops\cholesky_inverse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9638511Z copying torch\include\ATen\ops\cholesky_inverse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9645343Z copying torch\include\ATen\ops\cholesky_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9656930Z copying torch\include\ATen\ops\cholesky_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9664554Z copying torch\include\ATen\ops\cholesky_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9671244Z copying torch\include\ATen\ops\cholesky_solve_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9678142Z copying torch\include\ATen\ops\cholesky_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9685370Z copying torch\include\ATen\ops\cholesky_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9693390Z copying torch\include\ATen\ops\choose_qparams_optimized.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9699590Z copying torch\include\ATen\ops\choose_qparams_optimized_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9706381Z copying torch\include\ATen\ops\choose_qparams_optimized_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9718896Z copying torch\include\ATen\ops\choose_qparams_optimized_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9725555Z copying torch\include\ATen\ops\chunk.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9733691Z copying torch\include\ATen\ops\chunk_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9739678Z copying torch\include\ATen\ops\chunk_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9751634Z copying torch\include\ATen\ops\chunk_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9758052Z copying torch\include\ATen\ops\clamp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9764961Z copying torch\include\ATen\ops\clamp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9771357Z copying torch\include\ATen\ops\clamp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9778628Z copying torch\include\ATen\ops\clamp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9785667Z copying torch\include\ATen\ops\clamp_max.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9793556Z copying torch\include\ATen\ops\clamp_max_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9800449Z copying torch\include\ATen\ops\clamp_max_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9809570Z copying torch\include\ATen\ops\clamp_max_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9814980Z copying torch\include\ATen\ops\clamp_max_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9821690Z copying torch\include\ATen\ops\clamp_max_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9828956Z copying torch\include\ATen\ops\clamp_max_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9840847Z copying torch\include\ATen\ops\clamp_max_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9847856Z copying torch\include\ATen\ops\clamp_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9855440Z copying torch\include\ATen\ops\clamp_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9861871Z copying torch\include\ATen\ops\clamp_min.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9869206Z copying torch\include\ATen\ops\clamp_min_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9875830Z copying torch\include\ATen\ops\clamp_min_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9882526Z copying torch\include\ATen\ops\clamp_min_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9888979Z copying torch\include\ATen\ops\clamp_min_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9900490Z copying torch\include\ATen\ops\clamp_min_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9907073Z copying torch\include\ATen\ops\clamp_min_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9913517Z copying torch\include\ATen\ops\clamp_min_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9920196Z copying torch\include\ATen\ops\clamp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9948275Z copying torch\include\ATen\ops\clamp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9954511Z copying torch\include\ATen\ops\clip.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9960925Z copying torch\include\ATen\ops\clip_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9966989Z copying torch\include\ATen\ops\clip_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9973966Z copying torch\include\ATen\ops\clip_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9980756Z copying torch\include\ATen\ops\clone.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9988722Z copying torch\include\ATen\ops\clone_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:07.9998613Z copying torch\include\ATen\ops\clone_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0005918Z copying torch\include\ATen\ops\clone_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0012543Z copying torch\include\ATen\ops\coalesce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0019027Z copying torch\include\ATen\ops\coalesce_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0026280Z copying torch\include\ATen\ops\coalesce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0037176Z copying torch\include\ATen\ops\coalesce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0043563Z copying torch\include\ATen\ops\col2im.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0050966Z copying torch\include\ATen\ops\col2im_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0057613Z copying torch\include\ATen\ops\col2im_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0065124Z copying torch\include\ATen\ops\col2im_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0071798Z copying torch\include\ATen\ops\col2im_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0078394Z copying torch\include\ATen\ops\column_stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0086819Z copying torch\include\ATen\ops\column_stack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0103618Z copying torch\include\ATen\ops\column_stack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0109531Z copying torch\include\ATen\ops\column_stack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0116665Z copying torch\include\ATen\ops\col_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0123414Z copying torch\include\ATen\ops\col_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0130900Z copying torch\include\ATen\ops\col_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0138522Z copying torch\include\ATen\ops\col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0145476Z copying torch\include\ATen\ops\col_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0152381Z copying torch\include\ATen\ops\col_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0164768Z copying torch\include\ATen\ops\col_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0172722Z copying torch\include\ATen\ops\col_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0178740Z copying torch\include\ATen\ops\col_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0185461Z copying torch\include\ATen\ops\combinations.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0192598Z copying torch\include\ATen\ops\combinations_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0199718Z copying torch\include\ATen\ops\combinations_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0210433Z copying torch\include\ATen\ops\combinations_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0217264Z copying torch\include\ATen\ops\complex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0224794Z copying torch\include\ATen\ops\complex_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0230895Z copying torch\include\ATen\ops\complex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0237545Z copying torch\include\ATen\ops\complex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0247438Z copying torch\include\ATen\ops\complex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0253727Z copying torch\include\ATen\ops\complex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0260463Z copying torch\include\ATen\ops\concat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0267008Z copying torch\include\ATen\ops\concatenate.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0274563Z copying torch\include\ATen\ops\concatenate_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0287990Z copying torch\include\ATen\ops\concatenate_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0295232Z copying torch\include\ATen\ops\concatenate_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0302133Z copying torch\include\ATen\ops\concat_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0309428Z copying torch\include\ATen\ops\concat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0315839Z copying torch\include\ATen\ops\concat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0322549Z copying torch\include\ATen\ops\conj.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0329176Z copying torch\include\ATen\ops\conj_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0335663Z copying torch\include\ATen\ops\conj_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0342203Z copying torch\include\ATen\ops\conj_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0348527Z copying torch\include\ATen\ops\conj_physical.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0355411Z copying torch\include\ATen\ops\conj_physical_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0362258Z copying torch\include\ATen\ops\conj_physical_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0368960Z copying torch\include\ATen\ops\conj_physical_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0375763Z copying torch\include\ATen\ops\conj_physical_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0382770Z copying torch\include\ATen\ops\conj_physical_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0389363Z copying torch\include\ATen\ops\conj_physical_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0401400Z copying torch\include\ATen\ops\constant_pad_nd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0408111Z copying torch\include\ATen\ops\constant_pad_nd_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0414808Z copying torch\include\ATen\ops\constant_pad_nd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0422370Z copying torch\include\ATen\ops\constant_pad_nd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0428884Z copying torch\include\ATen\ops\contiguous.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0442385Z copying torch\include\ATen\ops\contiguous_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0448712Z copying torch\include\ATen\ops\contiguous_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0455315Z copying torch\include\ATen\ops\contiguous_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0462152Z copying torch\include\ATen\ops\conv1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0468784Z copying torch\include\ATen\ops\conv1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0475420Z copying torch\include\ATen\ops\conv1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0481999Z copying torch\include\ATen\ops\conv1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0488708Z copying torch\include\ATen\ops\conv2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0495465Z copying torch\include\ATen\ops\conv2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0502621Z copying torch\include\ATen\ops\conv2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0509262Z copying torch\include\ATen\ops\conv2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0515850Z copying torch\include\ATen\ops\conv3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0523472Z copying torch\include\ATen\ops\conv3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0530340Z copying torch\include\ATen\ops\conv3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0537082Z copying torch\include\ATen\ops\conv3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0548709Z copying torch\include\ATen\ops\convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0555693Z copying torch\include\ATen\ops\convolution_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0563071Z copying torch\include\ATen\ops\convolution_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0573362Z copying torch\include\ATen\ops\convolution_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0584392Z copying torch\include\ATen\ops\convolution_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0592187Z copying torch\include\ATen\ops\convolution_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0604833Z copying torch\include\ATen\ops\convolution_backward_overrideable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0608752Z copying torch\include\ATen\ops\convolution_backward_overrideable_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0616576Z copying torch\include\ATen\ops\convolution_backward_overrideable_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0622684Z copying torch\include\ATen\ops\convolution_backward_overrideable_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0629969Z copying torch\include\ATen\ops\convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0636693Z copying torch\include\ATen\ops\convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0643648Z copying torch\include\ATen\ops\convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0651022Z copying torch\include\ATen\ops\convolution_overrideable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0658518Z copying torch\include\ATen\ops\convolution_overrideable_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0665506Z copying torch\include\ATen\ops\convolution_overrideable_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0677465Z copying torch\include\ATen\ops\convolution_overrideable_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0685493Z copying torch\include\ATen\ops\conv_depthwise3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0692736Z copying torch\include\ATen\ops\conv_depthwise3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0699510Z copying torch\include\ATen\ops\conv_depthwise3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0706340Z copying torch\include\ATen\ops\conv_depthwise3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0714221Z copying torch\include\ATen\ops\conv_depthwise3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0720797Z copying torch\include\ATen\ops\conv_tbc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0727298Z copying torch\include\ATen\ops\conv_tbc_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0739044Z copying torch\include\ATen\ops\conv_tbc_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0745692Z copying torch\include\ATen\ops\conv_tbc_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0752777Z copying torch\include\ATen\ops\conv_tbc_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0760495Z copying torch\include\ATen\ops\conv_tbc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0767433Z copying torch\include\ATen\ops\conv_tbc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0774493Z copying torch\include\ATen\ops\conv_tbc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0781894Z copying torch\include\ATen\ops\conv_transpose1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0876127Z copying torch\include\ATen\ops\conv_transpose1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0883037Z copying torch\include\ATen\ops\conv_transpose1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0889667Z copying torch\include\ATen\ops\conv_transpose1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0896492Z copying torch\include\ATen\ops\conv_transpose2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0903476Z copying torch\include\ATen\ops\conv_transpose2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0910189Z copying torch\include\ATen\ops\conv_transpose2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0917035Z copying torch\include\ATen\ops\conv_transpose2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0923595Z copying torch\include\ATen\ops\conv_transpose3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0930661Z copying torch\include\ATen\ops\conv_transpose3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0938297Z copying torch\include\ATen\ops\conv_transpose3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0945215Z copying torch\include\ATen\ops\conv_transpose3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0951684Z copying torch\include\ATen\ops\copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0958211Z copying torch\include\ATen\ops\copysign.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0972965Z copying torch\include\ATen\ops\copysign_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0979781Z copying torch\include\ATen\ops\copysign_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0986363Z copying torch\include\ATen\ops\copysign_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.0993450Z copying torch\include\ATen\ops\copysign_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1004932Z copying torch\include\ATen\ops\copysign_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1012137Z copying torch\include\ATen\ops\copysign_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1018908Z copying torch\include\ATen\ops\copysign_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1026101Z copying torch\include\ATen\ops\copysign_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1033579Z copying torch\include\ATen\ops\copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1040123Z copying torch\include\ATen\ops\copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1046652Z copying torch\include\ATen\ops\copy_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1053282Z copying torch\include\ATen\ops\copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1059760Z copying torch\include\ATen\ops\copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1066134Z copying torch\include\ATen\ops\copy_sparse_to_sparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1073462Z copying torch\include\ATen\ops\copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1080484Z copying torch\include\ATen\ops\copy_sparse_to_sparse_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1087210Z copying torch\include\ATen\ops\copy_sparse_to_sparse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1094728Z copying torch\include\ATen\ops\copy_sparse_to_sparse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1101681Z copying torch\include\ATen\ops\corrcoef.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1108304Z copying torch\include\ATen\ops\corrcoef_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1116076Z copying torch\include\ATen\ops\corrcoef_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1122337Z copying torch\include\ATen\ops\corrcoef_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1128932Z copying torch\include\ATen\ops\cos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1135433Z copying torch\include\ATen\ops\cosh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1148150Z copying torch\include\ATen\ops\cosh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1156252Z copying torch\include\ATen\ops\cosh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1162325Z copying torch\include\ATen\ops\cosh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1169137Z copying torch\include\ATen\ops\cosh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1198564Z copying torch\include\ATen\ops\cosh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1205288Z copying torch\include\ATen\ops\cosh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1213484Z copying torch\include\ATen\ops\cosh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1219408Z copying torch\include\ATen\ops\cosine_embedding_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1226168Z copying torch\include\ATen\ops\cosine_embedding_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1232930Z copying torch\include\ATen\ops\cosine_embedding_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1239753Z copying torch\include\ATen\ops\cosine_embedding_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1246466Z copying torch\include\ATen\ops\cosine_similarity.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1259913Z copying torch\include\ATen\ops\cosine_similarity_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1266248Z copying torch\include\ATen\ops\cosine_similarity_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1272848Z copying torch\include\ATen\ops\cosine_similarity_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1279825Z copying torch\include\ATen\ops\cos_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1291339Z copying torch\include\ATen\ops\cos_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1299204Z copying torch\include\ATen\ops\cos_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1305874Z copying torch\include\ATen\ops\cos_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1312069Z copying torch\include\ATen\ops\cos_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1320082Z copying torch\include\ATen\ops\cos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1326493Z copying torch\include\ATen\ops\cos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1332786Z copying torch\include\ATen\ops\count_nonzero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1347280Z copying torch\include\ATen\ops\count_nonzero_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1358726Z copying torch\include\ATen\ops\count_nonzero_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1366567Z copying torch\include\ATen\ops\count_nonzero_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1374488Z copying torch\include\ATen\ops\count_nonzero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1381417Z copying torch\include\ATen\ops\count_nonzero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1393728Z copying torch\include\ATen\ops\cov.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1400233Z copying torch\include\ATen\ops\cov_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1406897Z copying torch\include\ATen\ops\cov_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1413594Z copying torch\include\ATen\ops\cov_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1424986Z copying torch\include\ATen\ops\cross.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1431544Z copying torch\include\ATen\ops\cross_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1439779Z copying torch\include\ATen\ops\cross_entropy_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1445717Z copying torch\include\ATen\ops\cross_entropy_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1452381Z copying torch\include\ATen\ops\cross_entropy_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1459060Z copying torch\include\ATen\ops\cross_entropy_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1465606Z copying torch\include\ATen\ops\cross_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1472426Z copying torch\include\ATen\ops\cross_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1479965Z copying torch\include\ATen\ops\crow_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1486871Z copying torch\include\ATen\ops\crow_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1493671Z copying torch\include\ATen\ops\crow_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1501568Z copying torch\include\ATen\ops\crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1508295Z copying torch\include\ATen\ops\crow_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1515107Z copying torch\include\ATen\ops\crow_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1521771Z copying torch\include\ATen\ops\crow_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1528578Z copying torch\include\ATen\ops\crow_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1535239Z copying torch\include\ATen\ops\crow_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1542169Z copying torch\include\ATen\ops\ctc_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1548747Z copying torch\include\ATen\ops\ctc_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1555630Z copying torch\include\ATen\ops\ctc_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1562422Z copying torch\include\ATen\ops\ctc_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1569975Z copying torch\include\ATen\ops\cudnn_affine_grid_generator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1586343Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1593405Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1599812Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1607070Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1614456Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1622113Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1629107Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1636447Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1644784Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1650836Z copying torch\include\ATen\ops\cudnn_batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1659104Z copying torch\include\ATen\ops\cudnn_batch_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1667600Z copying torch\include\ATen\ops\cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1673638Z copying torch\include\ATen\ops\cudnn_batch_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1680322Z copying torch\include\ATen\ops\cudnn_batch_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1692351Z copying torch\include\ATen\ops\cudnn_batch_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1699377Z copying torch\include\ATen\ops\cudnn_batch_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1706200Z copying torch\include\ATen\ops\cudnn_batch_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1713628Z copying torch\include\ATen\ops\cudnn_batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1727011Z copying torch\include\ATen\ops\cudnn_batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1734014Z copying torch\include\ATen\ops\cudnn_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1742039Z copying torch\include\ATen\ops\cudnn_convolution_add_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1748593Z copying torch\include\ATen\ops\cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1755597Z copying torch\include\ATen\ops\cudnn_convolution_add_relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1762640Z copying torch\include\ATen\ops\cudnn_convolution_add_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1770716Z copying torch\include\ATen\ops\cudnn_convolution_add_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1777039Z copying torch\include\ATen\ops\cudnn_convolution_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1791239Z copying torch\include\ATen\ops\cudnn_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1798397Z copying torch\include\ATen\ops\cudnn_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1820233Z copying torch\include\ATen\ops\cudnn_convolution_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1821233Z copying torch\include\ATen\ops\cudnn_convolution_relu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1822328Z copying torch\include\ATen\ops\cudnn_convolution_relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1827808Z copying torch\include\ATen\ops\cudnn_convolution_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1835018Z copying torch\include\ATen\ops\cudnn_convolution_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1841844Z copying torch\include\ATen\ops\cudnn_convolution_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1855051Z copying torch\include\ATen\ops\cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1861939Z copying torch\include\ATen\ops\cudnn_convolution_transpose_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1868599Z copying torch\include\ATen\ops\cudnn_convolution_transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1876346Z copying torch\include\ATen\ops\cudnn_convolution_transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1883947Z copying torch\include\ATen\ops\cudnn_grid_sampler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1892233Z copying torch\include\ATen\ops\cudnn_grid_sampler_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1899650Z copying torch\include\ATen\ops\cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1906613Z copying torch\include\ATen\ops\cudnn_grid_sampler_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.1913483Z copying torch\include\ATen\ops\cudnn_grid_sampler_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2011153Z copying torch\include\ATen\ops\cudnn_grid_sampler_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2018102Z copying torch\include\ATen\ops\cudnn_grid_sampler_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2026352Z copying torch\include\ATen\ops\cudnn_grid_sampler_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2033587Z copying torch\include\ATen\ops\cudnn_grid_sampler_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2041108Z copying torch\include\ATen\ops\cudnn_grid_sampler_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2048235Z copying torch\include\ATen\ops\cudnn_is_acceptable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2055455Z copying torch\include\ATen\ops\cudnn_is_acceptable_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2075693Z copying torch\include\ATen\ops\cudnn_is_acceptable_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2083178Z copying torch\include\ATen\ops\cudnn_is_acceptable_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2091187Z copying torch\include\ATen\ops\cummax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2097301Z copying torch\include\ATen\ops\cummaxmin_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2104355Z copying torch\include\ATen\ops\cummaxmin_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2111149Z copying torch\include\ATen\ops\cummaxmin_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2118162Z copying torch\include\ATen\ops\cummaxmin_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2126656Z copying torch\include\ATen\ops\cummax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2139047Z copying torch\include\ATen\ops\cummax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2145815Z copying torch\include\ATen\ops\cummax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2152445Z copying torch\include\ATen\ops\cummax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2159209Z copying torch\include\ATen\ops\cummin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2166185Z copying torch\include\ATen\ops\cummin_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2173327Z copying torch\include\ATen\ops\cummin_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2179901Z copying torch\include\ATen\ops\cummin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2187520Z copying torch\include\ATen\ops\cummin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2195057Z copying torch\include\ATen\ops\cumprod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2201963Z copying torch\include\ATen\ops\cumprod_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2208979Z copying torch\include\ATen\ops\cumprod_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2219830Z copying torch\include\ATen\ops\cumprod_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2226583Z copying torch\include\ATen\ops\cumprod_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2233697Z copying torch\include\ATen\ops\cumprod_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2241477Z copying torch\include\ATen\ops\cumprod_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2248220Z copying torch\include\ATen\ops\cumprod_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2260654Z copying torch\include\ATen\ops\cumprod_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2267416Z copying torch\include\ATen\ops\cumprod_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2275712Z copying torch\include\ATen\ops\cumprod_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2281778Z copying torch\include\ATen\ops\cumprod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2288448Z copying torch\include\ATen\ops\cumprod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2297725Z copying torch\include\ATen\ops\cumsum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2308882Z copying torch\include\ATen\ops\cumsum_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2310486Z copying torch\include\ATen\ops\cumsum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2322863Z copying torch\include\ATen\ops\cumsum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2329630Z copying torch\include\ATen\ops\cumsum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2336401Z copying torch\include\ATen\ops\cumsum_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2344914Z copying torch\include\ATen\ops\cumsum_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2356009Z copying torch\include\ATen\ops\cumsum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2361326Z copying torch\include\ATen\ops\cumsum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2368421Z copying torch\include\ATen\ops\cumulative_trapezoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2375869Z copying torch\include\ATen\ops\cumulative_trapezoid_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2382497Z copying torch\include\ATen\ops\cumulative_trapezoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2389235Z copying torch\include\ATen\ops\cumulative_trapezoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2395667Z copying torch\include\ATen\ops\data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2403510Z copying torch\include\ATen\ops\data_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2412859Z copying torch\include\ATen\ops\data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2419260Z copying torch\include\ATen\ops\data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2425427Z copying torch\include\ATen\ops\deg2rad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2432032Z copying torch\include\ATen\ops\deg2rad_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2445142Z copying torch\include\ATen\ops\deg2rad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2451767Z copying torch\include\ATen\ops\deg2rad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2458406Z copying torch\include\ATen\ops\dense_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2465112Z copying torch\include\ATen\ops\dense_dim_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2471587Z copying torch\include\ATen\ops\dense_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2478562Z copying torch\include\ATen\ops\dense_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2485038Z copying torch\include\ATen\ops\dequantize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2492098Z copying torch\include\ATen\ops\dequantize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2498578Z copying torch\include\ATen\ops\dequantize_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2505129Z copying torch\include\ATen\ops\dequantize_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2511984Z copying torch\include\ATen\ops\dequantize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2519031Z copying torch\include\ATen\ops\dequantize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2532116Z copying torch\include\ATen\ops\det.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2538131Z copying torch\include\ATen\ops\detach.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2544626Z copying torch\include\ATen\ops\detach_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2551199Z copying torch\include\ATen\ops\detach_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2564382Z copying torch\include\ATen\ops\detach_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2572120Z copying torch\include\ATen\ops\detach_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2578855Z copying torch\include\ATen\ops\detach_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2585770Z copying torch\include\ATen\ops\detach_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2592540Z copying torch\include\ATen\ops\detach_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2598947Z copying torch\include\ATen\ops\detach_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2606387Z copying torch\include\ATen\ops\det_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2613123Z copying torch\include\ATen\ops\det_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2620056Z copying torch\include\ATen\ops\det_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2625884Z copying torch\include\ATen\ops\diag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2633484Z copying torch\include\ATen\ops\diagflat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2639924Z copying torch\include\ATen\ops\diagflat_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2646735Z copying torch\include\ATen\ops\diagflat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2654217Z copying torch\include\ATen\ops\diagflat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2661105Z copying torch\include\ATen\ops\diagonal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2668525Z copying torch\include\ATen\ops\diagonal_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2676560Z copying torch\include\ATen\ops\diagonal_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2683164Z copying torch\include\ATen\ops\diagonal_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2690015Z copying torch\include\ATen\ops\diagonal_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2697542Z copying torch\include\ATen\ops\diagonal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2708794Z copying torch\include\ATen\ops\diagonal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2715624Z copying torch\include\ATen\ops\diagonal_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2722892Z copying torch\include\ATen\ops\diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2729922Z copying torch\include\ATen\ops\diagonal_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2737745Z copying torch\include\ATen\ops\diagonal_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2744977Z copying torch\include\ATen\ops\diagonal_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2751902Z copying torch\include\ATen\ops\diagonal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2760272Z copying torch\include\ATen\ops\diagonal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2766141Z copying torch\include\ATen\ops\diagonal_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2773545Z copying torch\include\ATen\ops\diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2780617Z copying torch\include\ATen\ops\diagonal_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2788728Z copying torch\include\ATen\ops\diagonal_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2815534Z copying torch\include\ATen\ops\diagonal_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2816464Z copying torch\include\ATen\ops\diag_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2817305Z copying torch\include\ATen\ops\diag_embed.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2818244Z copying torch\include\ATen\ops\diag_embed_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2825611Z copying torch\include\ATen\ops\diag_embed_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2833809Z copying torch\include\ATen\ops\diag_embed_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2840436Z copying torch\include\ATen\ops\diag_embed_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2847112Z copying torch\include\ATen\ops\diag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2854421Z copying torch\include\ATen\ops\diag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2860832Z copying torch\include\ATen\ops\diff.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2867540Z copying torch\include\ATen\ops\diff_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2874346Z copying torch\include\ATen\ops\diff_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2888589Z copying torch\include\ATen\ops\diff_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2894841Z copying torch\include\ATen\ops\digamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2901773Z copying torch\include\ATen\ops\digamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2908484Z copying torch\include\ATen\ops\digamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2915147Z copying torch\include\ATen\ops\digamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2923382Z copying torch\include\ATen\ops\digamma_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2930201Z copying torch\include\ATen\ops\digamma_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2937257Z copying torch\include\ATen\ops\digamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2944472Z copying torch\include\ATen\ops\digamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2951792Z copying torch\include\ATen\ops\dist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2958223Z copying torch\include\ATen\ops\dist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2964889Z copying torch\include\ATen\ops\dist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2977191Z copying torch\include\ATen\ops\dist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2983811Z copying torch\include\ATen\ops\div.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2990985Z copying torch\include\ATen\ops\divide.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.2997824Z copying torch\include\ATen\ops\divide_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3005220Z copying torch\include\ATen\ops\divide_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3012686Z copying torch\include\ATen\ops\divide_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3019833Z copying torch\include\ATen\ops\div_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3026443Z copying torch\include\ATen\ops\div_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3032919Z copying torch\include\ATen\ops\div_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3039692Z copying torch\include\ATen\ops\div_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3046100Z copying torch\include\ATen\ops\div_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3052494Z copying torch\include\ATen\ops\div_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3064656Z copying torch\include\ATen\ops\div_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3071462Z copying torch\include\ATen\ops\div_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3077980Z copying torch\include\ATen\ops\dot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3084182Z copying torch\include\ATen\ops\dot_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3090326Z copying torch\include\ATen\ops\dot_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3096636Z copying torch\include\ATen\ops\dot_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3103402Z copying torch\include\ATen\ops\dot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3109862Z copying torch\include\ATen\ops\dot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3121630Z copying torch\include\ATen\ops\dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3128217Z copying torch\include\ATen\ops\dropout_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3135250Z copying torch\include\ATen\ops\dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3141566Z copying torch\include\ATen\ops\dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3148137Z copying torch\include\ATen\ops\dsplit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3155071Z copying torch\include\ATen\ops\dsplit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3162185Z copying torch\include\ATen\ops\dsplit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3168655Z copying torch\include\ATen\ops\dsplit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3175365Z copying torch\include\ATen\ops\dstack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3182229Z copying torch\include\ATen\ops\dstack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3189001Z copying torch\include\ATen\ops\dstack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3195735Z copying torch\include\ATen\ops\dstack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3202802Z copying torch\include\ATen\ops\einsum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3209398Z copying torch\include\ATen\ops\einsum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3216042Z copying torch\include\ATen\ops\einsum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3222639Z copying torch\include\ATen\ops\einsum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3247460Z copying torch\include\ATen\ops\elu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3254305Z copying torch\include\ATen\ops\elu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3261416Z copying torch\include\ATen\ops\elu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3268034Z copying torch\include\ATen\ops\elu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3274670Z copying torch\include\ATen\ops\elu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3281367Z copying torch\include\ATen\ops\elu_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3288612Z copying torch\include\ATen\ops\elu_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3295301Z copying torch\include\ATen\ops\elu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3303101Z copying torch\include\ATen\ops\elu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3310543Z copying torch\include\ATen\ops\elu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3324728Z copying torch\include\ATen\ops\elu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3325512Z copying torch\include\ATen\ops\elu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3336144Z copying torch\include\ATen\ops\elu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3338305Z copying torch\include\ATen\ops\elu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3344909Z copying torch\include\ATen\ops\elu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3351704Z copying torch\include\ATen\ops\elu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3364118Z copying torch\include\ATen\ops\embedding.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3371459Z copying torch\include\ATen\ops\embedding_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3378242Z copying torch\include\ATen\ops\embedding_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3384862Z copying torch\include\ATen\ops\embedding_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3391670Z copying torch\include\ATen\ops\embedding_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3398173Z copying torch\include\ATen\ops\embedding_bag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3405774Z copying torch\include\ATen\ops\embedding_bag_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3421443Z copying torch\include\ATen\ops\embedding_bag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3427978Z copying torch\include\ATen\ops\embedding_bag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3434944Z copying torch\include\ATen\ops\embedding_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3441552Z copying torch\include\ATen\ops\embedding_dense_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3453867Z copying torch\include\ATen\ops\embedding_dense_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3460493Z copying torch\include\ATen\ops\embedding_dense_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3467292Z copying torch\include\ATen\ops\embedding_dense_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3473940Z copying torch\include\ATen\ops\embedding_dense_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3480817Z copying torch\include\ATen\ops\embedding_dense_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3487174Z copying torch\include\ATen\ops\embedding_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3493850Z copying torch\include\ATen\ops\embedding_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3500401Z copying torch\include\ATen\ops\embedding_renorm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3512511Z copying torch\include\ATen\ops\embedding_renorm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3519353Z copying torch\include\ATen\ops\embedding_renorm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3526100Z copying torch\include\ATen\ops\embedding_renorm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3533119Z copying torch\include\ATen\ops\embedding_renorm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3544707Z copying torch\include\ATen\ops\embedding_renorm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3551288Z copying torch\include\ATen\ops\embedding_renorm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3558214Z copying torch\include\ATen\ops\embedding_sparse_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3565340Z copying torch\include\ATen\ops\embedding_sparse_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3576391Z copying torch\include\ATen\ops\embedding_sparse_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3583293Z copying torch\include\ATen\ops\embedding_sparse_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3590074Z copying torch\include\ATen\ops\empty.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3596671Z copying torch\include\ATen\ops\empty_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3608745Z copying torch\include\ATen\ops\empty_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3623109Z copying torch\include\ATen\ops\empty_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3630438Z copying torch\include\ATen\ops\empty_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3637523Z copying torch\include\ATen\ops\empty_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3644239Z copying torch\include\ATen\ops\empty_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3650828Z copying torch\include\ATen\ops\empty_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3657660Z copying torch\include\ATen\ops\empty_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3664383Z copying torch\include\ATen\ops\empty_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3677004Z copying torch\include\ATen\ops\empty_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3683938Z copying torch\include\ATen\ops\empty_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3690803Z copying torch\include\ATen\ops\empty_permuted.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3698147Z copying torch\include\ATen\ops\empty_permuted_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3705155Z copying torch\include\ATen\ops\empty_permuted_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3712213Z copying torch\include\ATen\ops\empty_permuted_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3718452Z copying torch\include\ATen\ops\empty_quantized.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3725439Z copying torch\include\ATen\ops\empty_quantized_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3732453Z copying torch\include\ATen\ops\empty_quantized_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3739108Z copying torch\include\ATen\ops\empty_quantized_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3745754Z copying torch\include\ATen\ops\empty_strided.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3752583Z copying torch\include\ATen\ops\empty_strided_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3759280Z copying torch\include\ATen\ops\empty_strided_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3765946Z copying torch\include\ATen\ops\empty_strided_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3772846Z copying torch\include\ATen\ops\empty_strided_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3779626Z copying torch\include\ATen\ops\empty_strided_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3786893Z copying torch\include\ATen\ops\empty_strided_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3793600Z copying torch\include\ATen\ops\eq.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3799915Z copying torch\include\ATen\ops\equal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3806075Z copying torch\include\ATen\ops\equal_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3820411Z copying torch\include\ATen\ops\equal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3821167Z copying torch\include\ATen\ops\equal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3827726Z copying torch\include\ATen\ops\equal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3839464Z copying torch\include\ATen\ops\eq_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3842198Z copying torch\include\ATen\ops\eq_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3849590Z copying torch\include\ATen\ops\eq_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3855887Z copying torch\include\ATen\ops\eq_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3862280Z copying torch\include\ATen\ops\eq_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3869627Z copying torch\include\ATen\ops\eq_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3882402Z copying torch\include\ATen\ops\eq_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3883084Z copying torch\include\ATen\ops\erf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3889780Z copying torch\include\ATen\ops\erfc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.3897510Z copying torch\include\ATen\ops\erfc_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.5836181Z copying torch\include\ATen\ops\erfc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.5842198Z copying torch\include\ATen\ops\erfc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.5849211Z copying torch\include\ATen\ops\erfc_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.5856955Z copying torch\include\ATen\ops\erfc_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.5863767Z copying torch\include\ATen\ops\erfc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.5872475Z copying torch\include\ATen\ops\erfc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.5879126Z copying torch\include\ATen\ops\erfinv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.5887411Z copying torch\include\ATen\ops\erfinv_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.5893414Z copying torch\include\ATen\ops\erfinv_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.5900157Z copying torch\include\ATen\ops\erfinv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.5907019Z copying torch\include\ATen\ops\erfinv_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.5913570Z copying torch\include\ATen\ops\erfinv_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.5920469Z copying torch\include\ATen\ops\erfinv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.5926724Z copying torch\include\ATen\ops\erfinv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.5934548Z copying torch\include\ATen\ops\erf_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.5940917Z copying torch\include\ATen\ops\erf_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.5947501Z copying torch\include\ATen\ops\erf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.5954068Z copying torch\include\ATen\ops\erf_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.5960460Z copying torch\include\ATen\ops\erf_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.5972237Z copying torch\include\ATen\ops\erf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.5979000Z copying torch\include\ATen\ops\erf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.5985271Z copying torch\include\ATen\ops\exp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.5991795Z copying torch\include\ATen\ops\exp2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.5998511Z copying torch\include\ATen\ops\exp2_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6005055Z copying torch\include\ATen\ops\exp2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6011656Z copying torch\include\ATen\ops\exp2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6018224Z copying torch\include\ATen\ops\exp2_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6024649Z copying torch\include\ATen\ops\exp2_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6031230Z copying torch\include\ATen\ops\exp2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6037830Z copying torch\include\ATen\ops\exp2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6044298Z copying torch\include\ATen\ops\expand.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6050760Z copying torch\include\ATen\ops\expand_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6057741Z copying torch\include\ATen\ops\expand_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6064125Z copying torch\include\ATen\ops\expand_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6070464Z copying torch\include\ATen\ops\expand_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6077275Z copying torch\include\ATen\ops\expand_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6083821Z copying torch\include\ATen\ops\expand_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6091459Z copying torch\include\ATen\ops\expand_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6098945Z copying torch\include\ATen\ops\expand_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6111013Z copying torch\include\ATen\ops\expand_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6118220Z copying torch\include\ATen\ops\expand_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6124434Z copying torch\include\ATen\ops\expand_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6131065Z copying torch\include\ATen\ops\expand_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6142220Z copying torch\include\ATen\ops\expm1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6149025Z copying torch\include\ATen\ops\expm1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6155700Z copying torch\include\ATen\ops\expm1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6163781Z copying torch\include\ATen\ops\expm1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6175822Z copying torch\include\ATen\ops\expm1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6182480Z copying torch\include\ATen\ops\expm1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6189214Z copying torch\include\ATen\ops\expm1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6196105Z copying torch\include\ATen\ops\expm1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6207404Z copying torch\include\ATen\ops\exponential.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6214680Z copying torch\include\ATen\ops\exponential_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6222175Z copying torch\include\ATen\ops\exponential_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6228920Z copying torch\include\ATen\ops\exponential_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6239714Z copying torch\include\ATen\ops\exponential_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6246527Z copying torch\include\ATen\ops\exponential_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6253592Z copying torch\include\ATen\ops\exponential_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6260749Z copying torch\include\ATen\ops\exp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6272269Z copying torch\include\ATen\ops\exp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6279197Z copying torch\include\ATen\ops\exp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6285857Z copying torch\include\ATen\ops\exp_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6292163Z copying torch\include\ATen\ops\exp_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6304498Z copying torch\include\ATen\ops\exp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6311078Z copying torch\include\ATen\ops\exp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6317394Z copying torch\include\ATen\ops\eye.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6324725Z copying torch\include\ATen\ops\eye_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6337356Z copying torch\include\ATen\ops\eye_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6339793Z copying torch\include\ATen\ops\eye_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6346499Z copying torch\include\ATen\ops\eye_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6353516Z copying torch\include\ATen\ops\eye_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6368242Z copying torch\include\ATen\ops\eye_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6375019Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6382978Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6393858Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6406031Z 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-06-01T21:26:08.6416829Z 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-06-01T21:26:08.6427546Z 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-06-01T21:26:08.6436185Z 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-06-01T21:26:08.6450583Z 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-06-01T21:26:08.6457111Z 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-06-01T21:26:08.6464100Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6470968Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6482990Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6489684Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6527036Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6534058Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6540910Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6548185Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6556282Z 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-06-01T21:26:08.6563556Z 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-06-01T21:26:08.6570648Z 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-06-01T21:26:08.6578257Z 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-06-01T21:26:08.6585429Z 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-06-01T21:26:08.6592214Z 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-06-01T21:26:08.6599228Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6606100Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6614012Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6620783Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6627827Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6634743Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6641796Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6648946Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6656153Z 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-06-01T21:26:08.6664217Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6670395Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6677229Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6684810Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6693177Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6699945Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6706836Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6721891Z 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-06-01T21:26:08.6728300Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6735491Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6742820Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6750616Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6756840Z copying torch\include\ATen\ops\fbgemm_linear_quantize_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6764163Z copying torch\include\ATen\ops\fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6771816Z copying torch\include\ATen\ops\fbgemm_linear_quantize_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6779288Z copying torch\include\ATen\ops\fbgemm_linear_quantize_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6785859Z copying torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6793267Z copying torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6800226Z copying torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6813849Z copying torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6820292Z copying torch\include\ATen\ops\fbgemm_pack_quantized_matrix.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6840182Z copying torch\include\ATen\ops\fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6841236Z copying torch\include\ATen\ops\fbgemm_pack_quantized_matrix_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6856751Z copying torch\include\ATen\ops\fbgemm_pack_quantized_matrix_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6857719Z copying torch\include\ATen\ops\feature_alpha_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6863183Z copying torch\include\ATen\ops\feature_alpha_dropout_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6870011Z copying torch\include\ATen\ops\feature_alpha_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6881533Z copying torch\include\ATen\ops\feature_alpha_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6888376Z copying torch\include\ATen\ops\feature_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6895416Z copying torch\include\ATen\ops\feature_dropout_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6901880Z copying torch\include\ATen\ops\feature_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6908909Z copying torch\include\ATen\ops\feature_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6916115Z copying torch\include\ATen\ops\fft_fft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6922436Z copying torch\include\ATen\ops\fft_fft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6929046Z copying torch\include\ATen\ops\fft_fft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6935618Z copying torch\include\ATen\ops\fft_fft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6942915Z copying torch\include\ATen\ops\fft_fft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6949673Z copying torch\include\ATen\ops\fft_fftfreq.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6956498Z copying torch\include\ATen\ops\fft_fftfreq_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6963287Z copying torch\include\ATen\ops\fft_fftfreq_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6970050Z copying torch\include\ATen\ops\fft_fftfreq_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6976920Z copying torch\include\ATen\ops\fft_fftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6983610Z copying torch\include\ATen\ops\fft_fftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.6996119Z copying torch\include\ATen\ops\fft_fftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.7003039Z copying torch\include\ATen\ops\fft_fftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.7010363Z copying torch\include\ATen\ops\fft_fftshift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.7017739Z copying torch\include\ATen\ops\fft_fftshift_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.7030266Z copying torch\include\ATen\ops\fft_fftshift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.7036705Z copying torch\include\ATen\ops\fft_fftshift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.7043570Z copying torch\include\ATen\ops\fft_fft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.7050011Z copying torch\include\ATen\ops\fft_fft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.7056511Z copying torch\include\ATen\ops\fft_fft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.7063025Z copying torch\include\ATen\ops\fft_hfft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.7069310Z copying torch\include\ATen\ops\fft_hfft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.7076336Z copying torch\include\ATen\ops\fft_hfft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.7083248Z copying torch\include\ATen\ops\fft_hfft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.7089860Z copying torch\include\ATen\ops\fft_hfft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.7096519Z copying torch\include\ATen\ops\fft_hfftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.7103431Z copying torch\include\ATen\ops\fft_hfftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.7110152Z copying torch\include\ATen\ops\fft_hfftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.7116947Z copying torch\include\ATen\ops\fft_hfftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.7124009Z copying torch\include\ATen\ops\fft_hfft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.7130533Z copying torch\include\ATen\ops\fft_hfft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.7142630Z copying torch\include\ATen\ops\fft_hfft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8175004Z copying torch\include\ATen\ops\fft_ifft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8181832Z copying torch\include\ATen\ops\fft_ifft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8188737Z copying torch\include\ATen\ops\fft_ifft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8199862Z copying torch\include\ATen\ops\fft_ifft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8206486Z copying torch\include\ATen\ops\fft_ifft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8213320Z copying torch\include\ATen\ops\fft_ifftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8220618Z copying torch\include\ATen\ops\fft_ifftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8227073Z copying torch\include\ATen\ops\fft_ifftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8233753Z copying torch\include\ATen\ops\fft_ifftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8240381Z copying torch\include\ATen\ops\fft_ifftshift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8247331Z copying torch\include\ATen\ops\fft_ifftshift_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8253956Z copying torch\include\ATen\ops\fft_ifftshift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8260606Z copying torch\include\ATen\ops\fft_ifftshift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8267957Z copying torch\include\ATen\ops\fft_ifft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8274227Z copying torch\include\ATen\ops\fft_ifft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8286198Z copying torch\include\ATen\ops\fft_ifft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8293548Z copying torch\include\ATen\ops\fft_ihfft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8299769Z copying torch\include\ATen\ops\fft_ihfft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8306738Z copying torch\include\ATen\ops\fft_ihfft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8319052Z copying torch\include\ATen\ops\fft_ihfft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8326289Z copying torch\include\ATen\ops\fft_ihfft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8333181Z copying torch\include\ATen\ops\fft_ihfftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8340147Z copying torch\include\ATen\ops\fft_ihfftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8346715Z copying torch\include\ATen\ops\fft_ihfftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8353474Z copying torch\include\ATen\ops\fft_ihfftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8360288Z copying torch\include\ATen\ops\fft_ihfft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8367448Z copying torch\include\ATen\ops\fft_ihfft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8374534Z copying torch\include\ATen\ops\fft_ihfft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8382054Z copying torch\include\ATen\ops\fft_irfft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8388413Z copying torch\include\ATen\ops\fft_irfft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8395794Z copying torch\include\ATen\ops\fft_irfft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8402394Z copying torch\include\ATen\ops\fft_irfft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8409394Z copying torch\include\ATen\ops\fft_irfft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8416354Z copying torch\include\ATen\ops\fft_irfftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8423500Z copying torch\include\ATen\ops\fft_irfftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8434427Z copying torch\include\ATen\ops\fft_irfftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8441247Z copying torch\include\ATen\ops\fft_irfftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8447865Z copying torch\include\ATen\ops\fft_irfft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8454758Z copying torch\include\ATen\ops\fft_irfft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8461742Z copying torch\include\ATen\ops\fft_irfft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8467981Z copying torch\include\ATen\ops\fft_rfft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8480873Z copying torch\include\ATen\ops\fft_rfft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8482371Z copying torch\include\ATen\ops\fft_rfft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8494406Z copying torch\include\ATen\ops\fft_rfft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8501648Z copying torch\include\ATen\ops\fft_rfft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8508457Z copying torch\include\ATen\ops\fft_rfftfreq.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8516066Z copying torch\include\ATen\ops\fft_rfftfreq_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8527241Z copying torch\include\ATen\ops\fft_rfftfreq_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8534142Z copying torch\include\ATen\ops\fft_rfftfreq_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8540886Z copying torch\include\ATen\ops\fft_rfftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8547865Z copying torch\include\ATen\ops\fft_rfftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8559379Z copying torch\include\ATen\ops\fft_rfftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8565965Z copying torch\include\ATen\ops\fft_rfftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8573166Z copying torch\include\ATen\ops\fft_rfft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8579730Z copying torch\include\ATen\ops\fft_rfft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8586535Z copying torch\include\ATen\ops\fft_rfft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8593850Z copying torch\include\ATen\ops\fill.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8600608Z copying torch\include\ATen\ops\fill_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8607191Z copying torch\include\ATen\ops\fill_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8614144Z copying torch\include\ATen\ops\fill_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8620850Z copying torch\include\ATen\ops\fill_diagonal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8627795Z copying torch\include\ATen\ops\fill_diagonal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8634467Z copying torch\include\ATen\ops\fill_diagonal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8641124Z copying torch\include\ATen\ops\fill_diagonal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8648849Z copying torch\include\ATen\ops\fill_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8655415Z copying torch\include\ATen\ops\fill_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8663444Z copying torch\include\ATen\ops\fill_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8669052Z copying torch\include\ATen\ops\fix.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8675263Z copying torch\include\ATen\ops\fix_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8681860Z copying torch\include\ATen\ops\fix_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8688720Z copying torch\include\ATen\ops\fix_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8695008Z copying torch\include\ATen\ops\flatten.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8702197Z copying torch\include\ATen\ops\flatten_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8709532Z copying torch\include\ATen\ops\flatten_dense_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8715892Z copying torch\include\ATen\ops\flatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8722661Z copying torch\include\ATen\ops\flatten_dense_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8729328Z copying torch\include\ATen\ops\flatten_dense_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8736336Z copying torch\include\ATen\ops\flatten_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8744590Z copying torch\include\ATen\ops\flatten_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8750896Z copying torch\include\ATen\ops\flip.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8757296Z copying torch\include\ATen\ops\fliplr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8763848Z copying torch\include\ATen\ops\fliplr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8770604Z copying torch\include\ATen\ops\fliplr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8777387Z copying torch\include\ATen\ops\fliplr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8784799Z copying torch\include\ATen\ops\flipud.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8790745Z copying torch\include\ATen\ops\flipud_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8797517Z copying torch\include\ATen\ops\flipud_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8803934Z copying torch\include\ATen\ops\flipud_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8810949Z copying torch\include\ATen\ops\flip_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8818625Z copying torch\include\ATen\ops\flip_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8824779Z copying torch\include\ATen\ops\flip_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8837890Z copying torch\include\ATen\ops\flip_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8844408Z copying torch\include\ATen\ops\flip_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8850835Z copying torch\include\ATen\ops\float_power.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8858340Z copying torch\include\ATen\ops\float_power_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8864891Z copying torch\include\ATen\ops\float_power_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8871736Z copying torch\include\ATen\ops\float_power_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8878011Z copying torch\include\ATen\ops\floor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8884777Z copying torch\include\ATen\ops\floor_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8891297Z copying torch\include\ATen\ops\floor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8897994Z copying torch\include\ATen\ops\floor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8905480Z copying torch\include\ATen\ops\floor_divide.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8912531Z copying torch\include\ATen\ops\floor_divide_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8919191Z copying torch\include\ATen\ops\floor_divide_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8925962Z copying torch\include\ATen\ops\floor_divide_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8932867Z copying torch\include\ATen\ops\floor_divide_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8939443Z copying torch\include\ATen\ops\floor_divide_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8946124Z copying torch\include\ATen\ops\floor_divide_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8953011Z copying torch\include\ATen\ops\floor_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8959985Z copying torch\include\ATen\ops\floor_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8966708Z copying torch\include\ATen\ops\floor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8973933Z copying torch\include\ATen\ops\floor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8980083Z copying torch\include\ATen\ops\fmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8986761Z copying torch\include\ATen\ops\fmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.8993370Z copying torch\include\ATen\ops\fmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9005303Z copying torch\include\ATen\ops\fmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9012022Z copying torch\include\ATen\ops\fmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9018551Z copying torch\include\ATen\ops\fmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9025018Z copying torch\include\ATen\ops\fmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9031718Z copying torch\include\ATen\ops\fmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9037936Z copying torch\include\ATen\ops\fmin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9044868Z copying torch\include\ATen\ops\fmin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9051767Z copying torch\include\ATen\ops\fmin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9058023Z copying torch\include\ATen\ops\fmin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9064894Z copying torch\include\ATen\ops\fmin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9081348Z copying torch\include\ATen\ops\fmin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9087414Z copying torch\include\ATen\ops\fmin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9094018Z copying torch\include\ATen\ops\fmin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9100615Z copying torch\include\ATen\ops\fmod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9107242Z copying torch\include\ATen\ops\fmod_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9114266Z copying torch\include\ATen\ops\fmod_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9127073Z copying torch\include\ATen\ops\fmod_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9134228Z copying torch\include\ATen\ops\fmod_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9140574Z copying torch\include\ATen\ops\fmod_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9147036Z copying torch\include\ATen\ops\fmod_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9153469Z copying torch\include\ATen\ops\fmod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9161017Z copying torch\include\ATen\ops\fmod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9173279Z copying torch\include\ATen\ops\frac.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9179440Z copying torch\include\ATen\ops\fractional_max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9190689Z copying torch\include\ATen\ops\fractional_max_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9198088Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9205052Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9211818Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9219250Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9225862Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9232998Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9241746Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9249308Z copying torch\include\ATen\ops\fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9257576Z copying torch\include\ATen\ops\fractional_max_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9264586Z copying torch\include\ATen\ops\fractional_max_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9272104Z copying torch\include\ATen\ops\fractional_max_pool2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9286114Z copying torch\include\ATen\ops\fractional_max_pool2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9292519Z copying torch\include\ATen\ops\fractional_max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9299385Z copying torch\include\ATen\ops\fractional_max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9306264Z copying torch\include\ATen\ops\fractional_max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9318312Z copying torch\include\ATen\ops\fractional_max_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9326263Z copying torch\include\ATen\ops\fractional_max_pool3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9332720Z copying torch\include\ATen\ops\fractional_max_pool3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9340373Z copying torch\include\ATen\ops\fractional_max_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9348079Z copying torch\include\ATen\ops\fractional_max_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9355347Z copying torch\include\ATen\ops\fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9363821Z copying torch\include\ATen\ops\fractional_max_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9372176Z copying torch\include\ATen\ops\fractional_max_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9381599Z copying torch\include\ATen\ops\fractional_max_pool3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9388508Z copying torch\include\ATen\ops\fractional_max_pool3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9396639Z copying torch\include\ATen\ops\fractional_max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9402510Z copying torch\include\ATen\ops\fractional_max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9413939Z copying torch\include\ATen\ops\frac_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9420718Z copying torch\include\ATen\ops\frac_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9427283Z copying torch\include\ATen\ops\frac_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9435225Z copying torch\include\ATen\ops\frac_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9440775Z copying torch\include\ATen\ops\frac_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9447349Z copying torch\include\ATen\ops\frac_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9453915Z copying torch\include\ATen\ops\frac_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9460163Z copying torch\include\ATen\ops\frexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9471764Z copying torch\include\ATen\ops\frexp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9478306Z copying torch\include\ATen\ops\frexp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9485021Z copying torch\include\ATen\ops\frexp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9491482Z copying torch\include\ATen\ops\frexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9504407Z copying torch\include\ATen\ops\frexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9511260Z copying torch\include\ATen\ops\frobenius_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9517850Z copying torch\include\ATen\ops\frobenius_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9524505Z copying torch\include\ATen\ops\frobenius_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9535455Z copying torch\include\ATen\ops\frobenius_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9542108Z copying torch\include\ATen\ops\from_blob.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9548555Z copying torch\include\ATen\ops\from_file.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9555699Z copying torch\include\ATen\ops\from_file_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9567278Z copying torch\include\ATen\ops\from_file_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9573998Z copying torch\include\ATen\ops\from_file_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9580945Z copying torch\include\ATen\ops\from_file_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9587536Z copying torch\include\ATen\ops\full.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9594662Z copying torch\include\ATen\ops\full_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9601168Z copying torch\include\ATen\ops\full_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9607924Z copying torch\include\ATen\ops\full_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9614528Z copying torch\include\ATen\ops\full_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9621229Z copying torch\include\ATen\ops\full_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9627737Z copying torch\include\ATen\ops\full_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9634299Z copying torch\include\ATen\ops\full_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9640845Z copying torch\include\ATen\ops\fused_moving_avg_obs_fake_quant.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9648340Z 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-06-01T21:26:08.9654938Z copying torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9662254Z copying torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9670820Z copying torch\include\ATen\ops\gather.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9684165Z copying torch\include\ATen\ops\gather_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9691169Z copying torch\include\ATen\ops\gather_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9699401Z copying torch\include\ATen\ops\gather_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9705688Z copying torch\include\ATen\ops\gather_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9712560Z copying torch\include\ATen\ops\gather_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9719552Z copying torch\include\ATen\ops\gather_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9726851Z copying torch\include\ATen\ops\gather_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9734399Z copying torch\include\ATen\ops\gather_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9740905Z copying torch\include\ATen\ops\gather_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9747836Z copying torch\include\ATen\ops\gather_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9754844Z copying torch\include\ATen\ops\gather_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9762894Z copying torch\include\ATen\ops\gather_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9768862Z copying torch\include\ATen\ops\gcd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9775915Z copying torch\include\ATen\ops\gcd_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9782513Z copying torch\include\ATen\ops\gcd_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9789533Z copying torch\include\ATen\ops\gcd_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9803358Z copying torch\include\ATen\ops\gcd_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9809661Z copying torch\include\ATen\ops\gcd_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9816699Z copying torch\include\ATen\ops\gcd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9823292Z copying torch\include\ATen\ops\gcd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9834493Z copying torch\include\ATen\ops\ge.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9841156Z copying torch\include\ATen\ops\gelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9847915Z copying torch\include\ATen\ops\gelu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9856072Z copying torch\include\ATen\ops\gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9867705Z copying torch\include\ATen\ops\gelu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9879587Z copying torch\include\ATen\ops\gelu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9881518Z copying torch\include\ATen\ops\gelu_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9888616Z copying torch\include\ATen\ops\gelu_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9900781Z copying torch\include\ATen\ops\gelu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9907536Z copying torch\include\ATen\ops\gelu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9914848Z copying torch\include\ATen\ops\gelu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9921704Z copying torch\include\ATen\ops\gelu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9933801Z copying torch\include\ATen\ops\gelu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9940555Z copying torch\include\ATen\ops\gelu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9947163Z copying torch\include\ATen\ops\gelu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9954291Z copying torch\include\ATen\ops\gelu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9961559Z copying torch\include\ATen\ops\gelu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9967415Z copying torch\include\ATen\ops\geometric.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9974967Z copying torch\include\ATen\ops\geometric_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9981848Z copying torch\include\ATen\ops\geometric_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9993190Z copying torch\include\ATen\ops\geometric_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:08.9999848Z copying torch\include\ATen\ops\geometric_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0007439Z copying torch\include\ATen\ops\geometric_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0013899Z copying torch\include\ATen\ops\geometric_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0025597Z copying torch\include\ATen\ops\geqrf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0031975Z copying torch\include\ATen\ops\geqrf_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0038558Z copying torch\include\ATen\ops\geqrf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0045497Z copying torch\include\ATen\ops\geqrf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0052216Z copying torch\include\ATen\ops\geqrf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0058771Z copying torch\include\ATen\ops\ger.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0065413Z copying torch\include\ATen\ops\ger_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0071697Z copying torch\include\ATen\ops\ger_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0084052Z copying torch\include\ATen\ops\ger_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0090777Z copying torch\include\ATen\ops\ge_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0114804Z copying torch\include\ATen\ops\ge_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0121819Z copying torch\include\ATen\ops\ge_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0137155Z copying torch\include\ATen\ops\ge_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0143241Z copying torch\include\ATen\ops\ge_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0149793Z copying torch\include\ATen\ops\ge_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0202513Z copying torch\include\ATen\ops\ge_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0209509Z copying torch\include\ATen\ops\glu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0217866Z copying torch\include\ATen\ops\glu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0223985Z copying torch\include\ATen\ops\glu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0230832Z copying torch\include\ATen\ops\glu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0237786Z copying torch\include\ATen\ops\glu_backward_jvp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0244904Z copying torch\include\ATen\ops\glu_backward_jvp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0252667Z copying torch\include\ATen\ops\glu_backward_jvp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0259297Z copying torch\include\ATen\ops\glu_backward_jvp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0271238Z copying torch\include\ATen\ops\glu_backward_jvp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0277888Z copying torch\include\ATen\ops\glu_backward_jvp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0285025Z copying torch\include\ATen\ops\glu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0292872Z copying torch\include\ATen\ops\glu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0299351Z copying torch\include\ATen\ops\glu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0306088Z copying torch\include\ATen\ops\glu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0312797Z copying torch\include\ATen\ops\glu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0319568Z copying torch\include\ATen\ops\glu_jvp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0331459Z copying torch\include\ATen\ops\glu_jvp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0338873Z copying torch\include\ATen\ops\glu_jvp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0345396Z copying torch\include\ATen\ops\glu_jvp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0351974Z copying torch\include\ATen\ops\glu_jvp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0366022Z copying torch\include\ATen\ops\glu_jvp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0375032Z copying torch\include\ATen\ops\glu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0383728Z copying torch\include\ATen\ops\glu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0386357Z copying torch\include\ATen\ops\glu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0392818Z copying torch\include\ATen\ops\glu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0399554Z copying torch\include\ATen\ops\gradient.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0407718Z copying torch\include\ATen\ops\gradient_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0414571Z copying torch\include\ATen\ops\gradient_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0421182Z copying torch\include\ATen\ops\gradient_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0427719Z copying torch\include\ATen\ops\greater.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0434630Z copying torch\include\ATen\ops\greater_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0440908Z copying torch\include\ATen\ops\greater_equal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0452422Z copying torch\include\ATen\ops\greater_equal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0459200Z copying torch\include\ATen\ops\greater_equal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0466065Z copying torch\include\ATen\ops\greater_equal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0472666Z copying torch\include\ATen\ops\greater_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0486823Z copying torch\include\ATen\ops\greater_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0493731Z copying torch\include\ATen\ops\grid_sampler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0500225Z copying torch\include\ATen\ops\grid_sampler_2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0506860Z copying torch\include\ATen\ops\grid_sampler_2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0519693Z copying torch\include\ATen\ops\grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0526448Z copying torch\include\ATen\ops\grid_sampler_2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0533345Z copying torch\include\ATen\ops\grid_sampler_2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0540193Z copying torch\include\ATen\ops\grid_sampler_2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0551681Z copying torch\include\ATen\ops\grid_sampler_2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0558605Z copying torch\include\ATen\ops\grid_sampler_2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0565733Z copying torch\include\ATen\ops\grid_sampler_2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0572599Z copying torch\include\ATen\ops\grid_sampler_2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0585750Z copying torch\include\ATen\ops\grid_sampler_2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0592601Z copying torch\include\ATen\ops\grid_sampler_2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0599411Z copying torch\include\ATen\ops\grid_sampler_3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0606155Z copying torch\include\ATen\ops\grid_sampler_3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0619382Z copying torch\include\ATen\ops\grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0625943Z copying torch\include\ATen\ops\grid_sampler_3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0632772Z copying torch\include\ATen\ops\grid_sampler_3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0639908Z copying torch\include\ATen\ops\grid_sampler_3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0646328Z copying torch\include\ATen\ops\grid_sampler_3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0653898Z copying torch\include\ATen\ops\grid_sampler_3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0660202Z copying torch\include\ATen\ops\grid_sampler_3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0667988Z copying torch\include\ATen\ops\grid_sampler_3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0679687Z copying torch\include\ATen\ops\grid_sampler_3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0685998Z copying torch\include\ATen\ops\grid_sampler_3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0693141Z copying torch\include\ATen\ops\grid_sampler_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0699884Z copying torch\include\ATen\ops\grid_sampler_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0706660Z copying torch\include\ATen\ops\grid_sampler_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0714058Z copying torch\include\ATen\ops\group_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0720858Z copying torch\include\ATen\ops\group_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0727564Z copying torch\include\ATen\ops\group_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0739138Z copying torch\include\ATen\ops\group_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0745808Z copying torch\include\ATen\ops\gru.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0752639Z copying torch\include\ATen\ops\gru_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0760241Z copying torch\include\ATen\ops\gru_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0766300Z copying torch\include\ATen\ops\gru_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0773261Z copying torch\include\ATen\ops\gru_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0780160Z copying torch\include\ATen\ops\gru_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0786670Z copying torch\include\ATen\ops\gru_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0797661Z copying torch\include\ATen\ops\gru_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0803881Z copying torch\include\ATen\ops\gt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0812296Z copying torch\include\ATen\ops\gt_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0818293Z copying torch\include\ATen\ops\gt_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0824956Z copying torch\include\ATen\ops\gt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0831783Z copying torch\include\ATen\ops\gt_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0838520Z copying torch\include\ATen\ops\gt_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0845035Z copying torch\include\ATen\ops\gt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0872118Z copying torch\include\ATen\ops\gt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0872840Z copying torch\include\ATen\ops\hamming_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0900029Z copying torch\include\ATen\ops\hamming_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0901136Z copying torch\include\ATen\ops\hamming_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0901927Z copying torch\include\ATen\ops\hamming_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0902674Z copying torch\include\ATen\ops\hann_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0903633Z copying torch\include\ATen\ops\hann_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0908199Z copying torch\include\ATen\ops\hann_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0913425Z copying torch\include\ATen\ops\hann_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0920072Z copying torch\include\ATen\ops\hardshrink.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0926805Z copying torch\include\ATen\ops\hardshrink_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0933916Z copying torch\include\ATen\ops\hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0946219Z copying torch\include\ATen\ops\hardshrink_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0953091Z copying torch\include\ATen\ops\hardshrink_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0959686Z copying torch\include\ATen\ops\hardshrink_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0966455Z copying torch\include\ATen\ops\hardshrink_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0973338Z copying torch\include\ATen\ops\hardshrink_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0980362Z copying torch\include\ATen\ops\hardshrink_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0987249Z copying torch\include\ATen\ops\hardshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.0993802Z copying torch\include\ATen\ops\hardshrink_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1000316Z copying torch\include\ATen\ops\hardshrink_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1006960Z copying torch\include\ATen\ops\hardshrink_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1013943Z copying torch\include\ATen\ops\hardshrink_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1020707Z copying torch\include\ATen\ops\hardshrink_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1027373Z copying torch\include\ATen\ops\hardshrink_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1034209Z copying torch\include\ATen\ops\hardsigmoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1040812Z copying torch\include\ATen\ops\hardsigmoid_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1047926Z copying torch\include\ATen\ops\hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1055229Z copying torch\include\ATen\ops\hardsigmoid_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1062135Z copying torch\include\ATen\ops\hardsigmoid_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1068926Z copying torch\include\ATen\ops\hardsigmoid_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1075966Z copying torch\include\ATen\ops\hardsigmoid_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1082660Z copying torch\include\ATen\ops\hardsigmoid_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1089320Z copying torch\include\ATen\ops\hardsigmoid_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1096606Z copying torch\include\ATen\ops\hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1103658Z copying torch\include\ATen\ops\hardsigmoid_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1110396Z copying torch\include\ATen\ops\hardsigmoid_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1117323Z copying torch\include\ATen\ops\hardsigmoid_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1124263Z copying torch\include\ATen\ops\hardsigmoid_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1131035Z copying torch\include\ATen\ops\hardsigmoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1140216Z copying torch\include\ATen\ops\hardsigmoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1146241Z copying torch\include\ATen\ops\hardswish.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1153281Z copying torch\include\ATen\ops\hardswish_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1160285Z copying torch\include\ATen\ops\hardswish_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1167193Z copying torch\include\ATen\ops\hardswish_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1174820Z copying torch\include\ATen\ops\hardswish_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1181449Z copying torch\include\ATen\ops\hardswish_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1188391Z copying torch\include\ATen\ops\hardswish_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1195182Z copying torch\include\ATen\ops\hardswish_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1203488Z copying torch\include\ATen\ops\hardswish_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1209925Z copying torch\include\ATen\ops\hardswish_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1216947Z copying torch\include\ATen\ops\hardswish_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1223937Z copying torch\include\ATen\ops\hardswish_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1232151Z copying torch\include\ATen\ops\hardtanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1237921Z copying torch\include\ATen\ops\hardtanh_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1245017Z copying torch\include\ATen\ops\hardtanh_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1251944Z copying torch\include\ATen\ops\hardtanh_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1258806Z copying torch\include\ATen\ops\hardtanh_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1266745Z copying torch\include\ATen\ops\hardtanh_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1273306Z copying torch\include\ATen\ops\hardtanh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1280121Z copying torch\include\ATen\ops\hardtanh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1286891Z copying torch\include\ATen\ops\hardtanh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1293853Z copying torch\include\ATen\ops\hardtanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1301390Z copying torch\include\ATen\ops\hardtanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1307394Z copying torch\include\ATen\ops\heaviside.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1314509Z copying torch\include\ATen\ops\heaviside_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1336375Z copying torch\include\ATen\ops\heaviside_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1409903Z copying torch\include\ATen\ops\heaviside_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1421519Z copying torch\include\ATen\ops\heaviside_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1428460Z copying torch\include\ATen\ops\heaviside_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1435078Z copying torch\include\ATen\ops\heaviside_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1441615Z copying torch\include\ATen\ops\heaviside_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1448216Z copying torch\include\ATen\ops\hinge_embedding_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1456623Z copying torch\include\ATen\ops\hinge_embedding_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1462274Z copying torch\include\ATen\ops\hinge_embedding_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1468938Z copying torch\include\ATen\ops\hinge_embedding_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1475447Z copying torch\include\ATen\ops\histc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1482362Z copying torch\include\ATen\ops\histc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1488986Z copying torch\include\ATen\ops\histc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1495598Z copying torch\include\ATen\ops\histc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1502052Z copying torch\include\ATen\ops\histc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1508714Z copying torch\include\ATen\ops\histogram.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1515541Z copying torch\include\ATen\ops\histogramdd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1522519Z copying torch\include\ATen\ops\histogramdd_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1529553Z copying torch\include\ATen\ops\histogramdd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1536441Z copying torch\include\ATen\ops\histogramdd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1543450Z copying torch\include\ATen\ops\histogram_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1550335Z copying torch\include\ATen\ops\histogram_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1562652Z copying torch\include\ATen\ops\histogram_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1570279Z copying torch\include\ATen\ops\hsplit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1576436Z copying torch\include\ATen\ops\hsplit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1583064Z copying torch\include\ATen\ops\hsplit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1589753Z copying torch\include\ATen\ops\hsplit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1596701Z copying torch\include\ATen\ops\hspmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1604529Z copying torch\include\ATen\ops\hspmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1610545Z copying torch\include\ATen\ops\hspmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1622152Z copying torch\include\ATen\ops\hstack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1628870Z copying torch\include\ATen\ops\hstack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1636761Z copying torch\include\ATen\ops\hstack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1643170Z copying torch\include\ATen\ops\hstack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1650657Z copying torch\include\ATen\ops\huber_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1657263Z copying torch\include\ATen\ops\huber_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1664430Z copying torch\include\ATen\ops\huber_loss_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1671647Z copying torch\include\ATen\ops\huber_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1678239Z copying torch\include\ATen\ops\huber_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1685650Z copying torch\include\ATen\ops\huber_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1692424Z copying torch\include\ATen\ops\huber_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1699220Z copying torch\include\ATen\ops\huber_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1706166Z copying torch\include\ATen\ops\huber_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1713313Z copying torch\include\ATen\ops\huber_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1721053Z copying torch\include\ATen\ops\huber_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1726970Z copying torch\include\ATen\ops\hypot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1734256Z copying torch\include\ATen\ops\hypot_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1740848Z copying torch\include\ATen\ops\hypot_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1747651Z copying torch\include\ATen\ops\hypot_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1755592Z copying torch\include\ATen\ops\hypot_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1768106Z copying torch\include\ATen\ops\hypot_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1774835Z copying torch\include\ATen\ops\hypot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1781613Z copying torch\include\ATen\ops\hypot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1788355Z copying torch\include\ATen\ops\i0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1795958Z copying torch\include\ATen\ops\i0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1802243Z copying torch\include\ATen\ops\i0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1809042Z copying torch\include\ATen\ops\i0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1815725Z copying torch\include\ATen\ops\i0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1822568Z copying torch\include\ATen\ops\i0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1830338Z copying torch\include\ATen\ops\i0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1836087Z copying torch\include\ATen\ops\i0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1842418Z copying torch\include\ATen\ops\igamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1849022Z copying torch\include\ATen\ops\igammac.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1856029Z copying torch\include\ATen\ops\igammac_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1862871Z copying torch\include\ATen\ops\igammac_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1869319Z copying torch\include\ATen\ops\igammac_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1875990Z copying torch\include\ATen\ops\igammac_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1882771Z copying torch\include\ATen\ops\igammac_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1889641Z copying torch\include\ATen\ops\igammac_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1896289Z copying torch\include\ATen\ops\igammac_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1903648Z copying torch\include\ATen\ops\igamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1910171Z copying torch\include\ATen\ops\igamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1916882Z copying torch\include\ATen\ops\igamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1923330Z copying torch\include\ATen\ops\igamma_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1930047Z copying torch\include\ATen\ops\igamma_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1962997Z copying torch\include\ATen\ops\igamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1968980Z copying torch\include\ATen\ops\igamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1975625Z copying torch\include\ATen\ops\im2col.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1982439Z copying torch\include\ATen\ops\im2col_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1989159Z copying torch\include\ATen\ops\im2col_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.1995783Z copying torch\include\ATen\ops\im2col_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2002133Z copying torch\include\ATen\ops\im2col_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2013508Z copying torch\include\ATen\ops\imag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2024570Z copying torch\include\ATen\ops\imag_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2030916Z copying torch\include\ATen\ops\imag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2037269Z copying torch\include\ATen\ops\imag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2048252Z copying torch\include\ATen\ops\index.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2054697Z copying torch\include\ATen\ops\index_add.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2061919Z copying torch\include\ATen\ops\index_add_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2068672Z copying torch\include\ATen\ops\index_add_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2075206Z copying torch\include\ATen\ops\index_add_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2081883Z copying torch\include\ATen\ops\index_add_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2088654Z copying torch\include\ATen\ops\index_add_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2096618Z copying torch\include\ATen\ops\index_add_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2119262Z copying torch\include\ATen\ops\index_add_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2125615Z copying torch\include\ATen\ops\index_add_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2133199Z copying torch\include\ATen\ops\index_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2140877Z copying torch\include\ATen\ops\index_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2147311Z copying torch\include\ATen\ops\index_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2162260Z copying torch\include\ATen\ops\index_copy_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2187365Z copying torch\include\ATen\ops\index_copy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2194741Z copying torch\include\ATen\ops\index_copy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2208991Z copying torch\include\ATen\ops\index_copy_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2216263Z copying torch\include\ATen\ops\index_copy_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2223057Z copying torch\include\ATen\ops\index_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2229866Z copying torch\include\ATen\ops\index_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2237763Z copying torch\include\ATen\ops\index_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2244624Z copying torch\include\ATen\ops\index_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2251509Z copying torch\include\ATen\ops\index_fill.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2258953Z copying torch\include\ATen\ops\index_fill_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2266543Z copying torch\include\ATen\ops\index_fill_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2272978Z copying torch\include\ATen\ops\index_fill_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2279865Z copying torch\include\ATen\ops\index_fill_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2286921Z copying torch\include\ATen\ops\index_fill_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2295179Z copying torch\include\ATen\ops\index_fill_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2301030Z copying torch\include\ATen\ops\index_fill_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2308055Z copying torch\include\ATen\ops\index_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2314932Z copying torch\include\ATen\ops\index_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2321823Z copying torch\include\ATen\ops\index_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2329760Z copying torch\include\ATen\ops\index_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2335711Z copying torch\include\ATen\ops\index_put.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2342797Z copying torch\include\ATen\ops\index_put_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2349828Z copying torch\include\ATen\ops\index_put_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2356663Z copying torch\include\ATen\ops\index_put_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2364187Z copying torch\include\ATen\ops\index_reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2374451Z copying torch\include\ATen\ops\index_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2379978Z copying torch\include\ATen\ops\index_reduce_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2386354Z copying torch\include\ATen\ops\index_reduce_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2392823Z copying torch\include\ATen\ops\index_reduce_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2399869Z copying torch\include\ATen\ops\index_reduce_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2406536Z copying torch\include\ATen\ops\index_reduce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2413757Z copying torch\include\ATen\ops\index_reduce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2420844Z copying torch\include\ATen\ops\index_select.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2427777Z copying torch\include\ATen\ops\index_select_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2440524Z copying torch\include\ATen\ops\index_select_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2447443Z copying torch\include\ATen\ops\index_select_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2454371Z copying torch\include\ATen\ops\index_select_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2461761Z copying torch\include\ATen\ops\index_select_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2468429Z copying torch\include\ATen\ops\index_select_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2475212Z copying torch\include\ATen\ops\index_select_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2481988Z copying torch\include\ATen\ops\index_select_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2488703Z copying torch\include\ATen\ops\index_select_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2495606Z copying torch\include\ATen\ops\indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2501948Z copying torch\include\ATen\ops\indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2508799Z copying torch\include\ATen\ops\indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2516199Z copying torch\include\ATen\ops\indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2525129Z copying torch\include\ATen\ops\indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2531603Z copying torch\include\ATen\ops\indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2538869Z copying torch\include\ATen\ops\indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2546026Z copying torch\include\ATen\ops\indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2554011Z copying torch\include\ATen\ops\indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2560328Z copying torch\include\ATen\ops\infinitely_differentiable_gelu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2567362Z copying torch\include\ATen\ops\infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2575005Z copying torch\include\ATen\ops\infinitely_differentiable_gelu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2583257Z copying torch\include\ATen\ops\infinitely_differentiable_gelu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2589020Z copying torch\include\ATen\ops\inner.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2595646Z copying torch\include\ATen\ops\inner_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2602513Z copying torch\include\ATen\ops\inner_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2614386Z copying torch\include\ATen\ops\inner_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2621191Z copying torch\include\ATen\ops\instance_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2629490Z copying torch\include\ATen\ops\instance_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2665893Z copying torch\include\ATen\ops\instance_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2673676Z copying torch\include\ATen\ops\instance_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2680916Z copying torch\include\ATen\ops\int_repr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2687619Z copying torch\include\ATen\ops\int_repr_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2694309Z copying torch\include\ATen\ops\int_repr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2701090Z copying torch\include\ATen\ops\int_repr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2707930Z copying torch\include\ATen\ops\inverse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2715443Z copying torch\include\ATen\ops\inverse_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2721758Z copying torch\include\ATen\ops\inverse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2728222Z copying torch\include\ATen\ops\inverse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2735168Z copying torch\include\ATen\ops\isclose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2741841Z copying torch\include\ATen\ops\isclose_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2749690Z copying torch\include\ATen\ops\isclose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2755585Z copying torch\include\ATen\ops\isclose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2762131Z copying torch\include\ATen\ops\isfinite.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2768962Z copying torch\include\ATen\ops\isfinite_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2776031Z copying torch\include\ATen\ops\isfinite_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2782562Z copying torch\include\ATen\ops\isfinite_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2790048Z copying torch\include\ATen\ops\isin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2796024Z copying torch\include\ATen\ops\isinf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2802569Z copying torch\include\ATen\ops\isinf_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2809300Z copying torch\include\ATen\ops\isinf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2815892Z copying torch\include\ATen\ops\isinf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2823236Z copying torch\include\ATen\ops\isin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2829937Z copying torch\include\ATen\ops\isin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2836766Z copying torch\include\ATen\ops\isin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2843200Z copying torch\include\ATen\ops\isin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2896231Z copying torch\include\ATen\ops\isin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2903068Z copying torch\include\ATen\ops\isin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2909896Z copying torch\include\ATen\ops\isin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2916314Z copying torch\include\ATen\ops\isnan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2923068Z copying torch\include\ATen\ops\isnan_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2930084Z copying torch\include\ATen\ops\isnan_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2938263Z copying torch\include\ATen\ops\isnan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2943847Z copying torch\include\ATen\ops\isnan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2950653Z copying torch\include\ATen\ops\isnan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2957493Z copying torch\include\ATen\ops\isneginf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2964316Z copying torch\include\ATen\ops\isneginf_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2971437Z copying torch\include\ATen\ops\isneginf_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2978556Z copying torch\include\ATen\ops\isneginf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2985251Z copying torch\include\ATen\ops\isneginf_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2991871Z copying torch\include\ATen\ops\isneginf_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.2998618Z copying torch\include\ATen\ops\isneginf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3005386Z copying torch\include\ATen\ops\isneginf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3012125Z copying torch\include\ATen\ops\isposinf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3019301Z copying torch\include\ATen\ops\isposinf_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3026227Z copying torch\include\ATen\ops\isposinf_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3033188Z copying torch\include\ATen\ops\isposinf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3040761Z copying torch\include\ATen\ops\isposinf_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3047363Z copying torch\include\ATen\ops\isposinf_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3054353Z copying torch\include\ATen\ops\isposinf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3060793Z copying torch\include\ATen\ops\isposinf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3067362Z copying torch\include\ATen\ops\isreal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3073818Z copying torch\include\ATen\ops\isreal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3081087Z copying torch\include\ATen\ops\isreal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3087372Z copying torch\include\ATen\ops\isreal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3094245Z copying torch\include\ATen\ops\istft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3101039Z copying torch\include\ATen\ops\istft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3107726Z copying torch\include\ATen\ops\istft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3114159Z copying torch\include\ATen\ops\istft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3120918Z copying torch\include\ATen\ops\is_coalesced.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3127498Z copying torch\include\ATen\ops\is_coalesced_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3134517Z copying torch\include\ATen\ops\is_coalesced_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3140717Z copying torch\include\ATen\ops\is_coalesced_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3147383Z copying torch\include\ATen\ops\is_complex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3154189Z copying torch\include\ATen\ops\is_complex_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3161015Z copying torch\include\ATen\ops\is_complex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3167466Z copying torch\include\ATen\ops\is_complex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3174422Z copying torch\include\ATen\ops\is_conj.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3181107Z copying torch\include\ATen\ops\is_conj_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3188346Z copying torch\include\ATen\ops\is_conj_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3194679Z copying torch\include\ATen\ops\is_conj_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3201418Z copying torch\include\ATen\ops\is_distributed.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3209613Z copying torch\include\ATen\ops\is_distributed_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3215723Z copying torch\include\ATen\ops\is_distributed_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3222231Z copying torch\include\ATen\ops\is_distributed_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3229381Z copying torch\include\ATen\ops\is_floating_point.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3236524Z copying torch\include\ATen\ops\is_floating_point_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3243986Z copying torch\include\ATen\ops\is_floating_point_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3249842Z copying torch\include\ATen\ops\is_floating_point_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3256436Z copying torch\include\ATen\ops\is_inference.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3263300Z copying torch\include\ATen\ops\is_inference_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3270328Z copying torch\include\ATen\ops\is_inference_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3278026Z copying torch\include\ATen\ops\is_inference_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3284141Z copying torch\include\ATen\ops\is_leaf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3290575Z copying torch\include\ATen\ops\is_leaf_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3297503Z copying torch\include\ATen\ops\is_leaf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3304077Z copying torch\include\ATen\ops\is_leaf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3310719Z copying torch\include\ATen\ops\is_neg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3322609Z copying torch\include\ATen\ops\is_neg_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3330440Z copying torch\include\ATen\ops\is_neg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3336064Z copying torch\include\ATen\ops\is_neg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3342747Z copying torch\include\ATen\ops\is_nonzero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3354995Z copying torch\include\ATen\ops\is_nonzero_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3361625Z copying torch\include\ATen\ops\is_nonzero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3368087Z copying torch\include\ATen\ops\is_nonzero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3378490Z copying torch\include\ATen\ops\is_pinned.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3382266Z copying torch\include\ATen\ops\is_pinned_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3389125Z copying torch\include\ATen\ops\is_pinned_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3397090Z copying torch\include\ATen\ops\is_pinned_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3404898Z copying torch\include\ATen\ops\is_same_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3414998Z copying torch\include\ATen\ops\is_same_size_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3428618Z copying torch\include\ATen\ops\is_same_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3429391Z copying torch\include\ATen\ops\is_same_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3436079Z copying torch\include\ATen\ops\is_set_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3442146Z copying torch\include\ATen\ops\is_set_to_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3448822Z copying torch\include\ATen\ops\is_set_to_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3455816Z copying torch\include\ATen\ops\is_set_to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3462520Z copying torch\include\ATen\ops\is_set_to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3469080Z copying torch\include\ATen\ops\is_signed.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3476363Z copying torch\include\ATen\ops\is_signed_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3482847Z copying torch\include\ATen\ops\is_signed_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3489487Z copying torch\include\ATen\ops\is_signed_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3496657Z copying torch\include\ATen\ops\is_vulkan_available.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3504640Z copying torch\include\ATen\ops\is_vulkan_available_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3511238Z copying torch\include\ATen\ops\is_vulkan_available_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3517985Z copying torch\include\ATen\ops\is_vulkan_available_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3530693Z copying torch\include\ATen\ops\item.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3537462Z copying torch\include\ATen\ops\item_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3544033Z copying torch\include\ATen\ops\item_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3550461Z copying torch\include\ATen\ops\item_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3556861Z copying torch\include\ATen\ops\kaiser_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3563863Z copying torch\include\ATen\ops\kaiser_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3570820Z copying torch\include\ATen\ops\kaiser_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3577896Z copying torch\include\ATen\ops\kaiser_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3591181Z copying torch\include\ATen\ops\kl_div.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3597828Z copying torch\include\ATen\ops\kl_div_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3604495Z copying torch\include\ATen\ops\kl_div_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3611124Z copying torch\include\ATen\ops\kl_div_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3617781Z copying torch\include\ATen\ops\kron.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3624347Z copying torch\include\ATen\ops\kron_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3630908Z copying torch\include\ATen\ops\kron_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3637494Z copying torch\include\ATen\ops\kron_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3650225Z copying torch\include\ATen\ops\kthvalue.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3657841Z copying torch\include\ATen\ops\kthvalue_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3664984Z copying torch\include\ATen\ops\kthvalue_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3671830Z copying torch\include\ATen\ops\kthvalue_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3678815Z copying torch\include\ATen\ops\kthvalue_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3685633Z copying torch\include\ATen\ops\kthvalue_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3692947Z copying torch\include\ATen\ops\kthvalue_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3699463Z copying torch\include\ATen\ops\l1_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3706244Z copying torch\include\ATen\ops\l1_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3716227Z copying torch\include\ATen\ops\l1_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3722983Z copying torch\include\ATen\ops\l1_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3729890Z copying torch\include\ATen\ops\layer_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3737050Z copying torch\include\ATen\ops\layer_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3744757Z copying torch\include\ATen\ops\layer_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3751513Z copying torch\include\ATen\ops\layer_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3758497Z copying torch\include\ATen\ops\lcm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3765162Z copying torch\include\ATen\ops\lcm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3772466Z copying torch\include\ATen\ops\lcm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3779063Z copying torch\include\ATen\ops\lcm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3785511Z copying torch\include\ATen\ops\lcm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3797745Z copying torch\include\ATen\ops\lcm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3804270Z copying torch\include\ATen\ops\lcm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3810725Z copying torch\include\ATen\ops\lcm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3817193Z copying torch\include\ATen\ops\ldexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3825026Z copying torch\include\ATen\ops\ldexp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3830885Z copying torch\include\ATen\ops\ldexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3837694Z copying torch\include\ATen\ops\ldexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3844926Z copying torch\include\ATen\ops\le.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3851340Z copying torch\include\ATen\ops\leaky_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3859510Z copying torch\include\ATen\ops\leaky_relu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3866470Z copying torch\include\ATen\ops\leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3873382Z copying torch\include\ATen\ops\leaky_relu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3880171Z copying torch\include\ATen\ops\leaky_relu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3888296Z copying torch\include\ATen\ops\leaky_relu_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3895638Z copying torch\include\ATen\ops\leaky_relu_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3902420Z copying torch\include\ATen\ops\leaky_relu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3909189Z copying torch\include\ATen\ops\leaky_relu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3916488Z copying torch\include\ATen\ops\leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3923182Z copying torch\include\ATen\ops\leaky_relu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3930282Z copying torch\include\ATen\ops\leaky_relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3937068Z copying torch\include\ATen\ops\leaky_relu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3943656Z copying torch\include\ATen\ops\leaky_relu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3950467Z copying torch\include\ATen\ops\leaky_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3957135Z copying torch\include\ATen\ops\leaky_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3964144Z copying torch\include\ATen\ops\lerp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3970751Z copying torch\include\ATen\ops\lerp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3977888Z copying torch\include\ATen\ops\lerp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3984842Z copying torch\include\ATen\ops\lerp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3992343Z copying torch\include\ATen\ops\lerp_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.3999049Z copying torch\include\ATen\ops\lerp_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4005932Z copying torch\include\ATen\ops\lerp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4012776Z copying torch\include\ATen\ops\lerp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4019255Z copying torch\include\ATen\ops\less.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4025927Z copying torch\include\ATen\ops\less_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4032691Z copying torch\include\ATen\ops\less_equal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4039594Z copying torch\include\ATen\ops\less_equal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4046922Z copying torch\include\ATen\ops\less_equal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4053882Z copying torch\include\ATen\ops\less_equal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4060585Z copying torch\include\ATen\ops\less_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4067147Z copying torch\include\ATen\ops\less_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4074026Z copying torch\include\ATen\ops\le_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4080559Z copying torch\include\ATen\ops\le_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4104089Z copying torch\include\ATen\ops\le_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4110275Z copying torch\include\ATen\ops\le_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4116716Z copying torch\include\ATen\ops\le_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4123066Z copying torch\include\ATen\ops\le_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4129560Z copying torch\include\ATen\ops\le_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4136122Z copying torch\include\ATen\ops\lgamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4142969Z copying torch\include\ATen\ops\lgamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4149319Z copying torch\include\ATen\ops\lgamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4156176Z copying torch\include\ATen\ops\lgamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4163217Z copying torch\include\ATen\ops\lgamma_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4169692Z copying torch\include\ATen\ops\lgamma_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4176839Z copying torch\include\ATen\ops\lgamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4183077Z copying torch\include\ATen\ops\lgamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4189804Z copying torch\include\ATen\ops\lift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4196998Z copying torch\include\ATen\ops\lift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4203571Z copying torch\include\ATen\ops\lift_fresh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4210941Z copying torch\include\ATen\ops\lift_fresh_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4218534Z copying torch\include\ATen\ops\lift_fresh_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4225220Z copying torch\include\ATen\ops\lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4232140Z copying torch\include\ATen\ops\lift_fresh_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4238811Z copying torch\include\ATen\ops\lift_fresh_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4246041Z copying torch\include\ATen\ops\lift_fresh_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4253692Z copying torch\include\ATen\ops\lift_fresh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4260328Z copying torch\include\ATen\ops\lift_fresh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4267201Z copying torch\include\ATen\ops\lift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4273645Z copying torch\include\ATen\ops\lift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4280094Z copying torch\include\ATen\ops\linalg_cholesky.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4287836Z copying torch\include\ATen\ops\linalg_cholesky_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4294100Z copying torch\include\ATen\ops\linalg_cholesky_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4301705Z copying torch\include\ATen\ops\linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4308466Z copying torch\include\ATen\ops\linalg_cholesky_ex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4316390Z copying torch\include\ATen\ops\linalg_cholesky_ex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4322447Z copying torch\include\ATen\ops\linalg_cholesky_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4329388Z copying torch\include\ATen\ops\linalg_cholesky_ex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4336477Z copying torch\include\ATen\ops\linalg_cholesky_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4343340Z copying torch\include\ATen\ops\linalg_cholesky_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4350943Z copying torch\include\ATen\ops\linalg_cholesky_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4357973Z copying torch\include\ATen\ops\linalg_cholesky_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4364638Z copying torch\include\ATen\ops\linalg_cond.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4407213Z copying torch\include\ATen\ops\linalg_cond_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4409304Z copying torch\include\ATen\ops\linalg_cond_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4416308Z copying torch\include\ATen\ops\linalg_cond_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4423217Z copying torch\include\ATen\ops\linalg_cross.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4431117Z copying torch\include\ATen\ops\linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4437888Z copying torch\include\ATen\ops\linalg_cross_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4445215Z copying torch\include\ATen\ops\linalg_cross_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4451992Z copying torch\include\ATen\ops\linalg_cross_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4459446Z copying torch\include\ATen\ops\linalg_cross_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4466176Z copying torch\include\ATen\ops\linalg_cross_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4472956Z copying torch\include\ATen\ops\linalg_cross_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4479938Z copying torch\include\ATen\ops\linalg_det.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4487157Z copying torch\include\ATen\ops\linalg_det_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4494469Z copying torch\include\ATen\ops\linalg_det_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4501036Z copying torch\include\ATen\ops\linalg_det_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4507843Z copying torch\include\ATen\ops\linalg_diagonal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4514895Z copying torch\include\ATen\ops\linalg_diagonal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4522096Z copying torch\include\ATen\ops\linalg_diagonal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4528841Z copying torch\include\ATen\ops\linalg_diagonal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4535806Z copying torch\include\ATen\ops\linalg_eig.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4542623Z copying torch\include\ATen\ops\linalg_eigh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4550010Z copying torch\include\ATen\ops\linalg_eigh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4556637Z copying torch\include\ATen\ops\linalg_eigh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4563531Z copying torch\include\ATen\ops\linalg_eigh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4570325Z copying torch\include\ATen\ops\linalg_eigvals.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4577460Z copying torch\include\ATen\ops\linalg_eigvalsh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4584440Z copying torch\include\ATen\ops\linalg_eigvalsh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4591234Z copying torch\include\ATen\ops\linalg_eigvalsh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4598205Z copying torch\include\ATen\ops\linalg_eigvalsh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4605228Z copying torch\include\ATen\ops\linalg_eigvals_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4612097Z copying torch\include\ATen\ops\linalg_eigvals_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4618920Z copying torch\include\ATen\ops\linalg_eigvals_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4625941Z copying torch\include\ATen\ops\linalg_eigvals_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4632587Z copying torch\include\ATen\ops\linalg_eigvals_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4640398Z copying torch\include\ATen\ops\linalg_eig_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4647427Z copying torch\include\ATen\ops\linalg_eig_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4654288Z copying torch\include\ATen\ops\linalg_eig_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4661338Z copying torch\include\ATen\ops\linalg_eig_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4668285Z copying torch\include\ATen\ops\linalg_householder_product.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4675405Z copying torch\include\ATen\ops\linalg_householder_product_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4682645Z copying torch\include\ATen\ops\linalg_householder_product_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4689539Z copying torch\include\ATen\ops\linalg_householder_product_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4702879Z copying torch\include\ATen\ops\linalg_householder_product_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4710036Z copying torch\include\ATen\ops\linalg_inv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4718001Z copying torch\include\ATen\ops\linalg_inv_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4725703Z copying torch\include\ATen\ops\linalg_inv_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4732580Z copying torch\include\ATen\ops\linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4748185Z copying torch\include\ATen\ops\linalg_inv_ex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4754436Z copying torch\include\ATen\ops\linalg_inv_ex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4761365Z copying torch\include\ATen\ops\linalg_inv_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4768302Z copying torch\include\ATen\ops\linalg_inv_ex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4775330Z copying torch\include\ATen\ops\linalg_inv_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4783480Z copying torch\include\ATen\ops\linalg_inv_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4790774Z copying torch\include\ATen\ops\linalg_inv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4797652Z copying torch\include\ATen\ops\linalg_inv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4804702Z copying torch\include\ATen\ops\linalg_ldl_factor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4812531Z copying torch\include\ATen\ops\linalg_ldl_factor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4819852Z copying torch\include\ATen\ops\linalg_ldl_factor_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4827457Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4841479Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4844527Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4851375Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4864971Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4871527Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4878719Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4886072Z copying torch\include\ATen\ops\linalg_ldl_factor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4910434Z copying torch\include\ATen\ops\linalg_ldl_factor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4911229Z copying torch\include\ATen\ops\linalg_ldl_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4916407Z copying torch\include\ATen\ops\linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4922743Z copying torch\include\ATen\ops\linalg_ldl_solve_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4929961Z copying torch\include\ATen\ops\linalg_ldl_solve_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4937354Z copying torch\include\ATen\ops\linalg_ldl_solve_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4945429Z copying torch\include\ATen\ops\linalg_ldl_solve_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4951745Z copying torch\include\ATen\ops\linalg_ldl_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4958358Z copying torch\include\ATen\ops\linalg_ldl_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4965182Z copying torch\include\ATen\ops\linalg_lstsq.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4972106Z copying torch\include\ATen\ops\linalg_lstsq_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4979264Z copying torch\include\ATen\ops\linalg_lstsq_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4986088Z copying torch\include\ATen\ops\linalg_lstsq_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4993029Z copying torch\include\ATen\ops\linalg_lstsq_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.4999669Z copying torch\include\ATen\ops\linalg_lstsq_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5006393Z copying torch\include\ATen\ops\linalg_lu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5013616Z copying torch\include\ATen\ops\linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5020216Z copying torch\include\ATen\ops\linalg_lu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5027255Z copying torch\include\ATen\ops\linalg_lu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5033982Z copying torch\include\ATen\ops\linalg_lu_factor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5042496Z copying torch\include\ATen\ops\linalg_lu_factor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5056845Z copying torch\include\ATen\ops\linalg_lu_factor_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5063984Z copying torch\include\ATen\ops\linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5070736Z copying torch\include\ATen\ops\linalg_lu_factor_ex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5077770Z copying torch\include\ATen\ops\linalg_lu_factor_ex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5084773Z copying torch\include\ATen\ops\linalg_lu_factor_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5092136Z copying torch\include\ATen\ops\linalg_lu_factor_ex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5099483Z copying torch\include\ATen\ops\linalg_lu_factor_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5106133Z copying torch\include\ATen\ops\linalg_lu_factor_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5113152Z copying torch\include\ATen\ops\linalg_lu_factor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5119782Z copying torch\include\ATen\ops\linalg_lu_factor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5126744Z copying torch\include\ATen\ops\linalg_lu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5133597Z copying torch\include\ATen\ops\linalg_lu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5140267Z copying torch\include\ATen\ops\linalg_lu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5147168Z copying torch\include\ATen\ops\linalg_lu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5153781Z copying torch\include\ATen\ops\linalg_lu_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5160865Z copying torch\include\ATen\ops\linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5167780Z copying torch\include\ATen\ops\linalg_lu_solve_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5174828Z copying torch\include\ATen\ops\linalg_lu_solve_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5181429Z copying torch\include\ATen\ops\linalg_lu_solve_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5188175Z copying torch\include\ATen\ops\linalg_lu_solve_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5200847Z copying torch\include\ATen\ops\linalg_lu_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5207645Z copying torch\include\ATen\ops\linalg_lu_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5214880Z copying torch\include\ATen\ops\linalg_matmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5222961Z copying torch\include\ATen\ops\linalg_matmul_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5229150Z copying torch\include\ATen\ops\linalg_matmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5235882Z copying torch\include\ATen\ops\linalg_matmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5243406Z copying torch\include\ATen\ops\linalg_matrix_exp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5250536Z copying torch\include\ATen\ops\linalg_matrix_exp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5257871Z copying torch\include\ATen\ops\linalg_matrix_exp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5264641Z copying torch\include\ATen\ops\linalg_matrix_exp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5272041Z copying torch\include\ATen\ops\linalg_matrix_exp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5279038Z copying torch\include\ATen\ops\linalg_matrix_exp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5286655Z copying torch\include\ATen\ops\linalg_matrix_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5293679Z copying torch\include\ATen\ops\linalg_matrix_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5300486Z copying torch\include\ATen\ops\linalg_matrix_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5312347Z copying torch\include\ATen\ops\linalg_matrix_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5319552Z copying torch\include\ATen\ops\linalg_matrix_power.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5327124Z copying torch\include\ATen\ops\linalg_matrix_power_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5333924Z copying torch\include\ATen\ops\linalg_matrix_power_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5340799Z copying torch\include\ATen\ops\linalg_matrix_power_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5353397Z copying torch\include\ATen\ops\linalg_matrix_rank.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5361669Z copying torch\include\ATen\ops\linalg_matrix_rank_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5368214Z copying torch\include\ATen\ops\linalg_matrix_rank_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5375246Z copying torch\include\ATen\ops\linalg_matrix_rank_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5382928Z copying torch\include\ATen\ops\linalg_multi_dot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5397403Z copying torch\include\ATen\ops\linalg_multi_dot_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5404297Z copying torch\include\ATen\ops\linalg_multi_dot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5413947Z copying torch\include\ATen\ops\linalg_multi_dot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5421127Z copying torch\include\ATen\ops\linalg_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5428915Z copying torch\include\ATen\ops\linalg_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5434785Z copying torch\include\ATen\ops\linalg_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5440808Z copying torch\include\ATen\ops\linalg_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5447712Z copying torch\include\ATen\ops\linalg_pinv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5455104Z copying torch\include\ATen\ops\linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5461860Z copying torch\include\ATen\ops\linalg_pinv_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5469160Z copying torch\include\ATen\ops\linalg_pinv_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5475924Z copying torch\include\ATen\ops\linalg_pinv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5482919Z copying torch\include\ATen\ops\linalg_pinv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5489712Z copying torch\include\ATen\ops\linalg_qr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5496953Z copying torch\include\ATen\ops\linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5503584Z copying torch\include\ATen\ops\linalg_qr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5510989Z copying torch\include\ATen\ops\linalg_qr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5517497Z copying torch\include\ATen\ops\linalg_qr_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5525027Z copying torch\include\ATen\ops\linalg_qr_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5531731Z copying torch\include\ATen\ops\linalg_qr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5543920Z copying torch\include\ATen\ops\linalg_qr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5550859Z copying torch\include\ATen\ops\linalg_slogdet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5557913Z copying torch\include\ATen\ops\linalg_slogdet_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5564576Z copying torch\include\ATen\ops\linalg_slogdet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5571406Z copying torch\include\ATen\ops\linalg_slogdet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5583313Z copying torch\include\ATen\ops\linalg_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5590347Z copying torch\include\ATen\ops\linalg_solve_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5598170Z copying torch\include\ATen\ops\linalg_solve_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5605128Z copying torch\include\ATen\ops\linalg_solve_ex_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5611811Z copying torch\include\ATen\ops\linalg_solve_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5618588Z copying torch\include\ATen\ops\linalg_solve_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5625271Z copying torch\include\ATen\ops\linalg_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5632147Z copying torch\include\ATen\ops\linalg_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5639032Z copying torch\include\ATen\ops\linalg_solve_triangular.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5646606Z copying torch\include\ATen\ops\linalg_solve_triangular_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5653769Z copying torch\include\ATen\ops\linalg_solve_triangular_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5660487Z copying torch\include\ATen\ops\linalg_solve_triangular_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5667581Z copying torch\include\ATen\ops\linalg_solve_triangular_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5674510Z copying torch\include\ATen\ops\linalg_svd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5681482Z copying torch\include\ATen\ops\linalg_svdvals.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5694311Z copying torch\include\ATen\ops\linalg_svdvals_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5701300Z copying torch\include\ATen\ops\linalg_svdvals_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5709422Z copying torch\include\ATen\ops\linalg_svdvals_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5715898Z copying torch\include\ATen\ops\linalg_svd_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5722618Z copying torch\include\ATen\ops\linalg_svd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5734942Z copying torch\include\ATen\ops\linalg_svd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5742093Z copying torch\include\ATen\ops\linalg_tensorinv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5750176Z copying torch\include\ATen\ops\linalg_tensorinv_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5756123Z copying torch\include\ATen\ops\linalg_tensorinv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5762886Z copying torch\include\ATen\ops\linalg_tensorinv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5769807Z copying torch\include\ATen\ops\linalg_tensorsolve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5777276Z copying torch\include\ATen\ops\linalg_tensorsolve_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5784573Z copying torch\include\ATen\ops\linalg_tensorsolve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5791167Z copying torch\include\ATen\ops\linalg_tensorsolve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5797877Z copying torch\include\ATen\ops\linalg_vander.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5805197Z copying torch\include\ATen\ops\linalg_vander_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5813074Z copying torch\include\ATen\ops\linalg_vander_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5819471Z copying torch\include\ATen\ops\linalg_vander_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5826297Z copying torch\include\ATen\ops\linalg_vecdot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5833555Z copying torch\include\ATen\ops\linalg_vecdot_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5864870Z copying torch\include\ATen\ops\linalg_vecdot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5870907Z copying torch\include\ATen\ops\linalg_vecdot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5878038Z copying torch\include\ATen\ops\linalg_vector_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5885392Z copying torch\include\ATen\ops\linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5892343Z copying torch\include\ATen\ops\linalg_vector_norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5906486Z copying torch\include\ATen\ops\linalg_vector_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5913650Z copying torch\include\ATen\ops\linalg_vector_norm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5920793Z copying torch\include\ATen\ops\linalg_vector_norm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5927843Z copying torch\include\ATen\ops\linalg_vector_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5934903Z copying torch\include\ATen\ops\linalg_vector_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5942137Z copying torch\include\ATen\ops\linear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5949922Z copying torch\include\ATen\ops\linear_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.5957068Z copying torch\include\ATen\ops\linear_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6021361Z copying torch\include\ATen\ops\linear_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6028178Z copying torch\include\ATen\ops\linear_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6035470Z copying torch\include\ATen\ops\linear_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6042530Z copying torch\include\ATen\ops\linear_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6049481Z copying torch\include\ATen\ops\linear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6056469Z copying torch\include\ATen\ops\linear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6064190Z copying torch\include\ATen\ops\linspace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6076592Z copying torch\include\ATen\ops\linspace_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6083427Z copying torch\include\ATen\ops\linspace_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6090219Z copying torch\include\ATen\ops\linspace_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6096968Z copying torch\include\ATen\ops\linspace_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6103490Z copying torch\include\ATen\ops\linspace_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6135095Z copying torch\include\ATen\ops\linspace_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6141987Z copying torch\include\ATen\ops\log.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6148177Z copying torch\include\ATen\ops\log10.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6155103Z copying torch\include\ATen\ops\log10_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6161973Z copying torch\include\ATen\ops\log10_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6173503Z copying torch\include\ATen\ops\log10_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6180204Z copying torch\include\ATen\ops\log10_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6186641Z copying torch\include\ATen\ops\log10_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6193478Z copying torch\include\ATen\ops\log10_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6200114Z copying torch\include\ATen\ops\log10_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6213359Z copying torch\include\ATen\ops\log1p.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6221896Z copying torch\include\ATen\ops\log1p_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6228988Z copying torch\include\ATen\ops\log1p_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6236263Z copying torch\include\ATen\ops\log1p_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6243141Z copying torch\include\ATen\ops\log1p_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6254253Z copying torch\include\ATen\ops\log1p_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6262429Z copying torch\include\ATen\ops\log1p_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6268567Z copying torch\include\ATen\ops\log1p_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6275425Z copying torch\include\ATen\ops\log2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6282399Z copying torch\include\ATen\ops\log2_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6289057Z copying torch\include\ATen\ops\log2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6297066Z copying torch\include\ATen\ops\log2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6302921Z copying torch\include\ATen\ops\log2_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6309434Z copying torch\include\ATen\ops\log2_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6316862Z copying torch\include\ATen\ops\log2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6323980Z copying torch\include\ATen\ops\log2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6330377Z copying torch\include\ATen\ops\logaddexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6337589Z copying torch\include\ATen\ops\logaddexp2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6344704Z copying torch\include\ATen\ops\logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6351253Z copying torch\include\ATen\ops\logaddexp2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6363244Z copying torch\include\ATen\ops\logaddexp2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6370164Z copying torch\include\ATen\ops\logaddexp2_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6377991Z copying torch\include\ATen\ops\logaddexp2_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6384258Z copying torch\include\ATen\ops\logaddexp2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6390981Z copying torch\include\ATen\ops\logaddexp2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6399181Z copying torch\include\ATen\ops\logaddexp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6407703Z copying torch\include\ATen\ops\logaddexp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6419854Z copying torch\include\ATen\ops\logaddexp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6420673Z copying torch\include\ATen\ops\logaddexp_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6427570Z copying torch\include\ATen\ops\logaddexp_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6439818Z copying torch\include\ATen\ops\logaddexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6447429Z copying torch\include\ATen\ops\logaddexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6455021Z copying torch\include\ATen\ops\logcumsumexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6460927Z copying torch\include\ATen\ops\logcumsumexp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6467598Z copying torch\include\ATen\ops\logcumsumexp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6480556Z copying torch\include\ATen\ops\logcumsumexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6487428Z copying torch\include\ATen\ops\logcumsumexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6494600Z copying torch\include\ATen\ops\logdet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6502083Z copying torch\include\ATen\ops\logdet_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6508548Z copying torch\include\ATen\ops\logdet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6522639Z copying torch\include\ATen\ops\logdet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6529410Z copying torch\include\ATen\ops\logical_and.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6536483Z copying torch\include\ATen\ops\logical_and_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6542969Z copying torch\include\ATen\ops\logical_and_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6549991Z copying torch\include\ATen\ops\logical_and_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6563034Z copying torch\include\ATen\ops\logical_and_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6569877Z copying torch\include\ATen\ops\logical_and_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6576753Z copying torch\include\ATen\ops\logical_not.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6583753Z copying torch\include\ATen\ops\logical_not_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6590338Z copying torch\include\ATen\ops\logical_not_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6597234Z copying torch\include\ATen\ops\logical_not_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6604554Z copying torch\include\ATen\ops\logical_not_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6611412Z copying torch\include\ATen\ops\logical_not_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6618462Z copying torch\include\ATen\ops\logical_or.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6626473Z copying torch\include\ATen\ops\logical_or_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6633544Z copying torch\include\ATen\ops\logical_or_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6640504Z copying torch\include\ATen\ops\logical_or_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6647784Z copying torch\include\ATen\ops\logical_or_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6655061Z copying torch\include\ATen\ops\logical_or_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6661824Z copying torch\include\ATen\ops\logical_xor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6675301Z copying torch\include\ATen\ops\logical_xor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6681793Z copying torch\include\ATen\ops\logical_xor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6688577Z copying torch\include\ATen\ops\logical_xor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6695446Z copying torch\include\ATen\ops\logical_xor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6702206Z copying torch\include\ATen\ops\logical_xor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6709940Z copying torch\include\ATen\ops\logit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6715869Z copying torch\include\ATen\ops\logit_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6723329Z copying torch\include\ATen\ops\logit_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6730768Z copying torch\include\ATen\ops\logit_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6738627Z copying torch\include\ATen\ops\logit_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6744634Z copying torch\include\ATen\ops\logit_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6751818Z copying torch\include\ATen\ops\logit_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6758573Z copying torch\include\ATen\ops\logit_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6765753Z copying torch\include\ATen\ops\logit_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6773500Z copying torch\include\ATen\ops\logit_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6784979Z copying torch\include\ATen\ops\logit_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6791617Z copying torch\include\ATen\ops\logit_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6798334Z copying torch\include\ATen\ops\logit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6805208Z copying torch\include\ATen\ops\logit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6812066Z copying torch\include\ATen\ops\logspace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6825240Z copying torch\include\ATen\ops\logspace_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6831816Z copying torch\include\ATen\ops\logspace_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6838473Z copying torch\include\ATen\ops\logspace_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6845093Z copying torch\include\ATen\ops\logspace_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6851764Z copying torch\include\ATen\ops\logspace_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6858610Z copying torch\include\ATen\ops\logspace_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6865839Z copying torch\include\ATen\ops\logsumexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6873497Z copying torch\include\ATen\ops\logsumexp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6880628Z copying torch\include\ATen\ops\logsumexp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6889296Z copying torch\include\ATen\ops\logsumexp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6911122Z copying torch\include\ATen\ops\logsumexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6911895Z copying torch\include\ATen\ops\logsumexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6918052Z copying torch\include\ATen\ops\log_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6922233Z copying torch\include\ATen\ops\log_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6929301Z copying torch\include\ATen\ops\log_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6936179Z copying torch\include\ATen\ops\log_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6942488Z copying torch\include\ATen\ops\log_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6948981Z copying torch\include\ATen\ops\log_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6956521Z copying torch\include\ATen\ops\log_normal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6963237Z copying torch\include\ATen\ops\log_normal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6969821Z copying torch\include\ATen\ops\log_normal_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6976719Z copying torch\include\ATen\ops\log_normal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6983517Z copying torch\include\ATen\ops\log_normal_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6990371Z copying torch\include\ATen\ops\log_normal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.6996891Z copying torch\include\ATen\ops\log_normal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7008554Z copying torch\include\ATen\ops\log_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7015010Z copying torch\include\ATen\ops\log_sigmoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7022275Z copying torch\include\ATen\ops\log_sigmoid_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7029004Z copying torch\include\ATen\ops\log_sigmoid_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7035675Z copying torch\include\ATen\ops\log_sigmoid_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7043177Z copying torch\include\ATen\ops\log_sigmoid_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7050630Z copying torch\include\ATen\ops\log_sigmoid_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7058102Z copying torch\include\ATen\ops\log_sigmoid_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7065977Z copying torch\include\ATen\ops\log_sigmoid_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7073066Z copying torch\include\ATen\ops\log_sigmoid_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7085107Z copying torch\include\ATen\ops\log_sigmoid_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7092199Z copying torch\include\ATen\ops\log_sigmoid_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7098886Z copying torch\include\ATen\ops\log_sigmoid_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7105637Z copying torch\include\ATen\ops\log_sigmoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7112106Z copying torch\include\ATen\ops\log_sigmoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7118691Z copying torch\include\ATen\ops\log_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7125507Z copying torch\include\ATen\ops\log_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7132309Z copying torch\include\ATen\ops\log_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7139287Z copying torch\include\ATen\ops\log_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7146302Z copying torch\include\ATen\ops\log_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7157693Z copying torch\include\ATen\ops\lshift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7164291Z copying torch\include\ATen\ops\lshift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7170806Z copying torch\include\ATen\ops\lshift_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7177416Z copying torch\include\ATen\ops\lshift_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7184055Z copying torch\include\ATen\ops\lshift_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7195748Z copying torch\include\ATen\ops\lshift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7202345Z copying torch\include\ATen\ops\lshift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7209117Z copying torch\include\ATen\ops\lstm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7215827Z copying torch\include\ATen\ops\lstm_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7222655Z copying torch\include\ATen\ops\lstm_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7233708Z copying torch\include\ATen\ops\lstm_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7240467Z copying torch\include\ATen\ops\lstm_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7248387Z copying torch\include\ATen\ops\lstm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7254742Z copying torch\include\ATen\ops\lstm_mps_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7552842Z copying torch\include\ATen\ops\lstm_mps_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7553861Z copying torch\include\ATen\ops\lstm_mps_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7554663Z copying torch\include\ATen\ops\lstm_mps_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7555429Z copying torch\include\ATen\ops\lstm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7556191Z copying torch\include\ATen\ops\lstm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7558116Z copying torch\include\ATen\ops\lt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7559019Z copying torch\include\ATen\ops\lt_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7559941Z copying torch\include\ATen\ops\lt_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7560702Z copying torch\include\ATen\ops\lt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7561406Z copying torch\include\ATen\ops\lt_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7562132Z copying torch\include\ATen\ops\lt_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7562945Z copying torch\include\ATen\ops\lt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7563617Z copying torch\include\ATen\ops\lt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7564292Z copying torch\include\ATen\ops\lu_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7565134Z copying torch\include\ATen\ops\lu_solve_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7566018Z copying torch\include\ATen\ops\lu_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7566747Z copying torch\include\ATen\ops\lu_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7567440Z copying torch\include\ATen\ops\lu_unpack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7568441Z copying torch\include\ATen\ops\lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7569413Z copying torch\include\ATen\ops\lu_unpack_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7570227Z copying torch\include\ATen\ops\lu_unpack_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7570991Z copying torch\include\ATen\ops\lu_unpack_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7571752Z copying torch\include\ATen\ops\lu_unpack_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7572602Z copying torch\include\ATen\ops\lu_unpack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7573324Z copying torch\include\ATen\ops\lu_unpack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7574078Z copying torch\include\ATen\ops\margin_ranking_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7575021Z copying torch\include\ATen\ops\margin_ranking_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7575976Z copying torch\include\ATen\ops\margin_ranking_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7576790Z copying torch\include\ATen\ops\margin_ranking_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7577605Z copying torch\include\ATen\ops\masked_fill.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7578474Z copying torch\include\ATen\ops\masked_fill_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7579407Z copying torch\include\ATen\ops\masked_fill_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7580304Z copying torch\include\ATen\ops\masked_fill_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7581135Z copying torch\include\ATen\ops\masked_fill_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7581944Z copying torch\include\ATen\ops\masked_fill_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7582696Z copying torch\include\ATen\ops\masked_fill_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7583452Z copying torch\include\ATen\ops\masked_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7584222Z copying torch\include\ATen\ops\masked_scatter_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7585199Z copying torch\include\ATen\ops\masked_scatter_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7586294Z copying torch\include\ATen\ops\masked_scatter_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7587146Z copying torch\include\ATen\ops\masked_scatter_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7598546Z copying torch\include\ATen\ops\masked_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7605329Z copying torch\include\ATen\ops\masked_scatter_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7612146Z copying torch\include\ATen\ops\masked_scatter_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7619005Z copying torch\include\ATen\ops\masked_scatter_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7630708Z copying torch\include\ATen\ops\masked_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7637451Z copying torch\include\ATen\ops\masked_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7644883Z copying torch\include\ATen\ops\masked_select.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7651786Z copying torch\include\ATen\ops\masked_select_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7659510Z copying torch\include\ATen\ops\masked_select_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7666088Z copying torch\include\ATen\ops\masked_select_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7677997Z copying torch\include\ATen\ops\masked_select_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7684695Z copying torch\include\ATen\ops\masked_select_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7691428Z copying torch\include\ATen\ops\masked_select_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7698353Z copying torch\include\ATen\ops\masked_select_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7705209Z copying torch\include\ATen\ops\masked_select_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7712074Z copying torch\include\ATen\ops\matmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7719227Z copying torch\include\ATen\ops\matmul_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7726202Z copying torch\include\ATen\ops\matmul_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7738909Z copying torch\include\ATen\ops\matmul_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7740977Z copying torch\include\ATen\ops\matmul_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7748467Z copying torch\include\ATen\ops\matmul_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7756117Z copying torch\include\ATen\ops\matmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7763006Z copying torch\include\ATen\ops\matmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7769938Z copying torch\include\ATen\ops\matrix_exp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7777486Z copying torch\include\ATen\ops\matrix_exp_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7797690Z copying torch\include\ATen\ops\matrix_exp_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7804283Z copying torch\include\ATen\ops\matrix_exp_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7812570Z copying torch\include\ATen\ops\matrix_exp_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7820352Z copying torch\include\ATen\ops\matrix_exp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7826930Z copying torch\include\ATen\ops\matrix_exp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7833521Z copying torch\include\ATen\ops\matrix_exp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7841043Z copying torch\include\ATen\ops\matrix_H.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7848580Z copying torch\include\ATen\ops\matrix_H_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7854897Z copying torch\include\ATen\ops\matrix_H_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7861148Z copying torch\include\ATen\ops\matrix_H_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7889955Z copying torch\include\ATen\ops\matrix_power.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.7993902Z copying torch\include\ATen\ops\matrix_power_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8028517Z copying torch\include\ATen\ops\matrix_power_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8043365Z copying torch\include\ATen\ops\matrix_power_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8050345Z copying torch\include\ATen\ops\max.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8065080Z copying torch\include\ATen\ops\maximum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8072349Z copying torch\include\ATen\ops\maximum_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8079570Z copying torch\include\ATen\ops\maximum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8087093Z copying torch\include\ATen\ops\maximum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8094617Z copying torch\include\ATen\ops\maximum_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8107396Z copying torch\include\ATen\ops\maximum_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8114846Z copying torch\include\ATen\ops\maximum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8121743Z copying torch\include\ATen\ops\maximum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8129150Z copying torch\include\ATen\ops\max_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8136359Z copying torch\include\ATen\ops\max_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8153055Z copying torch\include\ATen\ops\max_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8159667Z copying torch\include\ATen\ops\max_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8166398Z copying torch\include\ATen\ops\max_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8177738Z copying torch\include\ATen\ops\max_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8184361Z copying torch\include\ATen\ops\max_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8190883Z copying torch\include\ATen\ops\max_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8197515Z copying torch\include\ATen\ops\max_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8204331Z copying torch\include\ATen\ops\max_pool1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8211050Z copying torch\include\ATen\ops\max_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8218205Z copying torch\include\ATen\ops\max_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8224980Z copying torch\include\ATen\ops\max_pool1d_with_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8232061Z copying torch\include\ATen\ops\max_pool1d_with_indices_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8238676Z copying torch\include\ATen\ops\max_pool1d_with_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8245391Z copying torch\include\ATen\ops\max_pool1d_with_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8252326Z copying torch\include\ATen\ops\max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8259159Z copying torch\include\ATen\ops\max_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8284724Z copying torch\include\ATen\ops\max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8291484Z copying torch\include\ATen\ops\max_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8298691Z copying torch\include\ATen\ops\max_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8305597Z copying torch\include\ATen\ops\max_pool2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8312421Z copying torch\include\ATen\ops\max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8320247Z copying torch\include\ATen\ops\max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8327056Z copying torch\include\ATen\ops\max_pool2d_with_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8334229Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8342033Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8353963Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8360843Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8367906Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8376381Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8382545Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8396529Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8407206Z copying torch\include\ATen\ops\max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8414489Z copying torch\include\ATen\ops\max_pool2d_with_indices_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8422199Z copying torch\include\ATen\ops\max_pool2d_with_indices_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8429794Z copying torch\include\ATen\ops\max_pool2d_with_indices_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8438262Z copying torch\include\ATen\ops\max_pool2d_with_indices_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8452359Z copying torch\include\ATen\ops\max_pool2d_with_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8453229Z copying torch\include\ATen\ops\max_pool2d_with_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8461392Z copying torch\include\ATen\ops\max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8467523Z copying torch\include\ATen\ops\max_pool3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8473996Z copying torch\include\ATen\ops\max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8480998Z copying torch\include\ATen\ops\max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8487917Z copying torch\include\ATen\ops\max_pool3d_with_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8496344Z copying torch\include\ATen\ops\max_pool3d_with_indices_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8502734Z copying torch\include\ATen\ops\max_pool3d_with_indices_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8515668Z copying torch\include\ATen\ops\max_pool3d_with_indices_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8522670Z copying torch\include\ATen\ops\max_pool3d_with_indices_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8529562Z copying torch\include\ATen\ops\max_pool3d_with_indices_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8536790Z copying torch\include\ATen\ops\max_pool3d_with_indices_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8543866Z copying torch\include\ATen\ops\max_pool3d_with_indices_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8550957Z copying torch\include\ATen\ops\max_pool3d_with_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8557780Z copying torch\include\ATen\ops\max_pool3d_with_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8564834Z copying torch\include\ATen\ops\max_unpool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8571481Z copying torch\include\ATen\ops\max_unpool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8579067Z copying torch\include\ATen\ops\max_unpool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8591291Z copying torch\include\ATen\ops\max_unpool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8598030Z copying torch\include\ATen\ops\max_unpool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8606527Z copying torch\include\ATen\ops\max_unpool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8613609Z copying torch\include\ATen\ops\max_unpool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8620547Z copying torch\include\ATen\ops\max_unpool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8633273Z copying torch\include\ATen\ops\max_unpool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8640219Z copying torch\include\ATen\ops\max_unpool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8646995Z copying torch\include\ATen\ops\mean.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8654246Z copying torch\include\ATen\ops\mean_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8661136Z copying torch\include\ATen\ops\mean_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8668044Z copying torch\include\ATen\ops\mean_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8674581Z copying torch\include\ATen\ops\mean_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8681377Z copying torch\include\ATen\ops\mean_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8688574Z copying torch\include\ATen\ops\mean_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8695342Z copying torch\include\ATen\ops\mean_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8702646Z copying torch\include\ATen\ops\mean_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8709458Z copying torch\include\ATen\ops\mean_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8716176Z copying torch\include\ATen\ops\median.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8723024Z copying torch\include\ATen\ops\median_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8730620Z copying torch\include\ATen\ops\median_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8736882Z copying torch\include\ATen\ops\median_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8743805Z copying torch\include\ATen\ops\median_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8751085Z copying torch\include\ATen\ops\median_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8759011Z copying torch\include\ATen\ops\median_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8765254Z copying torch\include\ATen\ops\meshgrid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8777931Z copying torch\include\ATen\ops\meshgrid_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8784625Z copying torch\include\ATen\ops\meshgrid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8791552Z copying torch\include\ATen\ops\meshgrid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8799092Z copying torch\include\ATen\ops\mH.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8805066Z copying torch\include\ATen\ops\mH_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8819160Z copying torch\include\ATen\ops\mH_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8825870Z copying torch\include\ATen\ops\mH_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8833772Z copying torch\include\ATen\ops\min.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8839545Z copying torch\include\ATen\ops\minimum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8846255Z copying torch\include\ATen\ops\minimum_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8853102Z copying torch\include\ATen\ops\minimum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8859996Z copying torch\include\ATen\ops\minimum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8866756Z copying torch\include\ATen\ops\minimum_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8874207Z copying torch\include\ATen\ops\minimum_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8880442Z copying torch\include\ATen\ops\minimum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8887543Z copying torch\include\ATen\ops\minimum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8894743Z copying torch\include\ATen\ops\min_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8903083Z copying torch\include\ATen\ops\min_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8908977Z copying torch\include\ATen\ops\min_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8919047Z copying torch\include\ATen\ops\min_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8922899Z copying torch\include\ATen\ops\min_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8929699Z copying torch\include\ATen\ops\min_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8937293Z copying torch\include\ATen\ops\min_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8943912Z copying torch\include\ATen\ops\min_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8950394Z copying torch\include\ATen\ops\miopen_batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8962384Z copying torch\include\ATen\ops\miopen_batch_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8970829Z copying torch\include\ATen\ops\miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8976781Z copying torch\include\ATen\ops\miopen_batch_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8983667Z copying torch\include\ATen\ops\miopen_batch_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8990809Z copying torch\include\ATen\ops\miopen_batch_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.8997883Z copying torch\include\ATen\ops\miopen_batch_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9004608Z copying torch\include\ATen\ops\miopen_batch_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9011723Z copying torch\include\ATen\ops\miopen_batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9018707Z copying torch\include\ATen\ops\miopen_batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9025478Z copying torch\include\ATen\ops\miopen_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9038324Z copying torch\include\ATen\ops\miopen_convolution_add_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9045197Z copying torch\include\ATen\ops\miopen_convolution_add_relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9051933Z copying torch\include\ATen\ops\miopen_convolution_add_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9059150Z copying torch\include\ATen\ops\miopen_convolution_add_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9066165Z copying torch\include\ATen\ops\miopen_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9073191Z copying torch\include\ATen\ops\miopen_convolution_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9080073Z copying torch\include\ATen\ops\miopen_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9087506Z copying torch\include\ATen\ops\miopen_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9094219Z copying torch\include\ATen\ops\miopen_convolution_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9101093Z copying torch\include\ATen\ops\miopen_convolution_relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9108511Z copying torch\include\ATen\ops\miopen_convolution_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9115296Z copying torch\include\ATen\ops\miopen_convolution_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9121973Z copying torch\include\ATen\ops\miopen_convolution_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9129428Z copying torch\include\ATen\ops\miopen_convolution_transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9136691Z copying torch\include\ATen\ops\miopen_convolution_transpose_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9143460Z copying torch\include\ATen\ops\miopen_convolution_transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9150442Z copying torch\include\ATen\ops\miopen_convolution_transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9157474Z copying torch\include\ATen\ops\miopen_depthwise_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9164757Z copying torch\include\ATen\ops\miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9171526Z copying torch\include\ATen\ops\miopen_depthwise_convolution_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9178740Z copying torch\include\ATen\ops\miopen_depthwise_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9185658Z copying torch\include\ATen\ops\miopen_depthwise_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9192347Z copying torch\include\ATen\ops\miopen_rnn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9199395Z copying torch\include\ATen\ops\miopen_rnn_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9206607Z copying torch\include\ATen\ops\miopen_rnn_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9222412Z copying torch\include\ATen\ops\miopen_rnn_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9229392Z copying torch\include\ATen\ops\miopen_rnn_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9237214Z copying torch\include\ATen\ops\miopen_rnn_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9243950Z copying torch\include\ATen\ops\miopen_rnn_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9250859Z copying torch\include\ATen\ops\miopen_rnn_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9266042Z copying torch\include\ATen\ops\miopen_rnn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9272390Z copying torch\include\ATen\ops\miopen_rnn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9279987Z copying torch\include\ATen\ops\mish.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9286853Z copying torch\include\ATen\ops\mish_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9295260Z copying torch\include\ATen\ops\mish_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9301625Z copying torch\include\ATen\ops\mish_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9308419Z copying torch\include\ATen\ops\mish_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9315234Z copying torch\include\ATen\ops\mish_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9323409Z copying torch\include\ATen\ops\mish_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9329800Z copying torch\include\ATen\ops\mish_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9337210Z copying torch\include\ATen\ops\mish_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9344121Z copying torch\include\ATen\ops\mish_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9352103Z copying torch\include\ATen\ops\mish_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9358080Z copying torch\include\ATen\ops\mish_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9364710Z copying torch\include\ATen\ops\mish_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9372032Z copying torch\include\ATen\ops\mish_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9378424Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9385300Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9392769Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9399706Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9411810Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9419268Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9427003Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9443831Z copying torch\include\ATen\ops\mkldnn_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9444787Z copying torch\include\ATen\ops\mkldnn_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9454580Z copying torch\include\ATen\ops\mkldnn_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9461269Z copying torch\include\ATen\ops\mkldnn_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9468358Z copying torch\include\ATen\ops\mkldnn_linear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9475319Z copying torch\include\ATen\ops\mkldnn_linear_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9482417Z copying torch\include\ATen\ops\mkldnn_linear_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9494497Z copying torch\include\ATen\ops\mkldnn_linear_backward_input.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9501919Z copying torch\include\ATen\ops\mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9508685Z copying torch\include\ATen\ops\mkldnn_linear_backward_input_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9516388Z copying torch\include\ATen\ops\mkldnn_linear_backward_input_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9523125Z copying torch\include\ATen\ops\mkldnn_linear_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9529989Z copying torch\include\ATen\ops\mkldnn_linear_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9547354Z copying torch\include\ATen\ops\mkldnn_linear_backward_weights.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9553914Z copying torch\include\ATen\ops\mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9560719Z copying torch\include\ATen\ops\mkldnn_linear_backward_weights_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9567786Z copying torch\include\ATen\ops\mkldnn_linear_backward_weights_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9581894Z copying torch\include\ATen\ops\mkldnn_linear_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9588677Z copying torch\include\ATen\ops\mkldnn_linear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9595442Z copying torch\include\ATen\ops\mkldnn_linear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9602346Z copying torch\include\ATen\ops\mkldnn_max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9609248Z copying torch\include\ATen\ops\mkldnn_max_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9617462Z copying torch\include\ATen\ops\mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9624541Z copying torch\include\ATen\ops\mkldnn_max_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9631343Z copying torch\include\ATen\ops\mkldnn_max_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9638442Z copying torch\include\ATen\ops\mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9645147Z copying torch\include\ATen\ops\mkldnn_max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9657880Z copying torch\include\ATen\ops\mkldnn_max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9665124Z copying torch\include\ATen\ops\mkldnn_max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9671950Z copying torch\include\ATen\ops\mkldnn_max_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9679250Z copying torch\include\ATen\ops\mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9685989Z copying torch\include\ATen\ops\mkldnn_max_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9698220Z copying torch\include\ATen\ops\mkldnn_max_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9705229Z copying torch\include\ATen\ops\mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9713006Z copying torch\include\ATen\ops\mkldnn_max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9720448Z copying torch\include\ATen\ops\mkldnn_max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9727328Z copying torch\include\ATen\ops\mkldnn_reorder_conv2d_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9740316Z copying torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9748407Z copying torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9755678Z copying torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9762637Z copying torch\include\ATen\ops\mkldnn_reorder_conv3d_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9770018Z copying torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9777137Z copying torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9784295Z copying torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9791341Z copying torch\include\ATen\ops\mkldnn_rnn_layer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9798486Z copying torch\include\ATen\ops\mkldnn_rnn_layer_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9811262Z copying torch\include\ATen\ops\mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9818948Z copying torch\include\ATen\ops\mkldnn_rnn_layer_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9825904Z copying torch\include\ATen\ops\mkldnn_rnn_layer_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9832863Z copying torch\include\ATen\ops\mkldnn_rnn_layer_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9840026Z copying torch\include\ATen\ops\mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9847619Z copying torch\include\ATen\ops\mkldnn_rnn_layer_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9860575Z copying torch\include\ATen\ops\mkldnn_rnn_layer_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9867445Z copying torch\include\ATen\ops\mkldnn_rnn_layer_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9874054Z copying torch\include\ATen\ops\mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9882188Z copying torch\include\ATen\ops\mm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9888070Z copying torch\include\ATen\ops\mm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9899830Z copying torch\include\ATen\ops\mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9906689Z copying torch\include\ATen\ops\mm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9914033Z copying torch\include\ATen\ops\mm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9921313Z copying torch\include\ATen\ops\mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9930664Z copying torch\include\ATen\ops\mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9943305Z copying torch\include\ATen\ops\mode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9944246Z copying torch\include\ATen\ops\mode_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9950601Z copying torch\include\ATen\ops\mode_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9957747Z copying torch\include\ATen\ops\mode_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9964589Z copying torch\include\ATen\ops\mode_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9978284Z copying torch\include\ATen\ops\mode_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:09.9984658Z copying torch\include\ATen\ops\mode_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0019665Z copying torch\include\ATen\ops\moveaxis.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0026231Z copying torch\include\ATen\ops\moveaxis_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0032795Z copying torch\include\ATen\ops\moveaxis_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0045508Z copying torch\include\ATen\ops\moveaxis_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0052038Z copying torch\include\ATen\ops\movedim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0058756Z copying torch\include\ATen\ops\movedim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0065686Z copying torch\include\ATen\ops\movedim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0072127Z copying torch\include\ATen\ops\movedim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0078993Z copying torch\include\ATen\ops\mps_convolution_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0085947Z copying torch\include\ATen\ops\mps_convolution_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0092852Z copying torch\include\ATen\ops\mps_convolution_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0099810Z copying torch\include\ATen\ops\mps_convolution_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0106794Z copying torch\include\ATen\ops\mps_convolution_transpose_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0119985Z copying torch\include\ATen\ops\mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0126808Z copying torch\include\ATen\ops\mps_convolution_transpose_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0134310Z copying torch\include\ATen\ops\mps_convolution_transpose_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0141965Z copying torch\include\ATen\ops\mse_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0148593Z copying torch\include\ATen\ops\mse_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0161196Z copying torch\include\ATen\ops\mse_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0168426Z copying torch\include\ATen\ops\mse_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0175165Z copying torch\include\ATen\ops\mse_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0181945Z copying torch\include\ATen\ops\mse_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0189109Z copying torch\include\ATen\ops\mse_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0196023Z copying torch\include\ATen\ops\mse_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0203057Z copying torch\include\ATen\ops\mse_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0209835Z copying torch\include\ATen\ops\mse_loss_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0217291Z copying torch\include\ATen\ops\mse_loss_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0223966Z copying torch\include\ATen\ops\mse_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0231228Z copying torch\include\ATen\ops\mse_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0238231Z copying torch\include\ATen\ops\msort.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0244855Z copying torch\include\ATen\ops\msort_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0251776Z copying torch\include\ATen\ops\msort_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0258602Z copying torch\include\ATen\ops\msort_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0265223Z copying torch\include\ATen\ops\mT.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0271631Z copying torch\include\ATen\ops\mT_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0297647Z copying torch\include\ATen\ops\mT_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0304046Z copying torch\include\ATen\ops\mT_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0310288Z copying torch\include\ATen\ops\mul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0316890Z copying torch\include\ATen\ops\multilabel_margin_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0324063Z copying torch\include\ATen\ops\multilabel_margin_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0330900Z copying torch\include\ATen\ops\multilabel_margin_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0338065Z copying torch\include\ATen\ops\multilabel_margin_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0345591Z copying torch\include\ATen\ops\multilabel_margin_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0352504Z copying torch\include\ATen\ops\multilabel_margin_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0359558Z copying torch\include\ATen\ops\multilabel_margin_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0366370Z copying torch\include\ATen\ops\multilabel_margin_loss_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0373770Z copying torch\include\ATen\ops\multilabel_margin_loss_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0380571Z copying torch\include\ATen\ops\multilabel_margin_loss_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0397407Z copying torch\include\ATen\ops\multilabel_margin_loss_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0404335Z copying torch\include\ATen\ops\multilabel_margin_loss_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0410986Z copying torch\include\ATen\ops\multilabel_margin_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0418254Z copying torch\include\ATen\ops\multilabel_margin_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0425090Z copying torch\include\ATen\ops\multinomial.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0431995Z copying torch\include\ATen\ops\multinomial_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0439608Z copying torch\include\ATen\ops\multinomial_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0447695Z copying torch\include\ATen\ops\multinomial_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0474955Z copying torch\include\ATen\ops\multinomial_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0475711Z copying torch\include\ATen\ops\multiply.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0476578Z copying torch\include\ATen\ops\multiply_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0477474Z copying torch\include\ATen\ops\multiply_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0484318Z copying torch\include\ATen\ops\multiply_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0491027Z copying torch\include\ATen\ops\multi_margin_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0498341Z copying torch\include\ATen\ops\multi_margin_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0513184Z copying torch\include\ATen\ops\multi_margin_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0519437Z copying torch\include\ATen\ops\multi_margin_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0525808Z copying torch\include\ATen\ops\multi_margin_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0532894Z copying torch\include\ATen\ops\multi_margin_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0539747Z copying torch\include\ATen\ops\multi_margin_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0546965Z copying torch\include\ATen\ops\multi_margin_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0553640Z copying torch\include\ATen\ops\multi_margin_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0560292Z copying torch\include\ATen\ops\multi_margin_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0567342Z copying torch\include\ATen\ops\mul_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0574529Z copying torch\include\ATen\ops\mul_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0581450Z copying torch\include\ATen\ops\mul_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0588134Z copying torch\include\ATen\ops\mul_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0594471Z copying torch\include\ATen\ops\mul_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0600592Z copying torch\include\ATen\ops\mul_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0607113Z copying torch\include\ATen\ops\mul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0637574Z copying torch\include\ATen\ops\mul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0643455Z copying torch\include\ATen\ops\mv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0649873Z copying torch\include\ATen\ops\mvlgamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0656743Z copying torch\include\ATen\ops\mvlgamma_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0663279Z copying torch\include\ATen\ops\mvlgamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0669955Z copying torch\include\ATen\ops\mvlgamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0676895Z copying torch\include\ATen\ops\mvlgamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0683841Z copying torch\include\ATen\ops\mvlgamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0690704Z copying torch\include\ATen\ops\mv_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0697445Z copying torch\include\ATen\ops\mv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0712342Z copying torch\include\ATen\ops\mv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0713206Z copying torch\include\ATen\ops\nanmean.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0719409Z copying torch\include\ATen\ops\nanmean_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0725946Z copying torch\include\ATen\ops\nanmean_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0732591Z copying torch\include\ATen\ops\nanmean_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0739739Z copying torch\include\ATen\ops\nanmedian.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0746533Z copying torch\include\ATen\ops\nanmedian_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0753532Z copying torch\include\ATen\ops\nanmedian_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0760156Z copying torch\include\ATen\ops\nanmedian_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0766966Z copying torch\include\ATen\ops\nanmedian_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0783878Z copying torch\include\ATen\ops\nanmedian_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0790613Z copying torch\include\ATen\ops\nanmedian_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0797534Z copying torch\include\ATen\ops\nanquantile.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0804289Z copying torch\include\ATen\ops\nanquantile_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0810963Z copying torch\include\ATen\ops\nanquantile_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0818560Z copying torch\include\ATen\ops\nanquantile_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0825099Z copying torch\include\ATen\ops\nansum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0831443Z copying torch\include\ATen\ops\nansum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0839715Z copying torch\include\ATen\ops\nansum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0845656Z copying torch\include\ATen\ops\nansum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0852053Z copying torch\include\ATen\ops\nansum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0858913Z copying torch\include\ATen\ops\nan_to_num.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0865988Z copying torch\include\ATen\ops\nan_to_num_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0874363Z copying torch\include\ATen\ops\nan_to_num_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0880366Z copying torch\include\ATen\ops\nan_to_num_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0893703Z copying torch\include\ATen\ops\nan_to_num_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0900725Z copying torch\include\ATen\ops\nan_to_num_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0908654Z copying torch\include\ATen\ops\narrow.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0915417Z copying torch\include\ATen\ops\narrow_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0922974Z copying torch\include\ATen\ops\narrow_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0930486Z copying torch\include\ATen\ops\narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0963151Z copying torch\include\ATen\ops\narrow_copy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0963969Z copying torch\include\ATen\ops\narrow_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0964835Z copying torch\include\ATen\ops\narrow_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0965583Z copying torch\include\ATen\ops\narrow_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0974663Z copying torch\include\ATen\ops\narrow_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0980809Z copying torch\include\ATen\ops\native_batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0988053Z copying torch\include\ATen\ops\native_batch_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.0995067Z copying torch\include\ATen\ops\native_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1002951Z copying torch\include\ATen\ops\native_batch_norm_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1009643Z copying torch\include\ATen\ops\native_batch_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1016611Z copying torch\include\ATen\ops\native_batch_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1023403Z copying torch\include\ATen\ops\native_batch_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1030784Z copying torch\include\ATen\ops\native_batch_norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1037591Z copying torch\include\ATen\ops\native_batch_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1049702Z copying torch\include\ATen\ops\native_batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1056707Z copying torch\include\ATen\ops\native_batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1063601Z copying torch\include\ATen\ops\native_channel_shuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1070857Z copying torch\include\ATen\ops\native_channel_shuffle_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1077722Z copying torch\include\ATen\ops\native_channel_shuffle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1085346Z copying torch\include\ATen\ops\native_channel_shuffle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1091844Z copying torch\include\ATen\ops\native_channel_shuffle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1099386Z copying torch\include\ATen\ops\native_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1106289Z copying torch\include\ATen\ops\native_dropout_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1113555Z copying torch\include\ATen\ops\native_dropout_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1125575Z copying torch\include\ATen\ops\native_dropout_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1132894Z copying torch\include\ATen\ops\native_dropout_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1139588Z copying torch\include\ATen\ops\native_dropout_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1146358Z copying torch\include\ATen\ops\native_dropout_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1153621Z copying torch\include\ATen\ops\native_dropout_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1160813Z copying torch\include\ATen\ops\native_dropout_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1167966Z copying torch\include\ATen\ops\native_dropout_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1175178Z copying torch\include\ATen\ops\native_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1182013Z copying torch\include\ATen\ops\native_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1189178Z copying torch\include\ATen\ops\native_group_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1200984Z copying torch\include\ATen\ops\native_group_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1208270Z copying torch\include\ATen\ops\native_group_norm_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1216103Z copying torch\include\ATen\ops\native_group_norm_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1223113Z copying torch\include\ATen\ops\native_group_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1229939Z copying torch\include\ATen\ops\native_group_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1236975Z copying torch\include\ATen\ops\native_group_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1244876Z copying torch\include\ATen\ops\native_group_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1251944Z copying torch\include\ATen\ops\native_group_norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1260214Z copying torch\include\ATen\ops\native_group_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1266917Z copying torch\include\ATen\ops\native_group_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1279142Z copying torch\include\ATen\ops\native_group_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1286091Z copying torch\include\ATen\ops\native_layer_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1293293Z copying torch\include\ATen\ops\native_layer_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1301263Z copying torch\include\ATen\ops\native_layer_norm_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1308685Z copying torch\include\ATen\ops\native_layer_norm_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1315761Z copying torch\include\ATen\ops\native_layer_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1323555Z copying torch\include\ATen\ops\native_layer_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1330420Z copying torch\include\ATen\ops\native_layer_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1338263Z copying torch\include\ATen\ops\native_layer_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1344968Z copying torch\include\ATen\ops\native_layer_norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1358345Z copying torch\include\ATen\ops\native_layer_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1364744Z copying torch\include\ATen\ops\native_layer_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1371656Z copying torch\include\ATen\ops\native_layer_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1378862Z copying torch\include\ATen\ops\native_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1386948Z copying torch\include\ATen\ops\native_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1393017Z copying torch\include\ATen\ops\native_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1399889Z copying torch\include\ATen\ops\native_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1406837Z copying torch\include\ATen\ops\ne.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1413647Z copying torch\include\ATen\ops\neg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1421614Z copying torch\include\ATen\ops\negative.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1450177Z copying torch\include\ATen\ops\negative_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1451063Z copying torch\include\ATen\ops\negative_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1451802Z copying torch\include\ATen\ops\negative_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1457085Z copying torch\include\ATen\ops\neg_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1463773Z copying torch\include\ATen\ops\neg_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1476721Z copying torch\include\ATen\ops\neg_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1484789Z copying torch\include\ATen\ops\neg_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1489831Z copying torch\include\ATen\ops\neg_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1496349Z copying torch\include\ATen\ops\neg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1503140Z copying torch\include\ATen\ops\neg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1514996Z copying torch\include\ATen\ops\nested_to_padded_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1521878Z copying torch\include\ATen\ops\nested_to_padded_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1528911Z copying torch\include\ATen\ops\nested_to_padded_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1536104Z copying torch\include\ATen\ops\nested_to_padded_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1542394Z copying torch\include\ATen\ops\new_empty.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1579928Z copying torch\include\ATen\ops\new_empty_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1587930Z copying torch\include\ATen\ops\new_empty_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1594199Z copying torch\include\ATen\ops\new_empty_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1600897Z copying torch\include\ATen\ops\new_empty_strided.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1608377Z copying torch\include\ATen\ops\new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1620752Z copying torch\include\ATen\ops\new_empty_strided_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1627765Z copying torch\include\ATen\ops\new_empty_strided_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1634804Z copying torch\include\ATen\ops\new_empty_strided_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1641945Z copying torch\include\ATen\ops\new_full.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1648778Z copying torch\include\ATen\ops\new_full_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1660716Z copying torch\include\ATen\ops\new_full_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1667358Z copying torch\include\ATen\ops\new_full_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1674358Z copying torch\include\ATen\ops\new_ones.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1681436Z copying torch\include\ATen\ops\new_ones_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1688797Z copying torch\include\ATen\ops\new_ones_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1695642Z copying torch\include\ATen\ops\new_ones_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1702280Z copying torch\include\ATen\ops\new_zeros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1709691Z copying torch\include\ATen\ops\new_zeros_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1716660Z copying torch\include\ATen\ops\new_zeros_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1724424Z copying torch\include\ATen\ops\new_zeros_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1731165Z copying torch\include\ATen\ops\nextafter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1738541Z copying torch\include\ATen\ops\nextafter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1745223Z copying torch\include\ATen\ops\nextafter_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1752317Z copying torch\include\ATen\ops\nextafter_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1759506Z copying torch\include\ATen\ops\nextafter_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1772730Z copying torch\include\ATen\ops\nextafter_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1779945Z copying torch\include\ATen\ops\nextafter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1786987Z copying torch\include\ATen\ops\nextafter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1794303Z copying torch\include\ATen\ops\ne_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1801671Z copying torch\include\ATen\ops\ne_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1813325Z copying torch\include\ATen\ops\ne_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1819959Z copying torch\include\ATen\ops\ne_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1826320Z copying torch\include\ATen\ops\ne_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1833093Z copying torch\include\ATen\ops\ne_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1839863Z copying torch\include\ATen\ops\ne_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1855834Z copying torch\include\ATen\ops\nll_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1862208Z copying torch\include\ATen\ops\nll_loss2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1869222Z copying torch\include\ATen\ops\nll_loss2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1876776Z copying torch\include\ATen\ops\nll_loss2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1883750Z copying torch\include\ATen\ops\nll_loss2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1890630Z copying torch\include\ATen\ops\nll_loss2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1897904Z copying torch\include\ATen\ops\nll_loss2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1905472Z copying torch\include\ATen\ops\nll_loss2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1912273Z copying torch\include\ATen\ops\nll_loss2d_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1919565Z copying torch\include\ATen\ops\nll_loss2d_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1926312Z copying torch\include\ATen\ops\nll_loss2d_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1933609Z copying torch\include\ATen\ops\nll_loss2d_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1947630Z copying torch\include\ATen\ops\nll_loss2d_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1948697Z copying torch\include\ATen\ops\nll_loss2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1955768Z copying torch\include\ATen\ops\nll_loss2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1972153Z copying torch\include\ATen\ops\nll_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1979636Z copying torch\include\ATen\ops\nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1986470Z copying torch\include\ATen\ops\nll_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.1993548Z copying torch\include\ATen\ops\nll_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2000554Z copying torch\include\ATen\ops\nll_loss_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2012750Z copying torch\include\ATen\ops\nll_loss_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2019696Z copying torch\include\ATen\ops\nll_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2026527Z copying torch\include\ATen\ops\nll_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2033921Z copying torch\include\ATen\ops\nll_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2040738Z copying torch\include\ATen\ops\nll_loss_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2053007Z copying torch\include\ATen\ops\nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2060160Z copying torch\include\ATen\ops\nll_loss_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2067152Z copying torch\include\ATen\ops\nll_loss_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2073826Z copying torch\include\ATen\ops\nll_loss_forward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2081057Z copying torch\include\ATen\ops\nll_loss_forward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2094389Z copying torch\include\ATen\ops\nll_loss_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2101261Z copying torch\include\ATen\ops\nll_loss_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2108520Z copying torch\include\ATen\ops\nll_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2115262Z copying torch\include\ATen\ops\nll_loss_nd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2122259Z copying torch\include\ATen\ops\nll_loss_nd_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2134028Z copying torch\include\ATen\ops\nll_loss_nd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2140753Z copying torch\include\ATen\ops\nll_loss_nd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2147749Z copying torch\include\ATen\ops\nll_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2154385Z copying torch\include\ATen\ops\nonzero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2160799Z copying torch\include\ATen\ops\nonzero_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2173230Z copying torch\include\ATen\ops\nonzero_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2180389Z copying torch\include\ATen\ops\nonzero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2187269Z copying torch\include\ATen\ops\nonzero_numpy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2194710Z copying torch\include\ATen\ops\nonzero_numpy_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2201556Z copying torch\include\ATen\ops\nonzero_numpy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2213048Z copying torch\include\ATen\ops\nonzero_numpy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2219783Z copying torch\include\ATen\ops\nonzero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2227055Z copying torch\include\ATen\ops\nonzero_static.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2233946Z copying torch\include\ATen\ops\nonzero_static_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2240836Z copying torch\include\ATen\ops\nonzero_static_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2252916Z copying torch\include\ATen\ops\nonzero_static_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2259742Z copying torch\include\ATen\ops\nonzero_static_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2267210Z copying torch\include\ATen\ops\norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2273856Z copying torch\include\ATen\ops\normal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2280610Z copying torch\include\ATen\ops\normal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2288230Z copying torch\include\ATen\ops\normal_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2295602Z copying torch\include\ATen\ops\normal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2302253Z copying torch\include\ATen\ops\normal_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2325101Z copying torch\include\ATen\ops\normal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2332145Z copying torch\include\ATen\ops\normal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2339111Z copying torch\include\ATen\ops\norm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2346012Z copying torch\include\ATen\ops\norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2354045Z copying torch\include\ATen\ops\norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2361295Z copying torch\include\ATen\ops\norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2368277Z copying torch\include\ATen\ops\norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2375196Z copying torch\include\ATen\ops\norm_except_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2395853Z copying torch\include\ATen\ops\norm_except_dim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2402059Z copying torch\include\ATen\ops\norm_except_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2408826Z copying torch\include\ATen\ops\norm_except_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2416002Z copying torch\include\ATen\ops\norm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2430557Z copying torch\include\ATen\ops\norm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2437524Z copying torch\include\ATen\ops\norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2445144Z copying torch\include\ATen\ops\norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2451729Z copying torch\include\ATen\ops\not_equal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2458799Z copying torch\include\ATen\ops\not_equal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2465549Z copying torch\include\ATen\ops\not_equal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2472587Z copying torch\include\ATen\ops\not_equal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2480160Z copying torch\include\ATen\ops\nuclear_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2487159Z copying torch\include\ATen\ops\nuclear_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2493844Z copying torch\include\ATen\ops\nuclear_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2506914Z copying torch\include\ATen\ops\nuclear_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2513985Z copying torch\include\ATen\ops\numpy_T.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2520494Z copying torch\include\ATen\ops\numpy_T_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2527540Z copying torch\include\ATen\ops\numpy_T_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2535162Z copying torch\include\ATen\ops\numpy_T_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2553748Z copying torch\include\ATen\ops\ones.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2561466Z copying torch\include\ATen\ops\ones_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2572992Z copying torch\include\ATen\ops\ones_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2576322Z copying torch\include\ATen\ops\ones_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2589608Z copying torch\include\ATen\ops\ones_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2595236Z copying torch\include\ATen\ops\ones_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2601911Z copying torch\include\ATen\ops\ones_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2608979Z copying torch\include\ATen\ops\ones_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2615608Z copying torch\include\ATen\ops\one_hot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2623302Z copying torch\include\ATen\ops\one_hot_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2628950Z copying torch\include\ATen\ops\one_hot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2635376Z copying torch\include\ATen\ops\one_hot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2647416Z copying torch\include\ATen\ops\or.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2654095Z copying torch\include\ATen\ops\orgqr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2660673Z copying torch\include\ATen\ops\orgqr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2667422Z copying torch\include\ATen\ops\orgqr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2674574Z copying torch\include\ATen\ops\orgqr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2681632Z copying torch\include\ATen\ops\ormqr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2688169Z copying torch\include\ATen\ops\ormqr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2694957Z copying torch\include\ATen\ops\ormqr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2706866Z copying torch\include\ATen\ops\ormqr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2713560Z copying torch\include\ATen\ops\ormqr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2720381Z copying torch\include\ATen\ops\or_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2727157Z copying torch\include\ATen\ops\or_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2734087Z copying torch\include\ATen\ops\or_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2740880Z copying torch\include\ATen\ops\outer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2747414Z copying torch\include\ATen\ops\outer_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2754072Z copying torch\include\ATen\ops\outer_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2760896Z copying torch\include\ATen\ops\outer_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2767774Z copying torch\include\ATen\ops\output_nr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2774977Z copying torch\include\ATen\ops\output_nr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2781802Z copying torch\include\ATen\ops\output_nr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2788718Z copying torch\include\ATen\ops\output_nr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2795526Z copying torch\include\ATen\ops\pad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2802148Z copying torch\include\ATen\ops\pad_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2808901Z copying torch\include\ATen\ops\pad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2815436Z copying torch\include\ATen\ops\pad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2821843Z copying torch\include\ATen\ops\pad_sequence.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2828935Z copying torch\include\ATen\ops\pad_sequence_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2836097Z copying torch\include\ATen\ops\pad_sequence_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2843193Z copying torch\include\ATen\ops\pad_sequence_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2850188Z copying torch\include\ATen\ops\pairwise_distance.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2857223Z copying torch\include\ATen\ops\pairwise_distance_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2864096Z copying torch\include\ATen\ops\pairwise_distance_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2872194Z copying torch\include\ATen\ops\pairwise_distance_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2878145Z copying torch\include\ATen\ops\pdist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2884183Z copying torch\include\ATen\ops\pdist_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2891542Z copying torch\include\ATen\ops\pdist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2898489Z copying torch\include\ATen\ops\pdist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2905119Z copying torch\include\ATen\ops\permute.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2918685Z copying torch\include\ATen\ops\permute_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2925215Z copying torch\include\ATen\ops\permute_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2932539Z copying torch\include\ATen\ops\permute_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2939782Z copying torch\include\ATen\ops\permute_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2970437Z copying torch\include\ATen\ops\permute_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2971210Z copying torch\include\ATen\ops\permute_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2971966Z copying torch\include\ATen\ops\permute_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2972768Z copying torch\include\ATen\ops\permute_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2977470Z copying torch\include\ATen\ops\pinverse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2984208Z copying torch\include\ATen\ops\pinverse_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.2996573Z copying torch\include\ATen\ops\pinverse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3004706Z copying torch\include\ATen\ops\pinverse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3010218Z copying torch\include\ATen\ops\pin_memory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3017230Z copying torch\include\ATen\ops\pin_memory_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3023915Z copying torch\include\ATen\ops\pin_memory_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3036109Z copying torch\include\ATen\ops\pin_memory_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3042608Z copying torch\include\ATen\ops\pixel_shuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3049862Z copying torch\include\ATen\ops\pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3057880Z copying torch\include\ATen\ops\pixel_shuffle_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3064792Z copying torch\include\ATen\ops\pixel_shuffle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3072023Z copying torch\include\ATen\ops\pixel_shuffle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3079622Z copying torch\include\ATen\ops\pixel_shuffle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3086227Z copying torch\include\ATen\ops\pixel_unshuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3093760Z copying torch\include\ATen\ops\pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3100884Z copying torch\include\ATen\ops\pixel_unshuffle_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3108040Z copying torch\include\ATen\ops\pixel_unshuffle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3115400Z copying torch\include\ATen\ops\pixel_unshuffle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3122314Z copying torch\include\ATen\ops\pixel_unshuffle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3129437Z copying torch\include\ATen\ops\poisson.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3136361Z copying torch\include\ATen\ops\poisson_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3143132Z copying torch\include\ATen\ops\poisson_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3150368Z copying torch\include\ATen\ops\poisson_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3157162Z copying torch\include\ATen\ops\poisson_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3164032Z copying torch\include\ATen\ops\poisson_nll_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3171203Z copying torch\include\ATen\ops\poisson_nll_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3183609Z copying torch\include\ATen\ops\poisson_nll_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3190295Z copying torch\include\ATen\ops\poisson_nll_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3197138Z copying torch\include\ATen\ops\poisson_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3204171Z copying torch\include\ATen\ops\polar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3211028Z copying torch\include\ATen\ops\polar_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3217567Z copying torch\include\ATen\ops\polar_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3224346Z copying torch\include\ATen\ops\polar_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3231469Z copying torch\include\ATen\ops\polar_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3238216Z copying torch\include\ATen\ops\polar_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3244989Z copying torch\include\ATen\ops\polygamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3252018Z copying torch\include\ATen\ops\polygamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3259533Z copying torch\include\ATen\ops\polygamma_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3266102Z copying torch\include\ATen\ops\polygamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3294127Z copying torch\include\ATen\ops\polygamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3301131Z copying torch\include\ATen\ops\polygamma_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3307824Z copying torch\include\ATen\ops\polygamma_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3314619Z copying torch\include\ATen\ops\polygamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3321567Z copying torch\include\ATen\ops\polygamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3328443Z copying torch\include\ATen\ops\positive.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3335154Z copying torch\include\ATen\ops\positive_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3347075Z copying torch\include\ATen\ops\positive_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3354049Z copying torch\include\ATen\ops\positive_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3360645Z copying torch\include\ATen\ops\pow.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3367495Z copying torch\include\ATen\ops\pow_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3374210Z copying torch\include\ATen\ops\pow_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3386588Z copying torch\include\ATen\ops\pow_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3393525Z copying torch\include\ATen\ops\pow_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3399921Z copying torch\include\ATen\ops\pow_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3406502Z copying torch\include\ATen\ops\pow_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3413065Z copying torch\include\ATen\ops\pow_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3423498Z copying torch\include\ATen\ops\prelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3430190Z copying torch\include\ATen\ops\prelu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3437005Z copying torch\include\ATen\ops\prelu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3446314Z copying torch\include\ATen\ops\prelu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3453003Z copying torch\include\ATen\ops\prod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3462872Z copying torch\include\ATen\ops\prod_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3476962Z copying torch\include\ATen\ops\prod_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3478178Z copying torch\include\ATen\ops\prod_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3484876Z copying torch\include\ATen\ops\prod_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3491840Z copying torch\include\ATen\ops\prod_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3499016Z copying torch\include\ATen\ops\prod_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3510945Z copying torch\include\ATen\ops\prod_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3513513Z copying torch\include\ATen\ops\prod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3521367Z copying torch\include\ATen\ops\prod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3528158Z copying torch\include\ATen\ops\promote_types.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3535254Z copying torch\include\ATen\ops\promote_types_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3541844Z copying torch\include\ATen\ops\promote_types_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3548296Z copying torch\include\ATen\ops\promote_types_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3555789Z copying torch\include\ATen\ops\put.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3562503Z copying torch\include\ATen\ops\put_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3574368Z copying torch\include\ATen\ops\put_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3581186Z copying torch\include\ATen\ops\put_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3587843Z copying torch\include\ATen\ops\put_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3594479Z copying torch\include\ATen\ops\put_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3600921Z copying torch\include\ATen\ops\put_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3613035Z copying torch\include\ATen\ops\qr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3619878Z copying torch\include\ATen\ops\qr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3626508Z copying torch\include\ATen\ops\qr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3633281Z copying torch\include\ATen\ops\qr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3639891Z copying torch\include\ATen\ops\qscheme.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3646297Z copying torch\include\ATen\ops\qscheme_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3652965Z copying torch\include\ATen\ops\qscheme_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3660422Z copying torch\include\ATen\ops\quantile.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3670481Z copying torch\include\ATen\ops\quantile_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3676147Z copying torch\include\ATen\ops\quantile_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3683060Z copying torch\include\ATen\ops\quantile_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3689580Z copying torch\include\ATen\ops\quantized_batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3697057Z copying torch\include\ATen\ops\quantized_batch_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3704125Z copying torch\include\ATen\ops\quantized_batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3711034Z copying torch\include\ATen\ops\quantized_batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3733527Z copying torch\include\ATen\ops\quantized_gru_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3741144Z copying torch\include\ATen\ops\quantized_gru_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3747929Z copying torch\include\ATen\ops\quantized_gru_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3754856Z copying torch\include\ATen\ops\quantized_gru_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3761870Z copying torch\include\ATen\ops\quantized_lstm_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3774175Z copying torch\include\ATen\ops\quantized_lstm_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3781259Z copying torch\include\ATen\ops\quantized_lstm_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3788390Z copying torch\include\ATen\ops\quantized_lstm_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3795420Z copying torch\include\ATen\ops\quantized_max_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3802850Z copying torch\include\ATen\ops\quantized_max_pool1d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3809631Z copying torch\include\ATen\ops\quantized_max_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3816663Z copying torch\include\ATen\ops\quantized_max_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3823985Z copying torch\include\ATen\ops\quantized_max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3831306Z copying torch\include\ATen\ops\quantized_max_pool2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3838166Z copying torch\include\ATen\ops\quantized_max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3850991Z copying torch\include\ATen\ops\quantized_max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3858182Z copying torch\include\ATen\ops\quantized_max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3866351Z copying torch\include\ATen\ops\quantized_max_pool3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3873928Z copying torch\include\ATen\ops\quantized_max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3880699Z copying torch\include\ATen\ops\quantized_max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3888991Z copying torch\include\ATen\ops\quantized_rnn_relu_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3897064Z copying torch\include\ATen\ops\quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3903483Z copying torch\include\ATen\ops\quantized_rnn_relu_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3928917Z copying torch\include\ATen\ops\quantized_rnn_relu_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3929955Z copying torch\include\ATen\ops\quantized_rnn_tanh_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3932135Z copying torch\include\ATen\ops\quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3939573Z copying torch\include\ATen\ops\quantized_rnn_tanh_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3946277Z copying torch\include\ATen\ops\quantized_rnn_tanh_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3953769Z copying torch\include\ATen\ops\quantize_per_channel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3961146Z copying torch\include\ATen\ops\quantize_per_channel_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3970040Z copying torch\include\ATen\ops\quantize_per_channel_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3979493Z copying torch\include\ATen\ops\quantize_per_channel_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3983810Z copying torch\include\ATen\ops\quantize_per_channel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3991243Z copying torch\include\ATen\ops\quantize_per_channel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.3998198Z copying torch\include\ATen\ops\quantize_per_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4010990Z copying torch\include\ATen\ops\quantize_per_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4018176Z copying torch\include\ATen\ops\quantize_per_tensor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4025320Z copying torch\include\ATen\ops\quantize_per_tensor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4032577Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4039696Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4052760Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4059705Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4066550Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4074748Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4080488Z copying torch\include\ATen\ops\quantize_per_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4087388Z copying torch\include\ATen\ops\quantize_per_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4094584Z copying torch\include\ATen\ops\q_per_channel_axis.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4101531Z copying torch\include\ATen\ops\q_per_channel_axis_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4108193Z copying torch\include\ATen\ops\q_per_channel_axis_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4115255Z copying torch\include\ATen\ops\q_per_channel_scales.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4122807Z copying torch\include\ATen\ops\q_per_channel_scales_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4129814Z copying torch\include\ATen\ops\q_per_channel_scales_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4136982Z copying torch\include\ATen\ops\q_per_channel_scales_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4144205Z copying torch\include\ATen\ops\q_per_channel_zero_points.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4151552Z copying torch\include\ATen\ops\q_per_channel_zero_points_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4158436Z copying torch\include\ATen\ops\q_per_channel_zero_points_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4166072Z copying torch\include\ATen\ops\q_per_channel_zero_points_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4172767Z copying torch\include\ATen\ops\q_scale.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4178958Z copying torch\include\ATen\ops\q_scale_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4185581Z copying torch\include\ATen\ops\q_scale_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4192376Z copying torch\include\ATen\ops\q_zero_point.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4256557Z copying torch\include\ATen\ops\q_zero_point_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4263460Z copying torch\include\ATen\ops\q_zero_point_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4270795Z copying torch\include\ATen\ops\rad2deg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4277993Z copying torch\include\ATen\ops\rad2deg_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4286015Z copying torch\include\ATen\ops\rad2deg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4291925Z copying torch\include\ATen\ops\rad2deg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4299686Z copying torch\include\ATen\ops\rand.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4306863Z copying torch\include\ATen\ops\randint.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4314845Z copying torch\include\ATen\ops\randint_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4326174Z copying torch\include\ATen\ops\randint_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4333309Z copying torch\include\ATen\ops\randint_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4340333Z copying torch\include\ATen\ops\randint_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4350081Z copying torch\include\ATen\ops\randint_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4378983Z copying torch\include\ATen\ops\randint_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4390611Z copying torch\include\ATen\ops\randint_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4397172Z copying torch\include\ATen\ops\randn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4404826Z copying torch\include\ATen\ops\randn_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4413114Z copying torch\include\ATen\ops\randn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4420955Z copying torch\include\ATen\ops\randn_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4429319Z copying torch\include\ATen\ops\randn_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4436363Z copying torch\include\ATen\ops\randn_like_compositeimplicitautogradnestedtensor_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4443859Z copying torch\include\ATen\ops\randn_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4467464Z copying torch\include\ATen\ops\randn_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4467916Z copying torch\include\ATen\ops\randn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4474110Z copying torch\include\ATen\ops\randn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4480295Z copying torch\include\ATen\ops\random.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4488507Z copying torch\include\ATen\ops\random_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4495745Z copying torch\include\ATen\ops\random_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4503682Z copying torch\include\ATen\ops\random_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4511681Z copying torch\include\ATen\ops\random_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4518747Z copying torch\include\ATen\ops\random_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4525732Z copying torch\include\ATen\ops\random_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4532279Z copying torch\include\ATen\ops\randperm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4540514Z copying torch\include\ATen\ops\randperm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4552438Z copying torch\include\ATen\ops\randperm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4559581Z copying torch\include\ATen\ops\randperm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4566788Z copying torch\include\ATen\ops\randperm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4573412Z copying torch\include\ATen\ops\randperm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4580366Z copying torch\include\ATen\ops\rand_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4588154Z copying torch\include\ATen\ops\rand_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4594836Z copying torch\include\ATen\ops\rand_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4601695Z copying torch\include\ATen\ops\rand_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4609361Z copying torch\include\ATen\ops\rand_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4616280Z copying torch\include\ATen\ops\rand_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4624552Z copying torch\include\ATen\ops\rand_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4631289Z copying torch\include\ATen\ops\rand_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4639110Z copying torch\include\ATen\ops\range.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4646786Z copying torch\include\ATen\ops\range_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4655640Z copying torch\include\ATen\ops\range_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4663504Z copying torch\include\ATen\ops\range_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4670846Z copying torch\include\ATen\ops\range_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4677459Z copying torch\include\ATen\ops\range_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4684381Z copying torch\include\ATen\ops\range_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4692789Z copying torch\include\ATen\ops\ravel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4705382Z copying torch\include\ATen\ops\ravel_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4712556Z copying torch\include\ATen\ops\ravel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4720537Z copying torch\include\ATen\ops\ravel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4727106Z copying torch\include\ATen\ops\real.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4733653Z copying torch\include\ATen\ops\real_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4746175Z copying torch\include\ATen\ops\real_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4752343Z copying torch\include\ATen\ops\real_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4758716Z copying torch\include\ATen\ops\reciprocal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4766311Z copying torch\include\ATen\ops\reciprocal_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4775374Z copying torch\include\ATen\ops\reciprocal_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4789252Z copying torch\include\ATen\ops\reciprocal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4795522Z copying torch\include\ATen\ops\reciprocal_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4802966Z copying torch\include\ATen\ops\reciprocal_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4809911Z copying torch\include\ATen\ops\reciprocal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4818102Z copying torch\include\ATen\ops\reciprocal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4830482Z copying torch\include\ATen\ops\record_stream.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4837381Z copying torch\include\ATen\ops\record_stream_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4844748Z copying torch\include\ATen\ops\record_stream_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4851842Z copying torch\include\ATen\ops\record_stream_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4858872Z copying torch\include\ATen\ops\refine_names.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4877048Z copying torch\include\ATen\ops\refine_names_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4884217Z copying torch\include\ATen\ops\refine_names_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4892249Z copying torch\include\ATen\ops\refine_names_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4899729Z copying torch\include\ATen\ops\reflection_pad1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4908123Z copying torch\include\ATen\ops\reflection_pad1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4917692Z copying torch\include\ATen\ops\reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4924862Z copying torch\include\ATen\ops\reflection_pad1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4932021Z copying torch\include\ATen\ops\reflection_pad1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4941413Z copying torch\include\ATen\ops\reflection_pad1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4948698Z copying torch\include\ATen\ops\reflection_pad1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4957064Z copying torch\include\ATen\ops\reflection_pad1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4964525Z copying torch\include\ATen\ops\reflection_pad1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4971924Z copying torch\include\ATen\ops\reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4979676Z copying torch\include\ATen\ops\reflection_pad1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4987614Z copying torch\include\ATen\ops\reflection_pad1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.4997416Z copying torch\include\ATen\ops\reflection_pad1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5005891Z copying torch\include\ATen\ops\reflection_pad1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5013995Z copying torch\include\ATen\ops\reflection_pad1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5023004Z copying torch\include\ATen\ops\reflection_pad1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5029141Z copying torch\include\ATen\ops\reflection_pad2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5037040Z copying torch\include\ATen\ops\reflection_pad2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5044875Z copying torch\include\ATen\ops\reflection_pad2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5052045Z copying torch\include\ATen\ops\reflection_pad2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5061242Z copying torch\include\ATen\ops\reflection_pad2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5069385Z copying torch\include\ATen\ops\reflection_pad2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5075524Z copying torch\include\ATen\ops\reflection_pad2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5082750Z copying torch\include\ATen\ops\reflection_pad2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5089340Z copying torch\include\ATen\ops\reflection_pad2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5096928Z copying torch\include\ATen\ops\reflection_pad2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5104515Z copying torch\include\ATen\ops\reflection_pad3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5111744Z copying torch\include\ATen\ops\reflection_pad3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5120380Z copying torch\include\ATen\ops\reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5126887Z copying torch\include\ATen\ops\reflection_pad3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5133956Z copying torch\include\ATen\ops\reflection_pad3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5141426Z copying torch\include\ATen\ops\reflection_pad3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5155494Z copying torch\include\ATen\ops\reflection_pad3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5162849Z copying torch\include\ATen\ops\reflection_pad3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5170255Z copying torch\include\ATen\ops\reflection_pad3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5177937Z copying torch\include\ATen\ops\reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5185846Z copying torch\include\ATen\ops\reflection_pad3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5293140Z copying torch\include\ATen\ops\reflection_pad3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5300453Z copying torch\include\ATen\ops\reflection_pad3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5307762Z copying torch\include\ATen\ops\reflection_pad3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5314485Z copying torch\include\ATen\ops\reflection_pad3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5321356Z copying torch\include\ATen\ops\reflection_pad3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5332977Z copying torch\include\ATen\ops\relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5339266Z copying torch\include\ATen\ops\relu6.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5346105Z copying torch\include\ATen\ops\relu6_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5353228Z copying torch\include\ATen\ops\relu6_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5361434Z copying torch\include\ATen\ops\relu6_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5387109Z copying torch\include\ATen\ops\relu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5393946Z copying torch\include\ATen\ops\relu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5400816Z copying torch\include\ATen\ops\relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5407652Z copying torch\include\ATen\ops\relu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5414488Z copying torch\include\ATen\ops\relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5421326Z copying torch\include\ATen\ops\relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5428058Z copying torch\include\ATen\ops\remainder.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5435469Z copying torch\include\ATen\ops\remainder_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5442358Z copying torch\include\ATen\ops\remainder_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5449288Z copying torch\include\ATen\ops\remainder_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5461654Z copying torch\include\ATen\ops\remainder_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5468945Z copying torch\include\ATen\ops\remainder_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5476213Z copying torch\include\ATen\ops\remainder_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5483176Z copying torch\include\ATen\ops\remainder_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5489821Z copying torch\include\ATen\ops\remainder_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5501870Z copying torch\include\ATen\ops\rename.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5508314Z copying torch\include\ATen\ops\rename_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5515092Z copying torch\include\ATen\ops\rename_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5521672Z copying torch\include\ATen\ops\rename_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5528423Z copying torch\include\ATen\ops\renorm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5535410Z copying torch\include\ATen\ops\renorm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5542203Z copying torch\include\ATen\ops\renorm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5549037Z copying torch\include\ATen\ops\renorm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5555861Z copying torch\include\ATen\ops\renorm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5562653Z copying torch\include\ATen\ops\renorm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5574574Z copying torch\include\ATen\ops\renorm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5581274Z copying torch\include\ATen\ops\renorm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5587986Z copying torch\include\ATen\ops\repeat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5594851Z copying torch\include\ATen\ops\repeat_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5601379Z copying torch\include\ATen\ops\repeat_interleave.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5608564Z copying torch\include\ATen\ops\repeat_interleave_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5615964Z copying torch\include\ATen\ops\repeat_interleave_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5622743Z copying torch\include\ATen\ops\repeat_interleave_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5629760Z copying torch\include\ATen\ops\repeat_interleave_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5637005Z copying torch\include\ATen\ops\repeat_interleave_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5644054Z copying torch\include\ATen\ops\repeat_interleave_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5650845Z copying torch\include\ATen\ops\repeat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5659248Z copying torch\include\ATen\ops\repeat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5664818Z copying torch\include\ATen\ops\replication_pad1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5671612Z copying torch\include\ATen\ops\replication_pad1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5679037Z copying torch\include\ATen\ops\replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5686275Z copying torch\include\ATen\ops\replication_pad1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5693835Z copying torch\include\ATen\ops\replication_pad1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5700450Z copying torch\include\ATen\ops\replication_pad1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5707577Z copying torch\include\ATen\ops\replication_pad1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5714650Z copying torch\include\ATen\ops\replication_pad1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5722461Z copying torch\include\ATen\ops\replication_pad1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5729476Z copying torch\include\ATen\ops\replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5736355Z copying torch\include\ATen\ops\replication_pad1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5743394Z copying torch\include\ATen\ops\replication_pad1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5757026Z copying torch\include\ATen\ops\replication_pad1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5763547Z copying torch\include\ATen\ops\replication_pad1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5770595Z copying torch\include\ATen\ops\replication_pad1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5777888Z copying torch\include\ATen\ops\replication_pad1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5786043Z copying torch\include\ATen\ops\replication_pad2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5798413Z copying torch\include\ATen\ops\replication_pad2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5805280Z copying torch\include\ATen\ops\replication_pad2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5812367Z copying torch\include\ATen\ops\replication_pad2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5820627Z copying torch\include\ATen\ops\replication_pad2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5827287Z copying torch\include\ATen\ops\replication_pad2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5835023Z copying torch\include\ATen\ops\replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5841527Z copying torch\include\ATen\ops\replication_pad2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5849176Z copying torch\include\ATen\ops\replication_pad2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5855362Z copying torch\include\ATen\ops\replication_pad2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5862350Z copying torch\include\ATen\ops\replication_pad2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5874674Z copying torch\include\ATen\ops\replication_pad2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5881319Z copying torch\include\ATen\ops\replication_pad2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5888488Z copying torch\include\ATen\ops\replication_pad3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5896150Z copying torch\include\ATen\ops\replication_pad3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5903141Z copying torch\include\ATen\ops\replication_pad3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5914925Z copying torch\include\ATen\ops\replication_pad3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5922160Z copying torch\include\ATen\ops\replication_pad3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5929257Z copying torch\include\ATen\ops\replication_pad3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5937067Z copying torch\include\ATen\ops\replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5944019Z copying torch\include\ATen\ops\replication_pad3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5956447Z copying torch\include\ATen\ops\replication_pad3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5963482Z copying torch\include\ATen\ops\replication_pad3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5970693Z copying torch\include\ATen\ops\replication_pad3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5977853Z copying torch\include\ATen\ops\replication_pad3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5984537Z copying torch\include\ATen\ops\replication_pad3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5991449Z copying torch\include\ATen\ops\requires_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.5998153Z copying torch\include\ATen\ops\requires_grad_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6004770Z copying torch\include\ATen\ops\requires_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6011125Z copying torch\include\ATen\ops\requires_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6018279Z copying torch\include\ATen\ops\reshape.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6024694Z copying torch\include\ATen\ops\reshape_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6031432Z copying torch\include\ATen\ops\reshape_as_compositeimplicitautogradnestedtensor_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6038250Z copying torch\include\ATen\ops\reshape_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6045156Z copying torch\include\ATen\ops\reshape_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6051839Z copying torch\include\ATen\ops\reshape_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6065052Z copying torch\include\ATen\ops\reshape_compositeimplicitautogradnestedtensor_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6072502Z copying torch\include\ATen\ops\reshape_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6079201Z copying torch\include\ATen\ops\reshape_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6085918Z copying torch\include\ATen\ops\reshape_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6092732Z copying torch\include\ATen\ops\resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6104907Z copying torch\include\ATen\ops\resize_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6111696Z copying torch\include\ATen\ops\resize_as_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6118577Z copying torch\include\ATen\ops\resize_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6125364Z copying torch\include\ATen\ops\resize_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6131945Z copying torch\include\ATen\ops\resize_as_sparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6139093Z copying torch\include\ATen\ops\resize_as_sparse_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6145933Z copying torch\include\ATen\ops\resize_as_sparse_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6153042Z copying torch\include\ATen\ops\resize_as_sparse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6159799Z copying torch\include\ATen\ops\resize_as_sparse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6167023Z copying torch\include\ATen\ops\resize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6174816Z copying torch\include\ATen\ops\resize_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6181906Z copying torch\include\ATen\ops\resize_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6188719Z copying torch\include\ATen\ops\resize_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6196238Z copying torch\include\ATen\ops\resize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6202961Z copying torch\include\ATen\ops\resize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6209776Z copying torch\include\ATen\ops\resolve_conj.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6216984Z copying torch\include\ATen\ops\resolve_conj_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6223899Z copying torch\include\ATen\ops\resolve_conj_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6230506Z copying torch\include\ATen\ops\resolve_conj_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6237238Z copying torch\include\ATen\ops\resolve_neg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6250482Z copying torch\include\ATen\ops\resolve_neg_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6257393Z copying torch\include\ATen\ops\resolve_neg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6263889Z copying torch\include\ATen\ops\resolve_neg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6270515Z copying torch\include\ATen\ops\result_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6277822Z copying torch\include\ATen\ops\result_type_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6284422Z copying torch\include\ATen\ops\result_type_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6291235Z copying torch\include\ATen\ops\result_type_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6298252Z copying torch\include\ATen\ops\retains_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6305048Z copying torch\include\ATen\ops\retains_grad_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6311645Z copying torch\include\ATen\ops\retains_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6318140Z copying torch\include\ATen\ops\retains_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6354366Z copying torch\include\ATen\ops\retain_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6361358Z copying torch\include\ATen\ops\retain_grad_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6368226Z copying torch\include\ATen\ops\retain_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6375076Z copying torch\include\ATen\ops\retain_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6396335Z copying torch\include\ATen\ops\rms_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6402999Z copying torch\include\ATen\ops\rms_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6409764Z copying torch\include\ATen\ops\rms_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6417025Z copying torch\include\ATen\ops\rms_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6424689Z copying torch\include\ATen\ops\rnn_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6431760Z copying torch\include\ATen\ops\rnn_relu_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6438775Z copying torch\include\ATen\ops\rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6445708Z copying torch\include\ATen\ops\rnn_relu_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6453056Z copying torch\include\ATen\ops\rnn_relu_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6459869Z copying torch\include\ATen\ops\rnn_relu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6467328Z copying torch\include\ATen\ops\rnn_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6475412Z copying torch\include\ATen\ops\rnn_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6482603Z copying torch\include\ATen\ops\rnn_tanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6489173Z copying torch\include\ATen\ops\rnn_tanh_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6496514Z copying torch\include\ATen\ops\rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6522627Z copying torch\include\ATen\ops\rnn_tanh_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6529362Z copying torch\include\ATen\ops\rnn_tanh_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6536569Z copying torch\include\ATen\ops\rnn_tanh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6543291Z copying torch\include\ATen\ops\rnn_tanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6550012Z copying torch\include\ATen\ops\rnn_tanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6561552Z copying torch\include\ATen\ops\roll.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6568199Z copying torch\include\ATen\ops\roll_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6575853Z copying torch\include\ATen\ops\roll_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6582683Z copying torch\include\ATen\ops\roll_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6589365Z copying torch\include\ATen\ops\roll_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6601086Z copying torch\include\ATen\ops\roll_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6607551Z copying torch\include\ATen\ops\rot90.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6614367Z copying torch\include\ATen\ops\rot90_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6621439Z copying torch\include\ATen\ops\rot90_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6627896Z copying torch\include\ATen\ops\rot90_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6639477Z copying torch\include\ATen\ops\round.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6646288Z copying torch\include\ATen\ops\round_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6652694Z copying torch\include\ATen\ops\round_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6659562Z copying torch\include\ATen\ops\round_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6666478Z copying torch\include\ATen\ops\round_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6673063Z copying torch\include\ATen\ops\round_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6679677Z copying torch\include\ATen\ops\round_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6686378Z copying torch\include\ATen\ops\round_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6693690Z copying torch\include\ATen\ops\row_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6700206Z copying torch\include\ATen\ops\row_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6711581Z copying torch\include\ATen\ops\row_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6718619Z copying torch\include\ATen\ops\row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6725641Z copying torch\include\ATen\ops\row_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6732336Z copying torch\include\ATen\ops\row_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6739415Z copying torch\include\ATen\ops\row_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6746111Z copying torch\include\ATen\ops\row_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6752499Z copying torch\include\ATen\ops\row_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6759199Z copying torch\include\ATen\ops\row_stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6766434Z copying torch\include\ATen\ops\row_stack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6773351Z copying torch\include\ATen\ops\row_stack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6786798Z copying torch\include\ATen\ops\row_stack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6793490Z copying torch\include\ATen\ops\rrelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6800323Z copying torch\include\ATen\ops\rrelu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6807021Z copying torch\include\ATen\ops\rrelu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6813752Z copying torch\include\ATen\ops\rrelu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6825375Z copying torch\include\ATen\ops\rrelu_with_noise.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6832608Z copying torch\include\ATen\ops\rrelu_with_noise_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6839756Z copying torch\include\ATen\ops\rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6846630Z copying torch\include\ATen\ops\rrelu_with_noise_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6853501Z copying torch\include\ATen\ops\rrelu_with_noise_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6865971Z copying torch\include\ATen\ops\rrelu_with_noise_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6872887Z copying torch\include\ATen\ops\rrelu_with_noise_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6880093Z copying torch\include\ATen\ops\rrelu_with_noise_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6886913Z copying torch\include\ATen\ops\rrelu_with_noise_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6893848Z copying torch\include\ATen\ops\rrelu_with_noise_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6900696Z copying torch\include\ATen\ops\rrelu_with_noise_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6907699Z copying torch\include\ATen\ops\rshift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6914450Z copying torch\include\ATen\ops\rshift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6921266Z copying torch\include\ATen\ops\rshift_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6928249Z copying torch\include\ATen\ops\rshift_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6935134Z copying torch\include\ATen\ops\rshift_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6941967Z copying torch\include\ATen\ops\rshift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6948968Z copying torch\include\ATen\ops\rshift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6956067Z copying torch\include\ATen\ops\rsqrt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6962945Z copying torch\include\ATen\ops\rsqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6975452Z copying torch\include\ATen\ops\rsqrt_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6983047Z copying torch\include\ATen\ops\rsqrt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6989739Z copying torch\include\ATen\ops\rsqrt_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.6996351Z copying torch\include\ATen\ops\rsqrt_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7003615Z copying torch\include\ATen\ops\rsqrt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7014564Z copying torch\include\ATen\ops\rsqrt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7021325Z copying torch\include\ATen\ops\rsub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7028053Z copying torch\include\ATen\ops\rsub_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7034929Z copying torch\include\ATen\ops\rsub_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7041889Z copying torch\include\ATen\ops\rsub_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7048737Z copying torch\include\ATen\ops\rsub_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7055749Z copying torch\include\ATen\ops\rsub_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7062212Z copying torch\include\ATen\ops\scalar_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7069237Z copying torch\include\ATen\ops\scalar_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7075836Z copying torch\include\ATen\ops\scalar_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7082522Z copying torch\include\ATen\ops\scalar_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7089462Z copying torch\include\ATen\ops\scaled_dot_product_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7097206Z copying torch\include\ATen\ops\scaled_dot_product_attention_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7104005Z copying torch\include\ATen\ops\scaled_dot_product_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7110711Z copying torch\include\ATen\ops\scaled_dot_product_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7117385Z copying torch\include\ATen\ops\scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7123737Z copying torch\include\ATen\ops\scatter_add.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7130728Z copying torch\include\ATen\ops\scatter_add_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7137814Z copying torch\include\ATen\ops\scatter_add_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7144339Z copying torch\include\ATen\ops\scatter_add_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7151053Z copying torch\include\ATen\ops\scatter_add_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7157828Z copying torch\include\ATen\ops\scatter_add_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7164887Z copying torch\include\ATen\ops\scatter_add_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7171663Z copying torch\include\ATen\ops\scatter_add_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7178834Z copying torch\include\ATen\ops\scatter_add_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7190822Z copying torch\include\ATen\ops\scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7197669Z copying torch\include\ATen\ops\scatter_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7204433Z copying torch\include\ATen\ops\scatter_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7211426Z copying torch\include\ATen\ops\scatter_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7218164Z copying torch\include\ATen\ops\scatter_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7229781Z copying torch\include\ATen\ops\scatter_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7237114Z copying torch\include\ATen\ops\scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7244842Z copying torch\include\ATen\ops\scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7251861Z copying torch\include\ATen\ops\scatter_reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7259340Z copying torch\include\ATen\ops\scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7266231Z copying torch\include\ATen\ops\scatter_reduce_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7273098Z copying torch\include\ATen\ops\scatter_reduce_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7279746Z copying torch\include\ATen\ops\scatter_reduce_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7287286Z copying torch\include\ATen\ops\scatter_reduce_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7293966Z copying torch\include\ATen\ops\scatter_reduce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7300869Z copying torch\include\ATen\ops\scatter_reduce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7307686Z copying torch\include\ATen\ops\searchsorted.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7314482Z copying torch\include\ATen\ops\searchsorted_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7322057Z copying torch\include\ATen\ops\searchsorted_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7328684Z copying torch\include\ATen\ops\searchsorted_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7335994Z copying torch\include\ATen\ops\searchsorted_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7342894Z copying torch\include\ATen\ops\segment_reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7349734Z copying torch\include\ATen\ops\segment_reduce_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7356285Z copying torch\include\ATen\ops\segment_reduce_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7362911Z copying torch\include\ATen\ops\segment_reduce_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7374909Z copying torch\include\ATen\ops\segment_reduce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7381610Z copying torch\include\ATen\ops\segment_reduce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7388328Z copying torch\include\ATen\ops\select.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7394924Z copying torch\include\ATen\ops\select_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7401942Z copying torch\include\ATen\ops\select_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7408757Z copying torch\include\ATen\ops\select_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7415868Z copying torch\include\ATen\ops\select_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7422521Z copying torch\include\ATen\ops\select_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7429587Z copying torch\include\ATen\ops\select_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7436805Z copying torch\include\ATen\ops\select_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7443420Z copying torch\include\ATen\ops\select_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7450644Z copying torch\include\ATen\ops\select_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7457731Z copying torch\include\ATen\ops\select_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7464387Z copying torch\include\ATen\ops\select_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7471217Z copying torch\include\ATen\ops\select_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7483371Z copying torch\include\ATen\ops\select_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7490443Z copying torch\include\ATen\ops\select_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7498164Z copying torch\include\ATen\ops\select_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7505458Z copying torch\include\ATen\ops\select_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7512998Z copying torch\include\ATen\ops\select_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7524082Z copying torch\include\ATen\ops\select_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7530907Z copying torch\include\ATen\ops\select_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7538048Z copying torch\include\ATen\ops\selu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7544900Z copying torch\include\ATen\ops\selu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7551441Z copying torch\include\ATen\ops\selu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7562339Z copying torch\include\ATen\ops\selu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7568612Z copying torch\include\ATen\ops\set.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7575589Z copying torch\include\ATen\ops\set_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7582373Z copying torch\include\ATen\ops\set_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7588943Z copying torch\include\ATen\ops\set_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7600915Z copying torch\include\ATen\ops\set_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7607736Z copying torch\include\ATen\ops\set_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7614142Z copying torch\include\ATen\ops\set_data_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7620673Z copying torch\include\ATen\ops\set_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7626929Z copying torch\include\ATen\ops\set_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7633866Z copying torch\include\ATen\ops\set_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7640411Z copying torch\include\ATen\ops\set_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7647038Z copying torch\include\ATen\ops\set_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7653503Z copying torch\include\ATen\ops\sgn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7660153Z copying torch\include\ATen\ops\sgn_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7666620Z copying torch\include\ATen\ops\sgn_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7673160Z copying torch\include\ATen\ops\sgn_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7679761Z copying torch\include\ATen\ops\sgn_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7685843Z copying torch\include\ATen\ops\sgn_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7692742Z copying torch\include\ATen\ops\sgn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7699390Z copying torch\include\ATen\ops\sgn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7706047Z copying torch\include\ATen\ops\sigmoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7712340Z copying torch\include\ATen\ops\sigmoid_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7719866Z copying torch\include\ATen\ops\sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7726723Z copying torch\include\ATen\ops\sigmoid_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7733393Z copying torch\include\ATen\ops\sigmoid_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7740014Z copying torch\include\ATen\ops\sigmoid_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7747248Z copying torch\include\ATen\ops\sigmoid_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7754160Z copying torch\include\ATen\ops\sigmoid_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7760742Z copying torch\include\ATen\ops\sigmoid_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7767923Z copying torch\include\ATen\ops\sigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7774611Z copying torch\include\ATen\ops\sigmoid_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7781193Z copying torch\include\ATen\ops\sigmoid_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7787805Z copying torch\include\ATen\ops\sigmoid_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7794714Z copying torch\include\ATen\ops\sigmoid_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7801337Z copying torch\include\ATen\ops\sigmoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7807959Z copying torch\include\ATen\ops\sigmoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7814692Z copying torch\include\ATen\ops\sign.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7821171Z copying torch\include\ATen\ops\signbit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7827785Z copying torch\include\ATen\ops\signbit_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7834305Z copying torch\include\ATen\ops\signbit_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7841167Z copying torch\include\ATen\ops\signbit_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7847965Z copying torch\include\ATen\ops\signbit_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7854546Z copying torch\include\ATen\ops\signbit_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7861119Z copying torch\include\ATen\ops\signbit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7867818Z copying torch\include\ATen\ops\signbit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7874887Z copying torch\include\ATen\ops\sign_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7881475Z copying torch\include\ATen\ops\sign_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7888461Z copying torch\include\ATen\ops\sign_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7895233Z copying torch\include\ATen\ops\sign_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7901750Z copying torch\include\ATen\ops\sign_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7908611Z copying torch\include\ATen\ops\sign_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7915307Z copying torch\include\ATen\ops\sign_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7922304Z copying torch\include\ATen\ops\silu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7928738Z copying torch\include\ATen\ops\silu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7936043Z copying torch\include\ATen\ops\silu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7986329Z copying torch\include\ATen\ops\silu_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.7994417Z copying torch\include\ATen\ops\silu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8001287Z copying torch\include\ATen\ops\silu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8008095Z copying torch\include\ATen\ops\silu_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8015336Z copying torch\include\ATen\ops\silu_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8022480Z copying torch\include\ATen\ops\silu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8029848Z copying torch\include\ATen\ops\silu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8037555Z copying torch\include\ATen\ops\silu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8044659Z copying torch\include\ATen\ops\silu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8053012Z copying torch\include\ATen\ops\silu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8060008Z copying torch\include\ATen\ops\silu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8066523Z copying torch\include\ATen\ops\silu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8073450Z copying torch\include\ATen\ops\silu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8080111Z copying torch\include\ATen\ops\silu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8086677Z copying torch\include\ATen\ops\sin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8093026Z copying torch\include\ATen\ops\sinc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8099940Z copying torch\include\ATen\ops\sinc_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8106907Z copying torch\include\ATen\ops\sinc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8113481Z copying torch\include\ATen\ops\sinc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8120122Z copying torch\include\ATen\ops\sinc_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8126553Z copying torch\include\ATen\ops\sinc_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8133347Z copying torch\include\ATen\ops\sinc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8139953Z copying torch\include\ATen\ops\sinc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8146280Z copying torch\include\ATen\ops\sinh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8153109Z copying torch\include\ATen\ops\sinh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8160038Z copying torch\include\ATen\ops\sinh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8166739Z copying torch\include\ATen\ops\sinh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8173603Z copying torch\include\ATen\ops\sinh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8180061Z copying torch\include\ATen\ops\sinh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8186660Z copying torch\include\ATen\ops\sinh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8193738Z copying torch\include\ATen\ops\sinh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8200449Z copying torch\include\ATen\ops\sin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8207179Z copying torch\include\ATen\ops\sin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8213864Z copying torch\include\ATen\ops\sin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8226375Z copying torch\include\ATen\ops\sin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8232549Z copying torch\include\ATen\ops\sin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8239500Z copying torch\include\ATen\ops\sin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8246200Z copying torch\include\ATen\ops\sin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8252587Z copying torch\include\ATen\ops\size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8264395Z copying torch\include\ATen\ops\size_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8271267Z copying torch\include\ATen\ops\size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8277608Z copying torch\include\ATen\ops\size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8283866Z copying torch\include\ATen\ops\slice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8290260Z copying torch\include\ATen\ops\slice_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8298374Z copying torch\include\ATen\ops\slice_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8305156Z copying torch\include\ATen\ops\slice_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8311947Z copying torch\include\ATen\ops\slice_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8318975Z copying torch\include\ATen\ops\slice_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8326658Z copying torch\include\ATen\ops\slice_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8334185Z copying torch\include\ATen\ops\slice_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8341157Z copying torch\include\ATen\ops\slice_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8347910Z copying torch\include\ATen\ops\slice_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8355144Z copying torch\include\ATen\ops\slice_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8361810Z copying torch\include\ATen\ops\slice_inverse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8376022Z copying torch\include\ATen\ops\slice_inverse_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8383360Z copying torch\include\ATen\ops\slice_inverse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8390728Z copying torch\include\ATen\ops\slice_inverse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8397497Z copying torch\include\ATen\ops\slice_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8404136Z copying torch\include\ATen\ops\slice_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8411681Z copying torch\include\ATen\ops\slice_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8724944Z copying torch\include\ATen\ops\slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8740768Z copying torch\include\ATen\ops\slice_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8747324Z copying torch\include\ATen\ops\slice_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8760199Z copying torch\include\ATen\ops\slice_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8779064Z copying torch\include\ATen\ops\slogdet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8793208Z copying torch\include\ATen\ops\slogdet_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8801274Z copying torch\include\ATen\ops\slogdet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8808594Z copying torch\include\ATen\ops\slogdet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8815508Z copying torch\include\ATen\ops\slow_conv3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8822666Z copying torch\include\ATen\ops\slow_conv3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8829387Z copying torch\include\ATen\ops\slow_conv3d_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8836386Z copying torch\include\ATen\ops\slow_conv3d_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8843734Z copying torch\include\ATen\ops\slow_conv3d_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8850669Z copying torch\include\ATen\ops\slow_conv3d_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8865025Z copying torch\include\ATen\ops\slow_conv3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8872090Z copying torch\include\ATen\ops\slow_conv3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8879303Z copying torch\include\ATen\ops\slow_conv_dilated2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8886455Z copying torch\include\ATen\ops\slow_conv_dilated2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8893399Z copying torch\include\ATen\ops\slow_conv_dilated2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8906891Z copying torch\include\ATen\ops\slow_conv_dilated2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8914855Z copying torch\include\ATen\ops\slow_conv_dilated2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8922062Z copying torch\include\ATen\ops\slow_conv_dilated2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8929042Z copying torch\include\ATen\ops\slow_conv_dilated3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8936637Z copying torch\include\ATen\ops\slow_conv_dilated3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8950911Z copying torch\include\ATen\ops\slow_conv_dilated3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8957905Z copying torch\include\ATen\ops\slow_conv_dilated3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8964972Z copying torch\include\ATen\ops\slow_conv_dilated3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8971842Z copying torch\include\ATen\ops\slow_conv_dilated3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8979908Z copying torch\include\ATen\ops\slow_conv_transpose2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.8993195Z copying torch\include\ATen\ops\slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9005988Z copying torch\include\ATen\ops\slow_conv_transpose2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9013341Z copying torch\include\ATen\ops\slow_conv_transpose2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9020388Z copying torch\include\ATen\ops\slow_conv_transpose2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9027670Z copying torch\include\ATen\ops\slow_conv_transpose2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9039473Z copying torch\include\ATen\ops\slow_conv_transpose2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9046269Z copying torch\include\ATen\ops\slow_conv_transpose2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9053098Z copying torch\include\ATen\ops\slow_conv_transpose3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9060054Z copying torch\include\ATen\ops\slow_conv_transpose3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9138281Z copying torch\include\ATen\ops\slow_conv_transpose3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9150560Z copying torch\include\ATen\ops\slow_conv_transpose3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9157711Z copying torch\include\ATen\ops\slow_conv_transpose3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9164390Z copying torch\include\ATen\ops\smm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9171005Z copying torch\include\ATen\ops\smm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9177725Z copying torch\include\ATen\ops\smm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9189461Z copying torch\include\ATen\ops\smm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9196266Z copying torch\include\ATen\ops\smooth_l1_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9203035Z copying torch\include\ATen\ops\smooth_l1_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9210201Z copying torch\include\ATen\ops\smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9217244Z copying torch\include\ATen\ops\smooth_l1_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9230321Z copying torch\include\ATen\ops\smooth_l1_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9237336Z copying torch\include\ATen\ops\smooth_l1_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9244525Z copying torch\include\ATen\ops\smooth_l1_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9251715Z copying torch\include\ATen\ops\smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9258698Z copying torch\include\ATen\ops\smooth_l1_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9265715Z copying torch\include\ATen\ops\smooth_l1_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9273290Z copying torch\include\ATen\ops\smooth_l1_loss_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9280086Z copying torch\include\ATen\ops\smooth_l1_loss_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9286926Z copying torch\include\ATen\ops\smooth_l1_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9293903Z copying torch\include\ATen\ops\smooth_l1_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9306770Z copying torch\include\ATen\ops\softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9313742Z copying torch\include\ATen\ops\softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9320529Z copying torch\include\ATen\ops\softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9327087Z copying torch\include\ATen\ops\softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9334079Z copying torch\include\ATen\ops\softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9340690Z copying torch\include\ATen\ops\softplus.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9347077Z copying torch\include\ATen\ops\softplus_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9354325Z copying torch\include\ATen\ops\softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9361771Z copying torch\include\ATen\ops\softplus_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9368453Z copying torch\include\ATen\ops\softplus_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9380589Z copying torch\include\ATen\ops\softplus_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9387697Z copying torch\include\ATen\ops\softplus_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9394758Z copying torch\include\ATen\ops\softplus_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9401590Z copying torch\include\ATen\ops\softplus_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9409003Z copying torch\include\ATen\ops\softplus_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9421190Z copying torch\include\ATen\ops\softplus_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9428328Z copying torch\include\ATen\ops\softplus_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9435102Z copying torch\include\ATen\ops\softplus_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9442112Z copying torch\include\ATen\ops\softplus_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9449063Z copying torch\include\ATen\ops\softplus_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9460867Z copying torch\include\ATen\ops\softplus_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9472801Z copying torch\include\ATen\ops\softshrink.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9478908Z copying torch\include\ATen\ops\softshrink_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9486370Z copying torch\include\ATen\ops\softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9493572Z copying torch\include\ATen\ops\softshrink_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9501011Z copying torch\include\ATen\ops\softshrink_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9507861Z copying torch\include\ATen\ops\softshrink_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9515432Z copying torch\include\ATen\ops\softshrink_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9522850Z copying torch\include\ATen\ops\softshrink_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9530216Z copying torch\include\ATen\ops\softshrink_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9537877Z copying torch\include\ATen\ops\softshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9544612Z copying torch\include\ATen\ops\softshrink_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9551465Z copying torch\include\ATen\ops\softshrink_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9558448Z copying torch\include\ATen\ops\softshrink_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9565098Z copying torch\include\ATen\ops\softshrink_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9579974Z copying torch\include\ATen\ops\softshrink_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9586600Z copying torch\include\ATen\ops\softshrink_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9593138Z copying torch\include\ATen\ops\soft_margin_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9599826Z copying torch\include\ATen\ops\soft_margin_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9606908Z copying torch\include\ATen\ops\soft_margin_loss_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9619090Z copying torch\include\ATen\ops\soft_margin_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9625920Z copying torch\include\ATen\ops\soft_margin_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9633000Z copying torch\include\ATen\ops\soft_margin_loss_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9639757Z copying torch\include\ATen\ops\soft_margin_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9647424Z copying torch\include\ATen\ops\soft_margin_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9654194Z copying torch\include\ATen\ops\sort.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9661102Z copying torch\include\ATen\ops\sort_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9667982Z copying torch\include\ATen\ops\sort_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9674775Z copying torch\include\ATen\ops\sort_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9682229Z copying torch\include\ATen\ops\sort_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9689037Z copying torch\include\ATen\ops\sort_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9703814Z copying torch\include\ATen\ops\sort_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9710377Z copying torch\include\ATen\ops\sort_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9717042Z copying torch\include\ATen\ops\sort_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9723515Z copying torch\include\ATen\ops\sort_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9730252Z copying torch\include\ATen\ops\sparse_bsc_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9738081Z copying torch\include\ATen\ops\sparse_bsc_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9744432Z copying torch\include\ATen\ops\sparse_bsc_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9751256Z copying torch\include\ATen\ops\sparse_bsc_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9758064Z copying torch\include\ATen\ops\sparse_bsr_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9770506Z copying torch\include\ATen\ops\sparse_bsr_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9779424Z copying torch\include\ATen\ops\sparse_bsr_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9786781Z copying torch\include\ATen\ops\sparse_bsr_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9793768Z copying torch\include\ATen\ops\sparse_compressed_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9801166Z copying torch\include\ATen\ops\sparse_compressed_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9808235Z copying torch\include\ATen\ops\sparse_compressed_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9815449Z copying torch\include\ATen\ops\sparse_compressed_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9822362Z copying torch\include\ATen\ops\sparse_coo_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9830144Z copying torch\include\ATen\ops\sparse_coo_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9837349Z copying torch\include\ATen\ops\sparse_coo_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9850518Z copying torch\include\ATen\ops\sparse_coo_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9857542Z copying torch\include\ATen\ops\sparse_coo_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9864579Z copying torch\include\ATen\ops\sparse_csc_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9872388Z copying torch\include\ATen\ops\sparse_csc_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9879471Z copying torch\include\ATen\ops\sparse_csc_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9886404Z copying torch\include\ATen\ops\sparse_csc_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9893469Z copying torch\include\ATen\ops\sparse_csr_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9900764Z copying torch\include\ATen\ops\sparse_csr_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9907870Z copying torch\include\ATen\ops\sparse_csr_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9915476Z copying torch\include\ATen\ops\sparse_csr_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9923269Z copying torch\include\ATen\ops\sparse_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9930022Z copying torch\include\ATen\ops\sparse_dim_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9937276Z copying torch\include\ATen\ops\sparse_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9944194Z copying torch\include\ATen\ops\sparse_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9950946Z copying torch\include\ATen\ops\sparse_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9958195Z copying torch\include\ATen\ops\sparse_mask_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9964869Z copying torch\include\ATen\ops\sparse_mask_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9972266Z copying torch\include\ATen\ops\sparse_mask_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9979160Z copying torch\include\ATen\ops\sparse_resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:10.9986270Z copying torch\include\ATen\ops\sparse_resize_and_clear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0000015Z copying torch\include\ATen\ops\sparse_resize_and_clear_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0007751Z copying torch\include\ATen\ops\sparse_resize_and_clear_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0015533Z copying torch\include\ATen\ops\sparse_resize_and_clear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0023215Z copying torch\include\ATen\ops\sparse_resize_and_clear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0031534Z copying torch\include\ATen\ops\sparse_resize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0038977Z copying torch\include\ATen\ops\sparse_resize_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0046355Z copying torch\include\ATen\ops\sparse_resize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0054167Z copying torch\include\ATen\ops\sparse_resize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0061311Z copying torch\include\ATen\ops\sparse_sampled_addmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0068874Z copying torch\include\ATen\ops\sparse_sampled_addmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0076505Z copying torch\include\ATen\ops\sparse_sampled_addmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0083899Z copying torch\include\ATen\ops\special_airy_ai.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0091553Z copying torch\include\ATen\ops\special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0099370Z copying torch\include\ATen\ops\special_airy_ai_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0106523Z copying torch\include\ATen\ops\special_airy_ai_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0119819Z copying torch\include\ATen\ops\special_airy_ai_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0127290Z copying torch\include\ATen\ops\special_airy_ai_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0134957Z copying torch\include\ATen\ops\special_airy_ai_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0142200Z copying torch\include\ATen\ops\special_airy_ai_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0150000Z copying torch\include\ATen\ops\special_bessel_j0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0157824Z copying torch\include\ATen\ops\special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0165160Z copying torch\include\ATen\ops\special_bessel_j0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0172417Z copying torch\include\ATen\ops\special_bessel_j0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0195020Z copying torch\include\ATen\ops\special_bessel_j0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0201779Z copying torch\include\ATen\ops\special_bessel_j0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0208581Z copying torch\include\ATen\ops\special_bessel_j0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0215793Z copying torch\include\ATen\ops\special_bessel_j0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0222916Z copying torch\include\ATen\ops\special_bessel_j1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0230138Z copying torch\include\ATen\ops\special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0237006Z copying torch\include\ATen\ops\special_bessel_j1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0244218Z copying torch\include\ATen\ops\special_bessel_j1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0251142Z copying torch\include\ATen\ops\special_bessel_j1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0258339Z copying torch\include\ATen\ops\special_bessel_j1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0265171Z copying torch\include\ATen\ops\special_bessel_j1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0272052Z copying torch\include\ATen\ops\special_bessel_j1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0279137Z copying torch\include\ATen\ops\special_bessel_y0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0286942Z copying torch\include\ATen\ops\special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0293846Z copying torch\include\ATen\ops\special_bessel_y0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0300684Z copying torch\include\ATen\ops\special_bessel_y0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0307384Z copying torch\include\ATen\ops\special_bessel_y0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0314503Z copying torch\include\ATen\ops\special_bessel_y0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0321385Z copying torch\include\ATen\ops\special_bessel_y0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0328483Z copying torch\include\ATen\ops\special_bessel_y0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0335683Z copying torch\include\ATen\ops\special_bessel_y1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0343099Z copying torch\include\ATen\ops\special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0349970Z copying torch\include\ATen\ops\special_bessel_y1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0356962Z copying torch\include\ATen\ops\special_bessel_y1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0363920Z copying torch\include\ATen\ops\special_bessel_y1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0371025Z copying torch\include\ATen\ops\special_bessel_y1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0378400Z copying torch\include\ATen\ops\special_bessel_y1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0385318Z copying torch\include\ATen\ops\special_bessel_y1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0393785Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0401512Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0408807Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0416659Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0423777Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0430979Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0438847Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0446047Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0453971Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0460958Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0469301Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0477095Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0484738Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0492202Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0499780Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0507009Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0514136Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0521138Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0528372Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0536328Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0543443Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0550460Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0557411Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0611411Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0618784Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0625911Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0633402Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0641337Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0649103Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0656718Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0664595Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0671533Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0678393Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0685857Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0693319Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0700409Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0707260Z copying torch\include\ATen\ops\special_digamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0714473Z copying torch\include\ATen\ops\special_digamma_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0721170Z copying torch\include\ATen\ops\special_digamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0728321Z copying torch\include\ATen\ops\special_digamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0735310Z copying torch\include\ATen\ops\special_entr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0742652Z copying torch\include\ATen\ops\special_entr_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0749494Z copying torch\include\ATen\ops\special_entr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0756469Z copying torch\include\ATen\ops\special_entr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0763677Z copying torch\include\ATen\ops\special_entr_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0770617Z copying torch\include\ATen\ops\special_entr_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0777826Z copying torch\include\ATen\ops\special_entr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0785222Z copying torch\include\ATen\ops\special_entr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0792044Z copying torch\include\ATen\ops\special_erf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0798998Z copying torch\include\ATen\ops\special_erfc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0805800Z copying torch\include\ATen\ops\special_erfcx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0814141Z copying torch\include\ATen\ops\special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0821366Z copying torch\include\ATen\ops\special_erfcx_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0828799Z copying torch\include\ATen\ops\special_erfcx_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0835852Z copying torch\include\ATen\ops\special_erfcx_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0843167Z copying torch\include\ATen\ops\special_erfcx_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0867164Z copying torch\include\ATen\ops\special_erfcx_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0874872Z copying torch\include\ATen\ops\special_erfcx_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0882009Z copying torch\include\ATen\ops\special_erfc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0889878Z copying torch\include\ATen\ops\special_erfc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0896957Z copying torch\include\ATen\ops\special_erfc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0903888Z copying torch\include\ATen\ops\special_erfinv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0911325Z copying torch\include\ATen\ops\special_erfinv_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0917993Z copying torch\include\ATen\ops\special_erfinv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0924765Z copying torch\include\ATen\ops\special_erfinv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0932567Z copying torch\include\ATen\ops\special_erf_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0939408Z copying torch\include\ATen\ops\special_erf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0946172Z copying torch\include\ATen\ops\special_erf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0953001Z copying torch\include\ATen\ops\special_exp2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0960562Z copying torch\include\ATen\ops\special_exp2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0967693Z copying torch\include\ATen\ops\special_exp2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0974637Z copying torch\include\ATen\ops\special_exp2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0981413Z copying torch\include\ATen\ops\special_expit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0988462Z copying torch\include\ATen\ops\special_expit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.0995493Z copying torch\include\ATen\ops\special_expit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1002629Z copying torch\include\ATen\ops\special_expit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1009533Z copying torch\include\ATen\ops\special_expm1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1016819Z copying torch\include\ATen\ops\special_expm1_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1023513Z copying torch\include\ATen\ops\special_expm1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1030133Z copying torch\include\ATen\ops\special_expm1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1037179Z copying torch\include\ATen\ops\special_gammainc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1044213Z copying torch\include\ATen\ops\special_gammaincc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1051351Z copying torch\include\ATen\ops\special_gammaincc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1058198Z copying torch\include\ATen\ops\special_gammaincc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1090532Z copying torch\include\ATen\ops\special_gammaincc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1097524Z copying torch\include\ATen\ops\special_gammainc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1104529Z copying torch\include\ATen\ops\special_gammainc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1111342Z copying torch\include\ATen\ops\special_gammainc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1118341Z copying torch\include\ATen\ops\special_gammaln.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1125372Z copying torch\include\ATen\ops\special_gammaln_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1133319Z copying torch\include\ATen\ops\special_gammaln_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1140194Z copying torch\include\ATen\ops\special_gammaln_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1147569Z copying torch\include\ATen\ops\special_hermite_polynomial_h.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1154956Z copying torch\include\ATen\ops\special_hermite_polynomial_he.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1162632Z copying torch\include\ATen\ops\special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1169940Z copying torch\include\ATen\ops\special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1177399Z copying torch\include\ATen\ops\special_hermite_polynomial_he_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1184524Z copying torch\include\ATen\ops\special_hermite_polynomial_he_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1191646Z copying torch\include\ATen\ops\special_hermite_polynomial_he_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1199206Z copying torch\include\ATen\ops\special_hermite_polynomial_he_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1206443Z copying torch\include\ATen\ops\special_hermite_polynomial_he_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1213343Z copying torch\include\ATen\ops\special_hermite_polynomial_he_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1221000Z copying torch\include\ATen\ops\special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1228291Z copying torch\include\ATen\ops\special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1235591Z copying torch\include\ATen\ops\special_hermite_polynomial_h_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1242776Z copying torch\include\ATen\ops\special_hermite_polynomial_h_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1249934Z copying torch\include\ATen\ops\special_hermite_polynomial_h_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1257355Z copying torch\include\ATen\ops\special_hermite_polynomial_h_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1264644Z copying torch\include\ATen\ops\special_hermite_polynomial_h_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1271863Z copying torch\include\ATen\ops\special_hermite_polynomial_h_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1291291Z copying torch\include\ATen\ops\special_i0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1292159Z copying torch\include\ATen\ops\special_i0e.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1293697Z copying torch\include\ATen\ops\special_i0e_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1300430Z copying torch\include\ATen\ops\special_i0e_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1307461Z copying torch\include\ATen\ops\special_i0e_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1314906Z copying torch\include\ATen\ops\special_i0e_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1322741Z copying torch\include\ATen\ops\special_i0e_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1329661Z copying torch\include\ATen\ops\special_i0e_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1336710Z copying torch\include\ATen\ops\special_i0e_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1344101Z copying torch\include\ATen\ops\special_i0_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1351410Z copying torch\include\ATen\ops\special_i0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1357918Z copying torch\include\ATen\ops\special_i0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1364794Z copying torch\include\ATen\ops\special_i1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1371725Z copying torch\include\ATen\ops\special_i1e.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1379661Z copying torch\include\ATen\ops\special_i1e_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1386514Z copying torch\include\ATen\ops\special_i1e_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1393450Z copying torch\include\ATen\ops\special_i1e_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1400503Z copying torch\include\ATen\ops\special_i1e_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1408002Z copying torch\include\ATen\ops\special_i1e_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1415018Z copying torch\include\ATen\ops\special_i1e_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1422069Z copying torch\include\ATen\ops\special_i1e_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1429650Z copying torch\include\ATen\ops\special_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1436503Z copying torch\include\ATen\ops\special_i1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1443505Z copying torch\include\ATen\ops\special_i1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1450322Z copying torch\include\ATen\ops\special_i1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1457157Z copying torch\include\ATen\ops\special_i1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1463998Z copying torch\include\ATen\ops\special_i1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1471049Z copying torch\include\ATen\ops\special_i1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1478254Z copying torch\include\ATen\ops\special_laguerre_polynomial_l.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1485670Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1492783Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1499831Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1506746Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1514018Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1520955Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1527812Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1535102Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1542000Z copying torch\include\ATen\ops\special_legendre_polynomial_p.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1549352Z copying torch\include\ATen\ops\special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1556794Z copying torch\include\ATen\ops\special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1563659Z copying torch\include\ATen\ops\special_legendre_polynomial_p_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1570719Z copying torch\include\ATen\ops\special_legendre_polynomial_p_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1577765Z copying torch\include\ATen\ops\special_legendre_polynomial_p_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1584922Z copying torch\include\ATen\ops\special_legendre_polynomial_p_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1591917Z copying torch\include\ATen\ops\special_legendre_polynomial_p_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1599143Z copying torch\include\ATen\ops\special_legendre_polynomial_p_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1606372Z copying torch\include\ATen\ops\special_log1p.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1613580Z copying torch\include\ATen\ops\special_log1p_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1620413Z copying torch\include\ATen\ops\special_log1p_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1627287Z copying torch\include\ATen\ops\special_log1p_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1634337Z copying torch\include\ATen\ops\special_logit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1641516Z copying torch\include\ATen\ops\special_logit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1648274Z copying torch\include\ATen\ops\special_logit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1655249Z copying torch\include\ATen\ops\special_logit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1662712Z copying torch\include\ATen\ops\special_logsumexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1669913Z copying torch\include\ATen\ops\special_logsumexp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1676849Z copying torch\include\ATen\ops\special_logsumexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1683563Z copying torch\include\ATen\ops\special_logsumexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1690684Z copying torch\include\ATen\ops\special_log_ndtr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1698147Z copying torch\include\ATen\ops\special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1704889Z copying torch\include\ATen\ops\special_log_ndtr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1711710Z copying torch\include\ATen\ops\special_log_ndtr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1718746Z copying torch\include\ATen\ops\special_log_ndtr_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1725601Z copying torch\include\ATen\ops\special_log_ndtr_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1732573Z copying torch\include\ATen\ops\special_log_ndtr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1739777Z copying torch\include\ATen\ops\special_log_ndtr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1746774Z copying torch\include\ATen\ops\special_log_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1754083Z copying torch\include\ATen\ops\special_log_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1760826Z copying torch\include\ATen\ops\special_log_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1768203Z copying torch\include\ATen\ops\special_log_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1775348Z copying torch\include\ATen\ops\special_modified_bessel_i0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1782798Z copying torch\include\ATen\ops\special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1789772Z copying torch\include\ATen\ops\special_modified_bessel_i0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1796617Z copying torch\include\ATen\ops\special_modified_bessel_i0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1803932Z copying torch\include\ATen\ops\special_modified_bessel_i0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1811685Z copying torch\include\ATen\ops\special_modified_bessel_i0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1819047Z copying torch\include\ATen\ops\special_modified_bessel_i0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1826013Z copying torch\include\ATen\ops\special_modified_bessel_i0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1832996Z copying torch\include\ATen\ops\special_modified_bessel_i1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1840476Z copying torch\include\ATen\ops\special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1847689Z copying torch\include\ATen\ops\special_modified_bessel_i1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1854820Z copying torch\include\ATen\ops\special_modified_bessel_i1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1862140Z copying torch\include\ATen\ops\special_modified_bessel_i1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1869030Z copying torch\include\ATen\ops\special_modified_bessel_i1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1876092Z copying torch\include\ATen\ops\special_modified_bessel_i1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1883051Z copying torch\include\ATen\ops\special_modified_bessel_i1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1890301Z copying torch\include\ATen\ops\special_modified_bessel_k0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1897752Z copying torch\include\ATen\ops\special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1904478Z copying torch\include\ATen\ops\special_modified_bessel_k0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1911620Z copying torch\include\ATen\ops\special_modified_bessel_k0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1918937Z copying torch\include\ATen\ops\special_modified_bessel_k0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1926492Z copying torch\include\ATen\ops\special_modified_bessel_k0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1934308Z copying torch\include\ATen\ops\special_modified_bessel_k0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1941147Z copying torch\include\ATen\ops\special_modified_bessel_k0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1948403Z copying torch\include\ATen\ops\special_modified_bessel_k1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1955825Z copying torch\include\ATen\ops\special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1962806Z copying torch\include\ATen\ops\special_modified_bessel_k1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1970208Z copying torch\include\ATen\ops\special_modified_bessel_k1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1977528Z copying torch\include\ATen\ops\special_modified_bessel_k1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1984757Z copying torch\include\ATen\ops\special_modified_bessel_k1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1991837Z copying torch\include\ATen\ops\special_modified_bessel_k1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.1998869Z copying torch\include\ATen\ops\special_modified_bessel_k1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2006461Z copying torch\include\ATen\ops\special_multigammaln.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2032500Z copying torch\include\ATen\ops\special_multigammaln_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2033530Z copying torch\include\ATen\ops\special_multigammaln_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2034385Z copying torch\include\ATen\ops\special_multigammaln_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2038838Z copying torch\include\ATen\ops\special_ndtr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2045049Z copying torch\include\ATen\ops\special_ndtri.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2052478Z copying torch\include\ATen\ops\special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2059690Z copying torch\include\ATen\ops\special_ndtri_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2066628Z copying torch\include\ATen\ops\special_ndtri_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2074101Z copying torch\include\ATen\ops\special_ndtri_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2081313Z copying torch\include\ATen\ops\special_ndtri_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2087937Z copying torch\include\ATen\ops\special_ndtri_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2095217Z copying torch\include\ATen\ops\special_ndtri_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2102489Z copying torch\include\ATen\ops\special_ndtr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2145170Z copying torch\include\ATen\ops\special_ndtr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2151595Z copying torch\include\ATen\ops\special_ndtr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2158504Z copying torch\include\ATen\ops\special_polygamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2166146Z copying torch\include\ATen\ops\special_polygamma_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2172771Z copying torch\include\ATen\ops\special_polygamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2179627Z copying torch\include\ATen\ops\special_polygamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2186447Z copying torch\include\ATen\ops\special_psi.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2193327Z copying torch\include\ATen\ops\special_psi_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2199922Z copying torch\include\ATen\ops\special_psi_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2206297Z copying torch\include\ATen\ops\special_psi_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2213105Z copying torch\include\ATen\ops\special_round.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2220025Z copying torch\include\ATen\ops\special_round_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2226623Z copying torch\include\ATen\ops\special_round_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2233779Z copying torch\include\ATen\ops\special_round_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2241060Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2248445Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2255404Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2262623Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2269451Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2276633Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2284581Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2291179Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2298242Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2306856Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2319800Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2326095Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2334548Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2341602Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2350299Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2357697Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2365665Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2372740Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2380553Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2388943Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2396053Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2403501Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2411741Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2418476Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2426106Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2433131Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2441063Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2448362Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2456045Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2464120Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2470481Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2477872Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2484987Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2493024Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2500118Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2507718Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2522652Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2524359Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2531759Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2540498Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2546726Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2553593Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2560745Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2567928Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2576269Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2583560Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2590621Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2598127Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2605234Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2612687Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2619810Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2627230Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2634207Z copying torch\include\ATen\ops\special_sinc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2641274Z copying torch\include\ATen\ops\special_sinc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2648233Z copying torch\include\ATen\ops\special_sinc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2655006Z copying torch\include\ATen\ops\special_sinc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2662106Z copying torch\include\ATen\ops\special_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2669970Z copying torch\include\ATen\ops\special_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2676621Z copying torch\include\ATen\ops\special_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2683500Z copying torch\include\ATen\ops\special_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2690587Z copying torch\include\ATen\ops\special_spherical_bessel_j0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2698072Z copying torch\include\ATen\ops\special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2704895Z copying torch\include\ATen\ops\special_spherical_bessel_j0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2711738Z copying torch\include\ATen\ops\special_spherical_bessel_j0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2719054Z copying torch\include\ATen\ops\special_spherical_bessel_j0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2726036Z copying torch\include\ATen\ops\special_spherical_bessel_j0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2732921Z copying torch\include\ATen\ops\special_spherical_bessel_j0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2739974Z copying torch\include\ATen\ops\special_spherical_bessel_j0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2746901Z copying torch\include\ATen\ops\special_xlog1py.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2754227Z copying torch\include\ATen\ops\special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2762739Z copying torch\include\ATen\ops\special_xlog1py_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2769218Z copying torch\include\ATen\ops\special_xlog1py_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2797258Z copying torch\include\ATen\ops\special_xlog1py_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2804244Z copying torch\include\ATen\ops\special_xlog1py_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2811287Z copying torch\include\ATen\ops\special_xlog1py_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2818361Z copying torch\include\ATen\ops\special_xlog1py_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2826128Z copying torch\include\ATen\ops\special_xlog1py_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2832734Z copying torch\include\ATen\ops\special_xlogy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2840654Z copying torch\include\ATen\ops\special_xlogy_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2849211Z copying torch\include\ATen\ops\special_xlogy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2856494Z copying torch\include\ATen\ops\special_xlogy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2863682Z copying torch\include\ATen\ops\special_zeta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2872294Z copying torch\include\ATen\ops\special_zeta_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2878983Z copying torch\include\ATen\ops\special_zeta_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2886344Z copying torch\include\ATen\ops\special_zeta_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2893554Z copying torch\include\ATen\ops\special_zeta_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2900853Z copying torch\include\ATen\ops\special_zeta_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2908180Z copying torch\include\ATen\ops\special_zeta_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2915272Z copying torch\include\ATen\ops\special_zeta_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2922507Z copying torch\include\ATen\ops\special_zeta_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2930075Z copying torch\include\ATen\ops\split.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2937247Z copying torch\include\ATen\ops\split_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2944768Z copying torch\include\ATen\ops\split_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2952780Z copying torch\include\ATen\ops\split_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2959309Z copying torch\include\ATen\ops\split_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2966190Z copying torch\include\ATen\ops\split_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2973359Z copying torch\include\ATen\ops\split_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2981057Z copying torch\include\ATen\ops\split_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2987197Z copying torch\include\ATen\ops\split_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.2993913Z copying torch\include\ATen\ops\split_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3000967Z copying torch\include\ATen\ops\split_with_sizes.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3008270Z copying torch\include\ATen\ops\split_with_sizes_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3019909Z copying torch\include\ATen\ops\split_with_sizes_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3023318Z copying torch\include\ATen\ops\split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3031779Z copying torch\include\ATen\ops\split_with_sizes_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3038740Z copying torch\include\ATen\ops\split_with_sizes_copy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3045681Z copying torch\include\ATen\ops\split_with_sizes_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3054351Z copying torch\include\ATen\ops\split_with_sizes_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3059897Z copying torch\include\ATen\ops\split_with_sizes_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3067027Z copying torch\include\ATen\ops\split_with_sizes_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3073762Z copying torch\include\ATen\ops\sqrt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3081951Z copying torch\include\ATen\ops\sqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3087541Z copying torch\include\ATen\ops\sqrt_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3094565Z copying torch\include\ATen\ops\sqrt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3101235Z copying torch\include\ATen\ops\sqrt_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3107804Z copying torch\include\ATen\ops\sqrt_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3114854Z copying torch\include\ATen\ops\sqrt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3121494Z copying torch\include\ATen\ops\sqrt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3127699Z copying torch\include\ATen\ops\square.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3134379Z copying torch\include\ATen\ops\square_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3141082Z copying torch\include\ATen\ops\square_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3147611Z copying torch\include\ATen\ops\square_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3154186Z copying torch\include\ATen\ops\squeeze.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3161208Z copying torch\include\ATen\ops\squeeze_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3168635Z copying torch\include\ATen\ops\squeeze_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3175469Z copying torch\include\ATen\ops\squeeze_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3183155Z copying torch\include\ATen\ops\squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3189655Z copying torch\include\ATen\ops\squeeze_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3196563Z copying torch\include\ATen\ops\squeeze_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3203452Z copying torch\include\ATen\ops\squeeze_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3210301Z copying torch\include\ATen\ops\squeeze_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3216976Z copying torch\include\ATen\ops\squeeze_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3223708Z copying torch\include\ATen\ops\sspaddmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3230238Z copying torch\include\ATen\ops\sspaddmm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3236725Z copying torch\include\ATen\ops\sspaddmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3243330Z copying torch\include\ATen\ops\sspaddmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3250286Z copying torch\include\ATen\ops\sspaddmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3256866Z copying torch\include\ATen\ops\sspaddmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3263962Z copying torch\include\ATen\ops\stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3270613Z copying torch\include\ATen\ops\stack_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3277307Z copying torch\include\ATen\ops\stack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3283518Z copying torch\include\ATen\ops\stack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3290164Z copying torch\include\ATen\ops\std.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3296926Z copying torch\include\ATen\ops\std_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3303881Z copying torch\include\ATen\ops\std_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3311122Z copying torch\include\ATen\ops\std_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3353216Z copying torch\include\ATen\ops\std_mean.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3359775Z copying torch\include\ATen\ops\std_mean_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3366600Z copying torch\include\ATen\ops\std_mean_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3373668Z copying torch\include\ATen\ops\std_mean_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3380468Z copying torch\include\ATen\ops\std_mean_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3387188Z copying torch\include\ATen\ops\std_mean_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3394340Z copying torch\include\ATen\ops\std_mean_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3401326Z copying torch\include\ATen\ops\std_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3408625Z copying torch\include\ATen\ops\std_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3414711Z copying torch\include\ATen\ops\stft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3421819Z copying torch\include\ATen\ops\stft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3428524Z copying torch\include\ATen\ops\stft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3435209Z copying torch\include\ATen\ops\stft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3443028Z copying torch\include\ATen\ops\stride.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3449865Z copying torch\include\ATen\ops\stride_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3456837Z copying torch\include\ATen\ops\stride_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3463647Z copying torch\include\ATen\ops\stride_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3471837Z copying torch\include\ATen\ops\sub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3477788Z copying torch\include\ATen\ops\subtract.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3484216Z copying torch\include\ATen\ops\subtract_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3490942Z copying torch\include\ATen\ops\subtract_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3497675Z copying torch\include\ATen\ops\subtract_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3506333Z copying torch\include\ATen\ops\sub_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3512890Z copying torch\include\ATen\ops\sub_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3519730Z copying torch\include\ATen\ops\sub_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3527089Z copying torch\include\ATen\ops\sub_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3533974Z copying torch\include\ATen\ops\sub_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3540681Z copying torch\include\ATen\ops\sub_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3547397Z copying torch\include\ATen\ops\sub_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3553979Z copying torch\include\ATen\ops\sub_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3560452Z copying torch\include\ATen\ops\sum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3567745Z copying torch\include\ATen\ops\sum_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3574362Z copying torch\include\ATen\ops\sum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3581579Z copying torch\include\ATen\ops\sum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3588343Z copying torch\include\ATen\ops\sum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3594890Z copying torch\include\ATen\ops\sum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3601897Z copying torch\include\ATen\ops\sum_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3608136Z copying torch\include\ATen\ops\sum_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3615274Z copying torch\include\ATen\ops\sum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3621747Z copying torch\include\ATen\ops\sum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3628087Z copying torch\include\ATen\ops\sum_to_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3635083Z copying torch\include\ATen\ops\sum_to_size_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3641801Z copying torch\include\ATen\ops\sum_to_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3648592Z copying torch\include\ATen\ops\sum_to_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3655274Z copying torch\include\ATen\ops\svd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3661803Z copying torch\include\ATen\ops\svd_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3668506Z copying torch\include\ATen\ops\svd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3675979Z copying torch\include\ATen\ops\svd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3681701Z copying torch\include\ATen\ops\swapaxes.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3688515Z copying torch\include\ATen\ops\swapaxes_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3695275Z copying torch\include\ATen\ops\swapaxes_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3702243Z copying torch\include\ATen\ops\swapaxes_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3709631Z copying torch\include\ATen\ops\swapdims.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3716487Z copying torch\include\ATen\ops\swapdims_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3722886Z copying torch\include\ATen\ops\swapdims_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3730123Z copying torch\include\ATen\ops\swapdims_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3737095Z copying torch\include\ATen\ops\sym_constrain_range.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3745179Z copying torch\include\ATen\ops\sym_constrain_range_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3751338Z copying torch\include\ATen\ops\sym_constrain_range_for_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3758540Z copying torch\include\ATen\ops\sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3766266Z copying torch\include\ATen\ops\sym_constrain_range_for_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3774153Z copying torch\include\ATen\ops\sym_constrain_range_for_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3780490Z copying torch\include\ATen\ops\sym_constrain_range_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3787530Z copying torch\include\ATen\ops\sym_constrain_range_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3794405Z copying torch\include\ATen\ops\sym_numel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3802536Z copying torch\include\ATen\ops\sym_numel_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3808698Z copying torch\include\ATen\ops\sym_numel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3815375Z copying torch\include\ATen\ops\sym_numel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3822472Z copying torch\include\ATen\ops\sym_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3829234Z copying torch\include\ATen\ops\sym_size_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3837393Z copying torch\include\ATen\ops\sym_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3843254Z copying torch\include\ATen\ops\sym_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3849924Z copying torch\include\ATen\ops\sym_storage_offset.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3857355Z copying torch\include\ATen\ops\sym_storage_offset_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3864357Z copying torch\include\ATen\ops\sym_storage_offset_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3872014Z copying torch\include\ATen\ops\sym_storage_offset_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3879084Z copying torch\include\ATen\ops\sym_stride.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3886330Z copying torch\include\ATen\ops\sym_stride_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3894494Z copying torch\include\ATen\ops\sym_stride_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3901141Z copying torch\include\ATen\ops\sym_stride_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3908097Z copying torch\include\ATen\ops\t.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3914525Z copying torch\include\ATen\ops\take.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3921421Z copying torch\include\ATen\ops\take_along_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3929558Z copying torch\include\ATen\ops\take_along_dim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3935654Z copying torch\include\ATen\ops\take_along_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3942741Z copying torch\include\ATen\ops\take_along_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3950210Z copying torch\include\ATen\ops\take_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3956856Z copying torch\include\ATen\ops\take_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3964126Z copying torch\include\ATen\ops\take_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3970627Z copying torch\include\ATen\ops\take_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3977317Z copying torch\include\ATen\ops\tan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3983681Z copying torch\include\ATen\ops\tanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3990868Z copying torch\include\ATen\ops\tanh_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.3998801Z copying torch\include\ATen\ops\tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4005214Z copying torch\include\ATen\ops\tanh_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4011885Z copying torch\include\ATen\ops\tanh_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4019946Z copying torch\include\ATen\ops\tanh_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4027804Z copying torch\include\ATen\ops\tanh_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4036980Z copying torch\include\ATen\ops\tanh_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4043457Z copying torch\include\ATen\ops\tanh_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4049696Z copying torch\include\ATen\ops\tanh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4056667Z copying torch\include\ATen\ops\tanh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4063874Z copying torch\include\ATen\ops\tanh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4070917Z copying torch\include\ATen\ops\tanh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4077970Z copying torch\include\ATen\ops\tanh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4084703Z copying torch\include\ATen\ops\tanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4091456Z copying torch\include\ATen\ops\tanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4098324Z copying torch\include\ATen\ops\tan_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4104824Z copying torch\include\ATen\ops\tan_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4111455Z copying torch\include\ATen\ops\tan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4118107Z copying torch\include\ATen\ops\tan_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4124161Z copying torch\include\ATen\ops\tan_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4131909Z copying torch\include\ATen\ops\tan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4138729Z copying torch\include\ATen\ops\tan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4145269Z copying torch\include\ATen\ops\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4151642Z copying torch\include\ATen\ops\tensordot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4158810Z copying torch\include\ATen\ops\tensordot_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4165314Z copying torch\include\ATen\ops\tensordot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4172897Z copying torch\include\ATen\ops\tensordot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4179391Z copying torch\include\ATen\ops\tensor_split.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4186402Z copying torch\include\ATen\ops\tensor_split_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4193285Z copying torch\include\ATen\ops\tensor_split_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4199876Z copying torch\include\ATen\ops\tensor_split_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4206482Z copying torch\include\ATen\ops\thnn_conv2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4213767Z copying torch\include\ATen\ops\thnn_conv2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4220120Z copying torch\include\ATen\ops\thnn_conv2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4226661Z copying torch\include\ATen\ops\thnn_conv2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4233207Z copying torch\include\ATen\ops\threshold.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4255972Z copying torch\include\ATen\ops\threshold_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4263687Z copying torch\include\ATen\ops\threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4270434Z copying torch\include\ATen\ops\threshold_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4277312Z copying torch\include\ATen\ops\threshold_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4284524Z copying torch\include\ATen\ops\threshold_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4291488Z copying torch\include\ATen\ops\threshold_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4298760Z copying torch\include\ATen\ops\threshold_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4306048Z copying torch\include\ATen\ops\threshold_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4313274Z copying torch\include\ATen\ops\threshold_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4319809Z copying torch\include\ATen\ops\threshold_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4326898Z copying torch\include\ATen\ops\threshold_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4333903Z copying torch\include\ATen\ops\threshold_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4341487Z copying torch\include\ATen\ops\threshold_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4348391Z copying torch\include\ATen\ops\threshold_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4355178Z copying torch\include\ATen\ops\threshold_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4361929Z copying torch\include\ATen\ops\tile.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4368667Z copying torch\include\ATen\ops\tile_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4376008Z copying torch\include\ATen\ops\tile_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4382142Z copying torch\include\ATen\ops\tile_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4388603Z copying torch\include\ATen\ops\to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4394831Z copying torch\include\ATen\ops\topk.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4402067Z copying torch\include\ATen\ops\topk_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4408794Z copying torch\include\ATen\ops\topk_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4416631Z copying torch\include\ATen\ops\topk_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4422823Z copying torch\include\ATen\ops\topk_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4429556Z copying torch\include\ATen\ops\topk_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4436280Z copying torch\include\ATen\ops\topk_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4443271Z copying torch\include\ATen\ops\topk_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4450968Z copying torch\include\ATen\ops\to_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4456968Z copying torch\include\ATen\ops\to_dense.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4463280Z copying torch\include\ATen\ops\to_dense_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4470326Z copying torch\include\ATen\ops\to_dense_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4477204Z copying torch\include\ATen\ops\to_dense_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4483697Z copying torch\include\ATen\ops\to_dense_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4491373Z copying torch\include\ATen\ops\to_dense_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4498114Z copying torch\include\ATen\ops\to_dense_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4505315Z copying torch\include\ATen\ops\to_dense_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4512115Z copying torch\include\ATen\ops\to_mkldnn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4525421Z copying torch\include\ATen\ops\to_mkldnn_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4527404Z copying torch\include\ATen\ops\to_mkldnn_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4534367Z copying torch\include\ATen\ops\to_mkldnn_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4541050Z copying torch\include\ATen\ops\to_mkldnn_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4548714Z copying torch\include\ATen\ops\to_mkldnn_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4556095Z copying torch\include\ATen\ops\to_mkldnn_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4563626Z copying torch\include\ATen\ops\to_mkldnn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4571771Z copying torch\include\ATen\ops\to_mkldnn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4577746Z copying torch\include\ATen\ops\to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4584123Z copying torch\include\ATen\ops\to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4590838Z copying torch\include\ATen\ops\to_padded_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4597729Z copying torch\include\ATen\ops\to_padded_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4605397Z copying torch\include\ATen\ops\to_padded_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4611968Z copying torch\include\ATen\ops\to_padded_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4619169Z copying torch\include\ATen\ops\to_sparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4625685Z copying torch\include\ATen\ops\to_sparse_bsc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4647964Z copying torch\include\ATen\ops\to_sparse_bsc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4654319Z copying torch\include\ATen\ops\to_sparse_bsc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4660708Z copying torch\include\ATen\ops\to_sparse_bsc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4667640Z copying torch\include\ATen\ops\to_sparse_bsr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4674147Z copying torch\include\ATen\ops\to_sparse_bsr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4681165Z copying torch\include\ATen\ops\to_sparse_bsr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4687578Z copying torch\include\ATen\ops\to_sparse_bsr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4694452Z copying torch\include\ATen\ops\to_sparse_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.4756218Z copying torch\include\ATen\ops\to_sparse_csc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.5765270Z copying torch\include\ATen\ops\to_sparse_csc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.5773049Z copying torch\include\ATen\ops\to_sparse_csc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.5780684Z copying torch\include\ATen\ops\to_sparse_csc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.5789331Z copying torch\include\ATen\ops\to_sparse_csr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.5796550Z copying torch\include\ATen\ops\to_sparse_csr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.5804412Z copying torch\include\ATen\ops\to_sparse_csr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.5810094Z copying torch\include\ATen\ops\to_sparse_csr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.5816919Z copying torch\include\ATen\ops\to_sparse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.5823858Z copying torch\include\ATen\ops\to_sparse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.5830626Z copying torch\include\ATen\ops\trace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.5837101Z copying torch\include\ATen\ops\trace_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.5844040Z copying torch\include\ATen\ops\trace_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.5850672Z copying torch\include\ATen\ops\trace_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.5857231Z copying torch\include\ATen\ops\trace_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.5864071Z copying torch\include\ATen\ops\trace_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.5871015Z copying torch\include\ATen\ops\trace_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.5877648Z copying torch\include\ATen\ops\trace_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.5884232Z copying torch\include\ATen\ops\trace_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.5890786Z copying torch\include\ATen\ops\trace_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.5897588Z copying torch\include\ATen\ops\transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.5905865Z copying torch\include\ATen\ops\transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.5911761Z copying torch\include\ATen\ops\transpose_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.5918700Z copying torch\include\ATen\ops\transpose_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.5925899Z copying torch\include\ATen\ops\transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.5933094Z copying torch\include\ATen\ops\transpose_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.5939665Z copying torch\include\ATen\ops\transpose_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.5946317Z copying torch\include\ATen\ops\transpose_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.5953472Z copying torch\include\ATen\ops\transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.5960256Z copying torch\include\ATen\ops\transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.5967166Z copying torch\include\ATen\ops\trapezoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.5974108Z copying torch\include\ATen\ops\trapezoid_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.5981273Z copying torch\include\ATen\ops\trapezoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.5987959Z copying torch\include\ATen\ops\trapezoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.5994707Z copying torch\include\ATen\ops\trapz.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6001468Z copying torch\include\ATen\ops\trapz_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6008191Z copying torch\include\ATen\ops\trapz_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6014971Z copying torch\include\ATen\ops\trapz_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6027782Z copying torch\include\ATen\ops\triangular_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6034933Z copying torch\include\ATen\ops\triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6041536Z copying torch\include\ATen\ops\triangular_solve_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6048304Z copying torch\include\ATen\ops\triangular_solve_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6055113Z copying torch\include\ATen\ops\triangular_solve_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6062014Z copying torch\include\ATen\ops\triangular_solve_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6068993Z copying torch\include\ATen\ops\triangular_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6075993Z copying torch\include\ATen\ops\triangular_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6082558Z copying torch\include\ATen\ops\tril.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6089384Z copying torch\include\ATen\ops\tril_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6095953Z copying torch\include\ATen\ops\tril_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6102481Z copying torch\include\ATen\ops\tril_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6114599Z copying torch\include\ATen\ops\tril_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6117310Z copying torch\include\ATen\ops\tril_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6124680Z copying torch\include\ATen\ops\tril_indices_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6131532Z copying torch\include\ATen\ops\tril_indices_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6139109Z copying torch\include\ATen\ops\tril_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6146186Z copying torch\include\ATen\ops\tril_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6153345Z copying torch\include\ATen\ops\tril_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6160379Z copying torch\include\ATen\ops\tril_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6166937Z copying torch\include\ATen\ops\tril_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6175034Z copying torch\include\ATen\ops\tril_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6181252Z copying torch\include\ATen\ops\triplet_margin_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6187606Z copying torch\include\ATen\ops\triplet_margin_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6194793Z copying torch\include\ATen\ops\triplet_margin_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6201377Z copying torch\include\ATen\ops\triplet_margin_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6208253Z copying torch\include\ATen\ops\triu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6215181Z copying torch\include\ATen\ops\triu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6221779Z copying torch\include\ATen\ops\triu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6228233Z copying torch\include\ATen\ops\triu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6234883Z copying torch\include\ATen\ops\triu_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6242153Z copying torch\include\ATen\ops\triu_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6248617Z copying torch\include\ATen\ops\triu_indices_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6255422Z copying torch\include\ATen\ops\triu_indices_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6262101Z copying torch\include\ATen\ops\triu_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6269065Z copying torch\include\ATen\ops\triu_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6275796Z copying torch\include\ATen\ops\triu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6282193Z copying torch\include\ATen\ops\triu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6288824Z copying torch\include\ATen\ops\triu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6295589Z copying torch\include\ATen\ops\triu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6301850Z copying torch\include\ATen\ops\true_divide.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6308869Z copying torch\include\ATen\ops\true_divide_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6315417Z copying torch\include\ATen\ops\true_divide_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6322145Z copying torch\include\ATen\ops\true_divide_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6328695Z copying torch\include\ATen\ops\trunc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6335881Z copying torch\include\ATen\ops\trunc_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6342543Z copying torch\include\ATen\ops\trunc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6349080Z copying torch\include\ATen\ops\trunc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6355712Z copying torch\include\ATen\ops\trunc_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6362115Z copying torch\include\ATen\ops\trunc_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6368973Z copying torch\include\ATen\ops\trunc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6375888Z copying torch\include\ATen\ops\trunc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6383273Z copying torch\include\ATen\ops\type_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6389763Z copying torch\include\ATen\ops\type_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6396323Z copying torch\include\ATen\ops\type_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6402777Z copying torch\include\ATen\ops\type_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6409575Z copying torch\include\ATen\ops\t_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6416604Z copying torch\include\ATen\ops\t_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6423642Z copying torch\include\ATen\ops\t_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6430391Z copying torch\include\ATen\ops\t_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6436848Z copying torch\include\ATen\ops\t_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6443240Z copying torch\include\ATen\ops\t_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6450051Z copying torch\include\ATen\ops\t_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6456216Z copying torch\include\ATen\ops\t_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6462489Z copying torch\include\ATen\ops\unbind.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6469077Z copying torch\include\ATen\ops\unbind_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6476287Z copying torch\include\ATen\ops\unbind_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6482919Z copying torch\include\ATen\ops\unbind_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6490078Z copying torch\include\ATen\ops\unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6497301Z copying torch\include\ATen\ops\unbind_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6503914Z copying torch\include\ATen\ops\unbind_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6510526Z copying torch\include\ATen\ops\unbind_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6517400Z copying torch\include\ATen\ops\unbind_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6524560Z copying torch\include\ATen\ops\unbind_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6531290Z copying torch\include\ATen\ops\unflatten.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6538403Z copying torch\include\ATen\ops\unflatten_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6545212Z copying torch\include\ATen\ops\unflatten_dense_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6552557Z copying torch\include\ATen\ops\unflatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6559206Z copying torch\include\ATen\ops\unflatten_dense_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6565950Z copying torch\include\ATen\ops\unflatten_dense_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6572800Z copying torch\include\ATen\ops\unflatten_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6579925Z copying torch\include\ATen\ops\unflatten_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6586280Z copying torch\include\ATen\ops\unfold.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6592480Z copying torch\include\ATen\ops\unfold_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6603400Z copying torch\include\ATen\ops\unfold_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6607030Z copying torch\include\ATen\ops\unfold_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6646503Z copying torch\include\ATen\ops\unfold_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6647345Z copying torch\include\ATen\ops\unfold_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6648151Z copying torch\include\ATen\ops\unfold_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6648933Z copying torch\include\ATen\ops\unfold_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6649978Z copying torch\include\ATen\ops\unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6655901Z copying torch\include\ATen\ops\unfold_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6664955Z copying torch\include\ATen\ops\unfold_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6671234Z copying torch\include\ATen\ops\unfold_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6678546Z copying torch\include\ATen\ops\unfold_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6686729Z copying torch\include\ATen\ops\unfold_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6694165Z copying torch\include\ATen\ops\unfold_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6701661Z copying torch\include\ATen\ops\unfold_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6708810Z copying torch\include\ATen\ops\unfold_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6716195Z copying torch\include\ATen\ops\uniform.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6723634Z copying torch\include\ATen\ops\uniform_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6731096Z copying torch\include\ATen\ops\uniform_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6738321Z copying torch\include\ATen\ops\uniform_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6745491Z copying torch\include\ATen\ops\uniform_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6752533Z copying torch\include\ATen\ops\uniform_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6760035Z copying torch\include\ATen\ops\uniform_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6767445Z copying torch\include\ATen\ops\unique_consecutive.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6775069Z copying torch\include\ATen\ops\unique_consecutive_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6783374Z copying torch\include\ATen\ops\unique_consecutive_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6790028Z copying torch\include\ATen\ops\unique_consecutive_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6797988Z copying torch\include\ATen\ops\unique_consecutive_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6805120Z copying torch\include\ATen\ops\unique_consecutive_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6812959Z copying torch\include\ATen\ops\unique_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6820331Z copying torch\include\ATen\ops\unique_dim_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6827492Z copying torch\include\ATen\ops\unique_dim_consecutive.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6835134Z copying torch\include\ATen\ops\unique_dim_consecutive_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6842121Z copying torch\include\ATen\ops\unique_dim_consecutive_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6849275Z copying torch\include\ATen\ops\unique_dim_consecutive_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6856687Z copying torch\include\ATen\ops\unique_dim_consecutive_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6863957Z copying torch\include\ATen\ops\unique_dim_consecutive_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6871500Z copying torch\include\ATen\ops\unique_dim_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6878621Z copying torch\include\ATen\ops\unique_dim_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6886771Z copying torch\include\ATen\ops\unique_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6894498Z copying torch\include\ATen\ops\unique_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6902912Z copying torch\include\ATen\ops\unsafe_chunk.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6910147Z copying torch\include\ATen\ops\unsafe_chunk_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6963857Z copying torch\include\ATen\ops\unsafe_chunk_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6971431Z copying torch\include\ATen\ops\unsafe_chunk_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6979918Z copying torch\include\ATen\ops\unsafe_split.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6986802Z copying torch\include\ATen\ops\unsafe_split_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.6994146Z copying torch\include\ATen\ops\unsafe_split_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7001353Z copying torch\include\ATen\ops\unsafe_split_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7008870Z copying torch\include\ATen\ops\unsafe_split_with_sizes.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7016247Z copying torch\include\ATen\ops\unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7023340Z copying torch\include\ATen\ops\unsafe_split_with_sizes_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7031430Z copying torch\include\ATen\ops\unsafe_split_with_sizes_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7037493Z copying torch\include\ATen\ops\unsqueeze.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7068706Z copying torch\include\ATen\ops\unsqueeze_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7069624Z copying torch\include\ATen\ops\unsqueeze_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7070603Z copying torch\include\ATen\ops\unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7071733Z copying torch\include\ATen\ops\unsqueeze_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7075644Z copying torch\include\ATen\ops\unsqueeze_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7082795Z copying torch\include\ATen\ops\unsqueeze_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7089620Z copying torch\include\ATen\ops\unsqueeze_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7096441Z copying torch\include\ATen\ops\unsqueeze_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7103620Z copying torch\include\ATen\ops\upsample_bicubic2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7110758Z copying torch\include\ATen\ops\upsample_bicubic2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7118123Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7124871Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7132041Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7139004Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7145879Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7153041Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7160152Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7167417Z copying torch\include\ATen\ops\upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7174436Z copying torch\include\ATen\ops\upsample_bicubic2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7181690Z copying torch\include\ATen\ops\upsample_bicubic2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7188746Z copying torch\include\ATen\ops\upsample_bicubic2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7195508Z copying torch\include\ATen\ops\upsample_bicubic2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7202605Z copying torch\include\ATen\ops\upsample_bicubic2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7209322Z copying torch\include\ATen\ops\upsample_bicubic2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7216420Z copying torch\include\ATen\ops\upsample_bicubic2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7223258Z copying torch\include\ATen\ops\upsample_bilinear2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7230400Z copying torch\include\ATen\ops\upsample_bilinear2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7237925Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7244593Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7251515Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7259992Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7267301Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7274473Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7281599Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7288942Z copying torch\include\ATen\ops\upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7296051Z copying torch\include\ATen\ops\upsample_bilinear2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7303021Z copying torch\include\ATen\ops\upsample_bilinear2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7310073Z copying torch\include\ATen\ops\upsample_bilinear2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7318107Z copying torch\include\ATen\ops\upsample_bilinear2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7325386Z copying torch\include\ATen\ops\upsample_bilinear2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7332505Z copying torch\include\ATen\ops\upsample_bilinear2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7339519Z copying torch\include\ATen\ops\upsample_bilinear2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7346444Z copying torch\include\ATen\ops\upsample_bilinear2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7353258Z copying torch\include\ATen\ops\upsample_linear1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7361481Z copying torch\include\ATen\ops\upsample_linear1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7369278Z copying torch\include\ATen\ops\upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7376097Z copying torch\include\ATen\ops\upsample_linear1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7383183Z copying torch\include\ATen\ops\upsample_linear1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7391244Z copying torch\include\ATen\ops\upsample_linear1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7398171Z copying torch\include\ATen\ops\upsample_linear1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7405552Z copying torch\include\ATen\ops\upsample_linear1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7412789Z copying torch\include\ATen\ops\upsample_linear1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7420370Z copying torch\include\ATen\ops\upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7427386Z copying torch\include\ATen\ops\upsample_linear1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7434561Z copying torch\include\ATen\ops\upsample_linear1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7442275Z copying torch\include\ATen\ops\upsample_linear1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7449771Z copying torch\include\ATen\ops\upsample_linear1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7456359Z copying torch\include\ATen\ops\upsample_linear1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7463696Z copying torch\include\ATen\ops\upsample_linear1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7471078Z copying torch\include\ATen\ops\upsample_linear1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7478404Z copying torch\include\ATen\ops\upsample_nearest1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7485545Z copying torch\include\ATen\ops\upsample_nearest1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7494683Z copying torch\include\ATen\ops\upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7501677Z copying torch\include\ATen\ops\upsample_nearest1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7509820Z copying torch\include\ATen\ops\upsample_nearest1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7518403Z copying torch\include\ATen\ops\upsample_nearest1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7524930Z copying torch\include\ATen\ops\upsample_nearest1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7532120Z copying torch\include\ATen\ops\upsample_nearest1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7539709Z copying torch\include\ATen\ops\upsample_nearest1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7564418Z copying torch\include\ATen\ops\upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7565608Z copying torch\include\ATen\ops\upsample_nearest1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7566621Z copying torch\include\ATen\ops\upsample_nearest1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7570433Z copying torch\include\ATen\ops\upsample_nearest1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7597207Z copying torch\include\ATen\ops\upsample_nearest1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7604496Z copying torch\include\ATen\ops\upsample_nearest1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7611495Z copying torch\include\ATen\ops\upsample_nearest1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7618653Z copying torch\include\ATen\ops\upsample_nearest1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7626568Z copying torch\include\ATen\ops\upsample_nearest2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7633363Z copying torch\include\ATen\ops\upsample_nearest2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7641016Z copying torch\include\ATen\ops\upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7647884Z copying torch\include\ATen\ops\upsample_nearest2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7654828Z copying torch\include\ATen\ops\upsample_nearest2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7661542Z copying torch\include\ATen\ops\upsample_nearest2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7668591Z copying torch\include\ATen\ops\upsample_nearest2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7675545Z copying torch\include\ATen\ops\upsample_nearest2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7682347Z copying torch\include\ATen\ops\upsample_nearest2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7689544Z copying torch\include\ATen\ops\upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7696558Z copying torch\include\ATen\ops\upsample_nearest2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7704156Z copying torch\include\ATen\ops\upsample_nearest2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7711288Z copying torch\include\ATen\ops\upsample_nearest2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7718696Z copying torch\include\ATen\ops\upsample_nearest2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7725420Z copying torch\include\ATen\ops\upsample_nearest2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7732197Z copying torch\include\ATen\ops\upsample_nearest2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7739556Z copying torch\include\ATen\ops\upsample_nearest2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7746315Z copying torch\include\ATen\ops\upsample_nearest2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7753427Z copying torch\include\ATen\ops\upsample_nearest3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7760271Z copying torch\include\ATen\ops\upsample_nearest3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7767636Z copying torch\include\ATen\ops\upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7774635Z copying torch\include\ATen\ops\upsample_nearest3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7781543Z copying torch\include\ATen\ops\upsample_nearest3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7788672Z copying torch\include\ATen\ops\upsample_nearest3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7795846Z copying torch\include\ATen\ops\upsample_nearest3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7803910Z copying torch\include\ATen\ops\upsample_nearest3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7810336Z copying torch\include\ATen\ops\upsample_nearest3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7817946Z copying torch\include\ATen\ops\upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7824949Z copying torch\include\ATen\ops\upsample_nearest3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7832426Z copying torch\include\ATen\ops\upsample_nearest3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7839388Z copying torch\include\ATen\ops\upsample_nearest3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7846081Z copying torch\include\ATen\ops\upsample_nearest3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7853107Z copying torch\include\ATen\ops\upsample_nearest3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7860516Z copying torch\include\ATen\ops\upsample_nearest3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7867647Z copying torch\include\ATen\ops\upsample_nearest3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7874540Z copying torch\include\ATen\ops\upsample_trilinear3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7881660Z copying torch\include\ATen\ops\upsample_trilinear3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7890536Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7896803Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7904046Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7911426Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7919294Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7926127Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7933248Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7942085Z copying torch\include\ATen\ops\upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7948456Z copying torch\include\ATen\ops\upsample_trilinear3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7955547Z copying torch\include\ATen\ops\upsample_trilinear3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7963160Z copying torch\include\ATen\ops\upsample_trilinear3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7971249Z copying torch\include\ATen\ops\upsample_trilinear3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7977683Z copying torch\include\ATen\ops\upsample_trilinear3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.7984745Z copying torch\include\ATen\ops\upsample_trilinear3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8007262Z copying torch\include\ATen\ops\upsample_trilinear3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8015241Z copying torch\include\ATen\ops\values.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8021532Z copying torch\include\ATen\ops\values_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8027980Z copying torch\include\ATen\ops\values_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8034993Z copying torch\include\ATen\ops\values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8041995Z copying torch\include\ATen\ops\values_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8048830Z copying torch\include\ATen\ops\values_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8055990Z copying torch\include\ATen\ops\values_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8062746Z copying torch\include\ATen\ops\values_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8069989Z copying torch\include\ATen\ops\values_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8076919Z copying torch\include\ATen\ops\value_selecting_reduction_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8085794Z copying torch\include\ATen\ops\value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8091227Z copying torch\include\ATen\ops\value_selecting_reduction_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8098195Z copying torch\include\ATen\ops\value_selecting_reduction_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8105303Z copying torch\include\ATen\ops\vander.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8111935Z copying torch\include\ATen\ops\vander_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8118384Z copying torch\include\ATen\ops\vander_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8124780Z copying torch\include\ATen\ops\vander_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8132227Z copying torch\include\ATen\ops\var.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8145716Z copying torch\include\ATen\ops\var_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8147708Z copying torch\include\ATen\ops\var_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8154942Z copying torch\include\ATen\ops\var_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8162082Z copying torch\include\ATen\ops\var_mean.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8169125Z copying torch\include\ATen\ops\var_mean_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8176355Z copying torch\include\ATen\ops\var_mean_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8183507Z copying torch\include\ATen\ops\var_mean_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8190883Z copying torch\include\ATen\ops\var_mean_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8198139Z copying torch\include\ATen\ops\var_mean_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8205014Z copying torch\include\ATen\ops\var_mean_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8211766Z copying torch\include\ATen\ops\var_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8219827Z copying torch\include\ATen\ops\var_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8226734Z copying torch\include\ATen\ops\vdot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8235409Z copying torch\include\ATen\ops\vdot_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8242204Z copying torch\include\ATen\ops\vdot_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8248865Z copying torch\include\ATen\ops\vdot_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8255842Z copying torch\include\ATen\ops\vdot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8262359Z copying torch\include\ATen\ops\vdot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8270277Z copying torch\include\ATen\ops\view.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8277598Z copying torch\include\ATen\ops\view_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8284344Z copying torch\include\ATen\ops\view_as_complex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8292302Z copying torch\include\ATen\ops\view_as_complex_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8299486Z copying torch\include\ATen\ops\view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8306545Z copying torch\include\ATen\ops\view_as_complex_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8345223Z copying torch\include\ATen\ops\view_as_complex_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8351919Z copying torch\include\ATen\ops\view_as_complex_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8358741Z copying torch\include\ATen\ops\view_as_complex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8366460Z copying torch\include\ATen\ops\view_as_complex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8373993Z copying torch\include\ATen\ops\view_as_complex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8381604Z copying torch\include\ATen\ops\view_as_complex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8387906Z copying torch\include\ATen\ops\view_as_complex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8395741Z copying torch\include\ATen\ops\view_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8402463Z copying torch\include\ATen\ops\view_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8408846Z copying torch\include\ATen\ops\view_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8416530Z copying torch\include\ATen\ops\view_as_real.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8423820Z copying torch\include\ATen\ops\view_as_real_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8431283Z copying torch\include\ATen\ops\view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8438729Z copying torch\include\ATen\ops\view_as_real_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8446582Z copying torch\include\ATen\ops\view_as_real_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8453696Z copying torch\include\ATen\ops\view_as_real_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8460638Z copying torch\include\ATen\ops\view_as_real_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8467809Z copying torch\include\ATen\ops\view_as_real_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8475825Z copying torch\include\ATen\ops\view_as_real_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8482378Z copying torch\include\ATen\ops\view_as_real_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8489392Z copying torch\include\ATen\ops\view_as_real_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8498104Z copying torch\include\ATen\ops\view_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8504803Z copying torch\include\ATen\ops\view_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8511213Z copying torch\include\ATen\ops\view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8518535Z copying torch\include\ATen\ops\view_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8525681Z copying torch\include\ATen\ops\view_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8534104Z copying torch\include\ATen\ops\view_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8540692Z copying torch\include\ATen\ops\view_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8547504Z copying torch\include\ATen\ops\view_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8554572Z copying torch\include\ATen\ops\view_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8563364Z copying torch\include\ATen\ops\view_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8569907Z copying torch\include\ATen\ops\view_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8578642Z copying torch\include\ATen\ops\vsplit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8584083Z copying torch\include\ATen\ops\vsplit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8592315Z copying torch\include\ATen\ops\vsplit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8599836Z copying torch\include\ATen\ops\vsplit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8606349Z copying torch\include\ATen\ops\vstack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8614939Z copying torch\include\ATen\ops\vstack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8621455Z copying torch\include\ATen\ops\vstack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8627151Z copying torch\include\ATen\ops\vstack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8634345Z copying torch\include\ATen\ops\where.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8641648Z copying torch\include\ATen\ops\where_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8648829Z copying torch\include\ATen\ops\where_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8656041Z copying torch\include\ATen\ops\where_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8663206Z copying torch\include\ATen\ops\where_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8670487Z copying torch\include\ATen\ops\where_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8678167Z copying torch\include\ATen\ops\xlogy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8686508Z copying torch\include\ATen\ops\xlogy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8693197Z copying torch\include\ATen\ops\xlogy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8699592Z copying torch\include\ATen\ops\xlogy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8707219Z copying torch\include\ATen\ops\xlogy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8713802Z copying torch\include\ATen\ops\xlogy_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8720819Z copying torch\include\ATen\ops\xlogy_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8727489Z copying torch\include\ATen\ops\xlogy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8734289Z copying torch\include\ATen\ops\xlogy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8740779Z copying torch\include\ATen\ops\xor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8747188Z copying torch\include\ATen\ops\xor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8753585Z copying torch\include\ATen\ops\xor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8760352Z copying torch\include\ATen\ops\xor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8766479Z copying torch\include\ATen\ops\zero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8773192Z copying torch\include\ATen\ops\zeros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8779930Z copying torch\include\ATen\ops\zeros_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8786324Z copying torch\include\ATen\ops\zeros_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8794820Z copying torch\include\ATen\ops\zeros_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8802046Z copying torch\include\ATen\ops\zeros_like_compositeimplicitautogradnestedtensor_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8809061Z copying torch\include\ATen\ops\zeros_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8872303Z copying torch\include\ATen\ops\zeros_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8880133Z copying torch\include\ATen\ops\zeros_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8886222Z copying torch\include\ATen\ops\zeros_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8893429Z copying torch\include\ATen\ops\zero_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8900395Z copying torch\include\ATen\ops\zero_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8907169Z copying torch\include\ATen\ops\zero_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8914707Z copying torch\include\ATen\ops\zero_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8921177Z copying torch\include\ATen\ops\zero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8928141Z copying torch\include\ATen\ops\zero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8934786Z copying torch\include\ATen\ops\_adaptive_avg_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8941796Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8949559Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8956081Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8963205Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8971405Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8978187Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8985439Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8992625Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.8999435Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9007759Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9024350Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9025220Z copying torch\include\ATen\ops\_adaptive_avg_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9028368Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9035638Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9042828Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9050580Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9058237Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9065560Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9072917Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9079933Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9087066Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9095719Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9102960Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9109684Z copying torch\include\ATen\ops\_addmm_activation.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9116892Z copying torch\include\ATen\ops\_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9123510Z copying torch\include\ATen\ops\_addmm_activation_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9131411Z copying torch\include\ATen\ops\_addmm_activation_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9138765Z copying torch\include\ATen\ops\_addmm_activation_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9145795Z copying torch\include\ATen\ops\_addmm_activation_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9153325Z copying torch\include\ATen\ops\_addmm_activation_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9160094Z copying torch\include\ATen\ops\_addmm_activation_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9166895Z copying torch\include\ATen\ops\_add_batch_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9174121Z copying torch\include\ATen\ops\_add_batch_dim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9181095Z copying torch\include\ATen\ops\_add_batch_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9187498Z copying torch\include\ATen\ops\_add_batch_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9194089Z copying torch\include\ATen\ops\_add_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9200915Z copying torch\include\ATen\ops\_add_relu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9207530Z copying torch\include\ATen\ops\_add_relu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9214554Z copying torch\include\ATen\ops\_add_relu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9221278Z copying torch\include\ATen\ops\_add_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9228224Z copying torch\include\ATen\ops\_add_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9234977Z copying torch\include\ATen\ops\_aminmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9241544Z copying torch\include\ATen\ops\_aminmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9248687Z copying torch\include\ATen\ops\_aminmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9255517Z copying torch\include\ATen\ops\_aminmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9262130Z copying torch\include\ATen\ops\_aminmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9268841Z copying torch\include\ATen\ops\_aminmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9275761Z copying torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9283045Z 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-06-01T21:26:11.9290132Z 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-06-01T21:26:11.9297243Z 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-06-01T21:26:11.9304384Z 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-06-01T21:26:11.9311366Z 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-06-01T21:26:11.9318046Z copying torch\include\ATen\ops\_amp_update_scale.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9325211Z copying torch\include\ATen\ops\_amp_update_scale_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9331785Z copying torch\include\ATen\ops\_amp_update_scale_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9338676Z copying torch\include\ATen\ops\_amp_update_scale_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9345760Z copying torch\include\ATen\ops\_amp_update_scale_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9352870Z copying torch\include\ATen\ops\_amp_update_scale_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9359560Z copying torch\include\ATen\ops\_amp_update_scale_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9366269Z copying torch\include\ATen\ops\_assert_async.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9373170Z copying torch\include\ATen\ops\_assert_async_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9380115Z copying torch\include\ATen\ops\_assert_async_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9386709Z copying torch\include\ATen\ops\_assert_async_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9393236Z copying torch\include\ATen\ops\_assert_async_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9400088Z copying torch\include\ATen\ops\_assert_scalar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9407177Z copying torch\include\ATen\ops\_assert_scalar_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9414622Z copying torch\include\ATen\ops\_assert_scalar_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9421979Z copying torch\include\ATen\ops\_assert_scalar_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9428420Z copying torch\include\ATen\ops\_assert_tensor_metadata.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9436363Z copying torch\include\ATen\ops\_assert_tensor_metadata_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9444303Z copying torch\include\ATen\ops\_assert_tensor_metadata_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9450708Z copying torch\include\ATen\ops\_assert_tensor_metadata_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9458131Z copying torch\include\ATen\ops\_assert_tensor_metadata_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9464838Z copying torch\include\ATen\ops\_autocast_to_full_precision.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9471640Z copying torch\include\ATen\ops\_autocast_to_full_precision_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9479385Z copying torch\include\ATen\ops\_autocast_to_full_precision_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9485791Z copying torch\include\ATen\ops\_autocast_to_full_precision_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9493031Z copying torch\include\ATen\ops\_autocast_to_reduced_precision.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9499969Z copying torch\include\ATen\ops\_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9507871Z copying torch\include\ATen\ops\_autocast_to_reduced_precision_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9513853Z copying torch\include\ATen\ops\_autocast_to_reduced_precision_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9538040Z copying torch\include\ATen\ops\_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9545042Z copying torch\include\ATen\ops\_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9551774Z copying torch\include\ATen\ops\_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9558940Z copying torch\include\ATen\ops\_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9580684Z copying torch\include\ATen\ops\_batch_norm_impl_index.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9581067Z copying torch\include\ATen\ops\_batch_norm_impl_index_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9581738Z copying torch\include\ATen\ops\_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9588754Z copying torch\include\ATen\ops\_batch_norm_impl_index_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9595852Z copying torch\include\ATen\ops\_batch_norm_impl_index_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9622912Z copying torch\include\ATen\ops\_batch_norm_impl_index_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9629819Z copying torch\include\ATen\ops\_batch_norm_impl_index_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9636405Z copying torch\include\ATen\ops\_batch_norm_impl_index_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9642990Z copying torch\include\ATen\ops\_batch_norm_no_update.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9650220Z copying torch\include\ATen\ops\_batch_norm_no_update_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9657192Z copying torch\include\ATen\ops\_batch_norm_no_update_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9663892Z copying torch\include\ATen\ops\_batch_norm_no_update_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9670576Z copying torch\include\ATen\ops\_batch_norm_with_update.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9677880Z copying torch\include\ATen\ops\_batch_norm_with_update_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9684536Z copying torch\include\ATen\ops\_batch_norm_with_update_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9691728Z copying torch\include\ATen\ops\_batch_norm_with_update_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9698707Z copying torch\include\ATen\ops\_batch_norm_with_update_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9705362Z copying torch\include\ATen\ops\_batch_norm_with_update_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9711905Z copying torch\include\ATen\ops\_cast_Byte.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9719703Z copying torch\include\ATen\ops\_cast_Byte_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9725408Z copying torch\include\ATen\ops\_cast_Byte_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9731879Z copying torch\include\ATen\ops\_cast_Byte_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9738757Z copying torch\include\ATen\ops\_cast_Char.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9745839Z copying torch\include\ATen\ops\_cast_Char_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9752343Z copying torch\include\ATen\ops\_cast_Char_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9758805Z copying torch\include\ATen\ops\_cast_Char_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9765312Z copying torch\include\ATen\ops\_cast_Double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9772639Z copying torch\include\ATen\ops\_cast_Double_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9779176Z copying torch\include\ATen\ops\_cast_Double_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9785726Z copying torch\include\ATen\ops\_cast_Double_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9792543Z copying torch\include\ATen\ops\_cast_Float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9799487Z copying torch\include\ATen\ops\_cast_Float_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9805739Z copying torch\include\ATen\ops\_cast_Float_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9812188Z copying torch\include\ATen\ops\_cast_Float_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9820381Z copying torch\include\ATen\ops\_cast_Half.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9826793Z copying torch\include\ATen\ops\_cast_Half_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9833759Z copying torch\include\ATen\ops\_cast_Half_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9840243Z copying torch\include\ATen\ops\_cast_Half_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9847292Z copying torch\include\ATen\ops\_cast_Int.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9855767Z copying torch\include\ATen\ops\_cast_Int_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9861835Z copying torch\include\ATen\ops\_cast_Int_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9868397Z copying torch\include\ATen\ops\_cast_Int_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9875666Z copying torch\include\ATen\ops\_cast_Long.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9884591Z copying torch\include\ATen\ops\_cast_Long_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9891354Z copying torch\include\ATen\ops\_cast_Long_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9898294Z copying torch\include\ATen\ops\_cast_Long_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9905332Z copying torch\include\ATen\ops\_cast_Short.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9913006Z copying torch\include\ATen\ops\_cast_Short_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9919310Z copying torch\include\ATen\ops\_cast_Short_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9925825Z copying torch\include\ATen\ops\_cast_Short_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9932885Z copying torch\include\ATen\ops\_cdist_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9940197Z copying torch\include\ATen\ops\_cdist_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9947123Z copying torch\include\ATen\ops\_cdist_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9954312Z copying torch\include\ATen\ops\_cdist_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9961156Z copying torch\include\ATen\ops\_cdist_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9967986Z copying torch\include\ATen\ops\_cdist_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9975180Z copying torch\include\ATen\ops\_cdist_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9982381Z copying torch\include\ATen\ops\_cdist_forward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9989298Z copying torch\include\ATen\ops\_cdist_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:11.9996162Z copying torch\include\ATen\ops\_cdist_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0003143Z copying torch\include\ATen\ops\_cdist_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0010385Z copying torch\include\ATen\ops\_cdist_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0017530Z copying torch\include\ATen\ops\_cholesky_solve_helper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0024801Z copying torch\include\ATen\ops\_cholesky_solve_helper_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0031846Z copying torch\include\ATen\ops\_cholesky_solve_helper_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0038754Z copying torch\include\ATen\ops\_cholesky_solve_helper_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0045986Z copying torch\include\ATen\ops\_cholesky_solve_helper_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0052877Z copying torch\include\ATen\ops\_cholesky_solve_helper_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0060128Z copying torch\include\ATen\ops\_choose_qparams_per_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0067128Z copying torch\include\ATen\ops\_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0142911Z copying torch\include\ATen\ops\_choose_qparams_per_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0149582Z copying torch\include\ATen\ops\_choose_qparams_per_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0156135Z copying torch\include\ATen\ops\_chunk_cat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0163236Z copying torch\include\ATen\ops\_chunk_cat_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0170165Z copying torch\include\ATen\ops\_chunk_cat_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0177226Z copying torch\include\ATen\ops\_chunk_cat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0184941Z copying torch\include\ATen\ops\_chunk_cat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0191743Z copying torch\include\ATen\ops\_coalesce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0198458Z copying torch\include\ATen\ops\_coalesced.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0205337Z copying torch\include\ATen\ops\_coalesced_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0212047Z copying torch\include\ATen\ops\_coalesced_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0219528Z copying torch\include\ATen\ops\_coalesced_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0225950Z copying torch\include\ATen\ops\_coalesced_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0232903Z copying torch\include\ATen\ops\_coalesce_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0239826Z copying torch\include\ATen\ops\_coalesce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0246887Z copying torch\include\ATen\ops\_coalesce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0254144Z copying torch\include\ATen\ops\_compute_linear_combination.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0261353Z copying torch\include\ATen\ops\_compute_linear_combination_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0268762Z copying torch\include\ATen\ops\_compute_linear_combination_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0275415Z copying torch\include\ATen\ops\_compute_linear_combination_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0282474Z copying torch\include\ATen\ops\_compute_linear_combination_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0289063Z copying torch\include\ATen\ops\_conj.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0296506Z copying torch\include\ATen\ops\_conj_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0302934Z copying torch\include\ATen\ops\_conj_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0310393Z copying torch\include\ATen\ops\_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0317386Z copying torch\include\ATen\ops\_conj_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0324416Z copying torch\include\ATen\ops\_conj_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0330943Z copying torch\include\ATen\ops\_conj_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0337909Z copying torch\include\ATen\ops\_conj_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0344577Z copying torch\include\ATen\ops\_conj_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0351580Z copying torch\include\ATen\ops\_conj_physical.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0358569Z copying torch\include\ATen\ops\_conj_physical_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0365567Z copying torch\include\ATen\ops\_conj_physical_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0372939Z copying torch\include\ATen\ops\_conj_physical_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0380136Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0387405Z 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-06-01T21:26:12.0395057Z 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-06-01T21:26:12.0402209Z 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-06-01T21:26:12.0409217Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0416855Z 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-06-01T21:26:12.0423843Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0431117Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0438513Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0445688Z 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-06-01T21:26:12.0453780Z 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-06-01T21:26:12.0459992Z 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-06-01T21:26:12.0467097Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0474087Z 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-06-01T21:26:12.0482757Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0488945Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0496112Z copying torch\include\ATen\ops\_convert_weight_to_int4pack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0503111Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0511362Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0517998Z 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-06-01T21:26:12.0524648Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0531551Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0538626Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0546465Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0552848Z copying torch\include\ATen\ops\_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0559959Z copying torch\include\ATen\ops\_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0567740Z copying torch\include\ATen\ops\_convolution_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0574685Z copying torch\include\ATen\ops\_convolution_double_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0581974Z copying torch\include\ATen\ops\_convolution_double_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0588896Z copying torch\include\ATen\ops\_convolution_double_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0595766Z copying torch\include\ATen\ops\_convolution_double_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0602486Z copying torch\include\ATen\ops\_convolution_mode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0610065Z copying torch\include\ATen\ops\_convolution_mode_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0617047Z copying torch\include\ATen\ops\_convolution_mode_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0624005Z copying torch\include\ATen\ops\_convolution_mode_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0630644Z copying torch\include\ATen\ops\_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0637943Z copying torch\include\ATen\ops\_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0644671Z copying torch\include\ATen\ops\_conv_depthwise2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0651620Z copying torch\include\ATen\ops\_conv_depthwise2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0658684Z copying torch\include\ATen\ops\_conv_depthwise2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0665375Z copying torch\include\ATen\ops\_conv_depthwise2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0671918Z copying torch\include\ATen\ops\_copy_from.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0678574Z copying torch\include\ATen\ops\_copy_from_and_resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0686113Z copying torch\include\ATen\ops\_copy_from_and_resize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0692392Z copying torch\include\ATen\ops\_copy_from_and_resize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0699452Z copying torch\include\ATen\ops\_copy_from_and_resize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0707071Z copying torch\include\ATen\ops\_copy_from_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0713656Z copying torch\include\ATen\ops\_copy_from_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0720127Z copying torch\include\ATen\ops\_copy_from_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0726791Z copying torch\include\ATen\ops\_cslt_compress.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0733473Z copying torch\include\ATen\ops\_cslt_compress_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0740227Z copying torch\include\ATen\ops\_cslt_compress_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0746492Z copying torch\include\ATen\ops\_cslt_compress_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0753396Z copying torch\include\ATen\ops\_cslt_sparse_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0760444Z copying torch\include\ATen\ops\_cslt_sparse_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0767230Z copying torch\include\ATen\ops\_cslt_sparse_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0774394Z copying torch\include\ATen\ops\_cslt_sparse_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0781319Z copying torch\include\ATen\ops\_cslt_sparse_mm_search.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0788217Z copying torch\include\ATen\ops\_cslt_sparse_mm_search_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0794974Z copying torch\include\ATen\ops\_cslt_sparse_mm_search_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0801810Z copying torch\include\ATen\ops\_cslt_sparse_mm_search_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0808681Z copying torch\include\ATen\ops\_ctc_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0815361Z copying torch\include\ATen\ops\_ctc_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0822248Z copying torch\include\ATen\ops\_ctc_loss_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0828997Z copying torch\include\ATen\ops\_ctc_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0835732Z copying torch\include\ATen\ops\_ctc_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0842487Z copying torch\include\ATen\ops\_ctc_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0849939Z copying torch\include\ATen\ops\_ctc_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0857181Z copying torch\include\ATen\ops\_ctc_loss_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0863774Z copying torch\include\ATen\ops\_ctc_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0870612Z copying torch\include\ATen\ops\_ctc_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0877878Z copying torch\include\ATen\ops\_ctc_loss_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0884709Z copying torch\include\ATen\ops\_ctc_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0891491Z copying torch\include\ATen\ops\_ctc_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0898807Z copying torch\include\ATen\ops\_cudnn_attention_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0905716Z copying torch\include\ATen\ops\_cudnn_attention_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0912554Z copying torch\include\ATen\ops\_cudnn_attention_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0919265Z copying torch\include\ATen\ops\_cudnn_attention_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0926095Z copying torch\include\ATen\ops\_cudnn_ctc_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0933502Z copying torch\include\ATen\ops\_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0940494Z copying torch\include\ATen\ops\_cudnn_ctc_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0947349Z copying torch\include\ATen\ops\_cudnn_ctc_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.0954477Z copying torch\include\ATen\ops\_cudnn_ctc_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1002449Z copying torch\include\ATen\ops\_cudnn_init_dropout_state.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1008889Z copying torch\include\ATen\ops\_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1015656Z copying torch\include\ATen\ops\_cudnn_init_dropout_state_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1023197Z copying torch\include\ATen\ops\_cudnn_init_dropout_state_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1029875Z copying torch\include\ATen\ops\_cudnn_init_dropout_state_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1036731Z copying torch\include\ATen\ops\_cudnn_rnn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1043804Z copying torch\include\ATen\ops\_cudnn_rnn_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1051541Z copying torch\include\ATen\ops\_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1058845Z copying torch\include\ATen\ops\_cudnn_rnn_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1065758Z copying torch\include\ATen\ops\_cudnn_rnn_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1072995Z copying torch\include\ATen\ops\_cudnn_rnn_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1080576Z copying torch\include\ATen\ops\_cudnn_rnn_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1087711Z copying torch\include\ATen\ops\_cudnn_rnn_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1095106Z copying torch\include\ATen\ops\_cudnn_rnn_flatten_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1102446Z copying torch\include\ATen\ops\_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1111916Z copying torch\include\ATen\ops\_cudnn_rnn_flatten_weight_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1118870Z copying torch\include\ATen\ops\_cudnn_rnn_flatten_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1125808Z copying torch\include\ATen\ops\_cudnn_rnn_flatten_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1132814Z copying torch\include\ATen\ops\_cudnn_rnn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1139786Z copying torch\include\ATen\ops\_cudnn_rnn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1146773Z copying torch\include\ATen\ops\_cufft_clear_plan_cache.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1153794Z copying torch\include\ATen\ops\_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1160819Z copying torch\include\ATen\ops\_cufft_clear_plan_cache_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1167728Z copying torch\include\ATen\ops\_cufft_clear_plan_cache_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1174624Z copying torch\include\ATen\ops\_cufft_get_plan_cache_max_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1182021Z 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-06-01T21:26:12.1189047Z copying torch\include\ATen\ops\_cufft_get_plan_cache_max_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1195602Z copying torch\include\ATen\ops\_cufft_get_plan_cache_max_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1202522Z copying torch\include\ATen\ops\_cufft_get_plan_cache_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1209635Z copying torch\include\ATen\ops\_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1216443Z copying torch\include\ATen\ops\_cufft_get_plan_cache_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1223092Z copying torch\include\ATen\ops\_cufft_get_plan_cache_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1229877Z copying torch\include\ATen\ops\_cufft_set_plan_cache_max_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1237764Z 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-06-01T21:26:12.1244517Z copying torch\include\ATen\ops\_cufft_set_plan_cache_max_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1251122Z copying torch\include\ATen\ops\_cufft_set_plan_cache_max_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1258316Z copying torch\include\ATen\ops\_cummax_helper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1264830Z copying torch\include\ATen\ops\_cummax_helper_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1271403Z copying torch\include\ATen\ops\_cummax_helper_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1278285Z copying torch\include\ATen\ops\_cummax_helper_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1284844Z copying torch\include\ATen\ops\_cummax_helper_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1291595Z copying torch\include\ATen\ops\_cummin_helper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1298292Z copying torch\include\ATen\ops\_cummin_helper_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1305084Z copying torch\include\ATen\ops\_cummin_helper_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1311700Z copying torch\include\ATen\ops\_cummin_helper_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1318585Z copying torch\include\ATen\ops\_cummin_helper_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1325501Z copying torch\include\ATen\ops\_debug_has_internal_overlap.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1332569Z copying torch\include\ATen\ops\_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1339219Z copying torch\include\ATen\ops\_debug_has_internal_overlap_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1345609Z copying torch\include\ATen\ops\_debug_has_internal_overlap_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1352778Z copying torch\include\ATen\ops\_dimI.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1358834Z copying torch\include\ATen\ops\_dimI_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1365287Z copying torch\include\ATen\ops\_dimI_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1371956Z copying torch\include\ATen\ops\_dimV.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1378385Z copying torch\include\ATen\ops\_dimV_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1385955Z copying torch\include\ATen\ops\_dimV_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1391904Z copying torch\include\ATen\ops\_dim_arange.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1399185Z copying torch\include\ATen\ops\_dim_arange_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1405817Z copying torch\include\ATen\ops\_dim_arange_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1412304Z copying torch\include\ATen\ops\_dim_arange_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1419130Z copying torch\include\ATen\ops\_dirichlet_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1426777Z copying torch\include\ATen\ops\_dirichlet_grad_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1433699Z copying torch\include\ATen\ops\_dirichlet_grad_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1440665Z copying torch\include\ATen\ops\_dirichlet_grad_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1448086Z copying torch\include\ATen\ops\_dirichlet_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1473487Z copying torch\include\ATen\ops\_dirichlet_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1480577Z copying torch\include\ATen\ops\_dyn_quant_matmul_4bit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1487230Z copying torch\include\ATen\ops\_dyn_quant_matmul_4bit_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1494884Z copying torch\include\ATen\ops\_dyn_quant_matmul_4bit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1501741Z copying torch\include\ATen\ops\_dyn_quant_matmul_4bit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1508408Z copying torch\include\ATen\ops\_dyn_quant_pack_4bit_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1515444Z copying torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1522485Z copying torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1530400Z copying torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1536571Z copying torch\include\ATen\ops\_efficientzerotensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1543812Z copying torch\include\ATen\ops\_efficientzerotensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1550770Z copying torch\include\ATen\ops\_efficientzerotensor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1557603Z copying torch\include\ATen\ops\_efficientzerotensor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1565530Z copying torch\include\ATen\ops\_efficientzerotensor_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1585080Z copying torch\include\ATen\ops\_efficientzerotensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1585952Z copying torch\include\ATen\ops\_efficientzerotensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1588623Z copying torch\include\ATen\ops\_efficient_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1596414Z copying torch\include\ATen\ops\_efficient_attention_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1603449Z copying torch\include\ATen\ops\_efficient_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1610828Z copying torch\include\ATen\ops\_efficient_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1617406Z copying torch\include\ATen\ops\_efficient_attention_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1625575Z copying torch\include\ATen\ops\_efficient_attention_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1632254Z copying torch\include\ATen\ops\_efficient_attention_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1639311Z copying torch\include\ATen\ops\_efficient_attention_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1646097Z copying torch\include\ATen\ops\_embedding_bag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1652789Z copying torch\include\ATen\ops\_embedding_bag_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1660139Z copying torch\include\ATen\ops\_embedding_bag_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1667101Z copying torch\include\ATen\ops\_embedding_bag_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1674606Z copying torch\include\ATen\ops\_embedding_bag_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1681607Z copying torch\include\ATen\ops\_embedding_bag_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1688234Z copying torch\include\ATen\ops\_embedding_bag_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1695581Z copying torch\include\ATen\ops\_embedding_bag_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1702293Z copying torch\include\ATen\ops\_embedding_bag_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1709121Z copying torch\include\ATen\ops\_embedding_bag_dense_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1717128Z copying torch\include\ATen\ops\_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1724346Z copying torch\include\ATen\ops\_embedding_bag_dense_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1731040Z copying torch\include\ATen\ops\_embedding_bag_dense_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1738192Z copying torch\include\ATen\ops\_embedding_bag_dense_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1745148Z copying torch\include\ATen\ops\_embedding_bag_dense_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1752373Z copying torch\include\ATen\ops\_embedding_bag_forward_only.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1759575Z copying torch\include\ATen\ops\_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1766445Z copying torch\include\ATen\ops\_embedding_bag_forward_only_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1773477Z copying torch\include\ATen\ops\_embedding_bag_forward_only_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1780349Z copying torch\include\ATen\ops\_embedding_bag_forward_only_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1787882Z copying torch\include\ATen\ops\_embedding_bag_forward_only_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1794833Z copying torch\include\ATen\ops\_embedding_bag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1801688Z copying torch\include\ATen\ops\_embedding_bag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1808830Z copying torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1816288Z 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-06-01T21:26:12.1823421Z 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-06-01T21:26:12.1831624Z 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-06-01T21:26:12.1838139Z copying torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1845314Z copying torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1852316Z copying torch\include\ATen\ops\_embedding_bag_sparse_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1860814Z copying torch\include\ATen\ops\_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1867499Z copying torch\include\ATen\ops\_embedding_bag_sparse_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1874587Z copying torch\include\ATen\ops\_embedding_bag_sparse_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1883317Z copying torch\include\ATen\ops\_empty_affine_quantized.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1889594Z copying torch\include\ATen\ops\_empty_affine_quantized_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1896631Z copying torch\include\ATen\ops\_empty_affine_quantized_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1904422Z copying torch\include\ATen\ops\_empty_affine_quantized_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1912437Z copying torch\include\ATen\ops\_empty_affine_quantized_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1918322Z copying torch\include\ATen\ops\_empty_per_channel_affine_quantized.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1925730Z copying torch\include\ATen\ops\_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1933421Z copying torch\include\ATen\ops\_empty_per_channel_affine_quantized_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1941467Z copying torch\include\ATen\ops\_empty_per_channel_affine_quantized_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1947867Z copying torch\include\ATen\ops\_empty_per_channel_affine_quantized_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1954745Z copying torch\include\ATen\ops\_euclidean_dist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1962405Z copying torch\include\ATen\ops\_euclidean_dist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1970357Z copying torch\include\ATen\ops\_euclidean_dist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1976386Z copying torch\include\ATen\ops\_euclidean_dist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1983479Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1990689Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.1999730Z 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-06-01T21:26:12.2006077Z 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-06-01T21:26:12.2013828Z 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-06-01T21:26:12.2021536Z 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-06-01T21:26:12.2029636Z 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-06-01T21:26:12.2036597Z 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-06-01T21:26:12.2043915Z 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-06-01T21:26:12.2051270Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2059224Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2066065Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2073472Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2088752Z 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-06-01T21:26:12.2091609Z 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-06-01T21:26:12.2100774Z 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-06-01T21:26:12.2107022Z 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-06-01T21:26:12.2115136Z 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-06-01T21:26:12.2122291Z 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-06-01T21:26:12.2130744Z 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-06-01T21:26:12.2136948Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2143964Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2151167Z 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-06-01T21:26:12.2158757Z 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-06-01T21:26:12.2165734Z 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-06-01T21:26:12.2173006Z 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-06-01T21:26:12.2180265Z 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-06-01T21:26:12.2187791Z 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-06-01T21:26:12.2194187Z copying torch\include\ATen\ops\_fft_c2c.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2200750Z copying torch\include\ATen\ops\_fft_c2c_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2207494Z copying torch\include\ATen\ops\_fft_c2c_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2214169Z copying torch\include\ATen\ops\_fft_c2c_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2220735Z copying torch\include\ATen\ops\_fft_c2c_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2227582Z copying torch\include\ATen\ops\_fft_c2r.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2234892Z copying torch\include\ATen\ops\_fft_c2r_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2241446Z copying torch\include\ATen\ops\_fft_c2r_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2248119Z copying torch\include\ATen\ops\_fft_c2r_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2255010Z copying torch\include\ATen\ops\_fft_c2r_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2261604Z copying torch\include\ATen\ops\_fft_r2c.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2267994Z copying torch\include\ATen\ops\_fft_r2c_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2275180Z copying torch\include\ATen\ops\_fft_r2c_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2281653Z copying torch\include\ATen\ops\_fft_r2c_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2288637Z copying torch\include\ATen\ops\_fft_r2c_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2295725Z copying torch\include\ATen\ops\_fill_mem_eff_dropout_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2302253Z copying torch\include\ATen\ops\_fill_mem_eff_dropout_mask_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2308961Z copying torch\include\ATen\ops\_fill_mem_eff_dropout_mask_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2315578Z copying torch\include\ATen\ops\_fill_mem_eff_dropout_mask_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2322277Z copying torch\include\ATen\ops\_fill_mem_eff_dropout_mask_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2329325Z copying torch\include\ATen\ops\_flash_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2336493Z copying torch\include\ATen\ops\_flash_attention_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2343653Z copying torch\include\ATen\ops\_flash_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2351003Z copying torch\include\ATen\ops\_flash_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2358653Z copying torch\include\ATen\ops\_flash_attention_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2364941Z copying torch\include\ATen\ops\_flash_attention_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2372476Z copying torch\include\ATen\ops\_flash_attention_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2379463Z copying torch\include\ATen\ops\_flash_attention_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2387595Z copying torch\include\ATen\ops\_foobar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2393712Z copying torch\include\ATen\ops\_foobar_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2401055Z copying torch\include\ATen\ops\_foobar_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2414405Z copying torch\include\ATen\ops\_foobar_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2422406Z copying torch\include\ATen\ops\_foobar_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2428219Z copying torch\include\ATen\ops\_foreach_abs.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2435454Z copying torch\include\ATen\ops\_foreach_abs_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2442234Z copying torch\include\ATen\ops\_foreach_abs_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2449583Z copying torch\include\ATen\ops\_foreach_abs_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2456931Z copying torch\include\ATen\ops\_foreach_abs_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2463166Z copying torch\include\ATen\ops\_foreach_acos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2470514Z copying torch\include\ATen\ops\_foreach_acos_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2477153Z copying torch\include\ATen\ops\_foreach_acos_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2484273Z copying torch\include\ATen\ops\_foreach_acos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2491320Z copying torch\include\ATen\ops\_foreach_acos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2498857Z copying torch\include\ATen\ops\_foreach_add.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2505543Z copying torch\include\ATen\ops\_foreach_addcdiv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2512795Z copying torch\include\ATen\ops\_foreach_addcdiv_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2520846Z copying torch\include\ATen\ops\_foreach_addcdiv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2526758Z copying torch\include\ATen\ops\_foreach_addcdiv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2533821Z copying torch\include\ATen\ops\_foreach_addcdiv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2540769Z copying torch\include\ATen\ops\_foreach_addcmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2547851Z copying torch\include\ATen\ops\_foreach_addcmul_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2555215Z copying torch\include\ATen\ops\_foreach_addcmul_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2562213Z copying torch\include\ATen\ops\_foreach_addcmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2569078Z copying torch\include\ATen\ops\_foreach_addcmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2576787Z copying torch\include\ATen\ops\_foreach_add_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2583898Z copying torch\include\ATen\ops\_foreach_add_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2590778Z copying torch\include\ATen\ops\_foreach_add_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2598195Z copying torch\include\ATen\ops\_foreach_add_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2605152Z copying torch\include\ATen\ops\_foreach_asin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2613827Z copying torch\include\ATen\ops\_foreach_asin_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2620425Z copying torch\include\ATen\ops\_foreach_asin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2627462Z copying torch\include\ATen\ops\_foreach_asin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2635384Z copying torch\include\ATen\ops\_foreach_asin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2642389Z copying torch\include\ATen\ops\_foreach_atan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2649359Z copying torch\include\ATen\ops\_foreach_atan_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2658082Z copying torch\include\ATen\ops\_foreach_atan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2663689Z copying torch\include\ATen\ops\_foreach_atan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2670329Z copying torch\include\ATen\ops\_foreach_atan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2677182Z copying torch\include\ATen\ops\_foreach_ceil.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2684153Z copying torch\include\ATen\ops\_foreach_ceil_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2691115Z copying torch\include\ATen\ops\_foreach_ceil_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2697956Z copying torch\include\ATen\ops\_foreach_ceil_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2704762Z copying torch\include\ATen\ops\_foreach_ceil_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2711686Z copying torch\include\ATen\ops\_foreach_clamp_max.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2718958Z copying torch\include\ATen\ops\_foreach_clamp_max_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2726039Z copying torch\include\ATen\ops\_foreach_clamp_max_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2733006Z copying torch\include\ATen\ops\_foreach_clamp_max_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2739565Z copying torch\include\ATen\ops\_foreach_clamp_max_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2746203Z copying torch\include\ATen\ops\_foreach_clamp_min.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2753463Z copying torch\include\ATen\ops\_foreach_clamp_min_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2760089Z copying torch\include\ATen\ops\_foreach_clamp_min_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2767055Z copying torch\include\ATen\ops\_foreach_clamp_min_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2774081Z copying torch\include\ATen\ops\_foreach_clamp_min_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2780878Z copying torch\include\ATen\ops\_foreach_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2787872Z copying torch\include\ATen\ops\_foreach_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2794809Z copying torch\include\ATen\ops\_foreach_copy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2801689Z copying torch\include\ATen\ops\_foreach_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2808453Z copying torch\include\ATen\ops\_foreach_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2815913Z copying torch\include\ATen\ops\_foreach_cos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2823102Z copying torch\include\ATen\ops\_foreach_cosh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2830168Z copying torch\include\ATen\ops\_foreach_cosh_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2836822Z copying torch\include\ATen\ops\_foreach_cosh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2844091Z copying torch\include\ATen\ops\_foreach_cosh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2850724Z copying torch\include\ATen\ops\_foreach_cosh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2857885Z copying torch\include\ATen\ops\_foreach_cos_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2865193Z copying torch\include\ATen\ops\_foreach_cos_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2871923Z copying torch\include\ATen\ops\_foreach_cos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2878572Z copying torch\include\ATen\ops\_foreach_cos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2885327Z copying torch\include\ATen\ops\_foreach_div.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2893037Z copying torch\include\ATen\ops\_foreach_div_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2899473Z copying torch\include\ATen\ops\_foreach_div_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2906237Z copying torch\include\ATen\ops\_foreach_div_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2913604Z copying torch\include\ATen\ops\_foreach_div_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2920805Z copying torch\include\ATen\ops\_foreach_erf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2927585Z copying torch\include\ATen\ops\_foreach_erfc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2935116Z copying torch\include\ATen\ops\_foreach_erfc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2941717Z copying torch\include\ATen\ops\_foreach_erfc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2948415Z copying torch\include\ATen\ops\_foreach_erfc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2955172Z copying torch\include\ATen\ops\_foreach_erfc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2962442Z copying torch\include\ATen\ops\_foreach_erf_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2969440Z copying torch\include\ATen\ops\_foreach_erf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2976364Z copying torch\include\ATen\ops\_foreach_erf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2983352Z copying torch\include\ATen\ops\_foreach_erf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2990327Z copying torch\include\ATen\ops\_foreach_exp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.2997247Z copying torch\include\ATen\ops\_foreach_expm1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3004429Z copying torch\include\ATen\ops\_foreach_expm1_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3012467Z copying torch\include\ATen\ops\_foreach_expm1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3018962Z copying torch\include\ATen\ops\_foreach_expm1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3025799Z copying torch\include\ATen\ops\_foreach_expm1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3033354Z copying torch\include\ATen\ops\_foreach_exp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3041182Z copying torch\include\ATen\ops\_foreach_exp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3047082Z copying torch\include\ATen\ops\_foreach_exp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3054283Z copying torch\include\ATen\ops\_foreach_exp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3061176Z copying torch\include\ATen\ops\_foreach_floor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3068239Z copying torch\include\ATen\ops\_foreach_floor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3076512Z copying torch\include\ATen\ops\_foreach_floor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3082643Z copying torch\include\ATen\ops\_foreach_floor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3090271Z copying torch\include\ATen\ops\_foreach_floor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3096960Z copying torch\include\ATen\ops\_foreach_frac.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3104377Z copying torch\include\ATen\ops\_foreach_frac_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3114009Z copying torch\include\ATen\ops\_foreach_frac_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3121535Z copying torch\include\ATen\ops\_foreach_frac_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3135427Z copying torch\include\ATen\ops\_foreach_frac_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3136711Z copying torch\include\ATen\ops\_foreach_lerp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3144283Z copying torch\include\ATen\ops\_foreach_lerp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3151095Z copying torch\include\ATen\ops\_foreach_lerp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3158631Z copying torch\include\ATen\ops\_foreach_lerp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3223545Z copying torch\include\ATen\ops\_foreach_lerp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3230413Z copying torch\include\ATen\ops\_foreach_lgamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3237861Z copying torch\include\ATen\ops\_foreach_lgamma_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3245919Z copying torch\include\ATen\ops\_foreach_lgamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3252890Z copying torch\include\ATen\ops\_foreach_lgamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3259521Z copying torch\include\ATen\ops\_foreach_lgamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3266405Z copying torch\include\ATen\ops\_foreach_log.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3273489Z copying torch\include\ATen\ops\_foreach_log10.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3280680Z copying torch\include\ATen\ops\_foreach_log10_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3287504Z copying torch\include\ATen\ops\_foreach_log10_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3294652Z copying torch\include\ATen\ops\_foreach_log10_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3301448Z copying torch\include\ATen\ops\_foreach_log10_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3308174Z copying torch\include\ATen\ops\_foreach_log1p.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3366293Z copying torch\include\ATen\ops\_foreach_log1p_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3373023Z copying torch\include\ATen\ops\_foreach_log1p_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3379888Z copying torch\include\ATen\ops\_foreach_log1p_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3387731Z copying torch\include\ATen\ops\_foreach_log1p_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3394746Z copying torch\include\ATen\ops\_foreach_log2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3402038Z copying torch\include\ATen\ops\_foreach_log2_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3409135Z copying torch\include\ATen\ops\_foreach_log2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3432854Z copying torch\include\ATen\ops\_foreach_log2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3439527Z copying torch\include\ATen\ops\_foreach_log2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3446445Z copying torch\include\ATen\ops\_foreach_log_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3453323Z copying torch\include\ATen\ops\_foreach_log_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3460177Z copying torch\include\ATen\ops\_foreach_log_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3467179Z copying torch\include\ATen\ops\_foreach_log_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3474155Z copying torch\include\ATen\ops\_foreach_max.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3481351Z copying torch\include\ATen\ops\_foreach_maximum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3488538Z copying torch\include\ATen\ops\_foreach_maximum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3495615Z copying torch\include\ATen\ops\_foreach_maximum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3503499Z copying torch\include\ATen\ops\_foreach_maximum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3511020Z copying torch\include\ATen\ops\_foreach_maximum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3518336Z copying torch\include\ATen\ops\_foreach_max_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3525475Z copying torch\include\ATen\ops\_foreach_max_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3532712Z copying torch\include\ATen\ops\_foreach_max_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3539801Z copying torch\include\ATen\ops\_foreach_max_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3546543Z copying torch\include\ATen\ops\_foreach_minimum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3553703Z copying torch\include\ATen\ops\_foreach_minimum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3560686Z copying torch\include\ATen\ops\_foreach_minimum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3567807Z copying torch\include\ATen\ops\_foreach_minimum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3575076Z copying torch\include\ATen\ops\_foreach_minimum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3582281Z copying torch\include\ATen\ops\_foreach_mul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3589713Z copying torch\include\ATen\ops\_foreach_mul_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3596759Z copying torch\include\ATen\ops\_foreach_mul_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3604824Z copying torch\include\ATen\ops\_foreach_mul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3611929Z copying torch\include\ATen\ops\_foreach_mul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3619416Z copying torch\include\ATen\ops\_foreach_neg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3626698Z copying torch\include\ATen\ops\_foreach_neg_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3633531Z copying torch\include\ATen\ops\_foreach_neg_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3640464Z copying torch\include\ATen\ops\_foreach_neg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3647396Z copying torch\include\ATen\ops\_foreach_neg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3654422Z copying torch\include\ATen\ops\_foreach_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3661617Z copying torch\include\ATen\ops\_foreach_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3668463Z copying torch\include\ATen\ops\_foreach_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3675864Z copying torch\include\ATen\ops\_foreach_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3682683Z copying torch\include\ATen\ops\_foreach_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3689546Z copying torch\include\ATen\ops\_foreach_pow.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3696884Z copying torch\include\ATen\ops\_foreach_pow_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3704252Z copying torch\include\ATen\ops\_foreach_pow_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3711275Z copying torch\include\ATen\ops\_foreach_pow_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3718112Z copying torch\include\ATen\ops\_foreach_pow_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3725400Z copying torch\include\ATen\ops\_foreach_reciprocal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3732667Z copying torch\include\ATen\ops\_foreach_reciprocal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3739801Z copying torch\include\ATen\ops\_foreach_reciprocal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3746636Z copying torch\include\ATen\ops\_foreach_reciprocal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3753369Z copying torch\include\ATen\ops\_foreach_reciprocal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3760099Z copying torch\include\ATen\ops\_foreach_round.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3767440Z copying torch\include\ATen\ops\_foreach_round_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3774540Z copying torch\include\ATen\ops\_foreach_round_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3781308Z copying torch\include\ATen\ops\_foreach_round_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3788454Z copying torch\include\ATen\ops\_foreach_round_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3795162Z copying torch\include\ATen\ops\_foreach_rsqrt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3802248Z copying torch\include\ATen\ops\_foreach_rsqrt_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3809250Z copying torch\include\ATen\ops\_foreach_rsqrt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3816404Z copying torch\include\ATen\ops\_foreach_rsqrt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3823071Z copying torch\include\ATen\ops\_foreach_rsqrt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3829772Z copying torch\include\ATen\ops\_foreach_sigmoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3837049Z copying torch\include\ATen\ops\_foreach_sigmoid_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3843760Z copying torch\include\ATen\ops\_foreach_sigmoid_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3850519Z copying torch\include\ATen\ops\_foreach_sigmoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3858897Z copying torch\include\ATen\ops\_foreach_sigmoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3865760Z copying torch\include\ATen\ops\_foreach_sign.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3887136Z copying torch\include\ATen\ops\_foreach_sign_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3895178Z copying torch\include\ATen\ops\_foreach_sign_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3901145Z copying torch\include\ATen\ops\_foreach_sign_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3908419Z copying torch\include\ATen\ops\_foreach_sign_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3915240Z copying torch\include\ATen\ops\_foreach_sin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3922134Z copying torch\include\ATen\ops\_foreach_sinh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3929927Z copying torch\include\ATen\ops\_foreach_sinh_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3937235Z copying torch\include\ATen\ops\_foreach_sinh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3943851Z copying torch\include\ATen\ops\_foreach_sinh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3951243Z copying torch\include\ATen\ops\_foreach_sinh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3958693Z copying torch\include\ATen\ops\_foreach_sin_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3973124Z copying torch\include\ATen\ops\_foreach_sin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3982713Z copying torch\include\ATen\ops\_foreach_sin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3990146Z copying torch\include\ATen\ops\_foreach_sin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.3997902Z copying torch\include\ATen\ops\_foreach_sqrt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4005300Z copying torch\include\ATen\ops\_foreach_sqrt_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4013291Z copying torch\include\ATen\ops\_foreach_sqrt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4019602Z copying torch\include\ATen\ops\_foreach_sqrt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4026356Z copying torch\include\ATen\ops\_foreach_sqrt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4033318Z copying torch\include\ATen\ops\_foreach_sub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4041215Z copying torch\include\ATen\ops\_foreach_sub_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4048000Z copying torch\include\ATen\ops\_foreach_sub_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4054712Z copying torch\include\ATen\ops\_foreach_sub_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4061647Z copying torch\include\ATen\ops\_foreach_sub_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4068975Z copying torch\include\ATen\ops\_foreach_tan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4076714Z copying torch\include\ATen\ops\_foreach_tanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4083818Z copying torch\include\ATen\ops\_foreach_tanh_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4093299Z copying torch\include\ATen\ops\_foreach_tanh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4098625Z copying torch\include\ATen\ops\_foreach_tanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4108251Z copying torch\include\ATen\ops\_foreach_tanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4113808Z copying torch\include\ATen\ops\_foreach_tan_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4120648Z copying torch\include\ATen\ops\_foreach_tan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4127746Z copying torch\include\ATen\ops\_foreach_tan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4134746Z copying torch\include\ATen\ops\_foreach_tan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4141712Z copying torch\include\ATen\ops\_foreach_trunc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4149427Z copying torch\include\ATen\ops\_foreach_trunc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4156289Z copying torch\include\ATen\ops\_foreach_trunc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4163319Z copying torch\include\ATen\ops\_foreach_trunc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4169928Z copying torch\include\ATen\ops\_foreach_trunc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4176675Z copying torch\include\ATen\ops\_foreach_zero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4183735Z copying torch\include\ATen\ops\_foreach_zero_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4191219Z copying torch\include\ATen\ops\_foreach_zero_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4197951Z copying torch\include\ATen\ops\_foreach_zero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4204799Z copying torch\include\ATen\ops\_foreach_zero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4211598Z copying torch\include\ATen\ops\_functional_assert_async.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4219210Z copying torch\include\ATen\ops\_functional_assert_async_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4226095Z copying torch\include\ATen\ops\_functional_assert_async_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4232684Z copying torch\include\ATen\ops\_functional_assert_async_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4239731Z copying torch\include\ATen\ops\_functional_assert_scalar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4246755Z copying torch\include\ATen\ops\_functional_assert_scalar_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4253593Z copying torch\include\ATen\ops\_functional_assert_scalar_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4260355Z copying torch\include\ATen\ops\_functional_assert_scalar_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4267182Z copying torch\include\ATen\ops\_functional_sym_constrain_range.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4274272Z copying torch\include\ATen\ops\_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4281236Z copying torch\include\ATen\ops\_functional_sym_constrain_range_for_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4288736Z 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-06-01T21:26:12.4295856Z copying torch\include\ATen\ops\_functional_sym_constrain_range_for_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4302977Z copying torch\include\ATen\ops\_functional_sym_constrain_range_for_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4310351Z copying torch\include\ATen\ops\_functional_sym_constrain_range_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4317512Z copying torch\include\ATen\ops\_functional_sym_constrain_range_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4324272Z copying torch\include\ATen\ops\_fused_adagrad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4331324Z copying torch\include\ATen\ops\_fused_adagrad_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4338442Z copying torch\include\ATen\ops\_fused_adagrad_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4345344Z copying torch\include\ATen\ops\_fused_adagrad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4352509Z copying torch\include\ATen\ops\_fused_adagrad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4360176Z copying torch\include\ATen\ops\_fused_adam.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4367818Z copying torch\include\ATen\ops\_fused_adamw.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4375992Z copying torch\include\ATen\ops\_fused_adamw_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4382824Z copying torch\include\ATen\ops\_fused_adamw_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4389632Z copying torch\include\ATen\ops\_fused_adamw_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4396626Z copying torch\include\ATen\ops\_fused_adamw_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4403891Z copying torch\include\ATen\ops\_fused_adamw_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4411974Z copying torch\include\ATen\ops\_fused_adam_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4418862Z copying torch\include\ATen\ops\_fused_adam_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4426765Z copying torch\include\ATen\ops\_fused_adam_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4434555Z copying torch\include\ATen\ops\_fused_adam_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4441301Z copying torch\include\ATen\ops\_fused_adam_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4480679Z copying torch\include\ATen\ops\_fused_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4487984Z copying torch\include\ATen\ops\_fused_dropout_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4495198Z copying torch\include\ATen\ops\_fused_dropout_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4502034Z copying torch\include\ATen\ops\_fused_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4509351Z copying torch\include\ATen\ops\_fused_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4516524Z copying torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4524481Z 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-06-01T21:26:12.4532381Z 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-06-01T21:26:12.4539195Z 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-06-01T21:26:12.4546167Z copying torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4553241Z copying torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4560583Z copying torch\include\ATen\ops\_fused_rms_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4568376Z copying torch\include\ATen\ops\_fused_rms_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4575148Z copying torch\include\ATen\ops\_fused_rms_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4582460Z copying torch\include\ATen\ops\_fused_sdp_choice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4596959Z copying torch\include\ATen\ops\_fused_sdp_choice_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4597408Z copying torch\include\ATen\ops\_fused_sdp_choice_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4604923Z copying torch\include\ATen\ops\_fused_sdp_choice_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4612275Z copying torch\include\ATen\ops\_fused_sdp_choice_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4619194Z copying torch\include\ATen\ops\_fused_sdp_choice_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4626300Z copying torch\include\ATen\ops\_fused_sgd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4633896Z copying torch\include\ATen\ops\_fused_sgd_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4640598Z copying torch\include\ATen\ops\_fused_sgd_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4648641Z copying torch\include\ATen\ops\_fused_sgd_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4654217Z copying torch\include\ATen\ops\_fused_sgd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4661206Z copying torch\include\ATen\ops\_fused_sgd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4667817Z copying torch\include\ATen\ops\_fw_primal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4684743Z copying torch\include\ATen\ops\_fw_primal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4695722Z copying torch\include\ATen\ops\_fw_primal_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4702816Z copying torch\include\ATen\ops\_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4709626Z copying torch\include\ATen\ops\_fw_primal_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4716442Z copying torch\include\ATen\ops\_fw_primal_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4723241Z copying torch\include\ATen\ops\_fw_primal_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4730206Z copying torch\include\ATen\ops\_fw_primal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4737107Z copying torch\include\ATen\ops\_fw_primal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4743790Z copying torch\include\ATen\ops\_gather_sparse_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4751012Z copying torch\include\ATen\ops\_gather_sparse_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4757666Z copying torch\include\ATen\ops\_gather_sparse_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4764206Z copying torch\include\ATen\ops\_gather_sparse_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4770837Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4778064Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4785282Z 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-06-01T21:26:12.4792669Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4799701Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4807064Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4814036Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4821011Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4827622Z copying torch\include\ATen\ops\_grouped_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4834288Z copying torch\include\ATen\ops\_grouped_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4841116Z copying torch\include\ATen\ops\_grouped_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4847807Z copying torch\include\ATen\ops\_grouped_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4855093Z copying torch\include\ATen\ops\_has_compatible_shallow_copy_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4862089Z copying torch\include\ATen\ops\_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4868737Z copying torch\include\ATen\ops\_has_compatible_shallow_copy_type_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4875574Z copying torch\include\ATen\ops\_has_compatible_shallow_copy_type_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4882576Z copying torch\include\ATen\ops\_has_same_storage_numel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4889554Z copying torch\include\ATen\ops\_has_same_storage_numel_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4896768Z copying torch\include\ATen\ops\_has_same_storage_numel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4903858Z copying torch\include\ATen\ops\_has_same_storage_numel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4911766Z copying torch\include\ATen\ops\_histogramdd_bin_edges.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4919186Z copying torch\include\ATen\ops\_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4926042Z copying torch\include\ATen\ops\_histogramdd_bin_edges_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4932940Z copying torch\include\ATen\ops\_histogramdd_bin_edges_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4945295Z copying torch\include\ATen\ops\_histogramdd_bin_edges_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4952186Z copying torch\include\ATen\ops\_histogramdd_from_bin_cts.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4959258Z copying torch\include\ATen\ops\_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4966112Z copying torch\include\ATen\ops\_histogramdd_from_bin_cts_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4973468Z copying torch\include\ATen\ops\_histogramdd_from_bin_cts_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4985216Z copying torch\include\ATen\ops\_histogramdd_from_bin_cts_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4992052Z copying torch\include\ATen\ops\_histogramdd_from_bin_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.4999221Z copying torch\include\ATen\ops\_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5006320Z copying torch\include\ATen\ops\_histogramdd_from_bin_tensors_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5013264Z copying torch\include\ATen\ops\_histogramdd_from_bin_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5020232Z copying torch\include\ATen\ops\_histogramdd_from_bin_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5027228Z copying torch\include\ATen\ops\_index_put_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5034821Z copying torch\include\ATen\ops\_index_put_impl_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5041606Z copying torch\include\ATen\ops\_index_put_impl_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5048799Z copying torch\include\ATen\ops\_index_put_impl_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5055973Z copying torch\include\ATen\ops\_index_put_impl_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5062801Z copying torch\include\ATen\ops\_index_put_impl_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5069849Z copying torch\include\ATen\ops\_index_put_impl_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5076634Z copying torch\include\ATen\ops\_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5082753Z copying torch\include\ATen\ops\_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5089835Z copying torch\include\ATen\ops\_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5096854Z copying torch\include\ATen\ops\_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5103553Z copying torch\include\ATen\ops\_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5110135Z copying torch\include\ATen\ops\_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5117096Z copying torch\include\ATen\ops\_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5128595Z copying torch\include\ATen\ops\_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5135435Z copying torch\include\ATen\ops\_int_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5141678Z copying torch\include\ATen\ops\_int_mm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5148452Z copying torch\include\ATen\ops\_int_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5155812Z copying torch\include\ATen\ops\_int_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5170750Z copying torch\include\ATen\ops\_int_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5177636Z copying torch\include\ATen\ops\_is_all_true.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5184875Z copying torch\include\ATen\ops\_is_all_true_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5191264Z copying torch\include\ATen\ops\_is_all_true_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5197636Z copying torch\include\ATen\ops\_is_all_true_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5209390Z copying torch\include\ATen\ops\_is_any_true.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5216759Z copying torch\include\ATen\ops\_is_any_true_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5226238Z copying torch\include\ATen\ops\_is_any_true_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5232404Z copying torch\include\ATen\ops\_is_any_true_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5241865Z copying torch\include\ATen\ops\_is_zerotensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5251934Z copying torch\include\ATen\ops\_is_zerotensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5259360Z copying torch\include\ATen\ops\_is_zerotensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5265354Z copying torch\include\ATen\ops\_is_zerotensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5272452Z copying torch\include\ATen\ops\_jagged_to_padded_dense_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5279443Z copying torch\include\ATen\ops\_jagged_to_padded_dense_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5286522Z copying torch\include\ATen\ops\_jagged_to_padded_dense_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5293844Z copying torch\include\ATen\ops\_jagged_to_padded_dense_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5300789Z copying torch\include\ATen\ops\_jagged_to_padded_dense_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5307655Z copying torch\include\ATen\ops\_lazy_clone.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5314905Z copying torch\include\ATen\ops\_lazy_clone_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5321495Z copying torch\include\ATen\ops\_lazy_clone_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5328042Z copying torch\include\ATen\ops\_lazy_clone_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5335210Z copying torch\include\ATen\ops\_linalg_check_errors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5342473Z copying torch\include\ATen\ops\_linalg_check_errors_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5367901Z copying torch\include\ATen\ops\_linalg_check_errors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5381057Z copying torch\include\ATen\ops\_linalg_check_errors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5387262Z copying torch\include\ATen\ops\_linalg_det.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5394362Z copying torch\include\ATen\ops\_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5401346Z copying torch\include\ATen\ops\_linalg_det_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5408319Z copying torch\include\ATen\ops\_linalg_det_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5420025Z copying torch\include\ATen\ops\_linalg_det_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5428031Z copying torch\include\ATen\ops\_linalg_det_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5434860Z copying torch\include\ATen\ops\_linalg_det_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5442104Z copying torch\include\ATen\ops\_linalg_det_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5449323Z copying torch\include\ATen\ops\_linalg_eigh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5457048Z copying torch\include\ATen\ops\_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5464181Z copying torch\include\ATen\ops\_linalg_eigh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5471236Z copying torch\include\ATen\ops\_linalg_eigh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5478307Z copying torch\include\ATen\ops\_linalg_eigh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5485793Z copying torch\include\ATen\ops\_linalg_eigh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5493516Z copying torch\include\ATen\ops\_linalg_eigh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5500382Z copying torch\include\ATen\ops\_linalg_eigh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5508702Z copying torch\include\ATen\ops\_linalg_eigvals.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5515342Z copying torch\include\ATen\ops\_linalg_eigvals_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5522666Z copying torch\include\ATen\ops\_linalg_eigvals_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5529426Z copying torch\include\ATen\ops\_linalg_eigvals_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5536391Z copying torch\include\ATen\ops\_linalg_eigvals_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5543356Z copying torch\include\ATen\ops\_linalg_slogdet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5550909Z copying torch\include\ATen\ops\_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5557877Z copying torch\include\ATen\ops\_linalg_slogdet_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5566074Z copying torch\include\ATen\ops\_linalg_slogdet_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5572318Z copying torch\include\ATen\ops\_linalg_slogdet_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5579337Z copying torch\include\ATen\ops\_linalg_slogdet_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5586059Z copying torch\include\ATen\ops\_linalg_slogdet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5592949Z copying torch\include\ATen\ops\_linalg_slogdet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5608346Z copying torch\include\ATen\ops\_linalg_solve_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5616240Z copying torch\include\ATen\ops\_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5623597Z copying torch\include\ATen\ops\_linalg_solve_ex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5630600Z copying torch\include\ATen\ops\_linalg_solve_ex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5638282Z copying torch\include\ATen\ops\_linalg_solve_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5647126Z copying torch\include\ATen\ops\_linalg_solve_ex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5653553Z copying torch\include\ATen\ops\_linalg_solve_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5659209Z copying torch\include\ATen\ops\_linalg_solve_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5666357Z copying torch\include\ATen\ops\_linalg_svd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5674026Z copying torch\include\ATen\ops\_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5685692Z copying torch\include\ATen\ops\_linalg_svd_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5692836Z copying torch\include\ATen\ops\_linalg_svd_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5699870Z copying torch\include\ATen\ops\_linalg_svd_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5707192Z copying torch\include\ATen\ops\_linalg_svd_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5714058Z copying torch\include\ATen\ops\_linalg_svd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5727527Z copying torch\include\ATen\ops\_linalg_svd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5732990Z copying torch\include\ATen\ops\_local_scalar_dense.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5739727Z copying torch\include\ATen\ops\_local_scalar_dense_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5746520Z copying torch\include\ATen\ops\_local_scalar_dense_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5753667Z copying torch\include\ATen\ops\_local_scalar_dense_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5760484Z copying torch\include\ATen\ops\_local_scalar_dense_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5767457Z copying torch\include\ATen\ops\_logcumsumexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5774665Z copying torch\include\ATen\ops\_logcumsumexp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5781383Z copying torch\include\ATen\ops\_logcumsumexp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5788959Z copying torch\include\ATen\ops\_logcumsumexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5796007Z copying torch\include\ATen\ops\_logcumsumexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5802719Z copying torch\include\ATen\ops\_log_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5809476Z copying torch\include\ATen\ops\_log_softmax_backward_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5816748Z copying torch\include\ATen\ops\_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5835143Z copying torch\include\ATen\ops\_log_softmax_backward_data_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5837585Z copying torch\include\ATen\ops\_log_softmax_backward_data_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5844126Z copying torch\include\ATen\ops\_log_softmax_backward_data_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5851370Z copying torch\include\ATen\ops\_log_softmax_backward_data_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5858274Z copying torch\include\ATen\ops\_log_softmax_backward_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5865248Z copying torch\include\ATen\ops\_log_softmax_backward_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5872944Z copying torch\include\ATen\ops\_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5879738Z copying torch\include\ATen\ops\_log_softmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5886370Z copying torch\include\ATen\ops\_log_softmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5893189Z copying torch\include\ATen\ops\_log_softmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5900207Z copying torch\include\ATen\ops\_log_softmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5912804Z copying torch\include\ATen\ops\_log_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5919392Z copying torch\include\ATen\ops\_log_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5938973Z copying torch\include\ATen\ops\_lstm_mps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5946201Z copying torch\include\ATen\ops\_lstm_mps_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5952849Z copying torch\include\ATen\ops\_lstm_mps_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5959427Z copying torch\include\ATen\ops\_lstm_mps_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5966313Z copying torch\include\ATen\ops\_lu_with_info.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5974384Z copying torch\include\ATen\ops\_lu_with_info_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5980640Z copying torch\include\ATen\ops\_lu_with_info_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5987276Z copying torch\include\ATen\ops\_lu_with_info_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.5999632Z copying torch\include\ATen\ops\_make_dep_token.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6006604Z copying torch\include\ATen\ops\_make_dep_token_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6014713Z copying torch\include\ATen\ops\_make_dep_token_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6021067Z copying torch\include\ATen\ops\_make_dep_token_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6028218Z copying torch\include\ATen\ops\_make_dual.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6035605Z copying torch\include\ATen\ops\_make_dual_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6043663Z copying torch\include\ATen\ops\_make_dual_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6050508Z copying torch\include\ATen\ops\_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6057817Z copying torch\include\ATen\ops\_make_dual_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6064696Z copying torch\include\ATen\ops\_make_dual_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6072865Z copying torch\include\ATen\ops\_make_dual_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6080025Z copying torch\include\ATen\ops\_make_dual_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6086422Z copying torch\include\ATen\ops\_make_dual_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6093572Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6101573Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6109328Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6117170Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6125232Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6132992Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6140071Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6148342Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6155705Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6163139Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6170275Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6177929Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6184830Z copying torch\include\ATen\ops\_masked_scale.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6191996Z copying torch\include\ATen\ops\_masked_scale_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6198710Z copying torch\include\ATen\ops\_masked_scale_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6205769Z copying torch\include\ATen\ops\_masked_scale_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6212774Z copying torch\include\ATen\ops\_masked_scale_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6219659Z copying torch\include\ATen\ops\_masked_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6226470Z copying torch\include\ATen\ops\_masked_softmax_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6233756Z copying torch\include\ATen\ops\_masked_softmax_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6240600Z copying torch\include\ATen\ops\_masked_softmax_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6247994Z copying torch\include\ATen\ops\_masked_softmax_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6260389Z copying torch\include\ATen\ops\_masked_softmax_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6284475Z copying torch\include\ATen\ops\_masked_softmax_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6291459Z copying torch\include\ATen\ops\_masked_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6298380Z copying torch\include\ATen\ops\_masked_softmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6306404Z copying torch\include\ATen\ops\_masked_softmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6313661Z copying torch\include\ATen\ops\_masked_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6320433Z copying torch\include\ATen\ops\_masked_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6327617Z copying torch\include\ATen\ops\_mixed_dtypes_linear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6334605Z copying torch\include\ATen\ops\_mixed_dtypes_linear_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6341495Z copying torch\include\ATen\ops\_mixed_dtypes_linear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6348255Z copying torch\include\ATen\ops\_mixed_dtypes_linear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6355048Z copying torch\include\ATen\ops\_mkldnn_reshape.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6362386Z copying torch\include\ATen\ops\_mkldnn_reshape_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6369424Z copying torch\include\ATen\ops\_mkldnn_reshape_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6376262Z copying torch\include\ATen\ops\_mkldnn_reshape_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6384635Z copying torch\include\ATen\ops\_mkldnn_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6391551Z copying torch\include\ATen\ops\_mkldnn_transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6398459Z copying torch\include\ATen\ops\_mkldnn_transpose_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6405318Z copying torch\include\ATen\ops\_mkldnn_transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6412861Z copying torch\include\ATen\ops\_mkldnn_transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6420208Z copying torch\include\ATen\ops\_mps_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6427332Z copying torch\include\ATen\ops\_mps_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6434289Z copying torch\include\ATen\ops\_mps_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6441988Z copying torch\include\ATen\ops\_mps_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6448754Z copying torch\include\ATen\ops\_mps_convolution_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6462283Z copying torch\include\ATen\ops\_mps_convolution_transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6469911Z copying torch\include\ATen\ops\_mps_convolution_transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6477451Z copying torch\include\ATen\ops\_mps_convolution_transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6483554Z copying torch\include\ATen\ops\_native_batch_norm_legit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6490670Z copying torch\include\ATen\ops\_native_batch_norm_legit_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6498405Z copying torch\include\ATen\ops\_native_batch_norm_legit_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6506504Z copying torch\include\ATen\ops\_native_batch_norm_legit_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6513264Z copying torch\include\ATen\ops\_native_batch_norm_legit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6520678Z copying torch\include\ATen\ops\_native_batch_norm_legit_no_training.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6529063Z 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-06-01T21:26:12.6535434Z copying torch\include\ATen\ops\_native_batch_norm_legit_no_training_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6543444Z copying torch\include\ATen\ops\_native_batch_norm_legit_no_training_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6549810Z copying torch\include\ATen\ops\_native_batch_norm_legit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6556834Z copying torch\include\ATen\ops\_native_multi_head_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6564363Z copying torch\include\ATen\ops\_native_multi_head_attention_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6571575Z copying torch\include\ATen\ops\_native_multi_head_attention_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6578753Z copying torch\include\ATen\ops\_native_multi_head_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6585778Z copying torch\include\ATen\ops\_native_multi_head_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6593616Z copying torch\include\ATen\ops\_native_multi_head_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6600809Z copying torch\include\ATen\ops\_neg_view.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6608743Z copying torch\include\ATen\ops\_neg_view_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6616015Z copying torch\include\ATen\ops\_neg_view_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6623366Z copying torch\include\ATen\ops\_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6630705Z copying torch\include\ATen\ops\_neg_view_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6637782Z copying torch\include\ATen\ops\_neg_view_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6644440Z copying torch\include\ATen\ops\_neg_view_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6651136Z copying torch\include\ATen\ops\_neg_view_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6658110Z copying torch\include\ATen\ops\_neg_view_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6665275Z copying torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6672702Z copying torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6679586Z copying torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6686708Z copying torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6693637Z copying torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6700611Z copying torch\include\ATen\ops\_nested_from_padded.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6708447Z copying torch\include\ATen\ops\_nested_from_padded_and_nested_example.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6715830Z 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-06-01T21:26:12.6723025Z copying torch\include\ATen\ops\_nested_from_padded_and_nested_example_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6729977Z copying torch\include\ATen\ops\_nested_from_padded_and_nested_example_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6736991Z copying torch\include\ATen\ops\_nested_from_padded_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6745384Z copying torch\include\ATen\ops\_nested_from_padded_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6757440Z copying torch\include\ATen\ops\_nested_from_padded_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6764615Z copying torch\include\ATen\ops\_nested_from_padded_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6772282Z copying torch\include\ATen\ops\_nested_from_padded_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6779492Z copying torch\include\ATen\ops\_nested_from_padded_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6786559Z copying torch\include\ATen\ops\_nested_from_padded_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6793720Z copying torch\include\ATen\ops\_nested_from_padded_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6800501Z copying torch\include\ATen\ops\_nested_get_jagged_dummy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6807248Z copying torch\include\ATen\ops\_nested_get_jagged_dummy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6814566Z copying torch\include\ATen\ops\_nested_get_jagged_dummy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6821681Z copying torch\include\ATen\ops\_nested_get_lengths.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6828685Z copying torch\include\ATen\ops\_nested_get_lengths_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6836252Z copying torch\include\ATen\ops\_nested_get_lengths_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6849135Z copying torch\include\ATen\ops\_nested_get_max_seqlen.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6856043Z copying torch\include\ATen\ops\_nested_get_max_seqlen_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6862305Z copying torch\include\ATen\ops\_nested_get_max_seqlen_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6869173Z copying torch\include\ATen\ops\_nested_get_min_seqlen.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6876029Z copying torch\include\ATen\ops\_nested_get_min_seqlen_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6882596Z copying torch\include\ATen\ops\_nested_get_min_seqlen_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6889413Z copying torch\include\ATen\ops\_nested_get_offsets.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6896452Z copying torch\include\ATen\ops\_nested_get_offsets_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6908312Z copying torch\include\ATen\ops\_nested_get_offsets_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6915059Z copying torch\include\ATen\ops\_nested_get_ragged_idx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6921884Z copying torch\include\ATen\ops\_nested_get_ragged_idx_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6928974Z copying torch\include\ATen\ops\_nested_get_ragged_idx_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6935932Z copying torch\include\ATen\ops\_nested_get_values.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6942654Z copying torch\include\ATen\ops\_nested_get_values_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6950150Z copying torch\include\ATen\ops\_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6957411Z copying torch\include\ATen\ops\_nested_get_values_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6964164Z copying torch\include\ATen\ops\_nested_get_values_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6971218Z copying torch\include\ATen\ops\_nested_get_values_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6978698Z copying torch\include\ATen\ops\_nested_get_values_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6985324Z copying torch\include\ATen\ops\_nested_get_values_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6992350Z copying torch\include\ATen\ops\_nested_select_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.6999284Z copying torch\include\ATen\ops\_nested_select_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7006254Z copying torch\include\ATen\ops\_nested_select_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7018609Z copying torch\include\ATen\ops\_nested_sum_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7025609Z copying torch\include\ATen\ops\_nested_sum_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7032707Z copying torch\include\ATen\ops\_nested_sum_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7040835Z copying torch\include\ATen\ops\_nested_tensor_from_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7047533Z copying torch\include\ATen\ops\_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7054721Z copying torch\include\ATen\ops\_nested_tensor_from_mask_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7062051Z copying torch\include\ATen\ops\_nested_tensor_from_mask_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7069405Z copying torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7076552Z 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-06-01T21:26:12.7084689Z 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-06-01T21:26:12.7092445Z copying torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7099673Z copying torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7106118Z copying torch\include\ATen\ops\_nested_tensor_from_mask_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7114463Z copying torch\include\ATen\ops\_nested_tensor_from_mask_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7124073Z copying torch\include\ATen\ops\_nested_tensor_from_tensor_list.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7130722Z copying torch\include\ATen\ops\_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7138029Z copying torch\include\ATen\ops\_nested_tensor_from_tensor_list_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7144922Z copying torch\include\ATen\ops\_nested_tensor_from_tensor_list_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7151762Z copying torch\include\ATen\ops\_nested_tensor_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7159318Z copying torch\include\ATen\ops\_nested_tensor_size_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7166524Z copying torch\include\ATen\ops\_nested_tensor_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7177195Z copying torch\include\ATen\ops\_nested_tensor_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7180757Z copying torch\include\ATen\ops\_nested_tensor_softmax_with_shape.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7188051Z copying torch\include\ATen\ops\_nested_tensor_softmax_with_shape_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7195178Z copying torch\include\ATen\ops\_nested_tensor_softmax_with_shape_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7207373Z copying torch\include\ATen\ops\_nested_tensor_storage_offsets.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7214773Z copying torch\include\ATen\ops\_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7221629Z copying torch\include\ATen\ops\_nested_tensor_storage_offsets_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7229102Z copying torch\include\ATen\ops\_nested_tensor_storage_offsets_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7236278Z copying torch\include\ATen\ops\_nested_tensor_strides.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7248980Z copying torch\include\ATen\ops\_nested_tensor_strides_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7257469Z copying torch\include\ATen\ops\_nested_tensor_strides_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7264130Z copying torch\include\ATen\ops\_nested_tensor_strides_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7271272Z copying torch\include\ATen\ops\_nested_view_from_buffer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7278289Z copying torch\include\ATen\ops\_nested_view_from_buffer_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7285419Z copying torch\include\ATen\ops\_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7292781Z copying torch\include\ATen\ops\_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7299924Z copying torch\include\ATen\ops\_nested_view_from_buffer_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7307090Z copying torch\include\ATen\ops\_nested_view_from_buffer_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7314240Z copying torch\include\ATen\ops\_nested_view_from_buffer_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7337267Z copying torch\include\ATen\ops\_nested_view_from_buffer_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7344370Z copying torch\include\ATen\ops\_nested_view_from_buffer_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7351649Z copying torch\include\ATen\ops\_nested_view_from_buffer_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7358741Z copying torch\include\ATen\ops\_nested_view_from_jagged.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7365656Z copying torch\include\ATen\ops\_nested_view_from_jagged_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7373180Z copying torch\include\ATen\ops\_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7380577Z copying torch\include\ATen\ops\_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7387633Z copying torch\include\ATen\ops\_nested_view_from_jagged_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7395020Z copying torch\include\ATen\ops\_nested_view_from_jagged_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7402347Z copying torch\include\ATen\ops\_nested_view_from_jagged_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7408993Z copying torch\include\ATen\ops\_nested_view_from_jagged_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7417373Z copying torch\include\ATen\ops\_new_zeros_with_same_feature_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7424220Z 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-06-01T21:26:12.7431288Z copying torch\include\ATen\ops\_new_zeros_with_same_feature_meta_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7438918Z copying torch\include\ATen\ops\_new_zeros_with_same_feature_meta_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7446395Z copying torch\include\ATen\ops\_nnpack_available.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7469492Z copying torch\include\ATen\ops\_nnpack_available_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7476129Z copying torch\include\ATen\ops\_nnpack_available_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7483235Z copying torch\include\ATen\ops\_nnpack_available_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7491991Z copying torch\include\ATen\ops\_nnpack_spatial_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7499264Z copying torch\include\ATen\ops\_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7507454Z copying torch\include\ATen\ops\_nnpack_spatial_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7515357Z copying torch\include\ATen\ops\_nnpack_spatial_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7523451Z copying torch\include\ATen\ops\_nnz.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7529976Z copying torch\include\ATen\ops\_nnz_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7538222Z copying torch\include\ATen\ops\_nnz_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7544471Z copying torch\include\ATen\ops\_pack_padded_sequence.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7552003Z copying torch\include\ATen\ops\_pack_padded_sequence_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7559522Z copying torch\include\ATen\ops\_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7567081Z copying torch\include\ATen\ops\_pack_padded_sequence_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7573270Z copying torch\include\ATen\ops\_pack_padded_sequence_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7580723Z copying torch\include\ATen\ops\_pack_padded_sequence_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7587639Z copying torch\include\ATen\ops\_pack_padded_sequence_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7595989Z copying torch\include\ATen\ops\_pack_padded_sequence_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7603384Z copying torch\include\ATen\ops\_padded_dense_to_jagged_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7610527Z copying torch\include\ATen\ops\_padded_dense_to_jagged_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7617875Z copying torch\include\ATen\ops\_padded_dense_to_jagged_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7635776Z copying torch\include\ATen\ops\_padded_dense_to_jagged_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7636698Z copying torch\include\ATen\ops\_padded_dense_to_jagged_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7642421Z copying torch\include\ATen\ops\_pad_circular.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7650111Z copying torch\include\ATen\ops\_pad_circular_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7657018Z copying torch\include\ATen\ops\_pad_circular_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7663400Z copying torch\include\ATen\ops\_pad_circular_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7671370Z copying torch\include\ATen\ops\_pad_enum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7678736Z copying torch\include\ATen\ops\_pad_enum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7686085Z copying torch\include\ATen\ops\_pad_enum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7691323Z copying torch\include\ATen\ops\_pad_enum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7697941Z copying torch\include\ATen\ops\_pad_packed_sequence.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7705088Z copying torch\include\ATen\ops\_pad_packed_sequence_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7711569Z copying torch\include\ATen\ops\_pad_packed_sequence_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7718518Z copying torch\include\ATen\ops\_pad_packed_sequence_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7724866Z copying torch\include\ATen\ops\_pdist_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7731934Z copying torch\include\ATen\ops\_pdist_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7738490Z copying torch\include\ATen\ops\_pdist_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7745033Z copying torch\include\ATen\ops\_pdist_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7751459Z copying torch\include\ATen\ops\_pdist_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7758190Z copying torch\include\ATen\ops\_pdist_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7765733Z copying torch\include\ATen\ops\_pdist_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7772940Z copying torch\include\ATen\ops\_pdist_forward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7780748Z copying torch\include\ATen\ops\_pdist_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7789285Z copying torch\include\ATen\ops\_pdist_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7795735Z copying torch\include\ATen\ops\_pdist_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7802242Z copying torch\include\ATen\ops\_pdist_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7808684Z copying torch\include\ATen\ops\_pin_memory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7815653Z copying torch\include\ATen\ops\_pin_memory_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7827908Z copying torch\include\ATen\ops\_pin_memory_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7834409Z copying torch\include\ATen\ops\_pin_memory_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7840929Z copying torch\include\ATen\ops\_prelu_kernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7847409Z copying torch\include\ATen\ops\_prelu_kernel_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7854349Z copying torch\include\ATen\ops\_prelu_kernel_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7878142Z copying torch\include\ATen\ops\_prelu_kernel_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7884826Z copying torch\include\ATen\ops\_prelu_kernel_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7891574Z copying torch\include\ATen\ops\_prelu_kernel_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7898224Z copying torch\include\ATen\ops\_prelu_kernel_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7905031Z copying torch\include\ATen\ops\_prelu_kernel_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7911547Z copying torch\include\ATen\ops\_prelu_kernel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7918375Z copying torch\include\ATen\ops\_prelu_kernel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7926337Z copying torch\include\ATen\ops\_print.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7932340Z copying torch\include\ATen\ops\_print_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7938805Z copying torch\include\ATen\ops\_print_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7945395Z copying torch\include\ATen\ops\_print_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7951979Z copying torch\include\ATen\ops\_propagate_xla_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7958860Z copying torch\include\ATen\ops\_propagate_xla_data_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7966817Z copying torch\include\ATen\ops\_propagate_xla_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7972764Z copying torch\include\ATen\ops\_propagate_xla_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.7993936Z copying torch\include\ATen\ops\_remove_batch_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8003052Z copying torch\include\ATen\ops\_remove_batch_dim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8011143Z copying torch\include\ATen\ops\_remove_batch_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8018980Z copying torch\include\ATen\ops\_remove_batch_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8027139Z copying torch\include\ATen\ops\_reshape_alias.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8034827Z copying torch\include\ATen\ops\_reshape_alias_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8043536Z copying torch\include\ATen\ops\_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8049975Z copying torch\include\ATen\ops\_reshape_alias_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8058019Z copying torch\include\ATen\ops\_reshape_alias_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8066457Z copying torch\include\ATen\ops\_reshape_alias_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8078214Z copying torch\include\ATen\ops\_reshape_alias_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8085394Z copying torch\include\ATen\ops\_reshape_alias_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8093413Z copying torch\include\ATen\ops\_reshape_alias_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8102692Z copying torch\include\ATen\ops\_reshape_alias_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8109409Z copying torch\include\ATen\ops\_reshape_alias_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8116015Z copying torch\include\ATen\ops\_reshape_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8122936Z copying torch\include\ATen\ops\_reshape_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8129652Z copying torch\include\ATen\ops\_reshape_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8136784Z copying torch\include\ATen\ops\_reshape_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8145028Z copying torch\include\ATen\ops\_reshape_from_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8151782Z copying torch\include\ATen\ops\_reshape_from_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8158544Z copying torch\include\ATen\ops\_reshape_from_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8165526Z copying torch\include\ATen\ops\_reshape_from_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8172978Z copying torch\include\ATen\ops\_resize_output.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8180005Z copying torch\include\ATen\ops\_resize_output_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8186427Z copying torch\include\ATen\ops\_resize_output_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8192948Z copying torch\include\ATen\ops\_resize_output_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8199451Z copying torch\include\ATen\ops\_resize_output_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8205850Z copying torch\include\ATen\ops\_rowwise_prune.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8212653Z copying torch\include\ATen\ops\_rowwise_prune_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8224365Z copying torch\include\ATen\ops\_rowwise_prune_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8230989Z copying torch\include\ATen\ops\_rowwise_prune_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8277709Z copying torch\include\ATen\ops\_safe_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8285339Z copying torch\include\ATen\ops\_safe_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8291913Z copying torch\include\ATen\ops\_safe_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8298603Z copying torch\include\ATen\ops\_safe_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8306109Z copying torch\include\ATen\ops\_sample_dirichlet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8313129Z copying torch\include\ATen\ops\_sample_dirichlet_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8319768Z copying torch\include\ATen\ops\_sample_dirichlet_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8327113Z copying torch\include\ATen\ops\_sample_dirichlet_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8339078Z copying torch\include\ATen\ops\_sample_dirichlet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8346114Z copying torch\include\ATen\ops\_sample_dirichlet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8353456Z copying torch\include\ATen\ops\_saturate_weight_to_fp16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8359941Z copying torch\include\ATen\ops\_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8366540Z copying torch\include\ATen\ops\_saturate_weight_to_fp16_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8373578Z copying torch\include\ATen\ops\_saturate_weight_to_fp16_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8380364Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8387435Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8394373Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8401471Z 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-06-01T21:26:12.8413749Z 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-06-01T21:26:12.8422135Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8429741Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8438241Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8445413Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8452860Z 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-06-01T21:26:12.8460496Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8468246Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8475538Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8482575Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8489510Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8496847Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8504272Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8511718Z 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-06-01T21:26:12.8520320Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8526655Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8535206Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8543197Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8550280Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8557316Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8569470Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8576924Z 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-06-01T21:26:12.8584056Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8592129Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8599446Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8607253Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8637637Z 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-06-01T21:26:12.8638740Z 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-06-01T21:26:12.8639848Z 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-06-01T21:26:12.8643286Z 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-06-01T21:26:12.8649615Z 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-06-01T21:26:12.8657426Z 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-06-01T21:26:12.8664370Z 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-06-01T21:26:12.8672314Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8678726Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8685998Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8693386Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8700944Z 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-06-01T21:26:12.8734745Z 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-06-01T21:26:12.8741464Z 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-06-01T21:26:12.8748764Z 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-06-01T21:26:12.8755835Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8763426Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8770212Z copying torch\include\ATen\ops\_scaled_grouped_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8777754Z copying torch\include\ATen\ops\_scaled_grouped_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8784725Z copying torch\include\ATen\ops\_scaled_grouped_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8791659Z copying torch\include\ATen\ops\_scaled_grouped_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8798623Z copying torch\include\ATen\ops\_scaled_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8805586Z copying torch\include\ATen\ops\_scaled_mm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8812609Z copying torch\include\ATen\ops\_scaled_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8819594Z copying torch\include\ATen\ops\_scaled_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8826659Z copying torch\include\ATen\ops\_scaled_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8833456Z copying torch\include\ATen\ops\_segment_reduce_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8841352Z copying torch\include\ATen\ops\_segment_reduce_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8848531Z copying torch\include\ATen\ops\_segment_reduce_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8855439Z copying torch\include\ATen\ops\_segment_reduce_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8862394Z copying torch\include\ATen\ops\_segment_reduce_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8869820Z copying torch\include\ATen\ops\_segment_reduce_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8876728Z copying torch\include\ATen\ops\_shape_as_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8883852Z copying torch\include\ATen\ops\_shape_as_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8891140Z copying torch\include\ATen\ops\_shape_as_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8897872Z copying torch\include\ATen\ops\_shape_as_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8904953Z copying torch\include\ATen\ops\_slow_conv2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8912395Z copying torch\include\ATen\ops\_slow_conv2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8919254Z copying torch\include\ATen\ops\_slow_conv2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8931513Z copying torch\include\ATen\ops\_slow_conv2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8938576Z copying torch\include\ATen\ops\_slow_conv2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8945698Z copying torch\include\ATen\ops\_slow_conv2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8953086Z copying torch\include\ATen\ops\_slow_conv2d_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8960008Z copying torch\include\ATen\ops\_slow_conv2d_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8967121Z copying torch\include\ATen\ops\_slow_conv2d_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8974457Z copying torch\include\ATen\ops\_slow_conv2d_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8981482Z copying torch\include\ATen\ops\_slow_conv2d_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8988365Z copying torch\include\ATen\ops\_sobol_engine_draw.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.8995539Z copying torch\include\ATen\ops\_sobol_engine_draw_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9007438Z copying torch\include\ATen\ops\_sobol_engine_draw_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9014673Z copying torch\include\ATen\ops\_sobol_engine_draw_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9021810Z copying torch\include\ATen\ops\_sobol_engine_ff.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9029145Z copying torch\include\ATen\ops\_sobol_engine_ff_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9035816Z copying torch\include\ATen\ops\_sobol_engine_ff_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9043191Z copying torch\include\ATen\ops\_sobol_engine_ff_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9050186Z copying torch\include\ATen\ops\_sobol_engine_initialize_state.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9057669Z copying torch\include\ATen\ops\_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9064763Z copying torch\include\ATen\ops\_sobol_engine_initialize_state_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9071531Z copying torch\include\ATen\ops\_sobol_engine_initialize_state_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9079190Z copying torch\include\ATen\ops\_sobol_engine_scramble.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9086395Z copying torch\include\ATen\ops\_sobol_engine_scramble_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9093485Z copying torch\include\ATen\ops\_sobol_engine_scramble_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9102052Z copying torch\include\ATen\ops\_sobol_engine_scramble_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9109863Z copying torch\include\ATen\ops\_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9117069Z copying torch\include\ATen\ops\_softmax_backward_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9125086Z copying torch\include\ATen\ops\_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9132138Z copying torch\include\ATen\ops\_softmax_backward_data_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9140102Z copying torch\include\ATen\ops\_softmax_backward_data_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9147396Z copying torch\include\ATen\ops\_softmax_backward_data_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9154726Z copying torch\include\ATen\ops\_softmax_backward_data_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9161871Z copying torch\include\ATen\ops\_softmax_backward_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9168832Z copying torch\include\ATen\ops\_softmax_backward_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9176909Z copying torch\include\ATen\ops\_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9183505Z copying torch\include\ATen\ops\_softmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9190601Z copying torch\include\ATen\ops\_softmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9197888Z copying torch\include\ATen\ops\_softmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9204354Z copying torch\include\ATen\ops\_softmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9211227Z copying torch\include\ATen\ops\_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9218779Z copying torch\include\ATen\ops\_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9225611Z copying torch\include\ATen\ops\_sparse_addmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9232619Z copying torch\include\ATen\ops\_sparse_addmm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9239150Z copying torch\include\ATen\ops\_sparse_addmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9246795Z copying torch\include\ATen\ops\_sparse_addmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9254263Z copying torch\include\ATen\ops\_sparse_broadcast_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9261347Z copying torch\include\ATen\ops\_sparse_broadcast_to_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9268815Z copying torch\include\ATen\ops\_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9275817Z copying torch\include\ATen\ops\_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9282725Z copying torch\include\ATen\ops\_sparse_broadcast_to_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9289997Z copying torch\include\ATen\ops\_sparse_broadcast_to_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9306963Z copying torch\include\ATen\ops\_sparse_broadcast_to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9313775Z copying torch\include\ATen\ops\_sparse_broadcast_to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9321041Z copying torch\include\ATen\ops\_sparse_bsc_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9328416Z copying torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9335429Z copying torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9343112Z copying torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9369894Z copying torch\include\ATen\ops\_sparse_bsr_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9377111Z copying torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9384499Z copying torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9391526Z copying torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9404015Z copying torch\include\ATen\ops\_sparse_compressed_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9416661Z copying torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9422447Z copying torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9429634Z copying torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9436822Z copying torch\include\ATen\ops\_sparse_compressed_tensor_with_dims.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9444551Z copying torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9452955Z copying torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9459814Z copying torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9467068Z copying torch\include\ATen\ops\_sparse_coo_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9474983Z copying torch\include\ATen\ops\_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9513203Z copying torch\include\ATen\ops\_sparse_coo_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9513580Z copying torch\include\ATen\ops\_sparse_coo_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9513964Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9514372Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9515753Z 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-06-01T21:26:12.9524812Z 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-06-01T21:26:12.9531286Z 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-06-01T21:26:12.9538189Z 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-06-01T21:26:12.9545823Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9553437Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9560442Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9567908Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9575548Z copying torch\include\ATen\ops\_sparse_csc_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9583162Z copying torch\include\ATen\ops\_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9590230Z copying torch\include\ATen\ops\_sparse_csc_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9603272Z copying torch\include\ATen\ops\_sparse_csc_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9610073Z copying torch\include\ATen\ops\_sparse_csr_prod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9617460Z copying torch\include\ATen\ops\_sparse_csr_prod_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9624267Z copying torch\include\ATen\ops\_sparse_csr_prod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9631661Z copying torch\include\ATen\ops\_sparse_csr_prod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9639072Z copying torch\include\ATen\ops\_sparse_csr_sum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9646232Z copying torch\include\ATen\ops\_sparse_csr_sum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9653744Z copying torch\include\ATen\ops\_sparse_csr_sum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9660926Z copying torch\include\ATen\ops\_sparse_csr_sum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9668405Z copying torch\include\ATen\ops\_sparse_csr_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9676387Z copying torch\include\ATen\ops\_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9683815Z copying torch\include\ATen\ops\_sparse_csr_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9690629Z copying torch\include\ATen\ops\_sparse_csr_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9697939Z copying torch\include\ATen\ops\_sparse_log_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9706305Z copying torch\include\ATen\ops\_sparse_log_softmax_backward_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9712748Z copying torch\include\ATen\ops\_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9719910Z copying torch\include\ATen\ops\_sparse_log_softmax_backward_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9727685Z copying torch\include\ATen\ops\_sparse_log_softmax_backward_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9735129Z copying torch\include\ATen\ops\_sparse_log_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9742300Z copying torch\include\ATen\ops\_sparse_log_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9751066Z copying torch\include\ATen\ops\_sparse_log_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9758897Z copying torch\include\ATen\ops\_sparse_log_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9766888Z copying torch\include\ATen\ops\_sparse_mask_projection.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9774104Z copying torch\include\ATen\ops\_sparse_mask_projection_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9780904Z copying torch\include\ATen\ops\_sparse_mask_projection_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9788110Z copying torch\include\ATen\ops\_sparse_mask_projection_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9845188Z copying torch\include\ATen\ops\_sparse_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9852344Z copying torch\include\ATen\ops\_sparse_mm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9859559Z copying torch\include\ATen\ops\_sparse_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9866331Z copying torch\include\ATen\ops\_sparse_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9878684Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9886012Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9893162Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9900443Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9906684Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9917731Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9925983Z copying torch\include\ATen\ops\_sparse_semi_structured_addmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9933915Z copying torch\include\ATen\ops\_sparse_semi_structured_addmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9941683Z copying torch\include\ATen\ops\_sparse_semi_structured_addmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9949088Z copying torch\include\ATen\ops\_sparse_semi_structured_addmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9956077Z copying torch\include\ATen\ops\_sparse_semi_structured_apply.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9963887Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9970728Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_dense.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9978052Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_dense_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9985719Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_dense_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:12.9993334Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_dense_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0000635Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0007940Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0015825Z copying torch\include\ATen\ops\_sparse_semi_structured_linear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0023324Z copying torch\include\ATen\ops\_sparse_semi_structured_linear_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0030428Z copying torch\include\ATen\ops\_sparse_semi_structured_linear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0037779Z copying torch\include\ATen\ops\_sparse_semi_structured_linear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0045293Z copying torch\include\ATen\ops\_sparse_semi_structured_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0052834Z copying torch\include\ATen\ops\_sparse_semi_structured_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0060234Z copying torch\include\ATen\ops\_sparse_semi_structured_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0073033Z copying torch\include\ATen\ops\_sparse_semi_structured_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0079996Z copying torch\include\ATen\ops\_sparse_semi_structured_tile.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0087470Z copying torch\include\ATen\ops\_sparse_semi_structured_tile_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0094783Z copying torch\include\ATen\ops\_sparse_semi_structured_tile_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0102486Z copying torch\include\ATen\ops\_sparse_semi_structured_tile_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0109410Z copying torch\include\ATen\ops\_sparse_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0116838Z copying torch\include\ATen\ops\_sparse_softmax_backward_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0124781Z copying torch\include\ATen\ops\_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0132795Z copying torch\include\ATen\ops\_sparse_softmax_backward_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0139988Z copying torch\include\ATen\ops\_sparse_softmax_backward_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0147510Z copying torch\include\ATen\ops\_sparse_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0155323Z copying torch\include\ATen\ops\_sparse_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0162557Z copying torch\include\ATen\ops\_sparse_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0170754Z copying torch\include\ATen\ops\_sparse_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0177817Z copying torch\include\ATen\ops\_sparse_sparse_matmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0192278Z copying torch\include\ATen\ops\_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0199259Z copying torch\include\ATen\ops\_sparse_sparse_matmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0206217Z copying torch\include\ATen\ops\_sparse_sparse_matmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0213119Z copying torch\include\ATen\ops\_sparse_sum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0220313Z copying torch\include\ATen\ops\_sparse_sum_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0228140Z copying torch\include\ATen\ops\_sparse_sum_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0235194Z copying torch\include\ATen\ops\_sparse_sum_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0242066Z copying torch\include\ATen\ops\_sparse_sum_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0249402Z copying torch\include\ATen\ops\_sparse_sum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0256645Z copying torch\include\ATen\ops\_sparse_sum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0263935Z copying torch\include\ATen\ops\_sparse_sum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0271736Z copying torch\include\ATen\ops\_sparse_sum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0278588Z copying torch\include\ATen\ops\_spdiags.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0285916Z copying torch\include\ATen\ops\_spdiags_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0292481Z copying torch\include\ATen\ops\_spdiags_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0299698Z copying torch\include\ATen\ops\_spdiags_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0306655Z copying torch\include\ATen\ops\_spdiags_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0313298Z copying torch\include\ATen\ops\_spsolve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0319643Z copying torch\include\ATen\ops\_spsolve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0326209Z copying torch\include\ATen\ops\_spsolve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0333087Z copying torch\include\ATen\ops\_stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0340063Z copying torch\include\ATen\ops\_stack_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0346827Z copying torch\include\ATen\ops\_stack_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0353384Z copying torch\include\ATen\ops\_stack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0360117Z copying torch\include\ATen\ops\_stack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0366916Z copying torch\include\ATen\ops\_standard_gamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0374064Z copying torch\include\ATen\ops\_standard_gamma_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0381068Z copying torch\include\ATen\ops\_standard_gamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0388418Z copying torch\include\ATen\ops\_standard_gamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0395703Z copying torch\include\ATen\ops\_standard_gamma_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0408308Z copying torch\include\ATen\ops\_standard_gamma_grad_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0415267Z copying torch\include\ATen\ops\_standard_gamma_grad_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0422232Z copying torch\include\ATen\ops\_standard_gamma_grad_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0429400Z copying torch\include\ATen\ops\_standard_gamma_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0436324Z copying torch\include\ATen\ops\_standard_gamma_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0443303Z copying torch\include\ATen\ops\_standard_gamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0450175Z copying torch\include\ATen\ops\_standard_gamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0457209Z copying torch\include\ATen\ops\_test_ambiguous_defaults.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0464230Z copying torch\include\ATen\ops\_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0471372Z copying torch\include\ATen\ops\_test_ambiguous_defaults_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0479011Z copying torch\include\ATen\ops\_test_ambiguous_defaults_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0485951Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0494184Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0501646Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0508662Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0515793Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0522855Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0530606Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0539214Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0547167Z 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-06-01T21:26:13.0554648Z 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-06-01T21:26:13.0562438Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0569805Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0577448Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0584545Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0591589Z copying torch\include\ATen\ops\_test_check_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0598975Z copying torch\include\ATen\ops\_test_check_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0606379Z copying torch\include\ATen\ops\_test_check_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0614192Z copying torch\include\ATen\ops\_test_check_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0622496Z copying torch\include\ATen\ops\_test_functorch_fallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0630564Z copying torch\include\ATen\ops\_test_functorch_fallback_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0638532Z copying torch\include\ATen\ops\_test_functorch_fallback_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0645773Z copying torch\include\ATen\ops\_test_functorch_fallback_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0653164Z copying torch\include\ATen\ops\_test_functorch_fallback_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0660315Z copying torch\include\ATen\ops\_test_optional_filled_intlist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0668270Z copying torch\include\ATen\ops\_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0675157Z copying torch\include\ATen\ops\_test_optional_filled_intlist_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0683121Z copying torch\include\ATen\ops\_test_optional_filled_intlist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0690278Z copying torch\include\ATen\ops\_test_optional_filled_intlist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0697264Z copying torch\include\ATen\ops\_test_optional_floatlist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0704352Z copying torch\include\ATen\ops\_test_optional_floatlist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0712234Z copying torch\include\ATen\ops\_test_optional_floatlist_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0719203Z copying torch\include\ATen\ops\_test_optional_floatlist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0726099Z copying torch\include\ATen\ops\_test_optional_floatlist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0733591Z copying torch\include\ATen\ops\_test_optional_intlist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0740872Z copying torch\include\ATen\ops\_test_optional_intlist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0748227Z copying torch\include\ATen\ops\_test_optional_intlist_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0755199Z copying torch\include\ATen\ops\_test_optional_intlist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0762007Z copying torch\include\ATen\ops\_test_optional_intlist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0769363Z copying torch\include\ATen\ops\_test_parallel_materialize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0776843Z copying torch\include\ATen\ops\_test_parallel_materialize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0783804Z copying torch\include\ATen\ops\_test_parallel_materialize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0790949Z copying torch\include\ATen\ops\_test_parallel_materialize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0798655Z copying torch\include\ATen\ops\_test_serialization_subcmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0806188Z copying torch\include\ATen\ops\_test_serialization_subcmul_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0813098Z copying torch\include\ATen\ops\_test_serialization_subcmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0820245Z copying torch\include\ATen\ops\_test_serialization_subcmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0827463Z copying torch\include\ATen\ops\_test_string_default.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0835181Z copying torch\include\ATen\ops\_test_string_default_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0842048Z copying torch\include\ATen\ops\_test_string_default_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0849101Z copying torch\include\ATen\ops\_test_string_default_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0856611Z copying torch\include\ATen\ops\_test_warn_in_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0863940Z copying torch\include\ATen\ops\_test_warn_in_autograd_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0871625Z copying torch\include\ATen\ops\_test_warn_in_autograd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0878756Z copying torch\include\ATen\ops\_test_warn_in_autograd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0914031Z copying torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0921870Z copying torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0928998Z copying torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0936407Z copying torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0943904Z copying torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0956292Z copying torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0963479Z copying torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0970455Z copying torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0977677Z copying torch\include\ATen\ops\_thnn_fused_gru_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0985112Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0992903Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.0999843Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1007276Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1014493Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1022242Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1029591Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1036536Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1043698Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1050843Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1058173Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1065452Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1072880Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1080330Z 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-06-01T21:26:13.1087730Z 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-06-01T21:26:13.1095306Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1102842Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1109876Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1116886Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1124737Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1132182Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1140197Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1148272Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1155310Z copying torch\include\ATen\ops\_to_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1162617Z copying torch\include\ATen\ops\_to_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1169824Z copying torch\include\ATen\ops\_to_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1181776Z copying torch\include\ATen\ops\_to_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1188689Z copying torch\include\ATen\ops\_to_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1195200Z copying torch\include\ATen\ops\_to_cpu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1202157Z copying torch\include\ATen\ops\_to_cpu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1208588Z copying torch\include\ATen\ops\_to_cpu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1215529Z copying torch\include\ATen\ops\_to_dense.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1222400Z copying torch\include\ATen\ops\_to_dense_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1229187Z copying torch\include\ATen\ops\_to_dense_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1236147Z copying torch\include\ATen\ops\_to_dense_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1242804Z copying torch\include\ATen\ops\_to_sparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1249427Z copying torch\include\ATen\ops\_to_sparse_bsc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1256674Z copying torch\include\ATen\ops\_to_sparse_bsc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1263380Z copying torch\include\ATen\ops\_to_sparse_bsc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1270254Z copying torch\include\ATen\ops\_to_sparse_bsc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1277175Z copying torch\include\ATen\ops\_to_sparse_bsc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1284020Z copying torch\include\ATen\ops\_to_sparse_bsc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1290762Z copying torch\include\ATen\ops\_to_sparse_bsr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1297893Z copying torch\include\ATen\ops\_to_sparse_bsr_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1306245Z copying torch\include\ATen\ops\_to_sparse_bsr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1313058Z copying torch\include\ATen\ops\_to_sparse_bsr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1319773Z copying torch\include\ATen\ops\_to_sparse_bsr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1326492Z copying torch\include\ATen\ops\_to_sparse_bsr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1333494Z copying torch\include\ATen\ops\_to_sparse_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1340288Z copying torch\include\ATen\ops\_to_sparse_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1347511Z copying torch\include\ATen\ops\_to_sparse_csc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1355062Z copying torch\include\ATen\ops\_to_sparse_csc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1361741Z copying torch\include\ATen\ops\_to_sparse_csc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1383781Z copying torch\include\ATen\ops\_to_sparse_csc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1391551Z copying torch\include\ATen\ops\_to_sparse_csc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1398634Z copying torch\include\ATen\ops\_to_sparse_csc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1405386Z copying torch\include\ATen\ops\_to_sparse_csr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1412639Z copying torch\include\ATen\ops\_to_sparse_csr_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1419683Z copying torch\include\ATen\ops\_to_sparse_csr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1426680Z copying torch\include\ATen\ops\_to_sparse_csr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1433569Z copying torch\include\ATen\ops\_to_sparse_csr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1440306Z copying torch\include\ATen\ops\_to_sparse_csr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1447250Z copying torch\include\ATen\ops\_to_sparse_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1454430Z copying torch\include\ATen\ops\_to_sparse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1461975Z copying torch\include\ATen\ops\_to_sparse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1469017Z copying torch\include\ATen\ops\_to_sparse_semi_structured.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1476244Z copying torch\include\ATen\ops\_to_sparse_semi_structured_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1483358Z copying torch\include\ATen\ops\_to_sparse_semi_structured_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1490134Z copying torch\include\ATen\ops\_to_sparse_semi_structured_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1498335Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1505712Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1513707Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1521589Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1528974Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1536192Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1543583Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1551149Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1558322Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1565728Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1572680Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1579897Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1587060Z copying torch\include\ATen\ops\_trilinear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1594230Z copying torch\include\ATen\ops\_trilinear_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1601366Z copying torch\include\ATen\ops\_trilinear_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1608321Z copying torch\include\ATen\ops\_trilinear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1615373Z copying torch\include\ATen\ops\_trilinear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1622789Z copying torch\include\ATen\ops\_triton_multi_head_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1631376Z copying torch\include\ATen\ops\_triton_multi_head_attention_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1638281Z copying torch\include\ATen\ops\_triton_multi_head_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1645183Z copying torch\include\ATen\ops\_triton_multi_head_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1652700Z copying torch\include\ATen\ops\_triton_multi_head_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1660027Z copying torch\include\ATen\ops\_triton_scaled_dot_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1667389Z copying torch\include\ATen\ops\_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1674579Z copying torch\include\ATen\ops\_triton_scaled_dot_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1681392Z copying torch\include\ATen\ops\_triton_scaled_dot_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1688567Z copying torch\include\ATen\ops\_triton_scaled_dot_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1696163Z copying torch\include\ATen\ops\_unique.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1702559Z copying torch\include\ATen\ops\_unique2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1709045Z copying torch\include\ATen\ops\_unique2_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1715823Z copying torch\include\ATen\ops\_unique2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1723049Z copying torch\include\ATen\ops\_unique2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1730105Z copying torch\include\ATen\ops\_unique2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1736948Z copying torch\include\ATen\ops\_unique2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1743894Z copying torch\include\ATen\ops\_unique_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1751164Z copying torch\include\ATen\ops\_unique_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1757916Z copying torch\include\ATen\ops\_unique_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1764805Z copying torch\include\ATen\ops\_unique_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1771777Z copying torch\include\ATen\ops\_unique_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1778595Z copying torch\include\ATen\ops\_unpack_dual.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1786269Z copying torch\include\ATen\ops\_unpack_dual_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1792766Z copying torch\include\ATen\ops\_unpack_dual_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1799963Z copying torch\include\ATen\ops\_unpack_dual_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1807348Z copying torch\include\ATen\ops\_unsafe_index.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1814380Z copying torch\include\ATen\ops\_unsafe_index_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1821237Z copying torch\include\ATen\ops\_unsafe_index_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1827722Z copying torch\include\ATen\ops\_unsafe_index_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1834762Z copying torch\include\ATen\ops\_unsafe_index_put.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1842374Z copying torch\include\ATen\ops\_unsafe_index_put_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1849074Z copying torch\include\ATen\ops\_unsafe_index_put_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1855934Z copying torch\include\ATen\ops\_unsafe_index_put_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1862616Z copying torch\include\ATen\ops\_unsafe_masked_index.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1870563Z copying torch\include\ATen\ops\_unsafe_masked_index_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1877658Z copying torch\include\ATen\ops\_unsafe_masked_index_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1884339Z copying torch\include\ATen\ops\_unsafe_masked_index_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1891653Z copying torch\include\ATen\ops\_unsafe_masked_index_put_accumulate.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1899295Z copying torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1906565Z copying torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1913499Z copying torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1920074Z copying torch\include\ATen\ops\_unsafe_view.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1978704Z copying torch\include\ATen\ops\_unsafe_view_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1985760Z copying torch\include\ATen\ops\_unsafe_view_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1992710Z copying torch\include\ATen\ops\_unsafe_view_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.1999808Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2007061Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2029579Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2036505Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2043660Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2050827Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2058278Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2065704Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2073002Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2081470Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2088852Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2096357Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2103275Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2110200Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2117307Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2124299Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2131891Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2139531Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2146582Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2159408Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2166497Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2174567Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2181843Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2189150Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2200824Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2208389Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2215958Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2223842Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2230782Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2242786Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2249573Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2257228Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2264280Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2271502Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2283088Z copying torch\include\ATen\ops\_upsample_nearest_exact1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2290201Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2298118Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2305607Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2313430Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2320682Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2328195Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2335379Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2342507Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2350297Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2357809Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2364777Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2371888Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2378918Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2386816Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2393980Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2400682Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2407748Z copying torch\include\ATen\ops\_upsample_nearest_exact2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2415049Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2422400Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2429696Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2436996Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2444275Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2451568Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2458736Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2466235Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2474597Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2481994Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2489192Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2496529Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2503747Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2510753Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2517666Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2524839Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2532732Z copying torch\include\ATen\ops\_upsample_nearest_exact3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2539944Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2547933Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2555143Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2562486Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2569350Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2576885Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2584739Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2591830Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2599351Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2606859Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2619426Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2626479Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2634663Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2642494Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2649746Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2657111Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2664360Z copying torch\include\ATen\ops\_use_cudnn_ctc_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2677765Z copying torch\include\ATen\ops\_use_cudnn_ctc_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2684616Z copying torch\include\ATen\ops\_use_cudnn_ctc_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2691319Z copying torch\include\ATen\ops\_use_cudnn_ctc_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2698338Z copying torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2705837Z copying torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2713245Z copying torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2720146Z copying torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2727438Z copying torch\include\ATen\ops\_validate_compressed_sparse_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2741842Z copying torch\include\ATen\ops\_validate_compressed_sparse_indices_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2749034Z copying torch\include\ATen\ops\_validate_compressed_sparse_indices_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2762807Z copying torch\include\ATen\ops\_validate_compressed_sparse_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2763811Z copying torch\include\ATen\ops\_validate_compressed_sparse_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2770779Z copying torch\include\ATen\ops\_validate_sparse_bsc_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2778251Z copying torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2785751Z copying torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2792854Z copying torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2799908Z copying torch\include\ATen\ops\_validate_sparse_bsr_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2807087Z copying torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2818825Z copying torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2825761Z copying torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2832868Z copying torch\include\ATen\ops\_validate_sparse_compressed_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2840198Z copying torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2847650Z copying torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2855098Z copying torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2861884Z copying torch\include\ATen\ops\_validate_sparse_coo_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2869046Z copying torch\include\ATen\ops\_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2876144Z copying torch\include\ATen\ops\_validate_sparse_coo_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2883089Z copying torch\include\ATen\ops\_validate_sparse_coo_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2890775Z copying torch\include\ATen\ops\_validate_sparse_csc_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2898789Z copying torch\include\ATen\ops\_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2906060Z copying torch\include\ATen\ops\_validate_sparse_csc_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2913139Z copying torch\include\ATen\ops\_validate_sparse_csc_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2920868Z copying torch\include\ATen\ops\_validate_sparse_csr_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2928430Z copying torch\include\ATen\ops\_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2935765Z copying torch\include\ATen\ops\_validate_sparse_csr_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2942907Z copying torch\include\ATen\ops\_validate_sparse_csr_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2950330Z copying torch\include\ATen\ops\_values.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2956704Z copying torch\include\ATen\ops\_values_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2964240Z copying torch\include\ATen\ops\_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2971445Z copying torch\include\ATen\ops\_values_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2979126Z copying torch\include\ATen\ops\_values_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2986056Z copying torch\include\ATen\ops\_values_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.2993403Z copying torch\include\ATen\ops\_values_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3000179Z copying torch\include\ATen\ops\_values_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3007146Z copying torch\include\ATen\ops\_version.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3014558Z copying torch\include\ATen\ops\_version_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3021456Z copying torch\include\ATen\ops\_version_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3028059Z copying torch\include\ATen\ops\_version_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3040460Z copying torch\include\ATen\ops\_weight_int4pack_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3074901Z copying torch\include\ATen\ops\_weight_int4pack_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3082848Z copying torch\include\ATen\ops\_weight_int4pack_mm_for_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3090012Z copying torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3097324Z copying torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3109460Z copying torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3116431Z copying torch\include\ATen\ops\_weight_int4pack_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3123814Z copying torch\include\ATen\ops\_weight_int4pack_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3130878Z copying torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3138673Z 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-06-01T21:26:13.3146474Z 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-06-01T21:26:13.3153724Z copying torch\include\ATen\ops\_weight_int8pack_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3161588Z copying torch\include\ATen\ops\_weight_int8pack_mm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3168935Z copying torch\include\ATen\ops\_weight_int8pack_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3175940Z copying torch\include\ATen\ops\_weight_int8pack_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3182864Z copying torch\include\ATen\ops\_weight_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3190402Z copying torch\include\ATen\ops\_weight_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3197476Z copying torch\include\ATen\ops\_weight_norm_differentiable_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3205176Z copying torch\include\ATen\ops\_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3212199Z copying torch\include\ATen\ops\_weight_norm_differentiable_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3220011Z copying torch\include\ATen\ops\_weight_norm_differentiable_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3226990Z copying torch\include\ATen\ops\_weight_norm_interface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3234663Z copying torch\include\ATen\ops\_weight_norm_interface_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3242167Z copying torch\include\ATen\ops\_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3249744Z copying torch\include\ATen\ops\_weight_norm_interface_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3261833Z copying torch\include\ATen\ops\_weight_norm_interface_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3268621Z copying torch\include\ATen\ops\_weight_norm_interface_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3276229Z copying torch\include\ATen\ops\_weight_norm_interface_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3283725Z copying torch\include\ATen\ops\_weight_norm_interface_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3291063Z copying torch\include\ATen\ops\_weight_norm_interface_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3303130Z copying torch\include\ATen\ops\_weight_norm_interface_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3310472Z copying torch\include\ATen\ops\_weight_norm_interface_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3317572Z copying torch\include\ATen\ops\_weight_norm_interface_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3325211Z copying torch\include\ATen\ops\_weight_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3331936Z copying torch\include\ATen\ops\_weight_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3339316Z copying torch\include\ATen\ops\_wrapped_linear_prepack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3346670Z copying torch\include\ATen\ops\_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3354351Z copying torch\include\ATen\ops\_wrapped_linear_prepack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3361415Z copying torch\include\ATen\ops\_wrapped_linear_prepack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3369076Z copying torch\include\ATen\ops\_wrapped_quantized_linear_prepacked.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3381649Z copying torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3388673Z copying torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3395783Z copying torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-06-01T21:26:13.3419895Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\quantized 2025-06-01T21:26:13.3423032Z copying torch\include\ATen\quantized\QTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\quantized 2025-06-01T21:26:13.3429736Z copying torch\include\ATen\quantized\Quantizer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\quantized 2025-06-01T21:26:13.3435545Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-06-01T21:26:13.3438682Z copying torch\include\ATen\xpu\CachingHostAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-06-01T21:26:13.3445457Z copying torch\include\ATen\xpu\PinnedMemoryAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-06-01T21:26:13.3451411Z copying torch\include\ATen\xpu\XPUContext.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-06-01T21:26:13.3457704Z copying torch\include\ATen\xpu\XPUDevice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-06-01T21:26:13.3472680Z copying torch\include\ATen\xpu\XPUEvent.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-06-01T21:26:13.3479253Z copying torch\include\ATen\xpu\XPUGeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-06-01T21:26:13.3485067Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\detail 2025-06-01T21:26:13.3487963Z copying torch\include\ATen\xpu\detail\XPUHooks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\detail 2025-06-01T21:26:13.3493765Z creating build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3498400Z copying torch\include\c10\core\alignment.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3505176Z copying torch\include\c10\core\Allocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3511992Z copying torch\include\c10\core\AutogradState.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3518487Z copying torch\include\c10\core\Backend.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3530018Z copying torch\include\c10\core\CachingDeviceAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3536615Z copying torch\include\c10\core\CompileTimeFunctionPointer.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3547840Z copying torch\include\c10\core\ConstantSymNodeImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3554225Z copying torch\include\c10\core\Contiguity.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3560603Z copying torch\include\c10\core\CopyBytes.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3567483Z copying torch\include\c10\core\CPUAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3574010Z copying torch\include\c10\core\DefaultDtype.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3585631Z copying torch\include\c10\core\DefaultTensorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3592195Z copying torch\include\c10\core\Device.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3599103Z copying torch\include\c10\core\DeviceArray.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3605500Z copying torch\include\c10\core\DeviceGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3611788Z copying torch\include\c10\core\DeviceType.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3618445Z copying torch\include\c10\core\DispatchKey.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3625637Z copying torch\include\c10\core\DispatchKeySet.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3633648Z copying torch\include\c10\core\DynamicCast.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3640039Z copying torch\include\c10\core\Event.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3651351Z copying torch\include\c10\core\GeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3658044Z copying torch\include\c10\core\GradMode.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3664439Z copying torch\include\c10\core\InferenceMode.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3670651Z copying torch\include\c10\core\Layout.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3676790Z copying torch\include\c10\core\MemoryFormat.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3683159Z copying torch\include\c10\core\OptionalRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3689747Z copying torch\include\c10\core\PyHandleCache.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3696419Z copying torch\include\c10\core\QEngine.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3702577Z copying torch\include\c10\core\QScheme.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3708962Z copying torch\include\c10\core\RefcountedDeleter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3715245Z copying torch\include\c10\core\SafePyObject.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3722159Z copying torch\include\c10\core\Scalar.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3728493Z copying torch\include\c10\core\ScalarType.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3739776Z copying torch\include\c10\core\ScalarTypeToTypeMeta.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3746137Z copying torch\include\c10\core\Storage.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3752431Z copying torch\include\c10\core\StorageImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3765930Z copying torch\include\c10\core\Stream.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3772244Z copying torch\include\c10\core\StreamGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3779050Z copying torch\include\c10\core\SymbolicShapeMeta.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3785910Z copying torch\include\c10\core\SymBool.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3792301Z copying torch\include\c10\core\SymFloat.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3803093Z copying torch\include\c10\core\SymInt.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3809472Z copying torch\include\c10\core\SymIntArrayRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3815991Z copying torch\include\c10\core\SymNodeImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3822645Z copying torch\include\c10\core\TensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3835432Z copying torch\include\c10\core\TensorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3847798Z copying torch\include\c10\core\thread_pool.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3854299Z copying torch\include\c10\core\UndefinedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3861030Z copying torch\include\c10\core\WrapDimMinimal.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-06-01T21:26:13.3866682Z creating build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-06-01T21:26:13.3869599Z copying torch\include\c10\core\impl\alloc_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-06-01T21:26:13.3875732Z copying torch\include\c10\core\impl\COW.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-06-01T21:26:13.3887968Z copying torch\include\c10\core\impl\COWDeleter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-06-01T21:26:13.3894590Z copying torch\include\c10\core\impl\DeviceGuardImplInterface.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-06-01T21:26:13.3905229Z copying torch\include\c10\core\impl\FakeGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-06-01T21:26:13.3911889Z copying torch\include\c10\core\impl\GPUTrace.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-06-01T21:26:13.3918350Z copying torch\include\c10\core\impl\HermeticPyObjectTLS.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-06-01T21:26:13.3925252Z copying torch\include\c10\core\impl\InlineDeviceGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-06-01T21:26:13.3932549Z copying torch\include\c10\core\impl\InlineEvent.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-06-01T21:26:13.3939095Z copying torch\include\c10\core\impl\InlineStreamGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-06-01T21:26:13.3945567Z copying torch\include\c10\core\impl\LocalDispatchKeySet.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-06-01T21:26:13.3952678Z copying torch\include\c10\core\impl\PyInterpreter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-06-01T21:26:13.3959348Z copying torch\include\c10\core\impl\PyObjectSlot.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-06-01T21:26:13.3966374Z copying torch\include\c10\core\impl\PythonDispatcherTLS.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-06-01T21:26:13.3973732Z copying torch\include\c10\core\impl\SizesAndStrides.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-06-01T21:26:13.3980534Z copying torch\include\c10\core\impl\TorchDispatchModeTLS.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-06-01T21:26:13.3987833Z copying torch\include\c10\core\impl\VirtualGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-06-01T21:26:13.3993906Z creating build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-06-01T21:26:13.3996917Z copying torch\include\c10\cuda\CUDAAlgorithm.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-06-01T21:26:13.4003382Z copying torch\include\c10\cuda\CUDAAllocatorConfig.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-06-01T21:26:13.4010581Z copying torch\include\c10\cuda\CUDACachingAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-06-01T21:26:13.4017539Z copying torch\include\c10\cuda\CUDADeviceAssertion.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-06-01T21:26:13.4029209Z copying torch\include\c10\cuda\CUDADeviceAssertionHost.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-06-01T21:26:13.4036107Z copying torch\include\c10\cuda\CUDAException.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-06-01T21:26:13.4042417Z copying torch\include\c10\cuda\CUDAFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-06-01T21:26:13.4048946Z copying torch\include\c10\cuda\CUDAGraphsC10Utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-06-01T21:26:13.4055576Z copying torch\include\c10\cuda\CUDAGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-06-01T21:26:13.4062621Z copying torch\include\c10\cuda\CUDAMacros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-06-01T21:26:13.4069068Z copying torch\include\c10\cuda\CUDAMathCompat.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-06-01T21:26:13.4075557Z copying torch\include\c10\cuda\CUDAMiscFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-06-01T21:26:13.4082244Z copying torch\include\c10\cuda\CUDAStream.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-06-01T21:26:13.4088773Z copying torch\include\c10\cuda\driver_api.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-06-01T21:26:13.4095089Z creating build\lib.win-amd64-cpython-39\torch\include\c10\cuda\impl 2025-06-01T21:26:13.4098216Z copying torch\include\c10\cuda\impl\CUDAGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda\impl 2025-06-01T21:26:13.4104808Z copying torch\include\c10\cuda\impl\CUDATest.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda\impl 2025-06-01T21:26:13.4111105Z copying torch\include\c10\cuda\impl\cuda_cmake_macros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda\impl 2025-06-01T21:26:13.4116500Z creating build\lib.win-amd64-cpython-39\torch\include\c10\macros 2025-06-01T21:26:13.4119805Z copying torch\include\c10\macros\cmake_macros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\macros 2025-06-01T21:26:13.4131084Z copying torch\include\c10\macros\Export.h -> build\lib.win-amd64-cpython-39\torch\include\c10\macros 2025-06-01T21:26:13.4137576Z copying torch\include\c10\macros\Macros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\macros 2025-06-01T21:26:13.4144015Z creating build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-06-01T21:26:13.4147019Z copying torch\include\c10\metal\atomic.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-06-01T21:26:13.4153478Z copying torch\include\c10\metal\common.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-06-01T21:26:13.4159750Z copying torch\include\c10\metal\indexing.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-06-01T21:26:13.4166722Z copying torch\include\c10\metal\random.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-06-01T21:26:13.4173697Z copying torch\include\c10\metal\reduction_utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-06-01T21:26:13.4180022Z copying torch\include\c10\metal\special_math.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-06-01T21:26:13.4197471Z copying torch\include\c10\metal\utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-06-01T21:26:13.4203598Z creating build\lib.win-amd64-cpython-39\torch\include\c10\mobile 2025-06-01T21:26:13.4206493Z copying torch\include\c10\mobile\CPUCachingAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\mobile 2025-06-01T21:26:13.4213355Z copying torch\include\c10\mobile\CPUProfilingAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\mobile 2025-06-01T21:26:13.4219560Z creating build\lib.win-amd64-cpython-39\torch\include\c10\test\util 2025-06-01T21:26:13.4223652Z copying torch\include\c10\test\util\complex_math_test_common.h -> build\lib.win-amd64-cpython-39\torch\include\c10\test\util 2025-06-01T21:26:13.4230557Z copying torch\include\c10\test\util\complex_test_common.h -> build\lib.win-amd64-cpython-39\torch\include\c10\test\util 2025-06-01T21:26:13.4237378Z copying torch\include\c10\test\util\Macros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\test\util 2025-06-01T21:26:13.4247744Z creating build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4250568Z copying torch\include\c10\util\AbortHandler.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4256916Z copying torch\include\c10\util\accumulate.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4263693Z copying torch\include\c10\util\AlignOf.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4270128Z copying torch\include\c10\util\ApproximateClock.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4281636Z copying torch\include\c10\util\Array.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4288218Z copying torch\include\c10\util\ArrayRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4294670Z copying torch\include\c10\util\Backtrace.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4301444Z copying torch\include\c10\util\BFloat16-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4308204Z copying torch\include\c10\util\BFloat16-math.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4320182Z copying torch\include\c10\util\BFloat16.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4326339Z copying torch\include\c10\util\bits.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4332678Z copying torch\include\c10\util\Bitset.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4339130Z copying torch\include\c10\util\bit_cast.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4345965Z copying torch\include\c10\util\C++17.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4352451Z copying torch\include\c10\util\CallOnce.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4359118Z copying torch\include\c10\util\complex.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4366233Z copying torch\include\c10\util\complex_math.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4373061Z copying torch\include\c10\util\complex_utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4379515Z copying torch\include\c10\util\ConstexprCrc.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4386023Z copying torch\include\c10\util\copysign.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4392630Z copying torch\include\c10\util\DeadlockDetection.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4419987Z copying torch\include\c10\util\Deprecated.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4426718Z copying torch\include\c10\util\DimVector.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4433801Z copying torch\include\c10\util\DynamicCounter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4446257Z copying torch\include\c10\util\Enumerate.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4452434Z copying torch\include\c10\util\env.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4459190Z copying torch\include\c10\util\error.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4465857Z copying torch\include\c10\util\Exception.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4473353Z copying torch\include\c10\util\ExclusivelyOwned.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4485759Z copying torch\include\c10\util\ExclusivelyOwnedTensorTraits.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4492220Z copying torch\include\c10\util\FbcodeMaps.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4498739Z copying torch\include\c10\util\Flags.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4505376Z copying torch\include\c10\util\flat_hash_map.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4513136Z copying torch\include\c10\util\Float4_e2m1fn_x2.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4520074Z copying torch\include\c10\util\Float8_e4m3fn-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4531499Z copying torch\include\c10\util\Float8_e4m3fn.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4538587Z copying torch\include\c10\util\Float8_e4m3fnuz-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4545330Z copying torch\include\c10\util\Float8_e4m3fnuz.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4552283Z copying torch\include\c10\util\Float8_e5m2-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4563163Z copying torch\include\c10\util\Float8_e5m2.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4570438Z copying torch\include\c10\util\Float8_e5m2fnuz-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4577444Z copying torch\include\c10\util\Float8_e5m2fnuz.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4584853Z copying torch\include\c10\util\Float8_e8m0fnu-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4591459Z copying torch\include\c10\util\Float8_e8m0fnu.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4603700Z copying torch\include\c10\util\Float8_fnuz_cvt.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4611073Z copying torch\include\c10\util\floating_point_utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4617704Z copying torch\include\c10\util\FunctionRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4624447Z copying torch\include\c10\util\Gauge.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4631152Z copying torch\include\c10\util\generic_math.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4638414Z copying torch\include\c10\util\Half-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4646006Z copying torch\include\c10\util\Half.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4653935Z copying torch\include\c10\util\hash.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4661109Z copying torch\include\c10\util\IdWrapper.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4667743Z copying torch\include\c10\util\int128.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4678896Z copying torch\include\c10\util\IntrusiveList.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4685316Z copying torch\include\c10\util\intrusive_ptr.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4692629Z copying torch\include\c10\util\irange.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4703522Z copying torch\include\c10\util\Lazy.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4709903Z copying torch\include\c10\util\LeftRight.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4716849Z copying torch\include\c10\util\llvmMathExtras.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4724049Z copying torch\include\c10\util\Load.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4731601Z copying torch\include\c10\util\Logging.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4738494Z copying torch\include\c10\util\logging_is_google_glog.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4745278Z copying torch\include\c10\util\logging_is_not_google_glog.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4752201Z copying torch\include\c10\util\MathConstants.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4759008Z copying torch\include\c10\util\MaybeOwned.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4765825Z copying torch\include\c10\util\Metaprogramming.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4772525Z copying torch\include\c10\util\NetworkFlow.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4788538Z copying torch\include\c10\util\numa.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4799305Z copying torch\include\c10\util\Optional.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4806010Z copying torch\include\c10\util\OptionalArrayRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4812672Z copying torch\include\c10\util\order_preserving_flat_hash_map.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4820658Z copying torch\include\c10\util\overflows.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4827024Z copying torch\include\c10\util\overloaded.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4838861Z copying torch\include\c10\util\ParallelGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4845701Z copying torch\include\c10\util\python_stub.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4852231Z copying torch\include\c10\util\qint32.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4858581Z copying torch\include\c10\util\qint8.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4864603Z copying torch\include\c10\util\quint2x4.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4870614Z copying torch\include\c10\util\quint4x2.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4881697Z copying torch\include\c10\util\quint8.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4887910Z copying torch\include\c10\util\Registry.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4894888Z copying torch\include\c10\util\safe_numerics.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4901546Z copying torch\include\c10\util\ScopeExit.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4908254Z copying torch\include\c10\util\Semaphore.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4914849Z copying torch\include\c10\util\signal_handler.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4921757Z copying torch\include\c10\util\SmallBuffer.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4928096Z copying torch\include\c10\util\SmallVector.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4936661Z copying torch\include\c10\util\sparse_bitset.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4945487Z copying torch\include\c10\util\ssize.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4951926Z copying torch\include\c10\util\static_tracepoint.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4958763Z copying torch\include\c10\util\static_tracepoint_elfx86.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4970101Z copying torch\include\c10\util\strides.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4976435Z copying torch\include\c10\util\StringUtil.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4983197Z copying torch\include\c10\util\string_utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4989602Z copying torch\include\c10\util\string_view.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.4997422Z copying torch\include\c10\util\strong_type.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.5004591Z copying torch\include\c10\util\Synchronized.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.5011652Z copying torch\include\c10\util\tempfile.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.5022988Z copying torch\include\c10\util\ThreadLocal.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.5029692Z copying torch\include\c10\util\ThreadLocalDebugInfo.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.5037496Z copying torch\include\c10\util\thread_name.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.5044110Z copying torch\include\c10\util\Type.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.5050391Z copying torch\include\c10\util\TypeCast.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.5057079Z copying torch\include\c10\util\typeid.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.5064451Z copying torch\include\c10\util\TypeIndex.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.5071214Z copying torch\include\c10\util\TypeList.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.5078927Z copying torch\include\c10\util\TypeSafeSignMath.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.5085526Z copying torch\include\c10\util\TypeTraits.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.5092311Z copying torch\include\c10\util\Unicode.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.5098835Z copying torch\include\c10\util\UniqueVoidPtr.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.5106590Z copying torch\include\c10\util\Unroll.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.5112569Z copying torch\include\c10\util\WaitCounter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.5119229Z copying torch\include\c10\util\WaitCounterDynamicBackend.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.5126149Z copying torch\include\c10\util\win32-headers.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-06-01T21:26:13.5137421Z creating build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-06-01T21:26:13.5145369Z copying torch\include\c10\xpu\XPUCachingAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-06-01T21:26:13.5151935Z copying torch\include\c10\xpu\XPUDeviceProp.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-06-01T21:26:13.5159402Z copying torch\include\c10\xpu\XPUException.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-06-01T21:26:13.5172216Z copying torch\include\c10\xpu\XPUFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-06-01T21:26:13.5183279Z copying torch\include\c10\xpu\XPUMacros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-06-01T21:26:13.5189660Z copying torch\include\c10\xpu\XPUStream.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-06-01T21:26:13.5195295Z creating build\lib.win-amd64-cpython-39\torch\include\c10\xpu\impl 2025-06-01T21:26:13.5198321Z copying torch\include\c10\xpu\impl\XPUGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu\impl 2025-06-01T21:26:13.5209264Z creating build\lib.win-amd64-cpython-39\torch\include\c10\xpu\test\impl 2025-06-01T21:26:13.5213370Z copying torch\include\c10\xpu\test\impl\XPUTest.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu\test\impl 2025-06-01T21:26:13.5218732Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\core 2025-06-01T21:26:13.5222968Z copying torch\include\caffe2\core\common.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\core 2025-06-01T21:26:13.5229361Z copying torch\include\caffe2\core\macros.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\core 2025-06-01T21:26:13.5235377Z copying torch\include\caffe2\core\timer.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\core 2025-06-01T21:26:13.5240907Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels 2025-06-01T21:26:13.5244125Z copying torch\include\caffe2\perfkernels\batch_box_cox_vec.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels 2025-06-01T21:26:13.5250471Z copying torch\include\caffe2\perfkernels\common.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels 2025-06-01T21:26:13.5272872Z copying torch\include\caffe2\perfkernels\embedding_lookup_idx.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels 2025-06-01T21:26:13.5278233Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-06-01T21:26:13.5281519Z copying torch\include\caffe2\serialize\crc_alt.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-06-01T21:26:13.5289049Z copying torch\include\caffe2\serialize\file_adapter.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-06-01T21:26:13.5295829Z copying torch\include\caffe2\serialize\inline_container.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-06-01T21:26:13.5302541Z copying torch\include\caffe2\serialize\in_memory_adapter.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-06-01T21:26:13.5312786Z copying torch\include\caffe2\serialize\istream_adapter.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-06-01T21:26:13.5319345Z copying torch\include\caffe2\serialize\read_adapter_interface.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-06-01T21:26:13.5325435Z copying torch\include\caffe2\serialize\versions.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-06-01T21:26:13.5330841Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\utils 2025-06-01T21:26:13.5333817Z copying torch\include\caffe2\utils\fixed_divisor.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils 2025-06-01T21:26:13.5340122Z copying torch\include\caffe2\utils\proto_wrap.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils 2025-06-01T21:26:13.5346720Z copying torch\include\caffe2\utils\string_utils.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils 2025-06-01T21:26:13.5352691Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-06-01T21:26:13.5361781Z copying torch\include\caffe2\utils\threadpool\pthreadpool-cpp.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-06-01T21:26:13.5411290Z copying torch\include\caffe2\utils\threadpool\pthreadpool.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-06-01T21:26:13.5418280Z copying torch\include\caffe2\utils\threadpool\ThreadPool.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-06-01T21:26:13.5430679Z copying torch\include\caffe2\utils\threadpool\ThreadPoolCommon.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-06-01T21:26:13.5436992Z copying torch\include\caffe2\utils\threadpool\thread_pool_guard.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-06-01T21:26:13.5443554Z copying torch\include\caffe2\utils\threadpool\WorkersPool.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-06-01T21:26:13.5449594Z creating build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:26:13.5452328Z copying torch\include\fbgemm\ConvUtils.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:26:13.5459049Z copying torch\include\fbgemm\Fbgemm.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:26:13.5465938Z copying torch\include\fbgemm\FbgemmBuild.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:26:13.5472214Z copying torch\include\fbgemm\FbgemmConvert.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:26:13.5483583Z copying torch\include\fbgemm\FbgemmEmbedding.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:26:13.5490423Z copying torch\include\fbgemm\FbgemmFP16.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:26:13.5497057Z copying torch\include\fbgemm\FbgemmFP32.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:26:13.5503366Z copying torch\include\fbgemm\FbgemmFPCommon.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:26:13.5510051Z copying torch\include\fbgemm\FbgemmI64.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:26:13.5516553Z copying torch\include\fbgemm\FbgemmI8DepthwiseAvx2.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:26:13.5523240Z copying torch\include\fbgemm\FbgemmI8DirectconvAvx2.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:26:13.5529808Z copying torch\include\fbgemm\FbgemmI8Spmdm.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:26:13.5536409Z copying torch\include\fbgemm\FbgemmPackMatrixB.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:26:13.5547486Z copying torch\include\fbgemm\FbgemmSparse.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:26:13.5553942Z copying torch\include\fbgemm\FloatConversion.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:26:13.5560402Z copying torch\include\fbgemm\OutputProcessing-inl.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:26:13.5567042Z copying torch\include\fbgemm\PackingTraits-inl.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:26:13.5574293Z copying torch\include\fbgemm\QuantUtils.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:26:13.5587630Z copying torch\include\fbgemm\QuantUtilsAvx2.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:26:13.5598571Z copying torch\include\fbgemm\QuantUtilsAvx512.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:26:13.5605022Z copying torch\include\fbgemm\QuantUtilsNeon.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:26:13.5611293Z copying torch\include\fbgemm\SimdUtils.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:26:13.5617879Z copying torch\include\fbgemm\spmmUtils.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:26:13.5624639Z copying torch\include\fbgemm\spmmUtilsAvx2.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:26:13.5630936Z copying torch\include\fbgemm\Types.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:26:13.5637303Z copying torch\include\fbgemm\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:26:13.5643730Z copying torch\include\fbgemm\UtilsAvx2.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-06-01T21:26:13.5649969Z creating build\lib.win-amd64-cpython-39\torch\include\fmt 2025-06-01T21:26:13.5652809Z copying torch\include\fmt\args.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-06-01T21:26:13.5660334Z copying torch\include\fmt\base.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-06-01T21:26:13.5668495Z copying torch\include\fmt\chrono.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-06-01T21:26:13.5676393Z copying torch\include\fmt\color.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-06-01T21:26:13.5683454Z copying torch\include\fmt\compile.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-06-01T21:26:13.5690976Z copying torch\include\fmt\core.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-06-01T21:26:13.5699645Z copying torch\include\fmt\format-inl.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-06-01T21:26:13.5743703Z copying torch\include\fmt\format.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-06-01T21:26:13.5755105Z copying torch\include\fmt\os.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-06-01T21:26:13.5762311Z copying torch\include\fmt\ostream.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-06-01T21:26:13.5768914Z copying torch\include\fmt\printf.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-06-01T21:26:13.5775740Z copying torch\include\fmt\ranges.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-06-01T21:26:13.5782459Z copying torch\include\fmt\std.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-06-01T21:26:13.5789195Z copying torch\include\fmt\xchar.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-06-01T21:26:13.5794881Z creating build\lib.win-amd64-cpython-39\torch\include\fp16 2025-06-01T21:26:13.5798034Z copying torch\include\fp16\bitcasts.h -> build\lib.win-amd64-cpython-39\torch\include\fp16 2025-06-01T21:26:13.5804345Z copying torch\include\fp16\fp16.h -> build\lib.win-amd64-cpython-39\torch\include\fp16 2025-06-01T21:26:13.5810980Z copying torch\include\fp16\psimd.h -> build\lib.win-amd64-cpython-39\torch\include\fp16 2025-06-01T21:26:13.5817439Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.5821030Z copying torch\include\google\protobuf\any.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.5827683Z copying torch\include\google\protobuf\any.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.5834595Z copying torch\include\google\protobuf\api.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.5842258Z copying torch\include\google\protobuf\arena.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.5848794Z copying torch\include\google\protobuf\arenastring.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.5861729Z copying torch\include\google\protobuf\arena_impl.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.5868187Z copying torch\include\google\protobuf\descriptor.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.5875739Z copying torch\include\google\protobuf\descriptor.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.5888240Z copying torch\include\google\protobuf\descriptor_database.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.5895237Z copying torch\include\google\protobuf\duration.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.5901923Z copying torch\include\google\protobuf\dynamic_message.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.5908453Z copying torch\include\google\protobuf\empty.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.5914887Z copying torch\include\google\protobuf\extension_set.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.5922471Z copying torch\include\google\protobuf\extension_set_inl.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.5928850Z copying torch\include\google\protobuf\field_mask.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.5935588Z copying torch\include\google\protobuf\generated_enum_reflection.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.5942340Z copying torch\include\google\protobuf\generated_enum_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.5949004Z copying torch\include\google\protobuf\generated_message_reflection.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.5955754Z copying torch\include\google\protobuf\generated_message_table_driven.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.5963139Z copying torch\include\google\protobuf\generated_message_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.5974855Z copying torch\include\google\protobuf\has_bits.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.5981635Z copying torch\include\google\protobuf\implicit_weak_message.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.5988202Z copying torch\include\google\protobuf\inlined_string_field.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.5994555Z copying torch\include\google\protobuf\map.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.6006224Z copying torch\include\google\protobuf\map_entry.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.6013065Z copying torch\include\google\protobuf\map_entry_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.6020268Z copying torch\include\google\protobuf\map_field.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.6032004Z copying torch\include\google\protobuf\map_field_inl.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.6039005Z copying torch\include\google\protobuf\map_field_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.6045863Z copying torch\include\google\protobuf\map_type_handler.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.6057990Z copying torch\include\google\protobuf\message.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.6065674Z copying torch\include\google\protobuf\message_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.6073116Z copying torch\include\google\protobuf\metadata.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.6079438Z copying torch\include\google\protobuf\metadata_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.6086213Z copying torch\include\google\protobuf\parse_context.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.6093178Z copying torch\include\google\protobuf\port.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.6100144Z copying torch\include\google\protobuf\reflection.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.6113146Z copying torch\include\google\protobuf\reflection_ops.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.6119863Z copying torch\include\google\protobuf\repeated_field.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.6133913Z copying torch\include\google\protobuf\service.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.6140471Z copying torch\include\google\protobuf\source_context.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.6147029Z copying torch\include\google\protobuf\struct.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.6160127Z copying torch\include\google\protobuf\text_format.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.6167862Z copying torch\include\google\protobuf\timestamp.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.6175164Z copying torch\include\google\protobuf\type.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.6183497Z copying torch\include\google\protobuf\unknown_field_set.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.6190468Z copying torch\include\google\protobuf\wire_format.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.6198018Z copying torch\include\google\protobuf\wire_format_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.6205829Z copying torch\include\google\protobuf\wrappers.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-06-01T21:26:13.6212358Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-06-01T21:26:13.6215704Z copying torch\include\google\protobuf\compiler\code_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-06-01T21:26:13.6222928Z copying torch\include\google\protobuf\compiler\command_line_interface.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-06-01T21:26:13.6230157Z copying torch\include\google\protobuf\compiler\importer.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-06-01T21:26:13.6236905Z copying torch\include\google\protobuf\compiler\parser.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-06-01T21:26:13.6243678Z copying torch\include\google\protobuf\compiler\plugin.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-06-01T21:26:13.6255824Z copying torch\include\google\protobuf\compiler\plugin.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-06-01T21:26:13.6262863Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\cpp 2025-06-01T21:26:13.6266169Z copying torch\include\google\protobuf\compiler\cpp\cpp_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\cpp 2025-06-01T21:26:13.6271950Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\csharp 2025-06-01T21:26:13.6274998Z copying torch\include\google\protobuf\compiler\csharp\csharp_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\csharp 2025-06-01T21:26:13.6281736Z copying torch\include\google\protobuf\compiler\csharp\csharp_names.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\csharp 2025-06-01T21:26:13.6287016Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\java 2025-06-01T21:26:13.6289996Z copying torch\include\google\protobuf\compiler\java\java_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\java 2025-06-01T21:26:13.6296685Z copying torch\include\google\protobuf\compiler\java\java_names.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\java 2025-06-01T21:26:13.6302025Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\js 2025-06-01T21:26:13.6304940Z copying torch\include\google\protobuf\compiler\js\js_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\js 2025-06-01T21:26:13.6311502Z 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-06-01T21:26:13.6317098Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\objectivec 2025-06-01T21:26:13.6320365Z copying torch\include\google\protobuf\compiler\objectivec\objectivec_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\objectivec 2025-06-01T21:26:13.6326642Z copying torch\include\google\protobuf\compiler\objectivec\objectivec_helpers.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\objectivec 2025-06-01T21:26:13.6332175Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\php 2025-06-01T21:26:13.6335239Z copying torch\include\google\protobuf\compiler\php\php_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\php 2025-06-01T21:26:13.6340747Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\python 2025-06-01T21:26:13.6343739Z copying torch\include\google\protobuf\compiler\python\python_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\python 2025-06-01T21:26:13.6349455Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\ruby 2025-06-01T21:26:13.6352423Z copying torch\include\google\protobuf\compiler\ruby\ruby_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\ruby 2025-06-01T21:26:13.6358081Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-06-01T21:26:13.6360876Z copying torch\include\google\protobuf\io\coded_stream.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-06-01T21:26:13.6368318Z copying torch\include\google\protobuf\io\gzip_stream.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-06-01T21:26:13.6374949Z copying torch\include\google\protobuf\io\io_win32.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-06-01T21:26:13.6381496Z copying torch\include\google\protobuf\io\printer.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-06-01T21:26:13.6388363Z copying torch\include\google\protobuf\io\strtod.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-06-01T21:26:13.6399909Z copying torch\include\google\protobuf\io\tokenizer.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-06-01T21:26:13.6406919Z copying torch\include\google\protobuf\io\zero_copy_stream.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-06-01T21:26:13.6413699Z copying torch\include\google\protobuf\io\zero_copy_stream_impl.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-06-01T21:26:13.6420210Z copying torch\include\google\protobuf\io\zero_copy_stream_impl_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-06-01T21:26:13.6426283Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-06-01T21:26:13.6429356Z copying torch\include\google\protobuf\stubs\bytestream.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-06-01T21:26:13.6436024Z copying torch\include\google\protobuf\stubs\callback.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-06-01T21:26:13.6442741Z copying torch\include\google\protobuf\stubs\casts.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-06-01T21:26:13.6448887Z copying torch\include\google\protobuf\stubs\common.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-06-01T21:26:13.6455647Z copying torch\include\google\protobuf\stubs\fastmem.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-06-01T21:26:13.6462241Z copying torch\include\google\protobuf\stubs\hash.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-06-01T21:26:13.6474235Z copying torch\include\google\protobuf\stubs\logging.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-06-01T21:26:13.6481449Z copying torch\include\google\protobuf\stubs\macros.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-06-01T21:26:13.6488011Z copying torch\include\google\protobuf\stubs\map_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-06-01T21:26:13.6495113Z copying torch\include\google\protobuf\stubs\mutex.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-06-01T21:26:13.6501972Z copying torch\include\google\protobuf\stubs\once.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-06-01T21:26:13.6508295Z copying torch\include\google\protobuf\stubs\platform_macros.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-06-01T21:26:13.6515467Z copying torch\include\google\protobuf\stubs\port.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-06-01T21:26:13.6522062Z copying torch\include\google\protobuf\stubs\status.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-06-01T21:26:13.6528881Z copying torch\include\google\protobuf\stubs\stl_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-06-01T21:26:13.6535613Z copying torch\include\google\protobuf\stubs\stringpiece.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-06-01T21:26:13.6568385Z copying torch\include\google\protobuf\stubs\strutil.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-06-01T21:26:13.6576115Z copying torch\include\google\protobuf\stubs\template_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-06-01T21:26:13.6581739Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-06-01T21:26:13.6584956Z copying torch\include\google\protobuf\util\delimited_message_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-06-01T21:26:13.6591440Z copying torch\include\google\protobuf\util\field_comparator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-06-01T21:26:13.6598530Z copying torch\include\google\protobuf\util\field_mask_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-06-01T21:26:13.6610303Z copying torch\include\google\protobuf\util\json_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-06-01T21:26:13.6617106Z copying torch\include\google\protobuf\util\message_differencer.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-06-01T21:26:13.6624397Z copying torch\include\google\protobuf\util\time_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-06-01T21:26:13.6631146Z copying torch\include\google\protobuf\util\type_resolver.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-06-01T21:26:13.6637745Z copying torch\include\google\protobuf\util\type_resolver_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-06-01T21:26:13.6643337Z creating build\lib.win-amd64-cpython-39\torch\include\kineto 2025-06-01T21:26:13.6646295Z copying torch\include\kineto\AbstractConfig.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-06-01T21:26:13.6652857Z copying torch\include\kineto\ActivityProfilerInterface.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-06-01T21:26:13.6659779Z copying torch\include\kineto\ActivityTraceInterface.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-06-01T21:26:13.6671763Z copying torch\include\kineto\ActivityType.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-06-01T21:26:13.6678740Z copying torch\include\kineto\ClientInterface.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-06-01T21:26:13.6690505Z copying torch\include\kineto\Config.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-06-01T21:26:13.6697610Z copying torch\include\kineto\GenericTraceActivity.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-06-01T21:26:13.6703993Z copying torch\include\kineto\IActivityProfiler.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-06-01T21:26:13.6711492Z copying torch\include\kineto\ILoggerObserver.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-06-01T21:26:13.6718037Z copying torch\include\kineto\ITraceActivity.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-06-01T21:26:13.6729775Z copying torch\include\kineto\libkineto.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-06-01T21:26:13.6736646Z copying torch\include\kineto\LoggingAPI.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-06-01T21:26:13.6742536Z copying torch\include\kineto\output_base.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-06-01T21:26:13.6749033Z copying torch\include\kineto\ThreadUtil.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-06-01T21:26:13.6755598Z copying torch\include\kineto\time_since_epoch.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-06-01T21:26:13.6761609Z copying torch\include\kineto\TraceSpan.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-06-01T21:26:13.6768249Z creating build\lib.win-amd64-cpython-39\torch\include\legacy 2025-06-01T21:26:13.6770833Z copying torch\include\legacy\ittnotify.h -> build\lib.win-amd64-cpython-39\torch\include\legacy 2025-06-01T21:26:13.6777252Z creating build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2 2025-06-01T21:26:13.6781210Z copying torch\include\mimalloc-2.2\mimalloc-new-delete.h -> build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2 2025-06-01T21:26:13.6788575Z copying torch\include\mimalloc-2.2\mimalloc-override.h -> build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2 2025-06-01T21:26:13.6795037Z copying torch\include\mimalloc-2.2\mimalloc-stats.h -> build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2 2025-06-01T21:26:13.6805545Z copying torch\include\mimalloc-2.2\mimalloc.h -> build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2 2025-06-01T21:26:13.6811652Z creating build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:26:13.6816163Z copying torch\include\oneapi\dnnl\dnnl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:26:13.6825093Z copying torch\include\oneapi\dnnl\dnnl_common.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:26:13.6832008Z copying torch\include\oneapi\dnnl\dnnl_common_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:26:13.6838555Z copying torch\include\oneapi\dnnl\dnnl_config.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:26:13.6850318Z copying torch\include\oneapi\dnnl\dnnl_debug.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:26:13.6856924Z copying torch\include\oneapi\dnnl\dnnl_graph.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:26:13.6864537Z copying torch\include\oneapi\dnnl\dnnl_graph_ocl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:26:13.6871129Z copying torch\include\oneapi\dnnl\dnnl_graph_sycl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:26:13.6877393Z copying torch\include\oneapi\dnnl\dnnl_graph_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:26:13.6884420Z copying torch\include\oneapi\dnnl\dnnl_ocl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:26:13.6891091Z copying torch\include\oneapi\dnnl\dnnl_ocl_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:26:13.6898470Z copying torch\include\oneapi\dnnl\dnnl_sycl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:26:13.6905220Z copying torch\include\oneapi\dnnl\dnnl_sycl_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:26:13.6911712Z copying torch\include\oneapi\dnnl\dnnl_threadpool.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:26:13.6918690Z copying torch\include\oneapi\dnnl\dnnl_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:26:13.6926604Z copying torch\include\oneapi\dnnl\dnnl_ukernel.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:26:13.6933419Z copying torch\include\oneapi\dnnl\dnnl_ukernel_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:26:13.6940035Z copying torch\include\oneapi\dnnl\dnnl_version.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:26:13.6946673Z copying torch\include\oneapi\dnnl\dnnl_version_hash.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:26:13.6952766Z creating build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:26:13.6955709Z copying torch\include\pybind11\attr.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:26:13.6962553Z copying torch\include\pybind11\buffer_info.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:26:13.6968792Z copying torch\include\pybind11\cast.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:26:13.6976528Z copying torch\include\pybind11\chrono.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:26:13.6982799Z copying torch\include\pybind11\common.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:26:13.6988884Z copying torch\include\pybind11\complex.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:26:13.7001189Z copying torch\include\pybind11\eigen.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:26:13.7006956Z copying torch\include\pybind11\embed.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:26:13.7013169Z copying torch\include\pybind11\eval.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:26:13.7019693Z copying torch\include\pybind11\functional.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:26:13.7026145Z copying torch\include\pybind11\gil.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:26:13.7032692Z copying torch\include\pybind11\gil_safe_call_once.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:26:13.7043891Z copying torch\include\pybind11\iostream.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:26:13.7050266Z copying torch\include\pybind11\numpy.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:26:13.7058000Z copying torch\include\pybind11\operators.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:26:13.7065065Z copying torch\include\pybind11\options.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:26:13.7071204Z copying torch\include\pybind11\pybind11.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:26:13.7079902Z copying torch\include\pybind11\pytypes.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:26:13.7088433Z copying torch\include\pybind11\stl.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:26:13.7094973Z copying torch\include\pybind11\stl_bind.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:26:13.7101866Z copying torch\include\pybind11\type_caster_pyobject_ptr.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:26:13.7108756Z copying torch\include\pybind11\typing.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-06-01T21:26:13.7114326Z creating build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-06-01T21:26:13.7117154Z copying torch\include\pybind11\detail\class.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-06-01T21:26:13.7123913Z copying torch\include\pybind11\detail\common.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-06-01T21:26:13.7132024Z copying torch\include\pybind11\detail\cpp_conduit.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-06-01T21:26:13.7138167Z copying torch\include\pybind11\detail\descr.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-06-01T21:26:13.7165286Z copying torch\include\pybind11\detail\exception_translation.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-06-01T21:26:13.7177262Z copying torch\include\pybind11\detail\init.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-06-01T21:26:13.7184592Z copying torch\include\pybind11\detail\internals.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-06-01T21:26:13.7191918Z copying torch\include\pybind11\detail\typeid.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-06-01T21:26:13.7198531Z copying torch\include\pybind11\detail\type_caster_base.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-06-01T21:26:13.7205755Z copying torch\include\pybind11\detail\value_and_holder.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-06-01T21:26:13.7211436Z creating build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen 2025-06-01T21:26:13.7214575Z copying torch\include\pybind11\eigen\common.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen 2025-06-01T21:26:13.7220690Z copying torch\include\pybind11\eigen\matrix.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen 2025-06-01T21:26:13.7227713Z copying torch\include\pybind11\eigen\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen 2025-06-01T21:26:13.7234341Z creating build\lib.win-amd64-cpython-39\torch\include\pybind11\stl 2025-06-01T21:26:13.7237318Z copying torch\include\pybind11\stl\filesystem.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\stl 2025-06-01T21:26:13.7243427Z creating build\lib.win-amd64-cpython-39\torch\include\torch 2025-06-01T21:26:13.7246238Z copying torch\include\torch\custom_class.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-06-01T21:26:13.7252975Z copying torch\include\torch\custom_class_detail.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-06-01T21:26:13.7259465Z copying torch\include\torch\extension.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-06-01T21:26:13.7265355Z copying torch\include\torch\library.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-06-01T21:26:13.7279115Z copying torch\include\torch\script.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-06-01T21:26:13.7284138Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:26:13.7286938Z copying torch\include\torch\csrc\copy_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:26:13.7293775Z copying torch\include\torch\csrc\CudaIPCTypes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:26:13.7300023Z copying torch\include\torch\csrc\DataLoader.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:26:13.7306028Z copying torch\include\torch\csrc\Device.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:26:13.7317995Z copying torch\include\torch\csrc\DeviceAccelerator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:26:13.7324218Z copying torch\include\torch\csrc\Dtype.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:26:13.7330835Z copying torch\include\torch\csrc\DynamicTypes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:26:13.7337440Z copying torch\include\torch\csrc\Event.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:26:13.7343610Z copying torch\include\torch\csrc\Exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:26:13.7351043Z copying torch\include\torch\csrc\Export.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:26:13.7358296Z copying torch\include\torch\csrc\Generator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:26:13.7364134Z copying torch\include\torch\csrc\itt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:26:13.7370495Z copying torch\include\torch\csrc\itt_wrapper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:26:13.7376676Z copying torch\include\torch\csrc\Layout.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:26:13.7383066Z copying torch\include\torch\csrc\MemoryFormat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:26:13.7394010Z copying torch\include\torch\csrc\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:26:13.7400363Z copying torch\include\torch\csrc\PyInterpreter.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:26:13.7407181Z copying torch\include\torch\csrc\python_dimname.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:26:13.7413980Z copying torch\include\torch\csrc\python_headers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:26:13.7421088Z copying torch\include\torch\csrc\QScheme.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:26:13.7427423Z copying torch\include\torch\csrc\serialization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:26:13.7433976Z copying torch\include\torch\csrc\Size.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:26:13.7440105Z copying torch\include\torch\csrc\Storage.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:26:13.7446471Z copying torch\include\torch\csrc\StorageMethods.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:26:13.7458076Z copying torch\include\torch\csrc\StorageSharing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:26:13.7464415Z copying torch\include\torch\csrc\Stream.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:26:13.7470437Z copying torch\include\torch\csrc\THConcat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:26:13.7476408Z copying torch\include\torch\csrc\THP.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:26:13.7483022Z copying torch\include\torch\csrc\TypeInfo.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:26:13.7489493Z copying torch\include\torch\csrc\Types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:26:13.7495930Z copying torch\include\torch\csrc\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-06-01T21:26:13.7501898Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:26:13.7507583Z copying torch\include\torch\csrc\api\include\torch\all.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:26:13.7514391Z copying torch\include\torch\csrc\api\include\torch\arg.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:26:13.7521029Z copying torch\include\torch\csrc\api\include\torch\autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:26:13.7527157Z copying torch\include\torch\csrc\api\include\torch\cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:26:13.7533758Z copying torch\include\torch\csrc\api\include\torch\data.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:26:13.7539697Z copying torch\include\torch\csrc\api\include\torch\enum.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:26:13.7546356Z 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-06-01T21:26:13.7557516Z copying torch\include\torch\csrc\api\include\torch\fft.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:26:13.7564531Z copying torch\include\torch\csrc\api\include\torch\imethod.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:26:13.7571041Z copying torch\include\torch\csrc\api\include\torch\jit.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:26:13.7578244Z copying torch\include\torch\csrc\api\include\torch\mps.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:26:13.7584865Z copying torch\include\torch\csrc\api\include\torch\nested.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:26:13.7591283Z copying torch\include\torch\csrc\api\include\torch\nn.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:26:13.7597658Z copying torch\include\torch\csrc\api\include\torch\optim.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:26:13.7604966Z 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-06-01T21:26:13.7612596Z copying torch\include\torch\csrc\api\include\torch\python.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:26:13.7619834Z copying torch\include\torch\csrc\api\include\torch\serialize.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:26:13.7627276Z copying torch\include\torch\csrc\api\include\torch\sparse.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:26:13.7633845Z copying torch\include\torch\csrc\api\include\torch\special.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:26:13.7641568Z copying torch\include\torch\csrc\api\include\torch\torch.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:26:13.7647891Z copying torch\include\torch\csrc\api\include\torch\types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:26:13.7655206Z copying torch\include\torch\csrc\api\include\torch\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:26:13.7661696Z copying torch\include\torch\csrc\api\include\torch\version.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:26:13.7668392Z copying torch\include\torch\csrc\api\include\torch\xpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-06-01T21:26:13.7674148Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data 2025-06-01T21:26:13.7677385Z 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-06-01T21:26:13.7684250Z 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-06-01T21:26:13.7697064Z 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-06-01T21:26:13.7703890Z 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-06-01T21:26:13.7711508Z 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-06-01T21:26:13.7724103Z 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-06-01T21:26:13.7730733Z 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-06-01T21:26:13.7737514Z 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-06-01T21:26:13.7743391Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\dataloader 2025-06-01T21:26:13.7746658Z 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-06-01T21:26:13.7753491Z 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-06-01T21:26:13.7760285Z 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-06-01T21:26:13.7766184Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets 2025-06-01T21:26:13.7769279Z 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-06-01T21:26:13.7776096Z 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-06-01T21:26:13.7783506Z 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-06-01T21:26:13.7790132Z 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-06-01T21:26:13.7796917Z 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-06-01T21:26:13.7803799Z 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-06-01T21:26:13.7810397Z 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-06-01T21:26:13.7821028Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\detail 2025-06-01T21:26:13.7824558Z 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-06-01T21:26:13.7831431Z 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-06-01T21:26:13.7838114Z 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-06-01T21:26:13.7843785Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers 2025-06-01T21:26:13.7847196Z 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-06-01T21:26:13.7854305Z 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-06-01T21:26:13.7860658Z 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-06-01T21:26:13.7867299Z 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-06-01T21:26:13.7874022Z 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-06-01T21:26:13.7885713Z 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-06-01T21:26:13.7892308Z 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-06-01T21:26:13.7898879Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\transforms 2025-06-01T21:26:13.7901978Z 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-06-01T21:26:13.7908665Z 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-06-01T21:26:13.7915502Z 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-06-01T21:26:13.7930035Z 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-06-01T21:26:13.7936498Z 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-06-01T21:26:13.7942069Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\detail 2025-06-01T21:26:13.7945309Z 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-06-01T21:26:13.7952857Z 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-06-01T21:26:13.7958552Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn 2025-06-01T21:26:13.7961693Z 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-06-01T21:26:13.7968469Z 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-06-01T21:26:13.7975033Z 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-06-01T21:26:13.7982406Z 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-06-01T21:26:13.7990198Z 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-06-01T21:26:13.8218517Z 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-06-01T21:26:13.8224921Z 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-06-01T21:26:13.8231724Z 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-06-01T21:26:13.8238758Z 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-06-01T21:26:13.8244067Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-06-01T21:26:13.8247481Z 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-06-01T21:26:13.8255555Z 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-06-01T21:26:13.8262526Z 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-06-01T21:26:13.8269458Z 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-06-01T21:26:13.8369275Z 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-06-01T21:26:13.8376274Z 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-06-01T21:26:13.8383889Z 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-06-01T21:26:13.8390958Z 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-06-01T21:26:13.8398063Z 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-06-01T21:26:13.8404735Z 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-06-01T21:26:13.8412303Z 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-06-01T21:26:13.8420133Z 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-06-01T21:26:13.8426589Z 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-06-01T21:26:13.8433403Z 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-06-01T21:26:13.8441919Z 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-06-01T21:26:13.8448114Z 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-06-01T21:26:13.8454164Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-06-01T21:26:13.8457216Z 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-06-01T21:26:13.8465276Z 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-06-01T21:26:13.8471687Z 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-06-01T21:26:13.8478623Z 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-06-01T21:26:13.8485395Z 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-06-01T21:26:13.8497483Z 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-06-01T21:26:13.8505073Z 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-06-01T21:26:13.8511262Z 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-06-01T21:26:13.8517915Z 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-06-01T21:26:13.8524916Z 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-06-01T21:26:13.8531699Z 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-06-01T21:26:13.8539662Z 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-06-01T21:26:13.8546120Z 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-06-01T21:26:13.8553690Z 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-06-01T21:26:13.8560821Z 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-06-01T21:26:13.8568539Z 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-06-01T21:26:13.8574939Z 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-06-01T21:26:13.8582936Z 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-06-01T21:26:13.8589548Z 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-06-01T21:26:13.8596740Z 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-06-01T21:26:13.8604203Z 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-06-01T21:26:13.8610407Z 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-06-01T21:26:13.8617087Z 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-06-01T21:26:13.8623663Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-06-01T21:26:13.8626894Z 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-06-01T21:26:13.8633846Z 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-06-01T21:26:13.8640586Z 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-06-01T21:26:13.8647347Z 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-06-01T21:26:13.8658940Z 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-06-01T21:26:13.8665822Z 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-06-01T21:26:13.8680252Z 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-06-01T21:26:13.8681996Z 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-06-01T21:26:13.8688923Z 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-06-01T21:26:13.8695748Z 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-06-01T21:26:13.8701305Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-06-01T21:26:13.8704804Z 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-06-01T21:26:13.8711802Z 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-06-01T21:26:13.8718488Z 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-06-01T21:26:13.8725083Z 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-06-01T21:26:13.8731972Z 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-06-01T21:26:13.8743144Z 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-06-01T21:26:13.8749856Z 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-06-01T21:26:13.8762375Z 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-06-01T21:26:13.8768764Z 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-06-01T21:26:13.8775909Z 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-06-01T21:26:13.8783881Z 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-06-01T21:26:13.8789862Z 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-06-01T21:26:13.8796678Z 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-06-01T21:26:13.8803440Z 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-06-01T21:26:13.8810626Z 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-06-01T21:26:13.8818153Z 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-06-01T21:26:13.8824758Z 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-06-01T21:26:13.8831766Z 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-06-01T21:26:13.8838588Z 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-06-01T21:26:13.8845462Z 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-06-01T21:26:13.8852117Z 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-06-01T21:26:13.8858000Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\parallel 2025-06-01T21:26:13.8861250Z 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-06-01T21:26:13.8867565Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\utils 2025-06-01T21:26:13.8870938Z 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-06-01T21:26:13.8877757Z 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-06-01T21:26:13.8884331Z 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-06-01T21:26:13.8890355Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim 2025-06-01T21:26:13.8893624Z 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-06-01T21:26:13.8900263Z 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-06-01T21:26:13.8906655Z 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-06-01T21:26:13.8913794Z 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-06-01T21:26:13.8925965Z 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-06-01T21:26:13.8932577Z 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-06-01T21:26:13.8943865Z 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-06-01T21:26:13.8950773Z 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-06-01T21:26:13.8956411Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\schedulers 2025-06-01T21:26:13.8959866Z 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-06-01T21:26:13.8972214Z 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-06-01T21:26:13.8978852Z 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-06-01T21:26:13.8990597Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\python 2025-06-01T21:26:13.8993624Z 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-06-01T21:26:13.8999241Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\serialize 2025-06-01T21:26:13.9002423Z 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-06-01T21:26:13.9010080Z 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-06-01T21:26:13.9016142Z 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-06-01T21:26:13.9023506Z 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-06-01T21:26:13.9033495Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9036387Z copying torch\include\torch\csrc\autograd\anomaly_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9044051Z copying torch\include\torch\csrc\autograd\autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9050270Z copying torch\include\torch\csrc\autograd\autograd_not_implemented_fallback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9061595Z copying torch\include\torch\csrc\autograd\cpp_hook.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9073130Z copying torch\include\torch\csrc\autograd\custom_function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9080044Z copying torch\include\torch\csrc\autograd\edge.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9086249Z copying torch\include\torch\csrc\autograd\engine.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9092633Z copying torch\include\torch\csrc\autograd\forward_grad.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9103978Z copying torch\include\torch\csrc\autograd\function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9110838Z copying torch\include\torch\csrc\autograd\FunctionsManual.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9147360Z copying torch\include\torch\csrc\autograd\function_hook.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9153870Z copying torch\include\torch\csrc\autograd\grad_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9160089Z copying torch\include\torch\csrc\autograd\graph_task.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9166996Z copying torch\include\torch\csrc\autograd\InferenceMode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9173371Z copying torch\include\torch\csrc\autograd\input_buffer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9180185Z copying torch\include\torch\csrc\autograd\input_metadata.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9186498Z copying torch\include\torch\csrc\autograd\jit_decomp_interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9193232Z copying torch\include\torch\csrc\autograd\profiler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9199652Z copying torch\include\torch\csrc\autograd\profiler_kineto.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9206669Z copying torch\include\torch\csrc\autograd\profiler_legacy.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9213822Z copying torch\include\torch\csrc\autograd\profiler_python.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9220287Z copying torch\include\torch\csrc\autograd\python_anomaly_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9232327Z copying torch\include\torch\csrc\autograd\python_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9238495Z copying torch\include\torch\csrc\autograd\python_cpp_function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9245003Z copying torch\include\torch\csrc\autograd\python_engine.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9251580Z copying torch\include\torch\csrc\autograd\python_enum_tag.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9275623Z copying torch\include\torch\csrc\autograd\python_fft_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9281907Z copying torch\include\torch\csrc\autograd\python_function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9288498Z copying torch\include\torch\csrc\autograd\python_hook.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9295304Z copying torch\include\torch\csrc\autograd\python_legacy_variable.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9301920Z copying torch\include\torch\csrc\autograd\python_linalg_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9312931Z copying torch\include\torch\csrc\autograd\python_nested_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9319226Z copying torch\include\torch\csrc\autograd\python_nn_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9325778Z copying torch\include\torch\csrc\autograd\python_saved_variable_hooks.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9332327Z copying torch\include\torch\csrc\autograd\python_sparse_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9338741Z copying torch\include\torch\csrc\autograd\python_special_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9345120Z copying torch\include\torch\csrc\autograd\python_torch_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9351548Z copying torch\include\torch\csrc\autograd\python_variable.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9358002Z copying torch\include\torch\csrc\autograd\python_variable_indexing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9364424Z copying torch\include\torch\csrc\autograd\record_function_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9371088Z copying torch\include\torch\csrc\autograd\saved_variable.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9377804Z copying torch\include\torch\csrc\autograd\saved_variable_hooks.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9388677Z copying torch\include\torch\csrc\autograd\symbolic.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9394521Z copying torch\include\torch\csrc\autograd\variable.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9401690Z copying torch\include\torch\csrc\autograd\VariableTypeUtils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9408135Z copying torch\include\torch\csrc\autograd\variable_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-06-01T21:26:13.9413958Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-06-01T21:26:13.9417007Z copying torch\include\torch\csrc\autograd\functions\accumulate_grad.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-06-01T21:26:13.9423381Z copying torch\include\torch\csrc\autograd\functions\basic_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-06-01T21:26:13.9429663Z copying torch\include\torch\csrc\autograd\functions\comm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-06-01T21:26:13.9436045Z copying torch\include\torch\csrc\autograd\functions\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-06-01T21:26:13.9446722Z copying torch\include\torch\csrc\autograd\functions\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-06-01T21:26:13.9452943Z copying torch\include\torch\csrc\autograd\functions\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-06-01T21:26:13.9458446Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-06-01T21:26:13.9461468Z copying torch\include\torch\csrc\autograd\generated\Functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-06-01T21:26:13.9473369Z copying torch\include\torch\csrc\autograd\generated\python_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-06-01T21:26:13.9479890Z copying torch\include\torch\csrc\autograd\generated\python_return_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-06-01T21:26:13.9490717Z copying torch\include\torch\csrc\autograd\generated\VariableType.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-06-01T21:26:13.9497388Z copying torch\include\torch\csrc\autograd\generated\variable_factories.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-06-01T21:26:13.9505464Z copying torch\include\torch\csrc\autograd\generated\ViewFuncs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-06-01T21:26:13.9511962Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-06-01T21:26:13.9514846Z copying torch\include\torch\csrc\autograd\utils\error_messages.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-06-01T21:26:13.9522121Z copying torch\include\torch\csrc\autograd\utils\grad_layout_contract.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-06-01T21:26:13.9533833Z copying torch\include\torch\csrc\autograd\utils\lambda_post_hook.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-06-01T21:26:13.9539805Z copying torch\include\torch\csrc\autograd\utils\python_arg_parsing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-06-01T21:26:13.9550989Z copying torch\include\torch\csrc\autograd\utils\warnings.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-06-01T21:26:13.9556883Z copying torch\include\torch\csrc\autograd\utils\wrap_outputs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-06-01T21:26:13.9562259Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cpu 2025-06-01T21:26:13.9565100Z copying torch\include\torch\csrc\cpu\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cpu 2025-06-01T21:26:13.9575902Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-06-01T21:26:13.9579538Z copying torch\include\torch\csrc\cuda\comm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-06-01T21:26:13.9585628Z copying torch\include\torch\csrc\cuda\CUDAPluggableAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-06-01T21:26:13.9591885Z copying torch\include\torch\csrc\cuda\device_set.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-06-01T21:26:13.9598303Z copying torch\include\torch\csrc\cuda\Event.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-06-01T21:26:13.9604366Z copying torch\include\torch\csrc\cuda\GdsFile.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-06-01T21:26:13.9615312Z copying torch\include\torch\csrc\cuda\memory_snapshot.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-06-01T21:26:13.9621709Z copying torch\include\torch\csrc\cuda\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-06-01T21:26:13.9627701Z copying torch\include\torch\csrc\cuda\nccl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-06-01T21:26:13.9633959Z copying torch\include\torch\csrc\cuda\python_comm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-06-01T21:26:13.9640115Z copying torch\include\torch\csrc\cuda\python_nccl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-06-01T21:26:13.9646650Z copying torch\include\torch\csrc\cuda\Stream.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-06-01T21:26:13.9652606Z copying torch\include\torch\csrc\cuda\THCP.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-06-01T21:26:13.9659834Z copying torch\include\torch\csrc\cuda\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-06-01T21:26:13.9664386Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd 2025-06-01T21:26:13.9668977Z copying torch\include\torch\csrc\distributed\autograd\autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd 2025-06-01T21:26:13.9675261Z copying torch\include\torch\csrc\distributed\autograd\python_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd 2025-06-01T21:26:13.9681699Z copying torch\include\torch\csrc\distributed\autograd\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd 2025-06-01T21:26:13.9687763Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\context 2025-06-01T21:26:13.9690405Z copying torch\include\torch\csrc\distributed\autograd\context\container.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\context 2025-06-01T21:26:13.9705919Z copying torch\include\torch\csrc\distributed\autograd\context\context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\context 2025-06-01T21:26:13.9712174Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\engine 2025-06-01T21:26:13.9716449Z 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-06-01T21:26:13.9722242Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\functions 2025-06-01T21:26:13.9731345Z 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-06-01T21:26:13.9738501Z 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-06-01T21:26:13.9743530Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-06-01T21:26:13.9746590Z 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-06-01T21:26:13.9753486Z 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-06-01T21:26:13.9760317Z 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-06-01T21:26:13.9771204Z 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-06-01T21:26:13.9777684Z 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-06-01T21:26:13.9783998Z 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-06-01T21:26:13.9790361Z 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-06-01T21:26:13.9796722Z 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-06-01T21:26:13.9803812Z 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-06-01T21:26:13.9810336Z 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-06-01T21:26:13.9816066Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:13.9818773Z copying torch\include\torch\csrc\distributed\c10d\c10d.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:13.9824839Z copying torch\include\torch\csrc\distributed\c10d\CUDASymmetricMemory-inl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:13.9831440Z copying torch\include\torch\csrc\distributed\c10d\debug.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:13.9837992Z copying torch\include\torch\csrc\distributed\c10d\error.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:13.9844118Z copying torch\include\torch\csrc\distributed\c10d\exception.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:13.9861540Z copying torch\include\torch\csrc\distributed\c10d\logging.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:13.9867769Z copying torch\include\torch\csrc\distributed\c10d\python_comm_hook.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:13.9874054Z copying torch\include\torch\csrc\distributed\c10d\socket.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:13.9880700Z copying torch\include\torch\csrc\distributed\c10d\socket_fmt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:13.9887670Z copying torch\include\torch\csrc\distributed\c10d\TraceUtils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:13.9892827Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\quantization 2025-06-01T21:26:13.9896047Z copying torch\include\torch\csrc\distributed\c10d\quantization\quantization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\quantization 2025-06-01T21:26:13.9902180Z 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-06-01T21:26:13.9907979Z 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-06-01T21:26:13.9925463Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:26:13.9928271Z copying torch\include\torch\csrc\distributed\rpc\agent_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:26:13.9934386Z copying torch\include\torch\csrc\distributed\rpc\message.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:26:13.9940805Z copying torch\include\torch\csrc\distributed\rpc\python_call.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:26:13.9947075Z copying torch\include\torch\csrc\distributed\rpc\python_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:26:13.9962933Z copying torch\include\torch\csrc\distributed\rpc\python_remote_call.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:26:13.9969160Z copying torch\include\torch\csrc\distributed\rpc\python_resp.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:26:13.9975909Z copying torch\include\torch\csrc\distributed\rpc\python_rpc_handler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:26:13.9982247Z copying torch\include\torch\csrc\distributed\rpc\py_rref.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:26:13.9988380Z copying torch\include\torch\csrc\distributed\rpc\request_callback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:26:13.9995420Z copying torch\include\torch\csrc\distributed\rpc\request_callback_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:26:14.0002855Z 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-06-01T21:26:14.0008845Z copying torch\include\torch\csrc\distributed\rpc\rpc.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:26:14.0020245Z copying torch\include\torch\csrc\distributed\rpc\rpc_agent.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:26:14.0021266Z copying torch\include\torch\csrc\distributed\rpc\rpc_command_base.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:26:14.0027206Z copying torch\include\torch\csrc\distributed\rpc\rref_context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:26:14.0033569Z copying torch\include\torch\csrc\distributed\rpc\rref_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:26:14.0040353Z copying torch\include\torch\csrc\distributed\rpc\rref_proto.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:26:14.0046552Z copying torch\include\torch\csrc\distributed\rpc\script_call.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:26:14.0052955Z copying torch\include\torch\csrc\distributed\rpc\script_remote_call.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:26:14.0059574Z copying torch\include\torch\csrc\distributed\rpc\script_resp.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:26:14.0072551Z copying torch\include\torch\csrc\distributed\rpc\tensorpipe_agent.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:26:14.0084276Z copying torch\include\torch\csrc\distributed\rpc\tensorpipe_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:26:14.0086603Z copying torch\include\torch\csrc\distributed\rpc\torchscript_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:26:14.0096479Z copying torch\include\torch\csrc\distributed\rpc\types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:26:14.0098787Z copying torch\include\torch\csrc\distributed\rpc\unpickled_python_call.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:26:14.0105444Z 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-06-01T21:26:14.0112302Z copying torch\include\torch\csrc\distributed\rpc\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:26:14.0117858Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\metrics 2025-06-01T21:26:14.0120953Z copying torch\include\torch\csrc\distributed\rpc\metrics\RpcMetricsHandler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\metrics 2025-06-01T21:26:14.0126749Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\profiler 2025-06-01T21:26:14.0129933Z 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-06-01T21:26:14.0136648Z 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-06-01T21:26:14.0142249Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\testing 2025-06-01T21:26:14.0151497Z 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-06-01T21:26:14.0156853Z copying torch\include\torch\csrc\distributed\rpc\testing\testing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\testing 2025-06-01T21:26:14.0162391Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-06-01T21:26:14.0165405Z copying torch\include\torch\csrc\dynamo\cache_entry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-06-01T21:26:14.0171694Z copying torch\include\torch\csrc\dynamo\compiled_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-06-01T21:26:14.0180232Z copying torch\include\torch\csrc\dynamo\cpp_shim.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-06-01T21:26:14.0186664Z copying torch\include\torch\csrc\dynamo\cpython_defs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-06-01T21:26:14.0199571Z copying torch\include\torch\csrc\dynamo\cpython_includes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-06-01T21:26:14.0206696Z copying torch\include\torch\csrc\dynamo\debug_macros.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-06-01T21:26:14.0216188Z copying torch\include\torch\csrc\dynamo\eval_frame.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-06-01T21:26:14.0239495Z copying torch\include\torch\csrc\dynamo\eval_frame_cpp.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-06-01T21:26:14.0240392Z copying torch\include\torch\csrc\dynamo\extra_state.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-06-01T21:26:14.0241365Z copying torch\include\torch\csrc\dynamo\framelocals_mapping.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-06-01T21:26:14.0247834Z copying torch\include\torch\csrc\dynamo\guards.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-06-01T21:26:14.0254093Z copying torch\include\torch\csrc\dynamo\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-06-01T21:26:14.0260271Z copying torch\include\torch\csrc\dynamo\python_compiled_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-06-01T21:26:14.0271222Z copying torch\include\torch\csrc\dynamo\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-06-01T21:26:14.0276512Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export 2025-06-01T21:26:14.0279720Z copying torch\include\torch\csrc\export\pt2_archive_constants.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export 2025-06-01T21:26:14.0285937Z copying torch\include\torch\csrc\export\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export 2025-06-01T21:26:14.0291231Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\functorch 2025-06-01T21:26:14.0294269Z copying torch\include\torch\csrc\functorch\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\functorch 2025-06-01T21:26:14.0299881Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\fx 2025-06-01T21:26:14.0302979Z copying torch\include\torch\csrc\fx\node.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\fx 2025-06-01T21:26:14.0308328Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor 2025-06-01T21:26:14.0311362Z copying torch\include\torch\csrc\inductor\array_ref_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor 2025-06-01T21:26:14.0317706Z copying torch\include\torch\csrc\inductor\cpp_prefix.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor 2025-06-01T21:26:14.0324625Z copying torch\include\torch\csrc\inductor\inductor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor 2025-06-01T21:26:14.0331005Z copying torch\include\torch\csrc\inductor\static_cuda_launcher.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor 2025-06-01T21:26:14.0342073Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_eager 2025-06-01T21:26:14.0345350Z 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-06-01T21:26:14.0352030Z 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-06-01T21:26:14.0357689Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-06-01T21:26:14.0365919Z 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-06-01T21:26:14.0372059Z copying torch\include\torch\csrc\inductor\aoti_include\common.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-06-01T21:26:14.0378390Z copying torch\include\torch\csrc\inductor\aoti_include\cpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-06-01T21:26:14.0384380Z copying torch\include\torch\csrc\inductor\aoti_include\cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-06-01T21:26:14.0390481Z copying torch\include\torch\csrc\inductor\aoti_include\mps.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-06-01T21:26:14.0407785Z copying torch\include\torch\csrc\inductor\aoti_include\xpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-06-01T21:26:14.0412872Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_package 2025-06-01T21:26:14.0416157Z 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-06-01T21:26:14.0422704Z copying torch\include\torch\csrc\inductor\aoti_package\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_package 2025-06-01T21:26:14.0428190Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner 2025-06-01T21:26:14.0431289Z 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-06-01T21:26:14.0438328Z 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-06-01T21:26:14.0449561Z 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-06-01T21:26:14.0462227Z 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-06-01T21:26:14.0468289Z 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-06-01T21:26:14.0475441Z copying torch\include\torch\csrc\inductor\aoti_runner\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner 2025-06-01T21:26:14.0480891Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-06-01T21:26:14.0483975Z 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-06-01T21:26:14.0494855Z 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-06-01T21:26:14.0501088Z 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-06-01T21:26:14.0512425Z copying torch\include\torch\csrc\inductor\aoti_runtime\interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-06-01T21:26:14.0519259Z 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-06-01T21:26:14.0525618Z copying torch\include\torch\csrc\inductor\aoti_runtime\model.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-06-01T21:26:14.0537430Z 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-06-01T21:26:14.0544414Z 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-06-01T21:26:14.0551246Z 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-06-01T21:26:14.0557964Z 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-06-01T21:26:14.0564440Z copying torch\include\torch\csrc\inductor\aoti_runtime\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-06-01T21:26:14.0570929Z 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-06-01T21:26:14.0577421Z 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-06-01T21:26:14.0583181Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch 2025-06-01T21:26:14.0586367Z 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-06-01T21:26:14.0592869Z 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-06-01T21:26:14.0599399Z 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-06-01T21:26:14.0612109Z 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-06-01T21:26:14.0624042Z copying torch\include\torch\csrc\inductor\aoti_torch\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch 2025-06-01T21:26:14.0629769Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c 2025-06-01T21:26:14.0633725Z 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-06-01T21:26:14.0640910Z 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-06-01T21:26:14.0647456Z 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-06-01T21:26:14.0653670Z 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-06-01T21:26:14.0659328Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-06-01T21:26:14.0662626Z 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-06-01T21:26:14.0674971Z 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-06-01T21:26:14.0682939Z 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-06-01T21:26:14.0696685Z 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-06-01T21:26:14.0702332Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-06-01T21:26:14.0705618Z 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-06-01T21:26:14.0712416Z copying torch\include\torch\csrc\inductor\cpp_wrapper\common.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-06-01T21:26:14.0718779Z copying torch\include\torch\csrc\inductor\cpp_wrapper\cpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-06-01T21:26:14.0724795Z copying torch\include\torch\csrc\inductor\cpp_wrapper\cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-06-01T21:26:14.0730692Z copying torch\include\torch\csrc\inductor\cpp_wrapper\mps.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-06-01T21:26:14.0741579Z copying torch\include\torch\csrc\inductor\cpp_wrapper\xpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-06-01T21:26:14.0747003Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-06-01T21:26:14.0750315Z 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-06-01T21:26:14.0761742Z 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-06-01T21:26:14.0767746Z 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-06-01T21:26:14.0773992Z 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-06-01T21:26:14.0778955Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\instruction_counter 2025-06-01T21:26:14.0782104Z copying torch\include\torch\csrc\instruction_counter\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\instruction_counter 2025-06-01T21:26:14.0787458Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit 2025-06-01T21:26:14.0790266Z copying torch\include\torch\csrc\jit\jit_log.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit 2025-06-01T21:26:14.0796497Z copying torch\include\torch\csrc\jit\jit_opt_limit.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit 2025-06-01T21:26:14.0802765Z copying torch\include\torch\csrc\jit\resource_guard.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit 2025-06-01T21:26:14.0807913Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-06-01T21:26:14.0810861Z copying torch\include\torch\csrc\jit\api\compilation_unit.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-06-01T21:26:14.0817341Z copying torch\include\torch\csrc\jit\api\function_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-06-01T21:26:14.0823543Z copying torch\include\torch\csrc\jit\api\method.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-06-01T21:26:14.0829936Z copying torch\include\torch\csrc\jit\api\module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-06-01T21:26:14.0836930Z copying torch\include\torch\csrc\jit\api\object.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-06-01T21:26:14.0847923Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-06-01T21:26:14.0855641Z copying torch\include\torch\csrc\jit\backends\backend.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-06-01T21:26:14.0862011Z copying torch\include\torch\csrc\jit\backends\backend_debug_handler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-06-01T21:26:14.0868421Z copying torch\include\torch\csrc\jit\backends\backend_debug_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-06-01T21:26:14.0874564Z copying torch\include\torch\csrc\jit\backends\backend_detail.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-06-01T21:26:14.0890604Z copying torch\include\torch\csrc\jit\backends\backend_exception.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-06-01T21:26:14.0897547Z copying torch\include\torch\csrc\jit\backends\backend_init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-06-01T21:26:14.0903977Z copying torch\include\torch\csrc\jit\backends\backend_interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-06-01T21:26:14.0910605Z copying torch\include\torch\csrc\jit\backends\backend_preprocess.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-06-01T21:26:14.0917363Z copying torch\include\torch\csrc\jit\backends\backend_resolver.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-06-01T21:26:14.0923000Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\cpp 2025-06-01T21:26:14.0927115Z 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-06-01T21:26:14.0932282Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\objc 2025-06-01T21:26:14.0935712Z 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-06-01T21:26:14.0941940Z 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-06-01T21:26:14.0948328Z 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-06-01T21:26:14.0959286Z 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-06-01T21:26:14.0965951Z 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-06-01T21:26:14.0971879Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack 2025-06-01T21:26:14.0975003Z 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-06-01T21:26:14.0980420Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\compiler 2025-06-01T21:26:14.1002083Z 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-06-01T21:26:14.1007775Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\executor 2025-06-01T21:26:14.1010984Z 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-06-01T21:26:14.1016883Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\serialization 2025-06-01T21:26:14.1019832Z 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-06-01T21:26:14.1025332Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\cuda 2025-06-01T21:26:14.1029558Z copying torch\include\torch\csrc\jit\codegen\cuda\interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\cuda 2025-06-01T21:26:14.1035860Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-06-01T21:26:14.1038436Z 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-06-01T21:26:14.1046024Z copying torch\include\torch\csrc\jit\codegen\fuser\codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-06-01T21:26:14.1052267Z copying torch\include\torch\csrc\jit\codegen\fuser\compiler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-06-01T21:26:14.1058877Z copying torch\include\torch\csrc\jit\codegen\fuser\executor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-06-01T21:26:14.1066428Z copying torch\include\torch\csrc\jit\codegen\fuser\fallback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-06-01T21:26:14.1072711Z 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-06-01T21:26:14.1086262Z copying torch\include\torch\csrc\jit\codegen\fuser\interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-06-01T21:26:14.1092754Z 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-06-01T21:26:14.1099196Z 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-06-01T21:26:14.1105821Z 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-06-01T21:26:14.1112410Z 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-06-01T21:26:14.1120290Z 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-06-01T21:26:14.1124693Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cpu 2025-06-01T21:26:14.1127800Z 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-06-01T21:26:14.1134440Z 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-06-01T21:26:14.1141005Z 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-06-01T21:26:14.1146705Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cuda 2025-06-01T21:26:14.1149793Z 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-06-01T21:26:14.1156301Z 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-06-01T21:26:14.1166508Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-06-01T21:26:14.1169483Z 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-06-01T21:26:14.1176022Z 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-06-01T21:26:14.1182674Z 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-06-01T21:26:14.1190905Z 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-06-01T21:26:14.1200027Z 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-06-01T21:26:14.1219000Z copying torch\include\torch\csrc\jit\codegen\onednn\interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-06-01T21:26:14.1220020Z copying torch\include\torch\csrc\jit\codegen\onednn\kernel.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-06-01T21:26:14.1225643Z 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-06-01T21:26:14.1232247Z copying torch\include\torch\csrc\jit\codegen\onednn\LlgaTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-06-01T21:26:14.1239303Z copying torch\include\torch\csrc\jit\codegen\onednn\operator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-06-01T21:26:14.1245707Z 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-06-01T21:26:14.1256010Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\cuda 2025-06-01T21:26:14.1259675Z copying torch\include\torch\csrc\jit\cuda\cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\cuda 2025-06-01T21:26:14.1264731Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:26:14.1267748Z copying torch\include\torch\csrc\jit\frontend\builtin_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:26:14.1275524Z copying torch\include\torch\csrc\jit\frontend\canonicalize_modified_loop.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:26:14.1280685Z copying torch\include\torch\csrc\jit\frontend\concrete_module_type.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:26:14.1292328Z copying torch\include\torch\csrc\jit\frontend\convert_to_ssa.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:26:14.1298529Z copying torch\include\torch\csrc\jit\frontend\edit_distance.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:26:14.1306471Z copying torch\include\torch\csrc\jit\frontend\error_report.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:26:14.1311805Z copying torch\include\torch\csrc\jit\frontend\exit_transforms.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:26:14.1324118Z copying torch\include\torch\csrc\jit\frontend\function_schema_parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:26:14.1330799Z copying torch\include\torch\csrc\jit\frontend\inline_loop_condition.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:26:14.1336973Z copying torch\include\torch\csrc\jit\frontend\ir_emitter.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:26:14.1343144Z copying torch\include\torch\csrc\jit\frontend\lexer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:26:14.1350860Z copying torch\include\torch\csrc\jit\frontend\mini_environment.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:26:14.1356749Z copying torch\include\torch\csrc\jit\frontend\name_mangler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:26:14.1363008Z copying torch\include\torch\csrc\jit\frontend\parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:26:14.1369281Z copying torch\include\torch\csrc\jit\frontend\parser_constants.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:26:14.1375941Z copying torch\include\torch\csrc\jit\frontend\parse_string_literal.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:26:14.1390406Z copying torch\include\torch\csrc\jit\frontend\resolver.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:26:14.1397360Z copying torch\include\torch\csrc\jit\frontend\schema_matching.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:26:14.1403326Z copying torch\include\torch\csrc\jit\frontend\schema_type_parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:26:14.1410647Z copying torch\include\torch\csrc\jit\frontend\script_type_parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:26:14.1421293Z copying torch\include\torch\csrc\jit\frontend\source_range.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:26:14.1427834Z copying torch\include\torch\csrc\jit\frontend\source_ref.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:26:14.1434672Z copying torch\include\torch\csrc\jit\frontend\strtod.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:26:14.1440680Z copying torch\include\torch\csrc\jit\frontend\sugared_value.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:26:14.1447540Z copying torch\include\torch\csrc\jit\frontend\tracer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:26:14.1454151Z copying torch\include\torch\csrc\jit\frontend\tree.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:26:14.1461056Z copying torch\include\torch\csrc\jit\frontend\tree_views.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:26:14.1468171Z copying torch\include\torch\csrc\jit\frontend\versioned_symbols.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-06-01T21:26:14.1473646Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-06-01T21:26:14.1476574Z copying torch\include\torch\csrc\jit\ir\alias_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-06-01T21:26:14.1483071Z copying torch\include\torch\csrc\jit\ir\attributes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-06-01T21:26:14.1489340Z copying torch\include\torch\csrc\jit\ir\constants.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-06-01T21:26:14.1495989Z copying torch\include\torch\csrc\jit\ir\graph_node_list.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-06-01T21:26:14.1514981Z copying torch\include\torch\csrc\jit\ir\graph_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-06-01T21:26:14.1526085Z copying torch\include\torch\csrc\jit\ir\ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-06-01T21:26:14.1533278Z copying torch\include\torch\csrc\jit\ir\irparser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-06-01T21:26:14.1539604Z copying torch\include\torch\csrc\jit\ir\ir_views.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-06-01T21:26:14.1545879Z copying torch\include\torch\csrc\jit\ir\named_value.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-06-01T21:26:14.1552145Z copying torch\include\torch\csrc\jit\ir\node_hashing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-06-01T21:26:14.1558158Z copying torch\include\torch\csrc\jit\ir\scope.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-06-01T21:26:14.1564438Z copying torch\include\torch\csrc\jit\ir\subgraph_matcher.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-06-01T21:26:14.1570715Z copying torch\include\torch\csrc\jit\ir\type_hashing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-06-01T21:26:14.1576394Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:26:14.1579238Z copying torch\include\torch\csrc\jit\mobile\code.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:26:14.1585690Z copying torch\include\torch\csrc\jit\mobile\debug_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:26:14.1592029Z copying torch\include\torch\csrc\jit\mobile\file_format.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:26:14.1598661Z copying torch\include\torch\csrc\jit\mobile\flatbuffer_loader.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:26:14.1611235Z copying torch\include\torch\csrc\jit\mobile\frame.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:26:14.1617418Z copying torch\include\torch\csrc\jit\mobile\function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:26:14.1623491Z copying torch\include\torch\csrc\jit\mobile\import.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:26:14.1629684Z copying torch\include\torch\csrc\jit\mobile\import_data.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:26:14.1635997Z copying torch\include\torch\csrc\jit\mobile\import_export_common.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:26:14.1645173Z copying torch\include\torch\csrc\jit\mobile\interpreter.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:26:14.1651344Z copying torch\include\torch\csrc\jit\mobile\method.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:26:14.1657612Z copying torch\include\torch\csrc\jit\mobile\module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:26:14.1663878Z copying torch\include\torch\csrc\jit\mobile\observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:26:14.1671354Z copying torch\include\torch\csrc\jit\mobile\parse_bytecode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:26:14.1677836Z copying torch\include\torch\csrc\jit\mobile\parse_operators.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:26:14.1684477Z copying torch\include\torch\csrc\jit\mobile\prim_ops_registery.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:26:14.1691056Z copying torch\include\torch\csrc\jit\mobile\profiler_edge.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:26:14.1697617Z copying torch\include\torch\csrc\jit\mobile\promoted_prim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:26:14.1704676Z copying torch\include\torch\csrc\jit\mobile\quantization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:26:14.1711733Z 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-06-01T21:26:14.1720617Z copying torch\include\torch\csrc\jit\mobile\type_parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:26:14.1729898Z copying torch\include\torch\csrc\jit\mobile\upgrader_mobile.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-06-01T21:26:14.1737232Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\compatibility 2025-06-01T21:26:14.1743273Z copying torch\include\torch\csrc\jit\mobile\compatibility\backport.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\compatibility 2025-06-01T21:26:14.1747188Z 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-06-01T21:26:14.1753878Z 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-06-01T21:26:14.1765557Z 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-06-01T21:26:14.1771228Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer 2025-06-01T21:26:14.1774565Z 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-06-01T21:26:14.1781738Z 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-06-01T21:26:14.1789436Z 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-06-01T21:26:14.1799055Z 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-06-01T21:26:14.1806852Z 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-06-01T21:26:14.1812522Z 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-06-01T21:26:14.1818533Z 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-06-01T21:26:14.1824905Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\nnc 2025-06-01T21:26:14.1827914Z 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-06-01T21:26:14.1834340Z copying torch\include\torch\csrc\jit\mobile\nnc\context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\nnc 2025-06-01T21:26:14.1840693Z copying torch\include\torch\csrc\jit\mobile\nnc\registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\nnc 2025-06-01T21:26:14.1846021Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train 2025-06-01T21:26:14.1848959Z 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-06-01T21:26:14.1855424Z copying torch\include\torch\csrc\jit\mobile\train\random.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train 2025-06-01T21:26:14.1861655Z copying torch\include\torch\csrc\jit\mobile\train\sequential.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train 2025-06-01T21:26:14.1867429Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train\optim 2025-06-01T21:26:14.1870445Z 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-06-01T21:26:14.1875852Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\operator_upgraders 2025-06-01T21:26:14.1879192Z copying torch\include\torch\csrc\jit\operator_upgraders\upgraders.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\operator_upgraders 2025-06-01T21:26:14.1885316Z 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-06-01T21:26:14.1891242Z copying torch\include\torch\csrc\jit\operator_upgraders\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\operator_upgraders 2025-06-01T21:26:14.1903850Z 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-06-01T21:26:14.1913540Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.1916369Z 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-06-01T21:26:14.1922676Z copying torch\include\torch\csrc\jit\passes\annotate_warns.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.1928792Z copying torch\include\torch\csrc\jit\passes\autocast.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.1935230Z copying torch\include\torch\csrc\jit\passes\bailout_graph.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.1946134Z copying torch\include\torch\csrc\jit\passes\batch_mm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.1952153Z copying torch\include\torch\csrc\jit\passes\canonicalize.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.1959010Z 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-06-01T21:26:14.1964915Z copying torch\include\torch\csrc\jit\passes\check_strict_fusion.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.1971637Z copying torch\include\torch\csrc\jit\passes\clear_profiling.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.1982455Z copying torch\include\torch\csrc\jit\passes\clear_undefinedness.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.1989657Z copying torch\include\torch\csrc\jit\passes\common_subexpression_elimination.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.1995779Z copying torch\include\torch\csrc\jit\passes\concat_opt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2001969Z copying torch\include\torch\csrc\jit\passes\constant_pooling.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2008224Z copying torch\include\torch\csrc\jit\passes\constant_propagation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2015176Z copying torch\include\torch\csrc\jit\passes\create_autodiff_subgraphs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2021514Z copying torch\include\torch\csrc\jit\passes\create_functional_graphs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2027801Z copying torch\include\torch\csrc\jit\passes\dead_code_elimination.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2034108Z copying torch\include\torch\csrc\jit\passes\decompose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2040365Z copying torch\include\torch\csrc\jit\passes\device_type_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2052800Z copying torch\include\torch\csrc\jit\passes\dtype_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2059071Z copying torch\include\torch\csrc\jit\passes\eliminate_no_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2065318Z copying torch\include\torch\csrc\jit\passes\erase_number_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2072134Z 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-06-01T21:26:14.2079413Z copying torch\include\torch\csrc\jit\passes\fold_conv_bn.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2087819Z copying torch\include\torch\csrc\jit\passes\fold_linear_bn.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2094424Z copying torch\include\torch\csrc\jit\passes\freeze_module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2100979Z copying torch\include\torch\csrc\jit\passes\frozen_concat_linear.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2107389Z 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-06-01T21:26:14.2120013Z copying torch\include\torch\csrc\jit\passes\frozen_conv_folding.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2127979Z copying torch\include\torch\csrc\jit\passes\frozen_graph_optimizations.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2133555Z copying torch\include\torch\csrc\jit\passes\frozen_linear_folding.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2140020Z copying torch\include\torch\csrc\jit\passes\frozen_linear_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2146255Z 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-06-01T21:26:14.2152606Z copying torch\include\torch\csrc\jit\passes\fuse_linear.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2159009Z copying torch\include\torch\csrc\jit\passes\fuse_relu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2165615Z copying torch\include\torch\csrc\jit\passes\graph_fuser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2173220Z copying torch\include\torch\csrc\jit\passes\graph_rewrite_helper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2184800Z copying torch\include\torch\csrc\jit\passes\guard_elimination.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2190802Z 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-06-01T21:26:14.2200573Z copying torch\include\torch\csrc\jit\passes\inliner.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2203657Z copying torch\include\torch\csrc\jit\passes\inline_autodiff_subgraphs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2210669Z copying torch\include\torch\csrc\jit\passes\inline_forked_closures.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2218630Z copying torch\include\torch\csrc\jit\passes\inline_fork_wait.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2228450Z copying torch\include\torch\csrc\jit\passes\inplace_check.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2235883Z copying torch\include\torch\csrc\jit\passes\insert_guards.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2241314Z copying torch\include\torch\csrc\jit\passes\integer_value_refinement.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2252722Z copying torch\include\torch\csrc\jit\passes\lift_closures.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2258875Z copying torch\include\torch\csrc\jit\passes\liveness.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2265599Z copying torch\include\torch\csrc\jit\passes\loop_unrolling.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2271966Z copying torch\include\torch\csrc\jit\passes\lower_grad_of.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2278087Z copying torch\include\torch\csrc\jit\passes\lower_graph.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2284806Z copying torch\include\torch\csrc\jit\passes\lower_tuples.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2291320Z copying torch\include\torch\csrc\jit\passes\metal_rewrite.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2297731Z copying torch\include\torch\csrc\jit\passes\mkldnn_rewrite.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2305126Z copying torch\include\torch\csrc\jit\passes\mobile_optimizer_type.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2310887Z copying torch\include\torch\csrc\jit\passes\normalize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2325190Z copying torch\include\torch\csrc\jit\passes\onednn_graph_fuser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2331994Z copying torch\include\torch\csrc\jit\passes\onnx.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2338821Z copying torch\include\torch\csrc\jit\passes\pass_manager.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2344797Z copying torch\include\torch\csrc\jit\passes\peephole.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2351203Z copying torch\include\torch\csrc\jit\passes\peephole_alias_sensitive.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2357461Z copying torch\include\torch\csrc\jit\passes\peephole_dict_idioms.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2363889Z copying torch\include\torch\csrc\jit\passes\peephole_list_idioms.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2371149Z copying torch\include\torch\csrc\jit\passes\peephole_non_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2377476Z copying torch\include\torch\csrc\jit\passes\prepack_folding.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2383726Z copying torch\include\torch\csrc\jit\passes\refine_tuple_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2390170Z copying torch\include\torch\csrc\jit\passes\remove_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2401121Z copying torch\include\torch\csrc\jit\passes\remove_exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2407499Z copying torch\include\torch\csrc\jit\passes\remove_expands.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2414090Z copying torch\include\torch\csrc\jit\passes\remove_inplace_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2420384Z copying torch\include\torch\csrc\jit\passes\remove_mutation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2427759Z copying torch\include\torch\csrc\jit\passes\remove_redundant_profiles.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2434196Z 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-06-01T21:26:14.2441446Z copying torch\include\torch\csrc\jit\passes\requires_grad_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2447804Z copying torch\include\torch\csrc\jit\passes\restore_mutation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2454527Z copying torch\include\torch\csrc\jit\passes\shape_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2465814Z copying torch\include\torch\csrc\jit\passes\specialize_autogradzero.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2472386Z copying torch\include\torch\csrc\jit\passes\subgraph_rewrite.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2479182Z copying torch\include\torch\csrc\jit\passes\symbolic_shape_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2486202Z copying torch\include\torch\csrc\jit\passes\symbolic_shape_cache.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2492799Z 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-06-01T21:26:14.2505518Z copying torch\include\torch\csrc\jit\passes\tensorexpr_fuser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2512528Z 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-06-01T21:26:14.2519195Z copying torch\include\torch\csrc\jit\passes\value_refinement_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2526910Z copying torch\include\torch\csrc\jit\passes\variadic_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2535117Z copying torch\include\torch\csrc\jit\passes\vulkan_rewrite.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2541249Z copying torch\include\torch\csrc\jit\passes\xnnpack_rewrite.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:14.2547910Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\dbr_quantization 2025-06-01T21:26:14.2551090Z 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-06-01T21:26:14.2556388Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-06-01T21:26:14.2559573Z 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-06-01T21:26:14.2565813Z 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-06-01T21:26:14.2572111Z 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-06-01T21:26:14.2579025Z 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-06-01T21:26:14.2596055Z 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-06-01T21:26:14.2602570Z 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-06-01T21:26:14.2608887Z 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-06-01T21:26:14.2615264Z 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-06-01T21:26:14.2621751Z 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-06-01T21:26:14.2628111Z copying torch\include\torch\csrc\jit\passes\onnx\helper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-06-01T21:26:14.2639452Z 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-06-01T21:26:14.2645631Z copying torch\include\torch\csrc\jit\passes\onnx\naming.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-06-01T21:26:14.2651983Z 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-06-01T21:26:14.2658874Z copying torch\include\torch\csrc\jit\passes\onnx\peephole.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-06-01T21:26:14.2664951Z 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-06-01T21:26:14.2671200Z 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-06-01T21:26:14.2677605Z 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-06-01T21:26:14.2683961Z 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-06-01T21:26:14.2690324Z 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-06-01T21:26:14.2697016Z 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-06-01T21:26:14.2708469Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion 2025-06-01T21:26:14.2712137Z 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-06-01T21:26:14.2719249Z 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-06-01T21:26:14.2725851Z 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-06-01T21:26:14.2737486Z 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-06-01T21:26:14.2742942Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-06-01T21:26:14.2746271Z 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-06-01T21:26:14.2752601Z copying torch\include\torch\csrc\jit\passes\quantization\finalize.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-06-01T21:26:14.2758798Z 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-06-01T21:26:14.2780358Z copying torch\include\torch\csrc\jit\passes\quantization\helper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-06-01T21:26:14.2790890Z 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-06-01T21:26:14.2797306Z 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-06-01T21:26:14.2803966Z 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-06-01T21:26:14.2811331Z 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-06-01T21:26:14.2817827Z 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-06-01T21:26:14.2823007Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\utils 2025-06-01T21:26:14.2826511Z 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-06-01T21:26:14.2832615Z 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-06-01T21:26:14.2839313Z 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-06-01T21:26:14.2850607Z 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-06-01T21:26:14.2862431Z 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-06-01T21:26:14.2867776Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-06-01T21:26:14.2870596Z copying torch\include\torch\csrc\jit\python\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-06-01T21:26:14.2876548Z copying torch\include\torch\csrc\jit\python\module_python.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-06-01T21:26:14.2882722Z copying torch\include\torch\csrc\jit\python\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-06-01T21:26:14.2888990Z copying torch\include\torch\csrc\jit\python\pybind_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-06-01T21:26:14.2895896Z copying torch\include\torch\csrc\jit\python\python_arg_flatten.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-06-01T21:26:14.2911570Z copying torch\include\torch\csrc\jit\python\python_custom_class.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-06-01T21:26:14.2917878Z copying torch\include\torch\csrc\jit\python\python_dict.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-06-01T21:26:14.2924197Z copying torch\include\torch\csrc\jit\python\python_ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-06-01T21:26:14.2930684Z copying torch\include\torch\csrc\jit\python\python_ivalue.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-06-01T21:26:14.2937225Z copying torch\include\torch\csrc\jit\python\python_list.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-06-01T21:26:14.2950706Z copying torch\include\torch\csrc\jit\python\python_sugared_value.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-06-01T21:26:14.2957578Z copying torch\include\torch\csrc\jit\python\python_tracer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-06-01T21:26:14.2964318Z copying torch\include\torch\csrc\jit\python\python_tree_views.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-06-01T21:26:14.2970593Z copying torch\include\torch\csrc\jit\python\script_init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-06-01T21:26:14.2976849Z 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-06-01T21:26:14.2983253Z copying torch\include\torch\csrc\jit\python\utf8_decoding_ignore.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-06-01T21:26:14.2989439Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:26:14.2992467Z copying torch\include\torch\csrc\jit\runtime\argument_spec.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:26:14.2999602Z copying torch\include\torch\csrc\jit\runtime\autodiff.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:26:14.3006168Z copying torch\include\torch\csrc\jit\runtime\calculate_necessary_args.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:26:14.3012811Z copying torch\include\torch\csrc\jit\runtime\custom_operator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:26:14.3023932Z copying torch\include\torch\csrc\jit\runtime\decomposition_registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:26:14.3030443Z copying torch\include\torch\csrc\jit\runtime\decomposition_registry_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:26:14.3037359Z copying torch\include\torch\csrc\jit\runtime\exception_message.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:26:14.3043750Z copying torch\include\torch\csrc\jit\runtime\graph_executor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:26:14.3050188Z copying torch\include\torch\csrc\jit\runtime\graph_executor_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:26:14.3056724Z copying torch\include\torch\csrc\jit\runtime\graph_iterator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:26:14.3082483Z copying torch\include\torch\csrc\jit\runtime\instruction.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:26:14.3088810Z copying torch\include\torch\csrc\jit\runtime\interpreter.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:26:14.3095221Z copying torch\include\torch\csrc\jit\runtime\jit_exception.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:26:14.3101776Z copying torch\include\torch\csrc\jit\runtime\jit_trace.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:26:14.3108149Z copying torch\include\torch\csrc\jit\runtime\logging.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:26:14.3114295Z copying torch\include\torch\csrc\jit\runtime\operator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:26:14.3120518Z copying torch\include\torch\csrc\jit\runtime\operator_options.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:26:14.3126648Z copying torch\include\torch\csrc\jit\runtime\print_handler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:26:14.3133137Z 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-06-01T21:26:14.3140107Z copying torch\include\torch\csrc\jit\runtime\profiling_record.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:26:14.3152264Z copying torch\include\torch\csrc\jit\runtime\register_ops_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:26:14.3159414Z copying torch\include\torch\csrc\jit\runtime\script_profile.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:26:14.3166253Z 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-06-01T21:26:14.3174479Z copying torch\include\torch\csrc\jit\runtime\shape_function_registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:26:14.3180323Z 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-06-01T21:26:14.3186699Z copying torch\include\torch\csrc\jit\runtime\slice_indices_adjust.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:26:14.3193283Z copying torch\include\torch\csrc\jit\runtime\symbolic_script.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:26:14.3199708Z copying torch\include\torch\csrc\jit\runtime\symbolic_shape_registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:26:14.3206435Z 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-06-01T21:26:14.3224363Z copying torch\include\torch\csrc\jit\runtime\vararg_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:26:14.3231496Z copying torch\include\torch\csrc\jit\runtime\variable_tensor_list.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-06-01T21:26:14.3237616Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\interpreter 2025-06-01T21:26:14.3240973Z 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-06-01T21:26:14.3247787Z 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-06-01T21:26:14.3255224Z copying torch\include\torch\csrc\jit\runtime\interpreter\frame.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\interpreter 2025-06-01T21:26:14.3262139Z 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-06-01T21:26:14.3272153Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-06-01T21:26:14.3275905Z copying torch\include\torch\csrc\jit\runtime\static\fusion.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-06-01T21:26:14.3282149Z copying torch\include\torch\csrc\jit\runtime\static\impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-06-01T21:26:14.3289174Z copying torch\include\torch\csrc\jit\runtime\static\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-06-01T21:26:14.3295708Z 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-06-01T21:26:14.3302160Z copying torch\include\torch\csrc\jit\runtime\static\ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-06-01T21:26:14.3308566Z copying torch\include\torch\csrc\jit\runtime\static\passes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-06-01T21:26:14.3319799Z copying torch\include\torch\csrc\jit\runtime\static\ProcessedNodeInputs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-06-01T21:26:14.3327394Z 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-06-01T21:26:14.3332890Z 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-06-01T21:26:14.3339256Z 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-06-01T21:26:14.3344825Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-06-01T21:26:14.3348572Z 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-06-01T21:26:14.3354965Z copying torch\include\torch\csrc\jit\serialization\export.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-06-01T21:26:14.3361351Z copying torch\include\torch\csrc\jit\serialization\export_bytecode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-06-01T21:26:14.3372451Z copying torch\include\torch\csrc\jit\serialization\flatbuffer_serializer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-06-01T21:26:14.3379112Z copying torch\include\torch\csrc\jit\serialization\flatbuffer_serializer_jit.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-06-01T21:26:14.3390917Z copying torch\include\torch\csrc\jit\serialization\import.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-06-01T21:26:14.3397302Z copying torch\include\torch\csrc\jit\serialization\import_export_constants.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-06-01T21:26:14.3404175Z copying torch\include\torch\csrc\jit\serialization\import_export_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-06-01T21:26:14.3410319Z copying torch\include\torch\csrc\jit\serialization\import_export_helpers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-06-01T21:26:14.3417090Z copying torch\include\torch\csrc\jit\serialization\import_read.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-06-01T21:26:14.3423694Z copying torch\include\torch\csrc\jit\serialization\import_source.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-06-01T21:26:14.3430801Z copying torch\include\torch\csrc\jit\serialization\mobile_bytecode_generated.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-06-01T21:26:14.3438608Z copying torch\include\torch\csrc\jit\serialization\onnx.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-06-01T21:26:14.3444659Z copying torch\include\torch\csrc\jit\serialization\pickle.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-06-01T21:26:14.3451276Z copying torch\include\torch\csrc\jit\serialization\pickler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-06-01T21:26:14.3457751Z copying torch\include\torch\csrc\jit\serialization\python_print.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-06-01T21:26:14.3464245Z copying torch\include\torch\csrc\jit\serialization\source_range_serialization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-06-01T21:26:14.3471133Z 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-06-01T21:26:14.3477959Z copying torch\include\torch\csrc\jit\serialization\storage_context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-06-01T21:26:14.3484299Z copying torch\include\torch\csrc\jit\serialization\type_name_uniquer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-06-01T21:26:14.3495603Z copying torch\include\torch\csrc\jit\serialization\unpickler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-06-01T21:26:14.3501352Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:14.3504313Z copying torch\include\torch\csrc\jit\tensorexpr\analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:14.3510628Z copying torch\include\torch\csrc\jit\tensorexpr\block_codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:14.3517290Z copying torch\include\torch\csrc\jit\tensorexpr\bounds_inference.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:14.3523590Z copying torch\include\torch\csrc\jit\tensorexpr\bounds_overlap.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:14.3534829Z copying torch\include\torch\csrc\jit\tensorexpr\codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:14.3541455Z copying torch\include\torch\csrc\jit\tensorexpr\cpp_codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:14.3547788Z copying torch\include\torch\csrc\jit\tensorexpr\cpp_intrinsics.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:14.3554252Z copying torch\include\torch\csrc\jit\tensorexpr\cuda_codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:14.3560757Z copying torch\include\torch\csrc\jit\tensorexpr\cuda_random.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:14.3567193Z copying torch\include\torch\csrc\jit\tensorexpr\eval.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:14.3573620Z copying torch\include\torch\csrc\jit\tensorexpr\exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:14.3580315Z copying torch\include\torch\csrc\jit\tensorexpr\expr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:14.3586895Z copying torch\include\torch\csrc\jit\tensorexpr\external_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:14.3593410Z copying torch\include\torch\csrc\jit\tensorexpr\external_functions_core.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:14.3600423Z copying torch\include\torch\csrc\jit\tensorexpr\external_functions_registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:14.3606907Z copying torch\include\torch\csrc\jit\tensorexpr\fwd_decls.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:14.3613894Z copying torch\include\torch\csrc\jit\tensorexpr\graph_opt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:14.3620547Z copying torch\include\torch\csrc\jit\tensorexpr\half_support.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:14.3627274Z copying torch\include\torch\csrc\jit\tensorexpr\hash_provider.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:14.3633917Z copying torch\include\torch\csrc\jit\tensorexpr\intrinsic_symbols.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:14.3640124Z copying torch\include\torch\csrc\jit\tensorexpr\ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:14.3651790Z copying torch\include\torch\csrc\jit\tensorexpr\ir_cloner.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:14.3658456Z copying torch\include\torch\csrc\jit\tensorexpr\ir_mutator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:14.3665121Z copying torch\include\torch\csrc\jit\tensorexpr\ir_printer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:14.3671558Z copying torch\include\torch\csrc\jit\tensorexpr\ir_simplifier.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:14.3683275Z copying torch\include\torch\csrc\jit\tensorexpr\ir_verifier.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:14.3689501Z copying torch\include\torch\csrc\jit\tensorexpr\ir_visitor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:14.3696059Z copying torch\include\torch\csrc\jit\tensorexpr\kernel.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:14.3702632Z copying torch\include\torch\csrc\jit\tensorexpr\llvm_codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:14.3709049Z copying torch\include\torch\csrc\jit\tensorexpr\llvm_jit.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:14.3715824Z copying torch\include\torch\csrc\jit\tensorexpr\loopnest.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:14.3728784Z copying torch\include\torch\csrc\jit\tensorexpr\loopnest_randomization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:14.3739403Z copying torch\include\torch\csrc\jit\tensorexpr\lowerings.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:14.3746160Z copying torch\include\torch\csrc\jit\tensorexpr\mem_dependency_checker.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:14.3753068Z copying torch\include\torch\csrc\jit\tensorexpr\reduction.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:14.3759643Z copying torch\include\torch\csrc\jit\tensorexpr\registerizer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:14.3765975Z copying torch\include\torch\csrc\jit\tensorexpr\stmt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:14.3772911Z copying torch\include\torch\csrc\jit\tensorexpr\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:14.3779352Z copying torch\include\torch\csrc\jit\tensorexpr\tensorexpr_init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:14.3785549Z copying torch\include\torch\csrc\jit\tensorexpr\types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:14.3791949Z copying torch\include\torch\csrc\jit\tensorexpr\unique_name_manager.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:14.3798680Z copying torch\include\torch\csrc\jit\tensorexpr\var_substitutor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:14.3804186Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-06-01T21:26:14.3807294Z copying torch\include\torch\csrc\jit\tensorexpr\operators\conv2d.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-06-01T21:26:14.3813549Z copying torch\include\torch\csrc\jit\tensorexpr\operators\matmul.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-06-01T21:26:14.3819646Z copying torch\include\torch\csrc\jit\tensorexpr\operators\misc.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-06-01T21:26:14.3825739Z copying torch\include\torch\csrc\jit\tensorexpr\operators\norm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-06-01T21:26:14.3831906Z copying torch\include\torch\csrc\jit\tensorexpr\operators\operators.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-06-01T21:26:14.3842376Z copying torch\include\torch\csrc\jit\tensorexpr\operators\pointwise.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-06-01T21:26:14.3848753Z copying torch\include\torch\csrc\jit\tensorexpr\operators\quantization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-06-01T21:26:14.3855403Z copying torch\include\torch\csrc\jit\tensorexpr\operators\reduction.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-06-01T21:26:14.3861809Z copying torch\include\torch\csrc\jit\tensorexpr\operators\softmax.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-06-01T21:26:14.3866988Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\testing 2025-06-01T21:26:14.3869866Z copying torch\include\torch\csrc\jit\testing\file_check.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\testing 2025-06-01T21:26:14.3876479Z copying torch\include\torch\csrc\jit\testing\hooks_for_testing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\testing 2025-06-01T21:26:14.3881681Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend 2025-06-01T21:26:14.3885688Z copying torch\include\torch\csrc\lazy\backend\backend_data.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend 2025-06-01T21:26:14.3892111Z copying torch\include\torch\csrc\lazy\backend\backend_device.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend 2025-06-01T21:26:14.3898622Z copying torch\include\torch\csrc\lazy\backend\backend_interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend 2025-06-01T21:26:14.3904853Z copying torch\include\torch\csrc\lazy\backend\lowering_context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend 2025-06-01T21:26:14.3915165Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:26:14.3918364Z copying torch\include\torch\csrc\lazy\core\cache.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:26:14.3924583Z copying torch\include\torch\csrc\lazy\core\config.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:26:14.3930782Z copying torch\include\torch\csrc\lazy\core\debug_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:26:14.3937116Z copying torch\include\torch\csrc\lazy\core\dynamic_ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:26:14.3943247Z copying torch\include\torch\csrc\lazy\core\hash.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:26:14.3957816Z copying torch\include\torch\csrc\lazy\core\helpers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:26:14.3964357Z copying torch\include\torch\csrc\lazy\core\ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:26:14.3970715Z copying torch\include\torch\csrc\lazy\core\ir_builder.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:26:14.3977186Z copying torch\include\torch\csrc\lazy\core\ir_dump_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:26:14.3983519Z copying torch\include\torch\csrc\lazy\core\ir_metadata.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:26:14.3990209Z copying torch\include\torch\csrc\lazy\core\ir_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:26:14.3996459Z copying torch\include\torch\csrc\lazy\core\lazy_graph_executor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:26:14.4002932Z copying torch\include\torch\csrc\lazy\core\metrics.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:26:14.4014883Z copying torch\include\torch\csrc\lazy\core\multi_wait.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:26:14.4021437Z copying torch\include\torch\csrc\lazy\core\permutation_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:26:14.4027687Z copying torch\include\torch\csrc\lazy\core\shape.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:26:14.4034041Z copying torch\include\torch\csrc\lazy\core\shape_inference.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:26:14.4040439Z copying torch\include\torch\csrc\lazy\core\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:26:14.4047570Z copying torch\include\torch\csrc\lazy\core\tensor_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:26:14.4058897Z copying torch\include\torch\csrc\lazy\core\tensor_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:26:14.4065493Z copying torch\include\torch\csrc\lazy\core\thread_pool.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:26:14.4071844Z copying torch\include\torch\csrc\lazy\core\trie.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:26:14.4078253Z copying torch\include\torch\csrc\lazy\core\unique.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:26:14.4084628Z copying torch\include\torch\csrc\lazy\core\util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-06-01T21:26:14.4090183Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\internal_ops 2025-06-01T21:26:14.4098201Z 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-06-01T21:26:14.4103664Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\ops 2025-06-01T21:26:14.4106728Z 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-06-01T21:26:14.4113378Z copying torch\include\torch\csrc\lazy\core\ops\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\ops 2025-06-01T21:26:14.4118779Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated 2025-06-01T21:26:14.4121701Z copying torch\include\torch\csrc\lazy\generated\LazyIr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated 2025-06-01T21:26:14.4131664Z copying torch\include\torch\csrc\lazy\generated\LazyNativeFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated 2025-06-01T21:26:14.4138732Z copying torch\include\torch\csrc\lazy\generated\LazyNonNativeIr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated 2025-06-01T21:26:14.4144051Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\python 2025-06-01T21:26:14.4147014Z copying torch\include\torch\csrc\lazy\python\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\python 2025-06-01T21:26:14.4153242Z copying torch\include\torch\csrc\lazy\python\python_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\python 2025-06-01T21:26:14.4165227Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-06-01T21:26:14.4174718Z copying torch\include\torch\csrc\lazy\ts_backend\config.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-06-01T21:26:14.4180347Z 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-06-01T21:26:14.4187262Z 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-06-01T21:26:14.4193587Z 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-06-01T21:26:14.4204563Z 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-06-01T21:26:14.4211268Z 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-06-01T21:26:14.4218220Z 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-06-01T21:26:14.4224924Z 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-06-01T21:26:14.4232008Z 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-06-01T21:26:14.4238653Z 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-06-01T21:26:14.4244113Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ops 2025-06-01T21:26:14.4247102Z 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-06-01T21:26:14.4253665Z 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-06-01T21:26:14.4260237Z 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-06-01T21:26:14.4266072Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor 2025-06-01T21:26:14.4268957Z copying torch\include\torch\csrc\monitor\counters.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor 2025-06-01T21:26:14.4275592Z copying torch\include\torch\csrc\monitor\events.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor 2025-06-01T21:26:14.4282220Z copying torch\include\torch\csrc\monitor\python_init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor 2025-06-01T21:26:14.4287421Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mps 2025-06-01T21:26:14.4290379Z copying torch\include\torch\csrc\mps\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mps 2025-06-01T21:26:14.4295675Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mtia 2025-06-01T21:26:14.4298436Z copying torch\include\torch\csrc\mtia\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mtia 2025-06-01T21:26:14.4303654Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mtia\profiler 2025-06-01T21:26:14.4306618Z copying torch\include\torch\csrc\mtia\profiler\MTIAMemoryProfiler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mtia\profiler 2025-06-01T21:26:14.4311781Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\multiprocessing 2025-06-01T21:26:14.4314778Z copying torch\include\torch\csrc\multiprocessing\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\multiprocessing 2025-06-01T21:26:14.4320702Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx 2025-06-01T21:26:14.4323603Z copying torch\include\torch\csrc\onnx\back_compat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx 2025-06-01T21:26:14.4331315Z copying torch\include\torch\csrc\onnx\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx 2025-06-01T21:26:14.4337137Z copying torch\include\torch\csrc\onnx\onnx.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx 2025-06-01T21:26:14.4342236Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-06-01T21:26:14.4345573Z copying torch\include\torch\csrc\profiler\api.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-06-01T21:26:14.4352240Z copying torch\include\torch\csrc\profiler\collection.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-06-01T21:26:14.4358977Z copying torch\include\torch\csrc\profiler\combined_traceback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-06-01T21:26:14.4365221Z copying torch\include\torch\csrc\profiler\containers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-06-01T21:26:14.4378066Z copying torch\include\torch\csrc\profiler\data_flow.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-06-01T21:26:14.4384468Z copying torch\include\torch\csrc\profiler\events.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-06-01T21:26:14.4391256Z copying torch\include\torch\csrc\profiler\kineto_client_interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-06-01T21:26:14.4397431Z copying torch\include\torch\csrc\profiler\kineto_shim.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-06-01T21:26:14.4403865Z copying torch\include\torch\csrc\profiler\perf-inl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-06-01T21:26:14.4410075Z copying torch\include\torch\csrc\profiler\perf.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-06-01T21:26:14.4423950Z copying torch\include\torch\csrc\profiler\util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-06-01T21:26:14.4424411Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration 2025-06-01T21:26:14.4427212Z copying torch\include\torch\csrc\profiler\orchestration\observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration 2025-06-01T21:26:14.4433622Z copying torch\include\torch\csrc\profiler\orchestration\python_tracer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration 2025-06-01T21:26:14.4439626Z copying torch\include\torch\csrc\profiler\orchestration\vulkan.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration 2025-06-01T21:26:14.4444918Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python 2025-06-01T21:26:14.4448097Z copying torch\include\torch\csrc\profiler\python\combined_traceback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python 2025-06-01T21:26:14.4454784Z copying torch\include\torch\csrc\profiler\python\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python 2025-06-01T21:26:14.4461267Z copying torch\include\torch\csrc\profiler\python\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python 2025-06-01T21:26:14.4466690Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone 2025-06-01T21:26:14.4469996Z copying torch\include\torch\csrc\profiler\standalone\execution_trace_observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone 2025-06-01T21:26:14.4476633Z copying torch\include\torch\csrc\profiler\standalone\itt_observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone 2025-06-01T21:26:14.4482913Z copying torch\include\torch\csrc\profiler\standalone\nvtx_observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone 2025-06-01T21:26:14.4498716Z copying torch\include\torch\csrc\profiler\standalone\privateuse1_observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone 2025-06-01T21:26:14.4504435Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\stubs 2025-06-01T21:26:14.4507333Z copying torch\include\torch\csrc\profiler\stubs\base.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\stubs 2025-06-01T21:26:14.4532925Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-06-01T21:26:14.4535907Z copying torch\include\torch\csrc\profiler\unwind\action.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-06-01T21:26:14.4542704Z copying torch\include\torch\csrc\profiler\unwind\communicate.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-06-01T21:26:14.4549172Z copying torch\include\torch\csrc\profiler\unwind\debug_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-06-01T21:26:14.4555576Z copying torch\include\torch\csrc\profiler\unwind\dwarf_enums.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-06-01T21:26:14.4572155Z copying torch\include\torch\csrc\profiler\unwind\dwarf_symbolize_enums.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-06-01T21:26:14.4578872Z copying torch\include\torch\csrc\profiler\unwind\eh_frame_hdr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-06-01T21:26:14.4585393Z copying torch\include\torch\csrc\profiler\unwind\fast_symbolizer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-06-01T21:26:14.4634128Z copying torch\include\torch\csrc\profiler\unwind\fde.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-06-01T21:26:14.4640446Z copying torch\include\torch\csrc\profiler\unwind\lexer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-06-01T21:26:14.4647997Z copying torch\include\torch\csrc\profiler\unwind\line_number_program.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-06-01T21:26:14.4654051Z copying torch\include\torch\csrc\profiler\unwind\mem_file.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-06-01T21:26:14.4660600Z copying torch\include\torch\csrc\profiler\unwind\range_table.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-06-01T21:26:14.4667107Z copying torch\include\torch\csrc\profiler\unwind\sections.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-06-01T21:26:14.4673816Z copying torch\include\torch\csrc\profiler\unwind\unwind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-06-01T21:26:14.4681218Z copying torch\include\torch\csrc\profiler\unwind\unwinder.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-06-01T21:26:14.4687692Z copying torch\include\torch\csrc\profiler\unwind\unwind_error.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-06-01T21:26:14.4693758Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable 2025-06-01T21:26:14.4696807Z copying torch\include\torch\csrc\stable\library.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable 2025-06-01T21:26:14.4702593Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\tensor 2025-06-01T21:26:14.4705891Z copying torch\include\torch\csrc\tensor\python_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\tensor 2025-06-01T21:26:14.4711540Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.4718893Z copying torch\include\torch\csrc\utils\byte_order.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.4725309Z copying torch\include\torch\csrc\utils\cpp_stacktraces.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.4731579Z copying torch\include\torch\csrc\utils\cuda_enabled.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.4742024Z copying torch\include\torch\csrc\utils\device_lazy_init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.4753503Z copying torch\include\torch\csrc\utils\disable_torch_function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.4760347Z copying torch\include\torch\csrc\utils\generated_serialization_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.4768400Z copying torch\include\torch\csrc\utils\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.4774610Z copying torch\include\torch\csrc\utils\invalid_arguments.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.4785714Z copying torch\include\torch\csrc\utils\nested.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.4792083Z copying torch\include\torch\csrc\utils\numpy_stub.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.4798181Z copying torch\include\torch\csrc\utils\object_ptr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.4804581Z copying torch\include\torch\csrc\utils\out_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.4810737Z copying torch\include\torch\csrc\utils\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.4817573Z copying torch\include\torch\csrc\utils\pycfunction_helpers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.4828841Z copying torch\include\torch\csrc\utils\pyobject_preservation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.4835038Z copying torch\include\torch\csrc\utils\pythoncapi_compat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.4842227Z copying torch\include\torch\csrc\utils\python_arg_parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.4849590Z copying torch\include\torch\csrc\utils\python_compat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.4856241Z copying torch\include\torch\csrc\utils\python_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.4862377Z copying torch\include\torch\csrc\utils\python_numbers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.4873193Z copying torch\include\torch\csrc\utils\python_raii.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.4880030Z copying torch\include\torch\csrc\utils\python_scalars.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.4886388Z copying torch\include\torch\csrc\utils\python_strings.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.4892758Z copying torch\include\torch\csrc\utils\python_stub.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.4899160Z copying torch\include\torch\csrc\utils\python_symnode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.4905971Z copying torch\include\torch\csrc\utils\python_torch_function_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.4919416Z copying torch\include\torch\csrc\utils\python_tuples.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.4926407Z copying torch\include\torch\csrc\utils\schema_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.4933240Z copying torch\include\torch\csrc\utils\six.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.4940037Z copying torch\include\torch\csrc\utils\structseq.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.4951282Z copying torch\include\torch\csrc\utils\tensor_apply.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.4958255Z copying torch\include\torch\csrc\utils\tensor_dtypes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.4969760Z copying torch\include\torch\csrc\utils\tensor_flatten.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.5009089Z copying torch\include\torch\csrc\utils\tensor_layouts.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.5015562Z copying torch\include\torch\csrc\utils\tensor_list.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.5023213Z copying torch\include\torch\csrc\utils\tensor_memoryformats.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.5029834Z copying torch\include\torch\csrc\utils\tensor_new.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.5036560Z copying torch\include\torch\csrc\utils\tensor_numpy.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.5043439Z copying torch\include\torch\csrc\utils\tensor_qschemes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.5055938Z copying torch\include\torch\csrc\utils\tensor_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.5062793Z copying torch\include\torch\csrc\utils\throughput_benchmark-inl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.5069182Z copying torch\include\torch\csrc\utils\throughput_benchmark.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.5075994Z copying torch\include\torch\csrc\utils\torch_dispatch_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.5082590Z copying torch\include\torch\csrc\utils\variadic.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.5094690Z copying torch\include\torch\csrc\utils\verbose.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-06-01T21:26:14.5099974Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu 2025-06-01T21:26:14.5102895Z copying torch\include\torch\csrc\xpu\Event.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu 2025-06-01T21:26:14.5108958Z copying torch\include\torch\csrc\xpu\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu 2025-06-01T21:26:14.5115104Z copying torch\include\torch\csrc\xpu\Stream.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu 2025-06-01T21:26:14.5121051Z copying torch\include\dnnl.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:26:14.5127308Z copying torch\include\dnnl_ocl.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:26:14.5133750Z copying torch\include\dnnl_sycl.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:26:14.5140070Z copying torch\include\dnnl_threadpool.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:26:14.5146819Z copying torch\include\dnnl_threadpool_iface.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-06-01T21:26:14.5153548Z copying torch\include\oneapi\dnnl\dnnl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:26:14.5172407Z copying torch\include\oneapi\dnnl\dnnl_common.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:26:14.5179313Z copying torch\include\oneapi\dnnl\dnnl_graph.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:26:14.5187128Z copying torch\include\oneapi\dnnl\dnnl_graph_ocl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:26:14.5193749Z copying torch\include\oneapi\dnnl\dnnl_graph_sycl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:26:14.5200517Z copying torch\include\oneapi\dnnl\dnnl_ocl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:26:14.5207231Z copying torch\include\oneapi\dnnl\dnnl_sycl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:26:14.5213955Z copying torch\include\oneapi\dnnl\dnnl_threadpool.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:26:14.5220813Z copying torch\include\oneapi\dnnl\dnnl_threadpool_iface.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:26:14.5233689Z copying torch\include\oneapi\dnnl\dnnl_ukernel.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-06-01T21:26:14.5240963Z copying torch\include\torch\csrc\distributed\c10d\Backend.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5247645Z copying torch\include\torch\csrc\distributed\c10d\Backoff.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5254090Z copying torch\include\torch\csrc\distributed\c10d\comm.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5261029Z copying torch\include\torch\csrc\distributed\c10d\CUDASymmetricMemory.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5267699Z copying torch\include\torch\csrc\distributed\c10d\CUDASymmetricMemoryTypes.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5279035Z copying torch\include\torch\csrc\distributed\c10d\CUDASymmetricMemoryUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5286077Z copying torch\include\torch\csrc\distributed\c10d\default_comm_hooks.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5293268Z copying torch\include\torch\csrc\distributed\c10d\DMAConnectivity.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5299986Z copying torch\include\torch\csrc\distributed\c10d\FakeProcessGroup.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5306383Z copying torch\include\torch\csrc\distributed\c10d\FileStore.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5312868Z copying torch\include\torch\csrc\distributed\c10d\FlightRecorder.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5329170Z copying torch\include\torch\csrc\distributed\c10d\Functional.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5335874Z copying torch\include\torch\csrc\distributed\c10d\GlooDeviceFactory.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5342226Z copying torch\include\torch\csrc\distributed\c10d\GroupRegistry.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5349268Z copying torch\include\torch\csrc\distributed\c10d\HashStore.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5356132Z copying torch\include\torch\csrc\distributed\c10d\intra_node_comm.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5362379Z copying torch\include\torch\csrc\distributed\c10d\logger.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5374771Z copying torch\include\torch\csrc\distributed\c10d\NanCheck.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5380950Z copying torch\include\torch\csrc\distributed\c10d\NCCLUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5387465Z copying torch\include\torch\csrc\distributed\c10d\ParamCommsUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5393826Z copying torch\include\torch\csrc\distributed\c10d\PrefixStore.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5405531Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroup.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5412873Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupGloo.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5424700Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupGlooDetail.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5431682Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupMPI.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5438276Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupNCCL.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5445835Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupUCC.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5452575Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupWrapper.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5459255Z copying torch\include\torch\csrc\distributed\c10d\PyProcessGroup.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5465784Z copying torch\include\torch\csrc\distributed\c10d\RankLocal.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5478663Z copying torch\include\torch\csrc\distributed\c10d\reducer.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5485712Z copying torch\include\torch\csrc\distributed\c10d\reducer_timer.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5492154Z copying torch\include\torch\csrc\distributed\c10d\sequence_num.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5499375Z copying torch\include\torch\csrc\distributed\c10d\Store.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5506099Z copying torch\include\torch\csrc\distributed\c10d\SymmetricMemory.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5512732Z copying torch\include\torch\csrc\distributed\c10d\TCPStore.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5519134Z copying torch\include\torch\csrc\distributed\c10d\TCPStoreBackend.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5525943Z copying torch\include\torch\csrc\distributed\c10d\Types.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5532449Z copying torch\include\torch\csrc\distributed\c10d\UCCTracing.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5539123Z copying torch\include\torch\csrc\distributed\c10d\UCCUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5545565Z copying torch\include\torch\csrc\distributed\c10d\UnixSockUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5551932Z copying torch\include\torch\csrc\distributed\c10d\Utils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5564569Z copying torch\include\torch\csrc\distributed\c10d\WinSockUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5570844Z copying torch\include\torch\csrc\distributed\c10d\Work.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:14.5576660Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\control_collectives 2025-06-01T21:26:14.5580059Z 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-06-01T21:26:14.5586496Z 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-06-01T21:26:14.5591865Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\control_plane 2025-06-01T21:26:14.5595001Z 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-06-01T21:26:14.5606520Z 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-06-01T21:26:14.5611914Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\cuda 2025-06-01T21:26:14.5615112Z copying torch\include\torch\csrc\distributed\c10d\cuda\utils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\cuda 2025-06-01T21:26:14.5621816Z copying torch\include\torch\csrc\jit\testing\catch_utils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\testing 2025-06-01T21:26:14.5627838Z copying torch\include\ATen\cuda\ApplyGridUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:26:14.5634411Z copying torch\include\ATen\cuda\AsmUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:26:14.5640588Z copying torch\include\ATen\cuda\Atomic.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:26:14.5648003Z copying torch\include\ATen\cuda\cub-RadixSortPairs.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:26:14.5654929Z copying torch\include\ATen\cuda\cub.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:26:14.5661956Z copying torch\include\ATen\cuda\cub_definitions.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:26:14.5668827Z copying torch\include\ATen\cuda\CUDAApplyUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:26:14.5675802Z copying torch\include\ATen\cuda\CUDAGraphsUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:26:14.5682345Z copying torch\include\ATen\cuda\CUDATensorMethods.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:26:14.5688708Z copying torch\include\ATen\cuda\DeviceUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:26:14.5704897Z copying torch\include\ATen\cuda\NumericLimits.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:26:14.5711404Z copying torch\include\ATen\cuda\PhiloxUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:26:14.5717531Z copying torch\include\ATen\cuda\ScanUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-06-01T21:26:14.5724487Z copying torch\include\ATen\cuda\detail\IndexUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-06-01T21:26:14.5731494Z copying torch\include\ATen\cuda\detail\IntegerDivider.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-06-01T21:26:14.5742291Z copying torch\include\ATen\cuda\detail\OffsetCalculator.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-06-01T21:26:14.5748782Z copying torch\include\ATen\cuda\detail\PhiloxCudaStateRaw.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-06-01T21:26:14.5755617Z copying torch\include\ATen\cuda\detail\TensorInfo.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-06-01T21:26:14.5761792Z copying torch\include\ATen\cuda\detail\UnpackRaw.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-06-01T21:26:14.5768337Z copying torch\include\ATen\native\cuda\block_reduce.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:14.5774710Z copying torch\include\ATen\native\cuda\CUDAJitLoops.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:14.5781328Z copying torch\include\ATen\native\cuda\CUDALoops.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:14.5788528Z copying torch\include\ATen\native\cuda\cutlass_common.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:14.5795058Z copying torch\include\ATen\native\cuda\DeviceSqrt.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:14.5801583Z copying torch\include\ATen\native\cuda\EmbeddingBackwardKernel.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:14.5807658Z copying torch\include\ATen\native\cuda\ForeachFunctors.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:14.5815039Z copying torch\include\ATen\native\cuda\ForeachMinMaxFunctors.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:14.5821302Z copying torch\include\ATen\native\cuda\fused_adamw_amsgrad_impl.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:14.5832255Z copying torch\include\ATen\native\cuda\fused_adamw_impl.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:14.5839102Z copying torch\include\ATen\native\cuda\fused_adam_amsgrad_impl.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:14.5845687Z copying torch\include\ATen\native\cuda\fused_adam_impl.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:14.5852082Z copying torch\include\ATen\native\cuda\fused_adam_utils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:14.5858613Z copying torch\include\ATen\native\cuda\GridSampler.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:14.5865450Z copying torch\include\ATen\native\cuda\GroupMMCommon.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:14.5872692Z copying torch\include\ATen\native\cuda\im2col.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:14.5879162Z copying torch\include\ATen\native\cuda\JitLoops.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:14.5885524Z copying torch\include\ATen\native\cuda\KernelUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:14.5891925Z copying torch\include\ATen\native\cuda\Loops.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:14.5898182Z copying torch\include\ATen\native\cuda\Math.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:14.5906754Z copying torch\include\ATen\native\cuda\MemoryAccess.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:14.5913823Z copying torch\include\ATen\native\cuda\MultiTensorApply.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:14.5926896Z copying torch\include\ATen\native\cuda\Normalization.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:14.5934844Z copying torch\include\ATen\native\cuda\PersistentSoftmax.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:14.5941804Z copying torch\include\ATen\native\cuda\Pow.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:14.5948077Z copying torch\include\ATen\native\cuda\Randperm.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:14.5954472Z copying torch\include\ATen\native\cuda\Reduce.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:14.5961697Z copying torch\include\ATen\native\cuda\reduction_template.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:14.5968446Z copying torch\include\ATen\native\cuda\ScanUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:14.5975647Z copying torch\include\ATen\native\cuda\SortingCommon.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:14.5982204Z copying torch\include\ATen\native\cuda\SortingRadixSelect.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:14.5988549Z copying torch\include\ATen\native\cuda\SortUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:14.5995006Z copying torch\include\ATen\native\cuda\TensorModeKernel.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:14.6001580Z copying torch\include\ATen\native\cuda\UniqueCub.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:14.6008047Z copying torch\include\ATen\native\cuda\UpSample.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:14.6014526Z copying torch\include\ATen\native\cuda\vol2col.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-06-01T21:26:14.6019911Z creating build\lib.win-amd64-cpython-39\torch\include\THC 2025-06-01T21:26:14.6022763Z copying torch\include\THC\THCAtomics.cuh -> build\lib.win-amd64-cpython-39\torch\include\THC 2025-06-01T21:26:14.6029212Z copying torch\include\THC\THCDeviceUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\THC 2025-06-01T21:26:14.6034622Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\aoti_runtime 2025-06-01T21:26:14.6038023Z copying torch\_inductor\codegen\aoti_runtime\interface.cpp -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\aoti_runtime 2025-06-01T21:26:14.6056436Z copying torch\_inductor\script.ld -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-06-01T21:26:14.6063532Z copying torch\_export\serde\schema.yaml -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-06-01T21:26:14.6077011Z copying torch\_export\serde\export_schema.thrift -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-06-01T21:26:14.6087932Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\ATen 2025-06-01T21:26:14.6092707Z copying torch\share\cmake\ATen\ATenConfig.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\ATen 2025-06-01T21:26:14.6098184Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-06-01T21:26:14.6101140Z copying torch\share\cmake\Caffe2\Caffe2Config.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-06-01T21:26:14.6107858Z copying torch\share\cmake\Caffe2\Caffe2Targets-release.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-06-01T21:26:14.6115250Z copying torch\share\cmake\Caffe2\Caffe2Targets.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-06-01T21:26:14.6128567Z copying torch\share\cmake\Caffe2\FindCUDAToolkit.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-06-01T21:26:14.6135623Z copying torch\share\cmake\Caffe2\FindCUDSS.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-06-01T21:26:14.6141955Z copying torch\share\cmake\Caffe2\FindCUSPARSELT.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-06-01T21:26:14.6149184Z copying torch\share\cmake\Caffe2\FindSYCLToolkit.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-06-01T21:26:14.6154864Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-06-01T21:26:14.6157904Z copying torch\share\cmake\Caffe2\public\cuda.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-06-01T21:26:14.6164277Z copying torch\share\cmake\Caffe2\public\gflags.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-06-01T21:26:14.6171350Z copying torch\share\cmake\Caffe2\public\glog.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-06-01T21:26:14.6178291Z copying torch\share\cmake\Caffe2\public\LoadHIP.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-06-01T21:26:14.6191567Z copying torch\share\cmake\Caffe2\public\mkl.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-06-01T21:26:14.6197890Z copying torch\share\cmake\Caffe2\public\mkldnn.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-06-01T21:26:14.6204078Z copying torch\share\cmake\Caffe2\public\protobuf.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-06-01T21:26:14.6210401Z copying torch\share\cmake\Caffe2\public\utils.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-06-01T21:26:14.6217618Z copying torch\share\cmake\Caffe2\public\xpu.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-06-01T21:26:14.6223605Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix 2025-06-01T21:26:14.6226872Z copying torch\share\cmake\Caffe2\Modules_CUDA_fix\FindCUDA.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix 2025-06-01T21:26:14.6233685Z copying torch\share\cmake\Caffe2\Modules_CUDA_fix\FindCUDNN.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix 2025-06-01T21:26:14.6239597Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream 2025-06-01T21:26:14.6248789Z 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-06-01T21:26:14.6255439Z 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-06-01T21:26:14.6263398Z copying torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindPackageHandleStandardArgs.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream 2025-06-01T21:26:14.6280579Z 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-06-01T21:26:14.6285975Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA 2025-06-01T21:26:14.6289094Z 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-06-01T21:26:14.6295741Z 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-06-01T21:26:14.6302032Z 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-06-01T21:26:14.6316325Z 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-06-01T21:26:14.6321523Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Torch 2025-06-01T21:26:14.6324360Z copying torch\share\cmake\Torch\TorchConfig.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Torch 2025-06-01T21:26:14.6330817Z copying torch\share\cmake\Torch\TorchConfigVersion.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Torch 2025-06-01T21:26:14.6337472Z copying torch\utils\benchmark\utils\timeit_template.cpp -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-06-01T21:26:14.6348964Z copying torch\utils\benchmark\utils\valgrind_wrapper\compat_bindings.cpp -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-06-01T21:26:14.6364805Z copying torch\utils\benchmark\utils\valgrind_wrapper\timer_callgrind_template.cpp -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-06-01T21:26:14.6375415Z copying torch\utils\benchmark\utils\valgrind_wrapper\callgrind.h -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-06-01T21:26:14.6383183Z copying torch\utils\benchmark\utils\valgrind_wrapper\valgrind.h -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-06-01T21:26:14.6393824Z copying torch\utils\model_dump\skeleton.html -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-06-01T21:26:14.6417856Z copying torch\utils\model_dump\code.js -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-06-01T21:26:14.6433148Z copying torch\utils\model_dump\htm.mjs -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-06-01T21:26:14.6447697Z copying torch\utils\model_dump\preact.mjs -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-06-01T21:26:14.6458247Z copying torch\lib\aoti_custom_ops.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:26:14.6471634Z copying torch\lib\asmjit.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:26:14.6481765Z copying torch\lib\backend_with_compiler.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:26:14.6490230Z copying torch\lib\c10.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:26:14.6505551Z copying torch\lib\c10_cuda.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:26:14.6515988Z copying torch\lib\caffe2_nvrtc.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:26:14.6522799Z copying torch\lib\fbgemm.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:26:14.6597678Z copying torch\lib\jitbackend_test.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:26:14.6606557Z copying torch\lib\torch.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:26:14.6613018Z copying torch\lib\torchbind_test.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:26:14.6629668Z copying torch\lib\torch_cpu.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:26:14.7923355Z copying torch\lib\torch_cuda.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:26:14.9785101Z copying torch\lib\torch_global_deps.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:26:14.9792784Z copying torch\lib\torch_python.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:26:14.9944928Z copying torch\lib\aoti_custom_ops.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:26:14.9952205Z copying torch\lib\asmjit.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:26:14.9960697Z copying torch\lib\backend_with_compiler.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:26:14.9967672Z copying torch\lib\c10.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:26:14.9981936Z copying torch\lib\c10_cuda.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:26:14.9995522Z copying torch\lib\caffe2_nvrtc.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:26:15.0007140Z copying torch\lib\cpuinfo.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:26:15.0015173Z copying torch\lib\dnnl.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:26:15.6200969Z copying torch\lib\fbgemm.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:26:15.6221040Z copying torch\lib\fmt.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:26:15.6240391Z copying torch\lib\jitbackend_test.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:26:15.6248042Z copying torch\lib\kineto.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:26:15.6572847Z copying torch\lib\libittnotify.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:26:15.6583161Z copying torch\lib\libprotobuf-lite.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:26:15.6639398Z copying torch\lib\libprotobuf.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:26:15.6974099Z copying torch\lib\libprotoc.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:26:15.7319938Z copying torch\lib\microkernels-prod.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:26:15.7354404Z copying torch\lib\pthreadpool.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:26:15.7364040Z copying torch\lib\sleef.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:26:15.7449100Z copying torch\lib\torch.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:26:15.7461330Z copying torch\lib\torchbind_test.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:26:15.7472780Z copying torch\lib\torch_cpu.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:26:15.7734174Z copying torch\lib\torch_cuda.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:26:15.7756388Z copying torch\lib\torch_python.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:26:15.7766130Z copying torch\lib\XNNPACK.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-06-01T21:26:15.7796265Z creating build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\native 2025-06-01T21:26:15.7801630Z copying torchgen\packaged\ATen\native\native_functions.yaml -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\native 2025-06-01T21:26:15.9303760Z copying torchgen\packaged\ATen\native\tags.yaml -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\native 2025-06-01T21:26:15.9316591Z creating build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:26:15.9319998Z copying torchgen\packaged\ATen\templates\ATenOpList.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:26:15.9332148Z copying torchgen\packaged\ATen\templates\aten_interned_strings.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:26:15.9343516Z copying torchgen\packaged\ATen\templates\CompositeViewCopyKernels.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:26:15.9926555Z copying torchgen\packaged\ATen\templates\DispatchKeyFunction.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:26:15.9939451Z copying torchgen\packaged\ATen\templates\DispatchKeyFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:26:15.9950303Z copying torchgen\packaged\ATen\templates\DispatchKeyFunctions_inl.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:26:15.9961353Z copying torchgen\packaged\ATen\templates\DispatchKeyNativeFunctions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:26:15.9967981Z copying torchgen\packaged\ATen\templates\DispatchKeyNativeFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:26:15.9974416Z copying torchgen\packaged\ATen\templates\enum_tag.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:26:15.9980665Z copying torchgen\packaged\ATen\templates\Function.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:26:15.9987081Z copying torchgen\packaged\ATen\templates\FunctionalInverses.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:26:15.9998866Z copying torchgen\packaged\ATen\templates\Functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:26:16.0010061Z copying torchgen\packaged\ATen\templates\Functions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:26:16.0021394Z copying torchgen\packaged\ATen\templates\LazyIr.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:26:16.0028370Z copying torchgen\packaged\ATen\templates\LazyNonNativeIr.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:26:16.0034766Z copying torchgen\packaged\ATen\templates\MethodOperators.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:26:16.0461876Z copying torchgen\packaged\ATen\templates\NativeFunction.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:26:16.0469539Z copying torchgen\packaged\ATen\templates\NativeFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:26:16.1220982Z copying torchgen\packaged\ATen\templates\NativeMetaFunction.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:26:16.1234013Z copying torchgen\packaged\ATen\templates\NativeMetaFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:26:16.1240890Z copying torchgen\packaged\ATen\templates\Operator.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:26:16.1247468Z copying torchgen\packaged\ATen\templates\Operators.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:26:16.1254582Z copying torchgen\packaged\ATen\templates\Operators.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:26:16.1266957Z copying torchgen\packaged\ATen\templates\RedispatchFunctions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:26:16.1274155Z copying torchgen\packaged\ATen\templates\RedispatchFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:26:16.1286883Z copying torchgen\packaged\ATen\templates\RegisterBackendSelect.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:26:16.1297976Z copying torchgen\packaged\ATen\templates\RegisterCodegenUnboxedKernels.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:26:16.1309494Z copying torchgen\packaged\ATen\templates\RegisterDispatchDefinitions.ini -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:26:16.1320735Z copying torchgen\packaged\ATen\templates\RegisterDispatchKey.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:26:16.1337051Z copying torchgen\packaged\ATen\templates\RegisterFunctionalization.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:26:16.1348770Z copying torchgen\packaged\ATen\templates\RegisterSchema.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:26:16.1355410Z copying torchgen\packaged\ATen\templates\RegistrationDeclarations.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:26:16.1361760Z copying torchgen\packaged\ATen\templates\TensorBody.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:26:16.2116354Z copying torchgen\packaged\ATen\templates\TensorMethods.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:26:16.2133513Z copying torchgen\packaged\ATen\templates\UfuncCPU.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:26:16.2141429Z copying torchgen\packaged\ATen\templates\UfuncCPUKernel.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:26:16.2148239Z copying torchgen\packaged\ATen\templates\UfuncCUDA.cu -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:26:16.2154612Z copying torchgen\packaged\ATen\templates\UnboxingFunctions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:26:16.2171377Z copying torchgen\packaged\ATen\templates\UnboxingFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-06-01T21:26:16.2183809Z creating build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-06-01T21:26:16.2186914Z copying torchgen\packaged\autograd\BUILD.bazel -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-06-01T21:26:16.2193249Z copying torchgen\packaged\autograd\build.bzl -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-06-01T21:26:16.2199456Z copying torchgen\packaged\autograd\context.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-06-01T21:26:16.2211326Z copying torchgen\packaged\autograd\deprecated.yaml -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-06-01T21:26:16.2222946Z copying torchgen\packaged\autograd\derivatives.yaml -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-06-01T21:26:16.2301218Z copying torchgen\packaged\autograd\gen_annotated_fn_args.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-06-01T21:26:16.2313167Z copying torchgen\packaged\autograd\gen_autograd.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-06-01T21:26:16.2326032Z copying torchgen\packaged\autograd\gen_autograd_functions.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-06-01T21:26:16.3079101Z copying torchgen\packaged\autograd\gen_inplace_or_view_type.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-06-01T21:26:16.3094951Z copying torchgen\packaged\autograd\gen_python_functions.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-06-01T21:26:16.3839532Z copying torchgen\packaged\autograd\gen_trace_type.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-06-01T21:26:16.4847480Z copying torchgen\packaged\autograd\gen_variable_factories.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-06-01T21:26:16.5327036Z copying torchgen\packaged\autograd\gen_variable_type.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-06-01T21:26:18.6809527Z copying torchgen\packaged\autograd\gen_view_funcs.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-06-01T21:26:18.6822477Z copying torchgen\packaged\autograd\load_derivatives.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-06-01T21:26:18.6847346Z copying torchgen\packaged\autograd\README.md -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-06-01T21:26:18.6854050Z copying torchgen\packaged\autograd\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-06-01T21:26:18.6858732Z creating build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:26:18.6862383Z copying torchgen\packaged\autograd\templates\ADInplaceOrViewType.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:26:18.7365559Z copying torchgen\packaged\autograd\templates\annotated_fn_args.py.in -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:26:18.7373574Z copying torchgen\packaged\autograd\templates\Functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:26:18.7389394Z copying torchgen\packaged\autograd\templates\Functions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:26:18.7400779Z copying torchgen\packaged\autograd\templates\python_enum_tag.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:26:18.7408828Z copying torchgen\packaged\autograd\templates\python_fft_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:26:18.8031573Z copying torchgen\packaged\autograd\templates\python_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:26:18.8043645Z copying torchgen\packaged\autograd\templates\python_functions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:26:18.8050878Z copying torchgen\packaged\autograd\templates\python_linalg_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:26:18.8063435Z copying torchgen\packaged\autograd\templates\python_nested_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:26:18.8074873Z copying torchgen\packaged\autograd\templates\python_nn_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:26:18.8086866Z copying torchgen\packaged\autograd\templates\python_return_types.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:26:18.8102040Z copying torchgen\packaged\autograd\templates\python_return_types.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:26:18.8113588Z copying torchgen\packaged\autograd\templates\python_sparse_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:26:18.8124066Z copying torchgen\packaged\autograd\templates\python_special_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:26:18.8134465Z copying torchgen\packaged\autograd\templates\python_torch_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:26:18.8146576Z copying torchgen\packaged\autograd\templates\python_variable_methods.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:26:18.9029440Z copying torchgen\packaged\autograd\templates\TraceType.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:26:18.9041926Z copying torchgen\packaged\autograd\templates\VariableType.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:26:18.9053689Z copying torchgen\packaged\autograd\templates\VariableType.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:26:18.9070002Z copying torchgen\packaged\autograd\templates\variable_factories.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:26:18.9083626Z copying torchgen\packaged\autograd\templates\ViewFuncs.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:26:18.9090042Z copying torchgen\packaged\autograd\templates\ViewFuncs.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-06-01T21:26:18.9096884Z copying torch\jit\_script.pyi -> build\lib.win-amd64-cpython-39\torch\jit 2025-06-01T21:26:18.9104707Z copying torch\nn\functional.pyi -> build\lib.win-amd64-cpython-39\torch\nn 2025-06-01T21:26:18.9113179Z copying torch\nn\parameter.pyi -> build\lib.win-amd64-cpython-39\torch\nn 2025-06-01T21:26:18.9120724Z copying torch\utils\_config_typing.pyi -> build\lib.win-amd64-cpython-39\torch\utils 2025-06-01T21:26:18.9128967Z copying torch\distributed\optim\zero_redundancy_optimizer.pyi -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-06-01T21:26:18.9137175Z copying torch\optim\_multi_tensor\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor 2025-06-01T21:26:18.9145145Z copying torch\utils\data\datapipes\datapipe.pyi -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-06-01T21:26:19.0052574Z running build_ext 2025-06-01T21:26:20.9813870Z -- Building with NumPy bindings 2025-06-01T21:26:20.9814410Z -- Detected cuDNN at C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64, 2025-06-01T21:26:20.9815073Z -- Detected CUDA at C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6 2025-06-01T21:26:20.9815495Z -- Not using XPU 2025-06-01T21:26:20.9815706Z -- Using MKLDNN 2025-06-01T21:26:20.9816001Z -- Not using Compute Library for the Arm architecture with MKLDNN 2025-06-01T21:26:20.9816402Z -- Not using CBLAS in MKLDNN 2025-06-01T21:26:20.9816631Z -- Not using NCCL 2025-06-01T21:26:20.9816859Z -- Building without distributed package 2025-06-01T21:26:20.9817138Z -- Building Executorch 2025-06-01T21:26:20.9817360Z -- Using ITT 2025-06-01T21:26:20.9817997Z 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-06-01T21:26:20.9819782Z copying functorch\functorch.pyd -> C:\actions-runner\_work\pytorch\pytorch\build\lib.win-amd64-cpython-39\functorch\_C.cp39-win_amd64.pyd 2025-06-01T21:26:20.9834829Z building 'torch._C' extension 2025-06-01T21:26:20.9856400Z creating build\temp.win-amd64-cpython-39\Release\torch\csrc 2025-06-01T21:26:20.9868455Z "C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\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\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" "-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\shared" "-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\winrt" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\cppwinrt" /Tctorch/csrc/stub.c /Fobuild\temp.win-amd64-cpython-39\Release\torch\csrc\stub.obj /MD /FS /EHsc 2025-06-01T21:26:20.9973683Z stub.c 2025-06-01T21:26:21.6160683Z "C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\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\2019\BuildTools\VC\Tools\MSVC\14.29.30133\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-06-01T21:26:21.6460262Z 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-06-01T21:26:21.6507119Z Generating code 2025-06-01T21:26:21.6995582Z Finished generating code 2025-06-01T21:26:21.7287278Z 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-06-01T21:26:21.7343899Z C:\Jenkins\Miniconda3\lib\site-packages\setuptools\_distutils\cmd.py:79: SetuptoolsDeprecationWarning: setup.py install is deprecated. 2025-06-01T21:26:21.7344575Z !! 2025-06-01T21:26:21.7344695Z 2025-06-01T21:26:21.7344808Z ******************************************************************************** 2025-06-01T21:26:21.7418906Z Please avoid running ``setup.py`` directly. 2025-06-01T21:26:21.7419355Z Instead, use pypa/build, pypa/installer or other 2025-06-01T21:26:21.7419842Z standards-based tools. 2025-06-01T21:26:21.7420011Z 2025-06-01T21:26:21.7420307Z See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details. 2025-06-01T21:26:21.7420806Z ******************************************************************************** 2025-06-01T21:26:21.7421036Z 2025-06-01T21:26:21.7421114Z !! 2025-06-01T21:26:21.7421295Z self.initialize_options() 2025-06-01T21:26:21.7421613Z The specified environment variable does not exist. 2025-06-01T21:26:21.7421966Z installing to build\bdist.win-amd64\wheel 2025-06-01T21:26:21.7422266Z running install 2025-06-01T21:26:21.7441806Z running install_lib 2025-06-01T21:26:21.7526554Z creating build\bdist.win-amd64\wheel 2025-06-01T21:26:21.7532070Z creating build\bdist.win-amd64\wheel\functorch 2025-06-01T21:26:21.7535574Z creating build\bdist.win-amd64\wheel\functorch\compile 2025-06-01T21:26:21.7538877Z copying build\lib.win-amd64-cpython-39\functorch\compile\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\compile 2025-06-01T21:26:21.7544857Z creating build\bdist.win-amd64\wheel\functorch\dim 2025-06-01T21:26:21.7548100Z copying build\lib.win-amd64-cpython-39\functorch\dim\batch_tensor.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-06-01T21:26:21.7554044Z copying build\lib.win-amd64-cpython-39\functorch\dim\delayed_mul_tensor.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-06-01T21:26:21.7559513Z copying build\lib.win-amd64-cpython-39\functorch\dim\dim.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-06-01T21:26:21.7565113Z copying build\lib.win-amd64-cpython-39\functorch\dim\magic_trace.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-06-01T21:26:21.7576324Z copying build\lib.win-amd64-cpython-39\functorch\dim\op_properties.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-06-01T21:26:21.7581995Z copying build\lib.win-amd64-cpython-39\functorch\dim\reference.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-06-01T21:26:21.7587625Z copying build\lib.win-amd64-cpython-39\functorch\dim\tree_map.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-06-01T21:26:21.7592646Z copying build\lib.win-amd64-cpython-39\functorch\dim\wrap_type.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-06-01T21:26:21.7598057Z copying build\lib.win-amd64-cpython-39\functorch\dim\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-06-01T21:26:21.7603924Z creating build\bdist.win-amd64\wheel\functorch\einops 2025-06-01T21:26:21.7607066Z copying build\lib.win-amd64-cpython-39\functorch\einops\rearrange.py -> build\bdist.win-amd64\wheel\.\functorch\einops 2025-06-01T21:26:21.7612706Z copying build\lib.win-amd64-cpython-39\functorch\einops\_parsing.py -> build\bdist.win-amd64\wheel\.\functorch\einops 2025-06-01T21:26:21.7618141Z copying build\lib.win-amd64-cpython-39\functorch\einops\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\einops 2025-06-01T21:26:21.7623528Z creating build\bdist.win-amd64\wheel\functorch\experimental 2025-06-01T21:26:21.7626825Z copying build\lib.win-amd64-cpython-39\functorch\experimental\control_flow.py -> build\bdist.win-amd64\wheel\.\functorch\experimental 2025-06-01T21:26:21.7631894Z copying build\lib.win-amd64-cpython-39\functorch\experimental\ops.py -> build\bdist.win-amd64\wheel\.\functorch\experimental 2025-06-01T21:26:21.7636849Z copying build\lib.win-amd64-cpython-39\functorch\experimental\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\experimental 2025-06-01T21:26:21.7642103Z copying build\lib.win-amd64-cpython-39\functorch\_C.cp39-win_amd64.pyd -> build\bdist.win-amd64\wheel\.\functorch 2025-06-01T21:26:21.7670871Z creating build\bdist.win-amd64\wheel\functorch\_src 2025-06-01T21:26:21.7675479Z creating build\bdist.win-amd64\wheel\functorch\_src\aot_autograd 2025-06-01T21:26:21.7678804Z copying build\lib.win-amd64-cpython-39\functorch\_src\aot_autograd\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\_src\aot_autograd 2025-06-01T21:26:21.7684239Z creating build\bdist.win-amd64\wheel\functorch\_src\eager_transforms 2025-06-01T21:26:21.7687797Z copying build\lib.win-amd64-cpython-39\functorch\_src\eager_transforms\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\_src\eager_transforms 2025-06-01T21:26:21.7693057Z creating build\bdist.win-amd64\wheel\functorch\_src\make_functional 2025-06-01T21:26:21.7696374Z copying build\lib.win-amd64-cpython-39\functorch\_src\make_functional\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\_src\make_functional 2025-06-01T21:26:21.7701588Z creating build\bdist.win-amd64\wheel\functorch\_src\vmap 2025-06-01T21:26:21.7709459Z copying build\lib.win-amd64-cpython-39\functorch\_src\vmap\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\_src\vmap 2025-06-01T21:26:21.7714648Z copying build\lib.win-amd64-cpython-39\functorch\_src\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\_src 2025-06-01T21:26:21.7719040Z copying build\lib.win-amd64-cpython-39\functorch\__init__.py -> build\bdist.win-amd64\wheel\.\functorch 2025-06-01T21:26:21.7725214Z creating build\bdist.win-amd64\wheel\torch 2025-06-01T21:26:21.7728384Z creating build\bdist.win-amd64\wheel\torch\accelerator 2025-06-01T21:26:21.7731547Z copying build\lib.win-amd64-cpython-39\torch\accelerator\_utils.py -> build\bdist.win-amd64\wheel\.\torch\accelerator 2025-06-01T21:26:21.7736837Z copying build\lib.win-amd64-cpython-39\torch\accelerator\__init__.py -> build\bdist.win-amd64\wheel\.\torch\accelerator 2025-06-01T21:26:21.7742363Z creating build\bdist.win-amd64\wheel\torch\amp 2025-06-01T21:26:21.7745361Z copying build\lib.win-amd64-cpython-39\torch\amp\autocast_mode.py -> build\bdist.win-amd64\wheel\.\torch\amp 2025-06-01T21:26:21.7751166Z copying build\lib.win-amd64-cpython-39\torch\amp\grad_scaler.py -> build\bdist.win-amd64\wheel\.\torch\amp 2025-06-01T21:26:21.7756749Z copying build\lib.win-amd64-cpython-39\torch\amp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\amp 2025-06-01T21:26:21.7761675Z creating build\bdist.win-amd64\wheel\torch\ao 2025-06-01T21:26:21.7765103Z creating build\bdist.win-amd64\wheel\torch\ao\nn 2025-06-01T21:26:21.7768364Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic 2025-06-01T21:26:21.7771782Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\modules 2025-06-01T21:26:21.7775083Z 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-06-01T21:26:21.7780505Z 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-06-01T21:26:21.7785744Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\qat 2025-06-01T21:26:21.7789119Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\qat\modules 2025-06-01T21:26:21.7792708Z 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-06-01T21:26:21.7798757Z 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-06-01T21:26:21.7803891Z 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-06-01T21:26:21.7809676Z 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-06-01T21:26:21.7819798Z 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-06-01T21:26:21.7824976Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\quantized 2025-06-01T21:26:21.7828245Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\quantized\dynamic 2025-06-01T21:26:21.7831525Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\quantized\dynamic\modules 2025-06-01T21:26:21.7834932Z 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-06-01T21:26:21.7840395Z 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-06-01T21:26:21.7845431Z 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-06-01T21:26:21.7850616Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\quantized\modules 2025-06-01T21:26:21.7853930Z 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-06-01T21:26:21.7859407Z 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-06-01T21:26:21.7864571Z 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-06-01T21:26:21.7870152Z 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-06-01T21:26:21.7875555Z 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-06-01T21:26:21.7885481Z 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-06-01T21:26:21.7890402Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic 2025-06-01T21:26:21.7895937Z creating build\bdist.win-amd64\wheel\torch\ao\nn\qat 2025-06-01T21:26:21.7899445Z creating build\bdist.win-amd64\wheel\torch\ao\nn\qat\dynamic 2025-06-01T21:26:21.7902600Z creating build\bdist.win-amd64\wheel\torch\ao\nn\qat\dynamic\modules 2025-06-01T21:26:21.7905837Z 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-06-01T21:26:21.7911064Z 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-06-01T21:26:21.7915980Z 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-06-01T21:26:21.7921169Z creating build\bdist.win-amd64\wheel\torch\ao\nn\qat\modules 2025-06-01T21:26:21.7924283Z 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-06-01T21:26:21.7929863Z 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-06-01T21:26:21.7935205Z 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-06-01T21:26:21.7940432Z 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-06-01T21:26:21.7945951Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\qat\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\qat 2025-06-01T21:26:21.7957136Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantizable 2025-06-01T21:26:21.7960479Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantizable\modules 2025-06-01T21:26:21.7964160Z 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-06-01T21:26:21.7969975Z 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-06-01T21:26:21.7975707Z 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-06-01T21:26:21.7980587Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantizable 2025-06-01T21:26:21.7985746Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized 2025-06-01T21:26:21.7993819Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\dynamic 2025-06-01T21:26:21.7997041Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\dynamic\modules 2025-06-01T21:26:21.8000534Z 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-06-01T21:26:21.8006296Z 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-06-01T21:26:21.8011572Z 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-06-01T21:26:21.8017758Z 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-06-01T21:26:21.8022758Z 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-06-01T21:26:21.8027562Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\functional.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized 2025-06-01T21:26:21.8033446Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\modules 2025-06-01T21:26:21.8036708Z 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-06-01T21:26:21.8042163Z 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-06-01T21:26:21.8047435Z 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-06-01T21:26:21.8053697Z 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-06-01T21:26:21.8058797Z 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-06-01T21:26:21.8069341Z 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-06-01T21:26:21.8074626Z 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-06-01T21:26:21.8080104Z 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-06-01T21:26:21.8085434Z 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-06-01T21:26:21.8090697Z 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-06-01T21:26:21.8096028Z 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-06-01T21:26:21.8101510Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\reference 2025-06-01T21:26:21.8109838Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\reference\modules 2025-06-01T21:26:21.8113673Z 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-06-01T21:26:21.8118977Z 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-06-01T21:26:21.8124109Z 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-06-01T21:26:21.8130440Z 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-06-01T21:26:21.8135605Z 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-06-01T21:26:21.8141082Z 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-06-01T21:26:21.8146990Z 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-06-01T21:26:21.8152242Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized 2025-06-01T21:26:21.8157677Z creating build\bdist.win-amd64\wheel\torch\ao\nn\sparse 2025-06-01T21:26:21.8161134Z creating build\bdist.win-amd64\wheel\torch\ao\nn\sparse\quantized 2025-06-01T21:26:21.8164518Z creating build\bdist.win-amd64\wheel\torch\ao\nn\sparse\quantized\dynamic 2025-06-01T21:26:21.8167750Z 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-06-01T21:26:21.8173670Z 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-06-01T21:26:21.8178555Z 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-06-01T21:26:21.8183554Z 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-06-01T21:26:21.8188914Z 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-06-01T21:26:21.8212522Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\sparse 2025-06-01T21:26:21.8218094Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn 2025-06-01T21:26:21.8224297Z creating build\bdist.win-amd64\wheel\torch\ao\ns 2025-06-01T21:26:21.8227994Z creating build\bdist.win-amd64\wheel\torch\ao\ns\fx 2025-06-01T21:26:21.8231585Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\graph_matcher.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-06-01T21:26:21.8237930Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\graph_passes.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-06-01T21:26:21.8244001Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\mappings.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-06-01T21:26:21.8255539Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\ns_types.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-06-01T21:26:21.8261016Z 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-06-01T21:26:21.8273926Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\pattern_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-06-01T21:26:21.8280962Z 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-06-01T21:26:21.8286446Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-06-01T21:26:21.8298424Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\weight_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-06-01T21:26:21.8303927Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-06-01T21:26:21.8308256Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\_numeric_suite.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns 2025-06-01T21:26:21.8314118Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\_numeric_suite_fx.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns 2025-06-01T21:26:21.8320385Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns 2025-06-01T21:26:21.8325445Z creating build\bdist.win-amd64\wheel\torch\ao\pruning 2025-06-01T21:26:21.8328843Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\scheduler 2025-06-01T21:26:21.8332131Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler\base_scheduler.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\scheduler 2025-06-01T21:26:21.8337671Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler\cubic_scheduler.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\scheduler 2025-06-01T21:26:21.8342904Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler\lambda_scheduler.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\scheduler 2025-06-01T21:26:21.8353509Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\scheduler 2025-06-01T21:26:21.8357992Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\sparsifier 2025-06-01T21:26:21.8361190Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier\base_sparsifier.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\sparsifier 2025-06-01T21:26:21.8366722Z 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-06-01T21:26:21.8372315Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\sparsifier 2025-06-01T21:26:21.8382357Z 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-06-01T21:26:21.8387573Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\sparsifier 2025-06-01T21:26:21.8392237Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental 2025-06-01T21:26:21.8395770Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\activation_sparsifier 2025-06-01T21:26:21.8399598Z 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-06-01T21:26:21.8405881Z 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-06-01T21:26:21.8410518Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\data_scheduler 2025-06-01T21:26:21.8414030Z 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-06-01T21:26:21.8419853Z 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-06-01T21:26:21.8425234Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\data_sparsifier 2025-06-01T21:26:21.8434117Z 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-06-01T21:26:21.8439961Z 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-06-01T21:26:21.8445794Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\data_sparsifier\lightning 2025-06-01T21:26:21.8453697Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks 2025-06-01T21:26:21.8457513Z 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-06-01T21:26:21.8463653Z 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-06-01T21:26:21.8469290Z 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-06-01T21:26:21.8478920Z 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-06-01T21:26:21.8483636Z 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-06-01T21:26:21.8489000Z 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-06-01T21:26:21.8494629Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\pruner 2025-06-01T21:26:21.8498355Z 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-06-01T21:26:21.8504518Z 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-06-01T21:26:21.8509701Z 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-06-01T21:26:21.8519949Z 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-06-01T21:26:21.8525563Z 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-06-01T21:26:21.8536865Z 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-06-01T21:26:21.8543824Z 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-06-01T21:26:21.8549883Z 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-06-01T21:26:21.8555969Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental 2025-06-01T21:26:21.8560828Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_mappings.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning 2025-06-01T21:26:21.8571046Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning 2025-06-01T21:26:21.8582103Z creating build\bdist.win-amd64\wheel\torch\ao\quantization 2025-06-01T21:26:21.8585649Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\backend_config 2025-06-01T21:26:21.8589070Z 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-06-01T21:26:21.8595130Z 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-06-01T21:26:21.8601039Z 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-06-01T21:26:21.8606278Z 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-06-01T21:26:21.8616342Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config\observation_type.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\backend_config 2025-06-01T21:26:21.8620654Z 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-06-01T21:26:21.8626881Z 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-06-01T21:26:21.8632097Z 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-06-01T21:26:21.8637251Z 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-06-01T21:26:21.8642640Z 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-06-01T21:26:21.8647795Z 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-06-01T21:26:21.8653643Z 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-06-01T21:26:21.8659048Z 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-06-01T21:26:21.8664375Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fake_quantize.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-06-01T21:26:21.8670206Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fuser_method_mappings.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-06-01T21:26:21.8681135Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fuse_modules.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-06-01T21:26:21.8687060Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\fx 2025-06-01T21:26:21.8690390Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\convert.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-06-01T21:26:21.8696847Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\custom_config.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-06-01T21:26:21.8702742Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\fuse.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-06-01T21:26:21.8708686Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\fuse_handler.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-06-01T21:26:21.8714122Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\graph_module.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-06-01T21:26:21.8724446Z 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-06-01T21:26:21.8730319Z 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-06-01T21:26:21.8735942Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\lstm_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-06-01T21:26:21.8741896Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\match_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-06-01T21:26:21.8747939Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\pattern_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-06-01T21:26:21.8753625Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\prepare.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-06-01T21:26:21.8760966Z 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-06-01T21:26:21.8772928Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\quantize_handler.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-06-01T21:26:21.8778961Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\tracer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-06-01T21:26:21.8784482Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-06-01T21:26:21.8790517Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_decomposed.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-06-01T21:26:21.8797012Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_equalize.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-06-01T21:26:21.8803137Z 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-06-01T21:26:21.8810989Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\fx\_model_report 2025-06-01T21:26:21.8814625Z 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-06-01T21:26:21.8821191Z 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-06-01T21:26:21.8827294Z 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-06-01T21:26:21.8838021Z 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-06-01T21:26:21.8844350Z 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-06-01T21:26:21.8848641Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-06-01T21:26:21.8854095Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\observer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-06-01T21:26:21.8861667Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\pt2e 2025-06-01T21:26:21.8865032Z 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-06-01T21:26:21.8870494Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\export_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-06-01T21:26:21.8875909Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\graph_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-06-01T21:26:21.8881389Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\lowering.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-06-01T21:26:21.8891447Z 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-06-01T21:26:21.8901854Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\prepare.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-06-01T21:26:21.8907728Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\qat_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-06-01T21:26:21.8915356Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\pt2e\representation 2025-06-01T21:26:21.8919105Z 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-06-01T21:26:21.8924982Z 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-06-01T21:26:21.8930102Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-06-01T21:26:21.8936558Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\_affine_quantization.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-06-01T21:26:21.8946784Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\_numeric_debugger.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-06-01T21:26:21.8952520Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-06-01T21:26:21.8956991Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\qconfig.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-06-01T21:26:21.8962897Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\qconfig_mapping.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-06-01T21:26:21.8968539Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantization_mappings.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-06-01T21:26:21.8974142Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantize.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-06-01T21:26:21.8986048Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\quantizer 2025-06-01T21:26:21.8989664Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\composable_quantizer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-06-01T21:26:21.8995064Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\embedding_quantizer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-06-01T21:26:21.9000393Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\quantizer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-06-01T21:26:21.9009814Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-06-01T21:26:21.9015284Z 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-06-01T21:26:21.9026145Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\xnnpack_quantizer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-06-01T21:26:21.9032175Z 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-06-01T21:26:21.9038531Z 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-06-01T21:26:21.9044329Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-06-01T21:26:21.9049583Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantize_fx.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-06-01T21:26:21.9056349Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantize_jit.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-06-01T21:26:21.9062049Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantize_pt2e.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-06-01T21:26:21.9067512Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quant_type.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-06-01T21:26:21.9072847Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\stubs.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-06-01T21:26:21.9078496Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-06-01T21:26:21.9084357Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\_correct_bias.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-06-01T21:26:21.9117217Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\_equalize.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-06-01T21:26:21.9126090Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\_learnable_fake_quantize.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-06-01T21:26:21.9132295Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-06-01T21:26:21.9139542Z copying build\lib.win-amd64-cpython-39\torch\ao\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao 2025-06-01T21:26:21.9146231Z creating build\bdist.win-amd64\wheel\torch\autograd 2025-06-01T21:26:21.9150196Z copying build\lib.win-amd64-cpython-39\torch\autograd\anomaly_mode.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-06-01T21:26:21.9156717Z copying build\lib.win-amd64-cpython-39\torch\autograd\forward_ad.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-06-01T21:26:21.9162610Z copying build\lib.win-amd64-cpython-39\torch\autograd\function.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-06-01T21:26:21.9175245Z copying build\lib.win-amd64-cpython-39\torch\autograd\functional.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-06-01T21:26:21.9240446Z copying build\lib.win-amd64-cpython-39\torch\autograd\gradcheck.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-06-01T21:26:21.9247285Z copying build\lib.win-amd64-cpython-39\torch\autograd\grad_mode.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-06-01T21:26:21.9252965Z copying build\lib.win-amd64-cpython-39\torch\autograd\graph.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-06-01T21:26:21.9258943Z copying build\lib.win-amd64-cpython-39\torch\autograd\profiler.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-06-01T21:26:21.9272230Z copying build\lib.win-amd64-cpython-39\torch\autograd\profiler_legacy.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-06-01T21:26:21.9277859Z copying build\lib.win-amd64-cpython-39\torch\autograd\profiler_util.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-06-01T21:26:21.9284978Z copying build\lib.win-amd64-cpython-39\torch\autograd\variable.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-06-01T21:26:21.9291139Z creating build\bdist.win-amd64\wheel\torch\autograd\_functions 2025-06-01T21:26:21.9294677Z copying build\lib.win-amd64-cpython-39\torch\autograd\_functions\tensor.py -> build\bdist.win-amd64\wheel\.\torch\autograd\_functions 2025-06-01T21:26:21.9300588Z copying build\lib.win-amd64-cpython-39\torch\autograd\_functions\utils.py -> build\bdist.win-amd64\wheel\.\torch\autograd\_functions 2025-06-01T21:26:21.9306079Z copying build\lib.win-amd64-cpython-39\torch\autograd\_functions\__init__.py -> build\bdist.win-amd64\wheel\.\torch\autograd\_functions 2025-06-01T21:26:21.9311269Z copying build\lib.win-amd64-cpython-39\torch\autograd\__init__.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-06-01T21:26:21.9318015Z creating build\bdist.win-amd64\wheel\torch\backends 2025-06-01T21:26:21.9321498Z creating build\bdist.win-amd64\wheel\torch\backends\cpu 2025-06-01T21:26:21.9324753Z copying build\lib.win-amd64-cpython-39\torch\backends\cpu\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\cpu 2025-06-01T21:26:21.9330594Z creating build\bdist.win-amd64\wheel\torch\backends\cuda 2025-06-01T21:26:21.9333903Z copying build\lib.win-amd64-cpython-39\torch\backends\cuda\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\cuda 2025-06-01T21:26:21.9340079Z creating build\bdist.win-amd64\wheel\torch\backends\cudnn 2025-06-01T21:26:21.9343196Z copying build\lib.win-amd64-cpython-39\torch\backends\cudnn\rnn.py -> build\bdist.win-amd64\wheel\.\torch\backends\cudnn 2025-06-01T21:26:21.9348758Z copying build\lib.win-amd64-cpython-39\torch\backends\cudnn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\cudnn 2025-06-01T21:26:21.9354178Z creating build\bdist.win-amd64\wheel\torch\backends\cusparselt 2025-06-01T21:26:21.9357505Z copying build\lib.win-amd64-cpython-39\torch\backends\cusparselt\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\cusparselt 2025-06-01T21:26:21.9369231Z creating build\bdist.win-amd64\wheel\torch\backends\kleidiai 2025-06-01T21:26:21.9372449Z copying build\lib.win-amd64-cpython-39\torch\backends\kleidiai\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\kleidiai 2025-06-01T21:26:21.9383631Z creating build\bdist.win-amd64\wheel\torch\backends\mha 2025-06-01T21:26:22.0198860Z copying build\lib.win-amd64-cpython-39\torch\backends\mha\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\mha 2025-06-01T21:26:22.0204855Z creating build\bdist.win-amd64\wheel\torch\backends\mkl 2025-06-01T21:26:22.0208260Z copying build\lib.win-amd64-cpython-39\torch\backends\mkl\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\mkl 2025-06-01T21:26:22.0214479Z creating build\bdist.win-amd64\wheel\torch\backends\mkldnn 2025-06-01T21:26:22.0217660Z copying build\lib.win-amd64-cpython-39\torch\backends\mkldnn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\mkldnn 2025-06-01T21:26:22.0223173Z creating build\bdist.win-amd64\wheel\torch\backends\mps 2025-06-01T21:26:22.0226450Z copying build\lib.win-amd64-cpython-39\torch\backends\mps\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\mps 2025-06-01T21:26:22.0232127Z creating build\bdist.win-amd64\wheel\torch\backends\nnpack 2025-06-01T21:26:22.0235278Z copying build\lib.win-amd64-cpython-39\torch\backends\nnpack\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\nnpack 2025-06-01T21:26:22.0240696Z creating build\bdist.win-amd64\wheel\torch\backends\openmp 2025-06-01T21:26:22.0244326Z copying build\lib.win-amd64-cpython-39\torch\backends\openmp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\openmp 2025-06-01T21:26:22.0249258Z creating build\bdist.win-amd64\wheel\torch\backends\opt_einsum 2025-06-01T21:26:22.0252825Z copying build\lib.win-amd64-cpython-39\torch\backends\opt_einsum\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\opt_einsum 2025-06-01T21:26:22.0258467Z creating build\bdist.win-amd64\wheel\torch\backends\quantized 2025-06-01T21:26:22.0261913Z copying build\lib.win-amd64-cpython-39\torch\backends\quantized\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\quantized 2025-06-01T21:26:22.0267873Z creating build\bdist.win-amd64\wheel\torch\backends\xeon 2025-06-01T21:26:22.0271011Z copying build\lib.win-amd64-cpython-39\torch\backends\xeon\run_cpu.py -> build\bdist.win-amd64\wheel\.\torch\backends\xeon 2025-06-01T21:26:22.0277629Z copying build\lib.win-amd64-cpython-39\torch\backends\xeon\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\xeon 2025-06-01T21:26:22.0282234Z creating build\bdist.win-amd64\wheel\torch\backends\xnnpack 2025-06-01T21:26:22.0285341Z copying build\lib.win-amd64-cpython-39\torch\backends\xnnpack\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\xnnpack 2025-06-01T21:26:22.0291432Z creating build\bdist.win-amd64\wheel\torch\backends\_coreml 2025-06-01T21:26:22.0294795Z copying build\lib.win-amd64-cpython-39\torch\backends\_coreml\preprocess.py -> build\bdist.win-amd64\wheel\.\torch\backends\_coreml 2025-06-01T21:26:22.0300854Z copying build\lib.win-amd64-cpython-39\torch\backends\_coreml\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\_coreml 2025-06-01T21:26:22.0305641Z creating build\bdist.win-amd64\wheel\torch\backends\_nnapi 2025-06-01T21:26:22.0309059Z copying build\lib.win-amd64-cpython-39\torch\backends\_nnapi\prepare.py -> build\bdist.win-amd64\wheel\.\torch\backends\_nnapi 2025-06-01T21:26:22.0314990Z copying build\lib.win-amd64-cpython-39\torch\backends\_nnapi\serializer.py -> build\bdist.win-amd64\wheel\.\torch\backends\_nnapi 2025-06-01T21:26:22.0321482Z copying build\lib.win-amd64-cpython-39\torch\backends\_nnapi\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\_nnapi 2025-06-01T21:26:22.0326211Z copying build\lib.win-amd64-cpython-39\torch\backends\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends 2025-06-01T21:26:22.0332169Z creating build\bdist.win-amd64\wheel\torch\bin 2025-06-01T21:26:22.0336092Z copying build\lib.win-amd64-cpython-39\torch\bin\asmjit.dll -> build\bdist.win-amd64\wheel\.\torch\bin 2025-06-01T21:26:22.0345486Z copying build\lib.win-amd64-cpython-39\torch\bin\fbgemm.dll -> build\bdist.win-amd64\wheel\.\torch\bin 2025-06-01T21:26:22.0428053Z copying build\lib.win-amd64-cpython-39\torch\bin\FileStoreTest.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-06-01T21:26:22.0465011Z copying build\lib.win-amd64-cpython-39\torch\bin\ProcessGroupGlooAsyncTest.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-06-01T21:26:22.0479538Z copying build\lib.win-amd64-cpython-39\torch\bin\ProcessGroupGlooTest.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-06-01T21:26:22.0489866Z copying build\lib.win-amd64-cpython-39\torch\bin\protoc.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-06-01T21:26:22.0520022Z copying build\lib.win-amd64-cpython-39\torch\bin\TCPStoreTest.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-06-01T21:26:22.0535223Z copying build\lib.win-amd64-cpython-39\torch\bin\test_api.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-06-01T21:26:22.0620326Z copying build\lib.win-amd64-cpython-39\torch\bin\test_edge_op_registration.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-06-01T21:26:22.0630309Z copying build\lib.win-amd64-cpython-39\torch\bin\test_jit.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-06-01T21:26:22.0682437Z copying build\lib.win-amd64-cpython-39\torch\bin\test_lazy.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-06-01T21:26:22.0712149Z copying build\lib.win-amd64-cpython-39\torch\bin\test_nativert.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-06-01T21:26:22.0723396Z copying build\lib.win-amd64-cpython-39\torch\bin\test_tensorexpr.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-06-01T21:26:22.0778565Z copying build\lib.win-amd64-cpython-39\torch\bin\tutorial_tensorexpr.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-06-01T21:26:22.0787031Z creating build\bdist.win-amd64\wheel\torch\compiler 2025-06-01T21:26:22.0795807Z copying build\lib.win-amd64-cpython-39\torch\compiler\config.py -> build\bdist.win-amd64\wheel\.\torch\compiler 2025-06-01T21:26:22.0801425Z copying build\lib.win-amd64-cpython-39\torch\compiler\_cache.py -> build\bdist.win-amd64\wheel\.\torch\compiler 2025-06-01T21:26:22.0806608Z copying build\lib.win-amd64-cpython-39\torch\compiler\__init__.py -> build\bdist.win-amd64\wheel\.\torch\compiler 2025-06-01T21:26:22.0812704Z creating build\bdist.win-amd64\wheel\torch\contrib 2025-06-01T21:26:22.0816407Z copying build\lib.win-amd64-cpython-39\torch\contrib\_tensorboard_vis.py -> build\bdist.win-amd64\wheel\.\torch\contrib 2025-06-01T21:26:22.0822522Z copying build\lib.win-amd64-cpython-39\torch\contrib\__init__.py -> build\bdist.win-amd64\wheel\.\torch\contrib 2025-06-01T21:26:22.0827166Z creating build\bdist.win-amd64\wheel\torch\cpu 2025-06-01T21:26:22.0830354Z creating build\bdist.win-amd64\wheel\torch\cpu\amp 2025-06-01T21:26:22.0833516Z copying build\lib.win-amd64-cpython-39\torch\cpu\amp\autocast_mode.py -> build\bdist.win-amd64\wheel\.\torch\cpu\amp 2025-06-01T21:26:22.0839066Z copying build\lib.win-amd64-cpython-39\torch\cpu\amp\grad_scaler.py -> build\bdist.win-amd64\wheel\.\torch\cpu\amp 2025-06-01T21:26:22.0844422Z copying build\lib.win-amd64-cpython-39\torch\cpu\amp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\cpu\amp 2025-06-01T21:26:22.0849513Z copying build\lib.win-amd64-cpython-39\torch\cpu\__init__.py -> build\bdist.win-amd64\wheel\.\torch\cpu 2025-06-01T21:26:22.0855276Z creating build\bdist.win-amd64\wheel\torch\cuda 2025-06-01T21:26:22.0858551Z creating build\bdist.win-amd64\wheel\torch\cuda\amp 2025-06-01T21:26:22.0861772Z copying build\lib.win-amd64-cpython-39\torch\cuda\amp\autocast_mode.py -> build\bdist.win-amd64\wheel\.\torch\cuda\amp 2025-06-01T21:26:22.0867171Z copying build\lib.win-amd64-cpython-39\torch\cuda\amp\common.py -> build\bdist.win-amd64\wheel\.\torch\cuda\amp 2025-06-01T21:26:22.0872149Z copying build\lib.win-amd64-cpython-39\torch\cuda\amp\grad_scaler.py -> build\bdist.win-amd64\wheel\.\torch\cuda\amp 2025-06-01T21:26:22.0877197Z copying build\lib.win-amd64-cpython-39\torch\cuda\amp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\cuda\amp 2025-06-01T21:26:22.0882013Z copying build\lib.win-amd64-cpython-39\torch\cuda\comm.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-06-01T21:26:22.0886946Z copying build\lib.win-amd64-cpython-39\torch\cuda\error.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-06-01T21:26:22.0891136Z copying build\lib.win-amd64-cpython-39\torch\cuda\gds.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-06-01T21:26:22.0896555Z copying build\lib.win-amd64-cpython-39\torch\cuda\graphs.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-06-01T21:26:22.0902472Z copying build\lib.win-amd64-cpython-39\torch\cuda\jiterator.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-06-01T21:26:22.0913264Z copying build\lib.win-amd64-cpython-39\torch\cuda\memory.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-06-01T21:26:22.0919169Z copying build\lib.win-amd64-cpython-39\torch\cuda\nccl.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-06-01T21:26:22.0924387Z copying build\lib.win-amd64-cpython-39\torch\cuda\nvtx.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-06-01T21:26:22.0929594Z copying build\lib.win-amd64-cpython-39\torch\cuda\profiler.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-06-01T21:26:22.0934633Z copying build\lib.win-amd64-cpython-39\torch\cuda\random.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-06-01T21:26:22.0940094Z copying build\lib.win-amd64-cpython-39\torch\cuda\sparse.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-06-01T21:26:22.0945029Z copying build\lib.win-amd64-cpython-39\torch\cuda\streams.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-06-01T21:26:22.0950218Z copying build\lib.win-amd64-cpython-39\torch\cuda\tunable.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-06-01T21:26:22.0955994Z copying build\lib.win-amd64-cpython-39\torch\cuda\_gpu_trace.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-06-01T21:26:22.0961535Z copying build\lib.win-amd64-cpython-39\torch\cuda\_memory_viz.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-06-01T21:26:22.0967227Z copying build\lib.win-amd64-cpython-39\torch\cuda\_sanitizer.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-06-01T21:26:22.0973134Z copying build\lib.win-amd64-cpython-39\torch\cuda\_utils.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-06-01T21:26:22.0978502Z copying build\lib.win-amd64-cpython-39\torch\cuda\__init__.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-06-01T21:26:22.0985906Z creating build\bdist.win-amd64\wheel\torch\distributed 2025-06-01T21:26:22.0989409Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms 2025-06-01T21:26:22.1009938Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\ddp_comm_hooks 2025-06-01T21:26:22.1013301Z 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-06-01T21:26:22.1020130Z 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-06-01T21:26:22.1025648Z 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-06-01T21:26:22.1036698Z 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-06-01T21:26:22.1042662Z 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-06-01T21:26:22.1048331Z 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-06-01T21:26:22.1053727Z 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-06-01T21:26:22.1060324Z 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-06-01T21:26:22.1065885Z 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-06-01T21:26:22.1071284Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\join.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms 2025-06-01T21:26:22.1077690Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\model_averaging 2025-06-01T21:26:22.1081345Z 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-06-01T21:26:22.1087190Z 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-06-01T21:26:22.1094255Z 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-06-01T21:26:22.1104348Z 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-06-01T21:26:22.1109116Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\_checkpoint 2025-06-01T21:26:22.1117019Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_checkpoint\checkpoint_wrapper.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_checkpoint 2025-06-01T21:26:22.1122772Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_checkpoint\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_checkpoint 2025-06-01T21:26:22.1127412Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\_comm_hooks 2025-06-01T21:26:22.1130873Z 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-06-01T21:26:22.1136682Z 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-06-01T21:26:22.1142018Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\_optimizer_overlap 2025-06-01T21:26:22.1145706Z 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-06-01T21:26:22.1152214Z 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-06-01T21:26:22.1156920Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\_quantization 2025-06-01T21:26:22.1160376Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_quantization\quantization.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_quantization 2025-06-01T21:26:22.1166210Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_quantization\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_quantization 2025-06-01T21:26:22.1170629Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms 2025-06-01T21:26:22.1175986Z copying build\lib.win-amd64-cpython-39\torch\distributed\argparse_util.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-06-01T21:26:22.1181626Z creating build\bdist.win-amd64\wheel\torch\distributed\autograd 2025-06-01T21:26:22.1185072Z copying build\lib.win-amd64-cpython-39\torch\distributed\autograd\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\autograd 2025-06-01T21:26:22.1190537Z copying build\lib.win-amd64-cpython-39\torch\distributed\c10d_logger.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-06-01T21:26:22.1200598Z creating build\bdist.win-amd64\wheel\torch\distributed\checkpoint 2025-06-01T21:26:22.1203958Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:26:22.1209538Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\default_planner.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:26:22.1215693Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\filesystem.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:26:22.1221950Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\format_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:26:22.1232331Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\logger.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:26:22.1238209Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\logging_handlers.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:26:22.1249211Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\metadata.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:26:22.1254688Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\optimizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:26:22.1260433Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\planner.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:26:22.1266382Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\planner_helpers.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:26:22.1272379Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\resharding.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:26:22.1278053Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\staging.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:26:22.1283363Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\stateful.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:26:22.1288623Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\state_dict.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:26:22.1294924Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\state_dict_loader.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:26:22.1300880Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\state_dict_saver.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:26:22.1306413Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\storage.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:26:22.1311594Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:26:22.1322112Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_async_executor.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:26:22.1327583Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_async_process_executor.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:26:22.1333865Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_async_thread_executor.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:26:22.1339601Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_checkpointer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:26:22.1344889Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_dedup_save_plans.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:26:22.1354072Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_dedup_tensors.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:26:22.1360185Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_extension.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:26:22.1365604Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_fsspec_filesystem.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:26:22.1371757Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_hf_planner.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:26:22.1377111Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_hf_storage.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:26:22.1382780Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_nested_dict.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:26:22.1388226Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_sharded_tensor_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:26:22.1394031Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_storage_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:26:22.1399456Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_traverse.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:26:22.1410594Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_version.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:26:22.1415971Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-06-01T21:26:22.1421539Z copying build\lib.win-amd64-cpython-39\torch\distributed\collective_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-06-01T21:26:22.1426985Z copying build\lib.win-amd64-cpython-39\torch\distributed\constants.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-06-01T21:26:22.1437056Z copying build\lib.win-amd64-cpython-39\torch\distributed\device_mesh.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-06-01T21:26:22.1443659Z copying build\lib.win-amd64-cpython-39\torch\distributed\distributed_c10d.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-06-01T21:26:22.1452107Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic 2025-06-01T21:26:22.1455810Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\agent 2025-06-01T21:26:22.1459303Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\agent\server 2025-06-01T21:26:22.1462556Z 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-06-01T21:26:22.1468912Z 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-06-01T21:26:22.1474509Z 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-06-01T21:26:22.1480170Z 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-06-01T21:26:22.1485771Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\agent 2025-06-01T21:26:22.1490333Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\control_plane.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic 2025-06-01T21:26:22.1496053Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\events 2025-06-01T21:26:22.1500851Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\events\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\events 2025-06-01T21:26:22.1508384Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\events\handlers.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\events 2025-06-01T21:26:22.1512606Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\events\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\events 2025-06-01T21:26:22.1519313Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\metrics 2025-06-01T21:26:22.1522912Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\metrics\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\metrics 2025-06-01T21:26:22.1528668Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\metrics\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\metrics 2025-06-01T21:26:22.1539069Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\multiprocessing 2025-06-01T21:26:22.1547788Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing 2025-06-01T21:26:22.1554147Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\multiprocessing\errors 2025-06-01T21:26:22.1557583Z 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-06-01T21:26:22.1563263Z 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-06-01T21:26:22.1568434Z 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-06-01T21:26:22.1574595Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\redirects.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing 2025-06-01T21:26:22.1580427Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-06-01T21:26:22.1589207Z 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-06-01T21:26:22.1594803Z 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-06-01T21:26:22.1600141Z 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-06-01T21:26:22.1605010Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\tail_log.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing 2025-06-01T21:26:22.1610013Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing 2025-06-01T21:26:22.1615629Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\rendezvous 2025-06-01T21:26:22.1618923Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-06-01T21:26:22.1624724Z 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-06-01T21:26:22.1630502Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\dynamic_rendezvous.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-06-01T21:26:22.1641998Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\etcd_rendezvous.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-06-01T21:26:22.1648138Z 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-06-01T21:26:22.1654140Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\etcd_server.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-06-01T21:26:22.1659426Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\etcd_store.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-06-01T21:26:22.1673366Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\registry.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-06-01T21:26:22.1682564Z 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-06-01T21:26:22.1688020Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-06-01T21:26:22.1694068Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\_etcd_stub.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-06-01T21:26:22.1704538Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-06-01T21:26:22.1710367Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\timer 2025-06-01T21:26:22.1713938Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\timer 2025-06-01T21:26:22.1719344Z 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-06-01T21:26:22.1724741Z 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-06-01T21:26:22.1730556Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer\local_timer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\timer 2025-06-01T21:26:22.1740753Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\timer 2025-06-01T21:26:22.1745949Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\utils 2025-06-01T21:26:22.1749127Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-06-01T21:26:22.1754911Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\utils\data 2025-06-01T21:26:22.1758215Z 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-06-01T21:26:22.1763860Z 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-06-01T21:26:22.1769140Z 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-06-01T21:26:22.1774170Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\distributed.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-06-01T21:26:22.1779531Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\logging.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-06-01T21:26:22.1784852Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\log_level.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-06-01T21:26:22.1794565Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\store.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-06-01T21:26:22.1799734Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-06-01T21:26:22.1804538Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic 2025-06-01T21:26:22.1810531Z creating build\bdist.win-amd64\wheel\torch\distributed\fsdp 2025-06-01T21:26:22.1813723Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-06-01T21:26:22.1819648Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\fully_sharded_data_parallel.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-06-01T21:26:22.1826666Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\sharded_grad_scaler.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-06-01T21:26:22.1832532Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\wrap.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-06-01T21:26:22.1838425Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_common_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-06-01T21:26:22.1850040Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_debug_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-06-01T21:26:22.1855776Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_dynamo_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-06-01T21:26:22.1861720Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_exec_order_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-06-01T21:26:22.1867895Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_flat_param.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-06-01T21:26:22.1875670Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fsdp_extensions.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-06-01T21:26:22.1881682Z creating build\bdist.win-amd64\wheel\torch\distributed\fsdp\_fully_shard 2025-06-01T21:26:22.1885198Z 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-06-01T21:26:22.1890599Z 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-06-01T21:26:22.1896647Z 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-06-01T21:26:22.1908287Z 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-06-01T21:26:22.1913795Z 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-06-01T21:26:22.1919777Z 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-06-01T21:26:22.1954236Z 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-06-01T21:26:22.1960388Z 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-06-01T21:26:22.1966294Z 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-06-01T21:26:22.1971561Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_init_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-06-01T21:26:22.1977523Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_limiter_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-06-01T21:26:22.1982748Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_optim_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-06-01T21:26:22.1989544Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_runtime_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-06-01T21:26:22.1996152Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_shard_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-06-01T21:26:22.2001604Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_state_dict_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-06-01T21:26:22.2007805Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_trace_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-06-01T21:26:22.2013288Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_traversal_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-06-01T21:26:22.2019032Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_unshard_param_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-06-01T21:26:22.2028802Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_wrap_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-06-01T21:26:22.2034176Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-06-01T21:26:22.2039658Z copying build\lib.win-amd64-cpython-39\torch\distributed\launch.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-06-01T21:26:22.2045389Z creating build\bdist.win-amd64\wheel\torch\distributed\launcher 2025-06-01T21:26:22.2048700Z copying build\lib.win-amd64-cpython-39\torch\distributed\launcher\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\launcher 2025-06-01T21:26:22.2054019Z copying build\lib.win-amd64-cpython-39\torch\distributed\launcher\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\launcher 2025-06-01T21:26:22.2059341Z copying build\lib.win-amd64-cpython-39\torch\distributed\logging_handlers.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-06-01T21:26:22.2064900Z creating build\bdist.win-amd64\wheel\torch\distributed\nn 2025-06-01T21:26:22.2068180Z creating build\bdist.win-amd64\wheel\torch\distributed\nn\api 2025-06-01T21:26:22.2071335Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\api\remote_module.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn\api 2025-06-01T21:26:22.2077433Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\api\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn\api 2025-06-01T21:26:22.2081915Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\functional.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn 2025-06-01T21:26:22.2087372Z creating build\bdist.win-amd64\wheel\torch\distributed\nn\jit 2025-06-01T21:26:22.2090572Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\instantiator.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn\jit 2025-06-01T21:26:22.2096104Z creating build\bdist.win-amd64\wheel\torch\distributed\nn\jit\templates 2025-06-01T21:26:22.2099613Z 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-06-01T21:26:22.2105088Z 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-06-01T21:26:22.2109558Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn\jit 2025-06-01T21:26:22.2113713Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn 2025-06-01T21:26:22.2119819Z creating build\bdist.win-amd64\wheel\torch\distributed\optim 2025-06-01T21:26:22.2123499Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\apply_optimizer_in_backward.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-06-01T21:26:22.2129089Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adadelta.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-06-01T21:26:22.2134531Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adagrad.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-06-01T21:26:22.2144299Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adam.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-06-01T21:26:22.2149765Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adamax.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-06-01T21:26:22.2155253Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adamw.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-06-01T21:26:22.2161014Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_rmsprop.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-06-01T21:26:22.2166719Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_rprop.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-06-01T21:26:22.2171973Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_sgd.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-06-01T21:26:22.2177861Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\named_optimizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-06-01T21:26:22.2183190Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\optimizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-06-01T21:26:22.2189813Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\post_localSGD_optimizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-06-01T21:26:22.2195526Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-06-01T21:26:22.2201711Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\zero_redundancy_optimizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-06-01T21:26:22.2208571Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\zero_redundancy_optimizer.pyi -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-06-01T21:26:22.2214377Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\_deprecation_warning.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-06-01T21:26:22.2219884Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-06-01T21:26:22.2225602Z creating build\bdist.win-amd64\wheel\torch\distributed\pipelining 2025-06-01T21:26:22.2229172Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\microbatch.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-06-01T21:26:22.2235112Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\schedules.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-06-01T21:26:22.2242800Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\stage.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-06-01T21:26:22.2249113Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_backward.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-06-01T21:26:22.2260292Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_debug.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-06-01T21:26:22.2265079Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_IR.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-06-01T21:26:22.2271523Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_schedule_visualizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-06-01T21:26:22.2277261Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_unflatten.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-06-01T21:26:22.2282824Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-06-01T21:26:22.2288189Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-06-01T21:26:22.2293597Z copying build\lib.win-amd64-cpython-39\torch\distributed\remote_device.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-06-01T21:26:22.2299334Z copying build\lib.win-amd64-cpython-39\torch\distributed\rendezvous.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-06-01T21:26:22.2305390Z creating build\bdist.win-amd64\wheel\torch\distributed\rpc 2025-06-01T21:26:22.2308869Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-06-01T21:26:22.2315046Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\backend_registry.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-06-01T21:26:22.2321031Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\constants.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-06-01T21:26:22.2326576Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\functions.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-06-01T21:26:22.2336981Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\internal.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-06-01T21:26:22.2342485Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\options.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-06-01T21:26:22.2347924Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\rref_proxy.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-06-01T21:26:22.2353644Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\server_process_global_profiler.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-06-01T21:26:22.2359519Z creating build\bdist.win-amd64\wheel\torch\distributed\rpc\_testing 2025-06-01T21:26:22.2363042Z 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-06-01T21:26:22.2368340Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\_testing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc\_testing 2025-06-01T21:26:22.2373366Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-06-01T21:26:22.2378698Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-06-01T21:26:22.2384903Z copying build\lib.win-amd64-cpython-39\torch\distributed\run.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-06-01T21:26:22.2391227Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor 2025-06-01T21:26:22.2394487Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor\debug 2025-06-01T21:26:22.2398043Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug\_comm_mode.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\debug 2025-06-01T21:26:22.2403911Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug\_op_coverage.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\debug 2025-06-01T21:26:22.2409233Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug\_visualize_sharding.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\debug 2025-06-01T21:26:22.2414322Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\debug 2025-06-01T21:26:22.2424072Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\device_mesh.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-06-01T21:26:22.2429788Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor\experimental 2025-06-01T21:26:22.2433149Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental\_attention.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\experimental 2025-06-01T21:26:22.2439341Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental\_func_map.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\experimental 2025-06-01T21:26:22.2445116Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental\_register_sharding.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\experimental 2025-06-01T21:26:22.2455307Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental\_tp_transform.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\experimental 2025-06-01T21:26:22.2460849Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\experimental 2025-06-01T21:26:22.2471541Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor\parallel 2025-06-01T21:26:22.2472380Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-06-01T21:26:22.2475049Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\ddp.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-06-01T21:26:22.2480147Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\fsdp.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-06-01T21:26:22.2485425Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\input_reshard.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-06-01T21:26:22.2490731Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\loss.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-06-01T21:26:22.2496574Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\style.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-06-01T21:26:22.2507260Z 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-06-01T21:26:22.2512568Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-06-01T21:26:22.2517624Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-06-01T21:26:22.2522753Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\placement_types.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-06-01T21:26:22.2533117Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-06-01T21:26:22.2539134Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_collective_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-06-01T21:26:22.2544430Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_dispatch.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-06-01T21:26:22.2550259Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_dtensor_spec.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-06-01T21:26:22.2555854Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor\_ops 2025-06-01T21:26:22.2577073Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-06-01T21:26:22.2582738Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_common_rules.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-06-01T21:26:22.2588138Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_conv_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-06-01T21:26:22.2593703Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_einsum_strategy.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-06-01T21:26:22.2603991Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_embedding_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-06-01T21:26:22.2609305Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_math_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-06-01T21:26:22.2615449Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_matrix_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-06-01T21:26:22.2621592Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_pointwise_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-06-01T21:26:22.2627713Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_random_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-06-01T21:26:22.2633157Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_tensor_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-06-01T21:26:22.2639239Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_view_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-06-01T21:26:22.2645159Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-06-01T21:26:22.2650396Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_op_schema.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-06-01T21:26:22.2656464Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_random.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-06-01T21:26:22.2662179Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_redistribute.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-06-01T21:26:22.2668065Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_sharding_prop.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-06-01T21:26:22.2673966Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_shards_wrapper.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-06-01T21:26:22.2679570Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_tp_conv.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-06-01T21:26:22.2685038Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-06-01T21:26:22.2691490Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-06-01T21:26:22.2697164Z copying build\lib.win-amd64-cpython-39\torch\distributed\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-06-01T21:26:22.2702724Z copying build\lib.win-amd64-cpython-39\torch\distributed\_checkpointable.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-06-01T21:26:22.2708503Z creating build\bdist.win-amd64\wheel\torch\distributed\_composable 2025-06-01T21:26:22.2717684Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\checkpoint_activation.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable 2025-06-01T21:26:22.2723171Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\contract.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable 2025-06-01T21:26:22.2728679Z creating build\bdist.win-amd64\wheel\torch\distributed\_composable\fsdp 2025-06-01T21:26:22.2732114Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\fsdp\fully_shard.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable\fsdp 2025-06-01T21:26:22.2737433Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\fsdp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable\fsdp 2025-06-01T21:26:22.2742519Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\replicate.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable 2025-06-01T21:26:22.2752515Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable 2025-06-01T21:26:22.2757952Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable_state.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-06-01T21:26:22.2763704Z copying build\lib.win-amd64-cpython-39\torch\distributed\_functional_collectives.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-06-01T21:26:22.2770094Z copying build\lib.win-amd64-cpython-39\torch\distributed\_functional_collectives_impl.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-06-01T21:26:22.2775605Z copying build\lib.win-amd64-cpython-39\torch\distributed\_serialization.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-06-01T21:26:22.2781514Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard 2025-06-01T21:26:22.2784721Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-06-01T21:26:22.2790387Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\checkpoint 2025-06-01T21:26:22.2793718Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\checkpoint\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\checkpoint 2025-06-01T21:26:22.2798885Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\common_op_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-06-01T21:26:22.2804582Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\metadata.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-06-01T21:26:22.2809841Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\op_registry_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-06-01T21:26:22.2821294Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharded_optim 2025-06-01T21:26:22.2824579Z 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-06-01T21:26:22.2829900Z 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-06-01T21:26:22.2835351Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharded_tensor 2025-06-01T21:26:22.2838649Z 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-06-01T21:26:22.2844910Z 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-06-01T21:26:22.2850125Z 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-06-01T21:26:22.2855295Z 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-06-01T21:26:22.2860697Z 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-06-01T21:26:22.2870384Z 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-06-01T21:26:22.2875560Z 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-06-01T21:26:22.2881226Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharded_tensor\_ops 2025-06-01T21:26:22.2884612Z 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-06-01T21:26:22.2890062Z 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-06-01T21:26:22.2895394Z 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-06-01T21:26:22.2900496Z 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-06-01T21:26:22.2905851Z 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-06-01T21:26:22.2915902Z 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-06-01T21:26:22.2921224Z 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-06-01T21:26:22.2927039Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharder.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-06-01T21:26:22.2932514Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharding_plan 2025-06-01T21:26:22.2936063Z 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-06-01T21:26:22.2941338Z 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-06-01T21:26:22.2946666Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharding_spec 2025-06-01T21:26:22.2950010Z 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-06-01T21:26:22.2956068Z 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-06-01T21:26:22.2961589Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops 2025-06-01T21:26:22.2969878Z 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-06-01T21:26:22.2975604Z 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-06-01T21:26:22.2981881Z 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-06-01T21:26:22.2991894Z 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-06-01T21:26:22.2996144Z 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-06-01T21:26:22.3001578Z 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-06-01T21:26:22.3006563Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-06-01T21:26:22.3011533Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-06-01T21:26:22.3016994Z creating build\bdist.win-amd64\wheel\torch\distributed\_sharded_tensor 2025-06-01T21:26:22.3020408Z copying build\lib.win-amd64-cpython-39\torch\distributed\_sharded_tensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_sharded_tensor 2025-06-01T21:26:22.3025996Z creating build\bdist.win-amd64\wheel\torch\distributed\_sharding_spec 2025-06-01T21:26:22.3029489Z copying build\lib.win-amd64-cpython-39\torch\distributed\_sharding_spec\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_sharding_spec 2025-06-01T21:26:22.3034264Z copying build\lib.win-amd64-cpython-39\torch\distributed\_state_dict_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-06-01T21:26:22.3040402Z creating build\bdist.win-amd64\wheel\torch\distributed\_symmetric_memory 2025-06-01T21:26:22.3043695Z copying build\lib.win-amd64-cpython-39\torch\distributed\_symmetric_memory\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_symmetric_memory 2025-06-01T21:26:22.3049781Z creating build\bdist.win-amd64\wheel\torch\distributed\_tensor 2025-06-01T21:26:22.3169346Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tensor\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tensor 2025-06-01T21:26:22.3174564Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tensor\placement_types.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tensor 2025-06-01T21:26:22.3180349Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tensor 2025-06-01T21:26:22.3186016Z creating build\bdist.win-amd64\wheel\torch\distributed\_tools 2025-06-01T21:26:22.3189615Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\common_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-06-01T21:26:22.3195637Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\fake_collectives.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-06-01T21:26:22.3201465Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\fsdp2_mem_tracker.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-06-01T21:26:22.3207354Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\ilp_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-06-01T21:26:22.3281446Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\memory_tracker.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-06-01T21:26:22.3286981Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\mem_tracker.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-06-01T21:26:22.3293142Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\mod_tracker.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-06-01T21:26:22.3299329Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\runtime_estimator.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-06-01T21:26:22.3306033Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\sac_estimator.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-06-01T21:26:22.3319258Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\sac_ilp.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-06-01T21:26:22.3325180Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-06-01T21:26:22.3330544Z copying build\lib.win-amd64-cpython-39\torch\distributed\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-06-01T21:26:22.3337414Z creating build\bdist.win-amd64\wheel\torch\distributions 2025-06-01T21:26:22.3341082Z copying build\lib.win-amd64-cpython-39\torch\distributions\bernoulli.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3346608Z copying build\lib.win-amd64-cpython-39\torch\distributions\beta.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3351952Z copying build\lib.win-amd64-cpython-39\torch\distributions\binomial.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3356958Z copying build\lib.win-amd64-cpython-39\torch\distributions\categorical.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3367139Z copying build\lib.win-amd64-cpython-39\torch\distributions\cauchy.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3374162Z copying build\lib.win-amd64-cpython-39\torch\distributions\chi2.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3379562Z copying build\lib.win-amd64-cpython-39\torch\distributions\constraints.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3385562Z copying build\lib.win-amd64-cpython-39\torch\distributions\constraint_registry.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3390991Z copying build\lib.win-amd64-cpython-39\torch\distributions\continuous_bernoulli.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3396612Z copying build\lib.win-amd64-cpython-39\torch\distributions\dirichlet.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3402151Z copying build\lib.win-amd64-cpython-39\torch\distributions\distribution.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3407782Z copying build\lib.win-amd64-cpython-39\torch\distributions\exponential.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3413103Z copying build\lib.win-amd64-cpython-39\torch\distributions\exp_family.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3418563Z copying build\lib.win-amd64-cpython-39\torch\distributions\fishersnedecor.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3423733Z copying build\lib.win-amd64-cpython-39\torch\distributions\gamma.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3429392Z copying build\lib.win-amd64-cpython-39\torch\distributions\generalized_pareto.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3434788Z copying build\lib.win-amd64-cpython-39\torch\distributions\geometric.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3440179Z copying build\lib.win-amd64-cpython-39\torch\distributions\gumbel.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3445627Z copying build\lib.win-amd64-cpython-39\torch\distributions\half_cauchy.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3450948Z copying build\lib.win-amd64-cpython-39\torch\distributions\half_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3456250Z copying build\lib.win-amd64-cpython-39\torch\distributions\independent.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3461801Z copying build\lib.win-amd64-cpython-39\torch\distributions\inverse_gamma.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3472864Z copying build\lib.win-amd64-cpython-39\torch\distributions\kl.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3479161Z copying build\lib.win-amd64-cpython-39\torch\distributions\kumaraswamy.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3484581Z copying build\lib.win-amd64-cpython-39\torch\distributions\laplace.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3489812Z copying build\lib.win-amd64-cpython-39\torch\distributions\lkj_cholesky.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3495333Z copying build\lib.win-amd64-cpython-39\torch\distributions\logistic_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3501201Z copying build\lib.win-amd64-cpython-39\torch\distributions\log_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3506784Z copying build\lib.win-amd64-cpython-39\torch\distributions\lowrank_multivariate_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3512429Z copying build\lib.win-amd64-cpython-39\torch\distributions\mixture_same_family.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3517977Z copying build\lib.win-amd64-cpython-39\torch\distributions\multinomial.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3523469Z copying build\lib.win-amd64-cpython-39\torch\distributions\multivariate_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3534097Z copying build\lib.win-amd64-cpython-39\torch\distributions\negative_binomial.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3539771Z copying build\lib.win-amd64-cpython-39\torch\distributions\normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3553957Z copying build\lib.win-amd64-cpython-39\torch\distributions\one_hot_categorical.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3562070Z copying build\lib.win-amd64-cpython-39\torch\distributions\pareto.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3568654Z copying build\lib.win-amd64-cpython-39\torch\distributions\poisson.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3575608Z copying build\lib.win-amd64-cpython-39\torch\distributions\relaxed_bernoulli.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3582393Z copying build\lib.win-amd64-cpython-39\torch\distributions\relaxed_categorical.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3590358Z copying build\lib.win-amd64-cpython-39\torch\distributions\studentT.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3597318Z copying build\lib.win-amd64-cpython-39\torch\distributions\transformed_distribution.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3604170Z copying build\lib.win-amd64-cpython-39\torch\distributions\transforms.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3611598Z copying build\lib.win-amd64-cpython-39\torch\distributions\uniform.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3618342Z copying build\lib.win-amd64-cpython-39\torch\distributions\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3656631Z copying build\lib.win-amd64-cpython-39\torch\distributions\von_mises.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3667424Z copying build\lib.win-amd64-cpython-39\torch\distributions\weibull.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3674092Z copying build\lib.win-amd64-cpython-39\torch\distributions\wishart.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3680986Z copying build\lib.win-amd64-cpython-39\torch\distributions\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-06-01T21:26:22.3688407Z creating build\bdist.win-amd64\wheel\torch\export 2025-06-01T21:26:22.3693113Z copying build\lib.win-amd64-cpython-39\torch\export\custom_obj.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-06-01T21:26:22.3699953Z copying build\lib.win-amd64-cpython-39\torch\export\custom_ops.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-06-01T21:26:22.3706651Z copying build\lib.win-amd64-cpython-39\torch\export\decomp_utils.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-06-01T21:26:22.3714824Z copying build\lib.win-amd64-cpython-39\torch\export\dynamic_shapes.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-06-01T21:26:22.3727551Z creating build\bdist.win-amd64\wheel\torch\export\experimental 2025-06-01T21:26:22.3732167Z copying build\lib.win-amd64-cpython-39\torch\export\experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\export\experimental 2025-06-01T21:26:22.3738097Z copying build\lib.win-amd64-cpython-39\torch\export\exported_program.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-06-01T21:26:22.3746055Z copying build\lib.win-amd64-cpython-39\torch\export\graph_signature.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-06-01T21:26:22.3752300Z creating build\bdist.win-amd64\wheel\torch\export\passes 2025-06-01T21:26:22.3755511Z copying build\lib.win-amd64-cpython-39\torch\export\passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\export\passes 2025-06-01T21:26:22.3762787Z creating build\bdist.win-amd64\wheel\torch\export\pt2_archive 2025-06-01T21:26:22.3766108Z copying build\lib.win-amd64-cpython-39\torch\export\pt2_archive\constants.py -> build\bdist.win-amd64\wheel\.\torch\export\pt2_archive 2025-06-01T21:26:22.3771459Z copying build\lib.win-amd64-cpython-39\torch\export\pt2_archive\_package.py -> build\bdist.win-amd64\wheel\.\torch\export\pt2_archive 2025-06-01T21:26:22.3776967Z copying build\lib.win-amd64-cpython-39\torch\export\pt2_archive\__init__.py -> build\bdist.win-amd64\wheel\.\torch\export\pt2_archive 2025-06-01T21:26:22.3782421Z copying build\lib.win-amd64-cpython-39\torch\export\unflatten.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-06-01T21:26:22.3790809Z copying build\lib.win-amd64-cpython-39\torch\export\_draft_export.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-06-01T21:26:22.3797822Z copying build\lib.win-amd64-cpython-39\torch\export\_remove_auto_functionalized_pass.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-06-01T21:26:22.3802979Z copying build\lib.win-amd64-cpython-39\torch\export\_remove_effect_tokens_pass.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-06-01T21:26:22.3808405Z copying build\lib.win-amd64-cpython-39\torch\export\_safeguard.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-06-01T21:26:22.3813716Z copying build\lib.win-amd64-cpython-39\torch\export\_swap.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-06-01T21:26:22.3819529Z copying build\lib.win-amd64-cpython-39\torch\export\_trace.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-06-01T21:26:22.3826052Z copying build\lib.win-amd64-cpython-39\torch\export\_tree_utils.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-06-01T21:26:22.3831362Z copying build\lib.win-amd64-cpython-39\torch\export\_unlift.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-06-01T21:26:22.3837187Z copying build\lib.win-amd64-cpython-39\torch\export\_wrapper_utils.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-06-01T21:26:22.3842498Z copying build\lib.win-amd64-cpython-39\torch\export\__init__.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-06-01T21:26:22.3850071Z creating build\bdist.win-amd64\wheel\torch\fft 2025-06-01T21:26:22.3853272Z copying build\lib.win-amd64-cpython-39\torch\fft\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fft 2025-06-01T21:26:22.3859845Z creating build\bdist.win-amd64\wheel\torch\func 2025-06-01T21:26:22.3863066Z copying build\lib.win-amd64-cpython-39\torch\func\__init__.py -> build\bdist.win-amd64\wheel\.\torch\func 2025-06-01T21:26:22.3868103Z copying build\lib.win-amd64-cpython-39\torch\functional.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:22.3874968Z creating build\bdist.win-amd64\wheel\torch\futures 2025-06-01T21:26:22.3878171Z copying build\lib.win-amd64-cpython-39\torch\futures\__init__.py -> build\bdist.win-amd64\wheel\.\torch\futures 2025-06-01T21:26:22.3883894Z creating build\bdist.win-amd64\wheel\torch\fx 2025-06-01T21:26:22.3887073Z copying build\lib.win-amd64-cpython-39\torch\fx\annotate.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-06-01T21:26:22.3892490Z copying build\lib.win-amd64-cpython-39\torch\fx\config.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-06-01T21:26:22.3898089Z creating build\bdist.win-amd64\wheel\torch\fx\experimental 2025-06-01T21:26:22.3901506Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\accelerator_partitioner.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:26:22.3908758Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\const_fold.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:26:22.3914296Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\debug.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:26:22.3925024Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\graph_gradual_typechecker.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:26:22.3931578Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\merge_matmul.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:26:22.3937089Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\meta_tracer.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:26:22.3942962Z creating build\bdist.win-amd64\wheel\torch\fx\experimental\migrate_gradual_types 2025-06-01T21:26:22.3946425Z 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-06-01T21:26:22.3952445Z 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-06-01T21:26:22.3958879Z 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-06-01T21:26:22.3970916Z 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-06-01T21:26:22.3976184Z 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-06-01T21:26:22.3982055Z 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-06-01T21:26:22.3987391Z 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-06-01T21:26:22.3992764Z 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-06-01T21:26:22.3996991Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\normalize.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:26:22.4002496Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\optimization.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:26:22.4008468Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\partitioner_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:26:22.4014286Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\proxy_tensor.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:26:22.4020819Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\recording.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:26:22.4026660Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\refinement_types.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:26:22.4032795Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\rewriter.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:26:22.4039034Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\schema_type_annotation.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:26:22.4045565Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\symbolic_shapes.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:26:22.4057421Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\sym_node.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:26:22.4064432Z creating build\bdist.win-amd64\wheel\torch\fx\experimental\unification 2025-06-01T21:26:22.4067978Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\core.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-06-01T21:26:22.4073454Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\dispatch.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-06-01T21:26:22.4078931Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\match.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-06-01T21:26:22.4084421Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\more.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-06-01T21:26:22.4090145Z creating build\bdist.win-amd64\wheel\torch\fx\experimental\unification\multipledispatch 2025-06-01T21:26:22.4098564Z 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-06-01T21:26:22.4104122Z 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-06-01T21:26:22.4110073Z 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-06-01T21:26:22.4115188Z 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-06-01T21:26:22.4120658Z 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-06-01T21:26:22.4130946Z 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-06-01T21:26:22.4136753Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\unification_tools.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-06-01T21:26:22.4142554Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-06-01T21:26:22.4147865Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\variable.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-06-01T21:26:22.4153224Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-06-01T21:26:22.4158593Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unify_refinements.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:26:22.4164129Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\validator.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:26:22.4175227Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\_backward_state.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:26:22.4180632Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\_config.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:26:22.4186403Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\_constant_symnode.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:26:22.4192637Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\_dynamism.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:26:22.4198575Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-06-01T21:26:22.4202978Z copying build\lib.win-amd64-cpython-39\torch\fx\graph.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-06-01T21:26:22.4209540Z copying build\lib.win-amd64-cpython-39\torch\fx\graph_module.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-06-01T21:26:22.4368354Z copying build\lib.win-amd64-cpython-39\torch\fx\immutable_collections.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-06-01T21:26:22.4374750Z copying build\lib.win-amd64-cpython-39\torch\fx\interpreter.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-06-01T21:26:22.4381721Z copying build\lib.win-amd64-cpython-39\torch\fx\node.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-06-01T21:26:22.4387698Z copying build\lib.win-amd64-cpython-39\torch\fx\operator_schemas.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-06-01T21:26:22.4394375Z creating build\bdist.win-amd64\wheel\torch\fx\passes 2025-06-01T21:26:22.4397935Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\annotate_getitem_nodes.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-06-01T21:26:22.4403997Z creating build\bdist.win-amd64\wheel\torch\fx\passes\backends 2025-06-01T21:26:22.4407382Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\backends\cudagraphs.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\backends 2025-06-01T21:26:22.4413074Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\backends\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\backends 2025-06-01T21:26:22.4417753Z creating build\bdist.win-amd64\wheel\torch\fx\passes\dialect 2025-06-01T21:26:22.4421038Z creating build\bdist.win-amd64\wheel\torch\fx\passes\dialect\common 2025-06-01T21:26:22.4424431Z 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-06-01T21:26:22.4430030Z 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-06-01T21:26:22.4434546Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\dialect\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\dialect 2025-06-01T21:26:22.4438915Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\fake_tensor_prop.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-06-01T21:26:22.4444402Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\graph_drawer.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-06-01T21:26:22.4499924Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\graph_manipulation.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-06-01T21:26:22.4505489Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\graph_transform_observer.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-06-01T21:26:22.4511395Z creating build\bdist.win-amd64\wheel\torch\fx\passes\infra 2025-06-01T21:26:22.4515079Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\infra\partitioner.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\infra 2025-06-01T21:26:22.4605291Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\infra\pass_base.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\infra 2025-06-01T21:26:22.4610531Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\infra\pass_manager.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\infra 2025-06-01T21:26:22.4616203Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\infra\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\infra 2025-06-01T21:26:22.4630905Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\net_min_base.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-06-01T21:26:22.4636805Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\operator_support.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-06-01T21:26:22.4642079Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\param_fetch.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-06-01T21:26:22.4647745Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\pass_manager.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-06-01T21:26:22.4653066Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\reinplace.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-06-01T21:26:22.4659319Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\runtime_assert.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-06-01T21:26:22.4666174Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\shape_prop.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-06-01T21:26:22.4671213Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\splitter_base.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-06-01T21:26:22.4677283Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\split_module.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-06-01T21:26:22.4684068Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\split_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-06-01T21:26:22.4690156Z creating build\bdist.win-amd64\wheel\torch\fx\passes\tests 2025-06-01T21:26:22.4693747Z 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-06-01T21:26:22.4699502Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\tests\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\tests 2025-06-01T21:26:22.4704333Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\tools_common.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-06-01T21:26:22.4710265Z creating build\bdist.win-amd64\wheel\torch\fx\passes\utils 2025-06-01T21:26:22.5631750Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\utils\common.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\utils 2025-06-01T21:26:22.5638251Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\utils\fuser_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\utils 2025-06-01T21:26:22.5651938Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\utils\matcher_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\utils 2025-06-01T21:26:22.5659027Z 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-06-01T21:26:22.5739492Z 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-06-01T21:26:22.5744968Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\utils 2025-06-01T21:26:22.5750060Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\_tensorify_python_scalars.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-06-01T21:26:22.5755747Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-06-01T21:26:22.5761105Z copying build\lib.win-amd64-cpython-39\torch\fx\proxy.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-06-01T21:26:22.5767841Z copying build\lib.win-amd64-cpython-39\torch\fx\subgraph_rewriter.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-06-01T21:26:22.5773281Z copying build\lib.win-amd64-cpython-39\torch\fx\tensor_type.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-06-01T21:26:22.5779337Z copying build\lib.win-amd64-cpython-39\torch\fx\traceback.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-06-01T21:26:22.5785156Z copying build\lib.win-amd64-cpython-39\torch\fx\_compatibility.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-06-01T21:26:22.5790677Z copying build\lib.win-amd64-cpython-39\torch\fx\_graph_pickler.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-06-01T21:26:22.5796945Z copying build\lib.win-amd64-cpython-39\torch\fx\_lazy_graph_module.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-06-01T21:26:22.5804045Z copying build\lib.win-amd64-cpython-39\torch\fx\_pytree.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-06-01T21:26:22.5809300Z copying build\lib.win-amd64-cpython-39\torch\fx\_symbolic_trace.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-06-01T21:26:22.5816088Z copying build\lib.win-amd64-cpython-39\torch\fx\_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-06-01T21:26:22.5821376Z copying build\lib.win-amd64-cpython-39\torch\fx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-06-01T21:26:22.5826726Z copying build\lib.win-amd64-cpython-39\torch\hub.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:22.5833892Z creating build\bdist.win-amd64\wheel\torch\include 2025-06-01T21:26:22.5837221Z copying build\lib.win-amd64-cpython-39\torch\include\advisor-annotate.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:26:22.5843732Z creating build\bdist.win-amd64\wheel\torch\include\asmjit 2025-06-01T21:26:22.5846887Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\a64.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-06-01T21:26:22.5852429Z creating build\bdist.win-amd64\wheel\torch\include\asmjit\arm 2025-06-01T21:26:22.5855730Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\a64assembler.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-06-01T21:26:22.5861179Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\a64builder.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-06-01T21:26:22.5866834Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\a64compiler.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-06-01T21:26:22.5872039Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\a64emitter.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-06-01T21:26:22.6053558Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\a64globals.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-06-01T21:26:22.6060935Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\a64instdb.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-06-01T21:26:22.6066228Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\a64operand.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-06-01T21:26:22.6071927Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\armglobals.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-06-01T21:26:22.6076784Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\armoperand.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-06-01T21:26:22.6082423Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\armutils.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-06-01T21:26:22.6087551Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-06-01T21:26:22.6093134Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\asmjit-scope-begin.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-06-01T21:26:22.6098407Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\asmjit-scope-end.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-06-01T21:26:22.6296113Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\asmjit.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-06-01T21:26:22.6302701Z creating build\bdist.win-amd64\wheel\torch\include\asmjit\core 2025-06-01T21:26:22.6306328Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\api-config.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:26:22.6312438Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\archcommons.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:26:22.6317999Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\archtraits.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:26:22.6323538Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\assembler.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:26:22.6400300Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\builder.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:26:22.6406699Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\codebuffer.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:26:22.6412597Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\codeholder.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:26:22.6418936Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\compiler.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:26:22.6424934Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\compilerdefs.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:26:22.6430451Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\constpool.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:26:22.6435900Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\cpuinfo.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:26:22.6442262Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\emitter.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:26:22.6448333Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\environment.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:26:22.6454289Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\errorhandler.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:26:22.6459630Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\formatter.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:26:22.6464922Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\func.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:26:22.6471352Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\globals.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:26:22.6476747Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\inst.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:26:22.6482761Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\jitallocator.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:26:22.6488750Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\jitruntime.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:26:22.6494192Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\logger.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:26:22.6499757Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\operand.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:26:22.6506611Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\osutils.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:26:22.6511994Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\string.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:26:22.6517414Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\support.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:26:22.6524016Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\target.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:26:22.7298481Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\type.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:26:22.7304660Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\virtmem.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:26:22.7310291Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\zone.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:26:22.7316830Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\zonehash.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:26:22.7322450Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\zonelist.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:26:22.7327949Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\zonestack.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:26:22.7334063Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\zonestring.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:26:22.7339738Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\zonetree.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:26:22.7345474Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\zonevector.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-06-01T21:26:22.7352310Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-06-01T21:26:22.7360115Z creating build\bdist.win-amd64\wheel\torch\include\asmjit\x86 2025-06-01T21:26:22.7363634Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86\x86assembler.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\x86 2025-06-01T21:26:22.7370429Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86\x86builder.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\x86 2025-06-01T21:26:22.7376017Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86\x86compiler.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\x86 2025-06-01T21:26:22.7381974Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86\x86emitter.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\x86 2025-06-01T21:26:22.7396705Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86\x86globals.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\x86 2025-06-01T21:26:22.7403896Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86\x86instdb.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\x86 2025-06-01T21:26:22.7410398Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86\x86operand.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\x86 2025-06-01T21:26:22.7416832Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-06-01T21:26:22.7424119Z creating build\bdist.win-amd64\wheel\torch\include\ATen 2025-06-01T21:26:22.7427539Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\AccumulateType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.7433107Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ArrayRef.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.7438135Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ATen.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.7443889Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\autocast_mode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.7450404Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Backend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.7461412Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Backtrace.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.7466521Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\BlasBackend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.7471849Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CachedTensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.7477046Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ceil_div.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.7482050Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\code_template.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.7487760Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CollapseDims.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.7493929Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeExplicitAutogradFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.7499527Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeExplicitAutogradFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.7505955Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.7511922Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.7517416Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeImplicitAutogradFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.7523150Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeImplicitAutogradFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.7529627Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.7535242Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.7545750Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Config.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.7550910Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Context.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.7557947Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core 2025-06-01T21:26:22.7561325Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\alias_info.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.7566723Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Array.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.7572220Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ATenGeneral.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.7577210Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ATenOpList.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.7587416Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ATen_fwd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.7592994Z 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-06-01T21:26:22.7599727Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ATen_pch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.7605019Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Backtrace.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.7610309Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\blob.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.7616562Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core\boxing 2025-06-01T21:26:22.7620030Z 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-06-01T21:26:22.7625668Z 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-06-01T21:26:22.7631733Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core\boxing\impl 2025-06-01T21:26:22.7635234Z 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-06-01T21:26:22.7641559Z 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-06-01T21:26:22.7648120Z 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-06-01T21:26:22.7662935Z 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-06-01T21:26:22.7665938Z 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-06-01T21:26:22.7671698Z 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-06-01T21:26:22.7682156Z 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-06-01T21:26:22.7687902Z 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-06-01T21:26:22.7693794Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\builtin_function.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.7699437Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\CachingHostAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.7705527Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\CheckMemoryFormat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.7710971Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\class_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.7716613Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\custom_class.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.7722795Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\DeprecatedTypeProperties.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.7728456Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\DeprecatedTypePropertiesRegistry.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.7733881Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Dict.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.7739377Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Dict_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.7744972Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Dimname.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.7750014Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\DimVector.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.7755907Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core\dispatch 2025-06-01T21:26:22.7759405Z 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-06-01T21:26:22.7773161Z 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-06-01T21:26:22.7779590Z 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-06-01T21:26:22.7785161Z 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-06-01T21:26:22.7796447Z 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-06-01T21:26:22.7802189Z 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-06-01T21:26:22.7807539Z 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-06-01T21:26:22.7813045Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\DistributionsHelper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.7826247Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\dynamic_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.7831658Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\enum_tag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.7836691Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\enum_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.7842194Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Formatting.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.7847525Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\function.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.7852632Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\functional.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.7889916Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\function_schema.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.7896110Z 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-06-01T21:26:22.7901662Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Generator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.7907242Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\GeneratorForPrivateuseone.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.7912785Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\grad_mode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.7922952Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\IListRef.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.7928919Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\IListRef_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.7934656Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\interned_strings.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.7940551Z 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-06-01T21:26:22.7946312Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ivalue.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.7952702Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ivalue_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.7959533Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ivalue_to.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.7964947Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\jit_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.7971341Z 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-06-01T21:26:22.7977567Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\LegacyTypeDispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.7987149Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\List.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.7992960Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\List_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.7998597Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\MT19937RNGEngine.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.8004143Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\NamedTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.8009534Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\NestedIntSymNodeImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.8014768Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\operator_name.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.8020839Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core\op_registration 2025-06-01T21:26:22.8024532Z 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-06-01T21:26:22.8029762Z 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-06-01T21:26:22.8034972Z 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-06-01T21:26:22.8040173Z 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-06-01T21:26:22.8051646Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\PhiloxRNGEngine.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.8057624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\PythonFallbackKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.8063377Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\PythonOpRegistrationTrampoline.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.8068621Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\qualified_name.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.8078497Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\QuantizerBase.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.8083905Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Range.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.8089136Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Reduction.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.8094460Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\rref_interface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.8100336Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Scalar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.8105974Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ScalarType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.8111502Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\stack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.8117014Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\symbol.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.8122687Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.8128260Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\TensorAccessor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.8134127Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\TensorBase.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.8140774Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\TensorBody.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.8156735Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\TorchDispatchUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.8162687Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\TransformationHelper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.8168573Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\typeid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.8173696Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\type_factory.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.8179445Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\type_ptr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.8184920Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\UndefinedTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.8190588Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\UnsafeFromTH.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.8196308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\VariableHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.8201919Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Variadic.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.8207335Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Vitals.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-06-01T21:26:22.8213164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpp_custom_type_hack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.8219749Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu 2025-06-01T21:26:22.8223209Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\FlushDenormal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu 2025-06-01T21:26:22.8228481Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu 2025-06-01T21:26:22.8234233Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec 2025-06-01T21:26:22.8237695Z 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-06-01T21:26:22.8242939Z 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-06-01T21:26:22.8248548Z 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-06-01T21:26:22.8254706Z 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-06-01T21:26:22.8265397Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\sve 2025-06-01T21:26:22.8268745Z 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-06-01T21:26:22.8274373Z 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-06-01T21:26:22.8280569Z 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-06-01T21:26:22.8286132Z 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-06-01T21:26:22.8297710Z 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-06-01T21:26:22.8303616Z 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-06-01T21:26:22.8309545Z 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-06-01T21:26:22.8315311Z 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-06-01T21:26:22.8321222Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec128 2025-06-01T21:26:22.8324674Z 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-06-01T21:26:22.8330108Z 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-06-01T21:26:22.8336173Z 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-06-01T21:26:22.8341920Z 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-06-01T21:26:22.8352914Z 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-06-01T21:26:22.8359043Z 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-06-01T21:26:22.8365260Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec256 2025-06-01T21:26:22.8368779Z 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-06-01T21:26:22.8374452Z 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-06-01T21:26:22.8379824Z 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-06-01T21:26:22.8385991Z 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-06-01T21:26:22.8397928Z 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-06-01T21:26:22.8422430Z 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-06-01T21:26:22.8428720Z 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-06-01T21:26:22.8435352Z 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-06-01T21:26:22.8441000Z 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-06-01T21:26:22.8446571Z 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-06-01T21:26:22.8452725Z 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-06-01T21:26:22.8458691Z 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-06-01T21:26:22.8465894Z 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-06-01T21:26:22.8472013Z 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-06-01T21:26:22.8479233Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec256\vsx 2025-06-01T21:26:22.8483199Z 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-06-01T21:26:22.8489365Z 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-06-01T21:26:22.8495397Z 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-06-01T21:26:22.8506115Z 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-06-01T21:26:22.8512199Z 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-06-01T21:26:22.8518352Z 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-06-01T21:26:22.8524423Z 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-06-01T21:26:22.8530444Z 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-06-01T21:26:22.8542104Z 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-06-01T21:26:22.8551960Z 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-06-01T21:26:22.8557923Z 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-06-01T21:26:22.8564227Z 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-06-01T21:26:22.8570374Z 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-06-01T21:26:22.8577778Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec256\zarch 2025-06-01T21:26:22.8581277Z 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-06-01T21:26:22.8588528Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec512 2025-06-01T21:26:22.8592198Z 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-06-01T21:26:22.8597594Z 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-06-01T21:26:22.8604029Z 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-06-01T21:26:22.8609984Z 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-06-01T21:26:22.8621276Z 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-06-01T21:26:22.8626824Z 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-06-01T21:26:22.8632638Z 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-06-01T21:26:22.8638448Z 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-06-01T21:26:22.8644548Z 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-06-01T21:26:22.8650966Z 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-06-01T21:26:22.8656582Z 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-06-01T21:26:22.8663316Z 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-06-01T21:26:22.8669533Z 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-06-01T21:26:22.8675146Z 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-06-01T21:26:22.8680514Z 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-06-01T21:26:22.8685800Z 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-06-01T21:26:22.8691154Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vml.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu 2025-06-01T21:26:22.8696822Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUApplyUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.8702334Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUFixedAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.8707991Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.8713393Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.8719831Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUGeneratorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.8726112Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cuda 2025-06-01T21:26:22.8729545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\ApplyGridUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:26:22.8734955Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\AsmUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:26:22.8740268Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\ATenCUDAGeneral.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:26:22.8745220Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\Atomic.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:26:22.8751136Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CachingHostAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:26:22.8761666Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\cub-RadixSortPairs.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:26:22.8766943Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\cub.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:26:22.8773511Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\cub.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:26:22.8778932Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\cub_definitions.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:26:22.8784164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAApplyUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:26:22.8790519Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDABlas.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:26:22.8795561Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAConfig.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:26:22.8800874Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAContext.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:26:22.8805998Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAContextLight.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:26:22.8811639Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDADataType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:26:22.8817119Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDADevice.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:26:22.8822203Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAEvent.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:26:22.8827650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAGeneratorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:26:22.8833044Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAGraph.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:26:22.8838525Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAGraphsUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:26:22.8843798Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDASparse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:26:22.8854179Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDASparseBlas.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:26:22.8859849Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDASparseDescriptors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:26:22.8865652Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDATensorMethods.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:26:22.8870775Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:26:22.8876490Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cuda\detail 2025-06-01T21:26:22.8879870Z 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-06-01T21:26:22.8885516Z 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-06-01T21:26:22.8925850Z 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-06-01T21:26:22.8931052Z 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-06-01T21:26:22.8940788Z 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-06-01T21:26:22.8946042Z 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-06-01T21:26:22.8951349Z 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-06-01T21:26:22.8956752Z 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-06-01T21:26:22.8962196Z 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-06-01T21:26:22.8967341Z 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-06-01T21:26:22.8972709Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\DeviceUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:26:22.8978790Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\EmptyTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:26:22.8984133Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\Exceptions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:26:22.8990639Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\jiterator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:26:22.8996141Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\jiterator_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:26:22.9007184Z 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-06-01T21:26:22.9012400Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\NumericLimits.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:26:22.9017923Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\PeerToPeerAccess.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:26:22.9023185Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\PhiloxCudaState.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:26:22.9028201Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\PhiloxUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:26:22.9033466Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\PinnedMemoryAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:26:22.9038539Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\ScanUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:26:22.9043958Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\Sleep.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:26:22.9049313Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\ThrustAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-06-01T21:26:22.9055006Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cuda\tunable 2025-06-01T21:26:22.9063837Z 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-06-01T21:26:22.9070031Z 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-06-01T21:26:22.9075767Z 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-06-01T21:26:22.9081032Z 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-06-01T21:26:22.9090895Z 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-06-01T21:26:22.9096358Z 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-06-01T21:26:22.9101757Z 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-06-01T21:26:22.9108122Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CUDAFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.9118169Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CUDAFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.9124820Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cudnn 2025-06-01T21:26:22.9128266Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\cudnn-wrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-06-01T21:26:22.9133472Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\Descriptors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-06-01T21:26:22.9139191Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\Handle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-06-01T21:26:22.9144655Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\Handles.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-06-01T21:26:22.9149480Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\Types.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-06-01T21:26:22.9158765Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-06-01T21:26:22.9164528Z creating build\bdist.win-amd64\wheel\torch\include\ATen\detail 2025-06-01T21:26:22.9168152Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\AcceleratorHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-06-01T21:26:22.9173995Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\CUDAHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-06-01T21:26:22.9179481Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\FunctionTraits.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-06-01T21:26:22.9190300Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\HIPHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-06-01T21:26:22.9195821Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\HPUHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-06-01T21:26:22.9201269Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\IPUHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-06-01T21:26:22.9206720Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\MAIAHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-06-01T21:26:22.9212351Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\MPSHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-06-01T21:26:22.9218034Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\MTIAHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-06-01T21:26:22.9223797Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\PrivateUse1HooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-06-01T21:26:22.9229173Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\XPUHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-06-01T21:26:22.9235192Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Device.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.9240362Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DeviceAccelerator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.9245914Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DeviceGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.9251301Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Dimname.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.9256570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DimVector.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.9261978Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.9268016Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Dispatch_v2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.9274647Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\div_rtn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.9279785Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DLConvertor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.9285923Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\dlpack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.9297018Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DynamicLibrary.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.9302354Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\EmptyTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.9308149Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ExpandBase.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.9313651Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ExpandUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.9319858Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Formatting.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.9325400Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\FunctionalStorageImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.9331897Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\FunctionalTensorWrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.9337934Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Functions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.9345180Z creating build\bdist.win-amd64\wheel\torch\include\ATen\functorch 2025-06-01T21:26:22.9348909Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\ADInterpreters.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-06-01T21:26:22.9354575Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\BatchedFallback.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-06-01T21:26:22.9360037Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\BatchedTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-06-01T21:26:22.9371018Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\BatchingMetaprogramming.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-06-01T21:26:22.9376384Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\BatchRulesHelper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-06-01T21:26:22.9382521Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\DynamicLayer.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-06-01T21:26:22.9388312Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\FunctionalizeInterpreter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-06-01T21:26:22.9393540Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\Interpreter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-06-01T21:26:22.9399043Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\LegacyVmapTransforms.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-06-01T21:26:22.9404426Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\Macros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-06-01T21:26:22.9409514Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\PlumbingHelper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-06-01T21:26:22.9414906Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\TensorWrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-06-01T21:26:22.9420460Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\VmapInterpreter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-06-01T21:26:22.9425943Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\FuncTorchTLS.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.9436765Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Generator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.9442490Z creating build\bdist.win-amd64\wheel\torch\include\ATen\hip 2025-06-01T21:26:22.9445856Z creating build\bdist.win-amd64\wheel\torch\include\ATen\hip\impl 2025-06-01T21:26:22.9449396Z 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-06-01T21:26:22.9454926Z 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-06-01T21:26:22.9460308Z 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-06-01T21:26:22.9470581Z 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-06-01T21:26:22.9476519Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\InferSize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.9482025Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\InitialTensorOptions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.9487334Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\jiterator_macros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.9492735Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\jit_macros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.9497963Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Layout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.9503065Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LegacyBatchedFallback.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.9508789Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LegacyBatchedTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.9513929Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LegacyVmapMode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.9528007Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LegacyVmapTransforms.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.9533503Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LinalgBackend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.9539707Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MapAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.9545210Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MatrixRef.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.9551158Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MemoryOverlap.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.9556424Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MetaFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.9561839Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MetaFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.9567917Z creating build\bdist.win-amd64\wheel\torch\include\ATen\metal 2025-06-01T21:26:22.9571355Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\metal\Context.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\metal 2025-06-01T21:26:22.9576668Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MethodOperators.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.9582597Z creating build\bdist.win-amd64\wheel\torch\include\ATen\miopen 2025-06-01T21:26:22.9590951Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\Descriptors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-06-01T21:26:22.9596690Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\Exceptions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-06-01T21:26:22.9601977Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\Handle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-06-01T21:26:22.9606953Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\miopen-wrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-06-01T21:26:22.9615871Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\Types.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-06-01T21:26:22.9620788Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-06-01T21:26:22.9626107Z creating build\bdist.win-amd64\wheel\torch\include\ATen\mps 2025-06-01T21:26:22.9629352Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\EmptyTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-06-01T21:26:22.9634536Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\IndexKernels.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-06-01T21:26:22.9639648Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-06-01T21:26:22.9645397Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSAllocatorInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-06-01T21:26:22.9655432Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSDevice.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-06-01T21:26:22.9660860Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSEvent.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-06-01T21:26:22.9665999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSGeneratorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-06-01T21:26:22.9671485Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSGuardImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-06-01T21:26:22.9676747Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSHooks.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-06-01T21:26:22.9682008Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSProfiler.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-06-01T21:26:22.9688229Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSStream.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-06-01T21:26:22.9693599Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NamedTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.9698744Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NamedTensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:22.9706301Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native 2025-06-01T21:26:22.9709754Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Activation.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:22.9715275Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\AdaptivePooling.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:22.9720563Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\AmpKernels.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:22.9726642Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\ao_sparse 2025-06-01T21:26:22.9735756Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\ao_sparse\quantized 2025-06-01T21:26:22.9739118Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\ao_sparse\quantized\cpu 2025-06-01T21:26:22.9742781Z 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-06-01T21:26:22.9748263Z 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-06-01T21:26:22.9753813Z 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-06-01T21:26:22.9759163Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\BatchLinearAlgebra.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:22.9764832Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\batch_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:22.9770131Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\BinaryOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:22.9782970Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\BucketizationUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:22.9784388Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\CanUse32BitIndexMath.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:22.9789931Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ComplexHelper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:22.9795616Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\CompositeRandomAccessor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:22.9801331Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\CompositeRandomAccessorCommon.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:22.9806994Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ConvolutionMM3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:22.9812681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ConvUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:22.9819066Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:22.9825086Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\cpu 2025-06-01T21:26:22.9828792Z 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-06-01T21:26:22.9834333Z 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-06-01T21:26:22.9840107Z 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-06-01T21:26:22.9845407Z 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-06-01T21:26:22.9854328Z 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-06-01T21:26:22.9859681Z 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-06-01T21:26:22.9865017Z 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-06-01T21:26:22.9870877Z 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-06-01T21:26:22.9876160Z 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-06-01T21:26:22.9881483Z 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-06-01T21:26:22.9886940Z 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-06-01T21:26:22.9892344Z 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-06-01T21:26:22.9897826Z 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-06-01T21:26:22.9903194Z 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-06-01T21:26:22.9908504Z 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-06-01T21:26:22.9914281Z 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-06-01T21:26:22.9919998Z 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-06-01T21:26:22.9925117Z 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-06-01T21:26:22.9930470Z 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-06-01T21:26:22.9936288Z 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-06-01T21:26:22.9946458Z 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-06-01T21:26:22.9952217Z 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-06-01T21:26:22.9957221Z 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-06-01T21:26:22.9962613Z 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-06-01T21:26:22.9967878Z 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-06-01T21:26:22.9973796Z 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-06-01T21:26:22.9979351Z 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-06-01T21:26:22.9999433Z 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-06-01T21:26:23.0004496Z 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-06-01T21:26:23.0010790Z 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-06-01T21:26:23.0063824Z 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-06-01T21:26:23.0074519Z 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-06-01T21:26:23.0080262Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\CPUBlas.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.0086092Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\CPUFallback.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.0091461Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Cross.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.0097887Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\cuda 2025-06-01T21:26:23.0101278Z 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-06-01T21:26:23.0106538Z 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-06-01T21:26:23.0112025Z 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-06-01T21:26:23.0117696Z 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-06-01T21:26:23.0127836Z 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-06-01T21:26:23.0133007Z 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-06-01T21:26:23.0138644Z 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-06-01T21:26:23.0144890Z 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-06-01T21:26:23.0150655Z 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-06-01T21:26:23.0156098Z 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-06-01T21:26:23.0161583Z 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-06-01T21:26:23.0167117Z 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-06-01T21:26:23.0172596Z 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-06-01T21:26:23.0178974Z 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-06-01T21:26:23.0184102Z 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-06-01T21:26:23.0190929Z 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-06-01T21:26:23.0196275Z 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-06-01T21:26:23.0201815Z 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-06-01T21:26:23.0211955Z 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-06-01T21:26:23.0217752Z 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-06-01T21:26:23.0223338Z 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-06-01T21:26:23.0228873Z 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-06-01T21:26:23.0234587Z 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-06-01T21:26:23.0240403Z 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-06-01T21:26:23.0245324Z 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-06-01T21:26:23.0250913Z 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-06-01T21:26:23.0256492Z 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-06-01T21:26:23.0273072Z 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-06-01T21:26:23.0404908Z 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-06-01T21:26:23.0410235Z 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-06-01T21:26:23.0415787Z 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-06-01T21:26:23.0421561Z 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-06-01T21:26:23.0426474Z 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-06-01T21:26:23.0431537Z 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-06-01T21:26:23.0438336Z 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-06-01T21:26:23.0444356Z 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-06-01T21:26:23.0450010Z 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-06-01T21:26:23.0455623Z 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-06-01T21:26:23.0462207Z 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-06-01T21:26:23.0474439Z 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-06-01T21:26:23.0479703Z 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-06-01T21:26:23.0484940Z 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-06-01T21:26:23.0491085Z 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-06-01T21:26:23.0496342Z 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-06-01T21:26:23.0502186Z 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-06-01T21:26:23.0508011Z 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-06-01T21:26:23.0513111Z 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-06-01T21:26:23.0518315Z 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-06-01T21:26:23.0523952Z 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-06-01T21:26:23.0529831Z 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-06-01T21:26:23.0534647Z 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-06-01T21:26:23.0544409Z 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-06-01T21:26:23.0549576Z 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-06-01T21:26:23.0555216Z 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-06-01T21:26:23.0560620Z 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-06-01T21:26:23.0566223Z 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-06-01T21:26:23.0572025Z 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-06-01T21:26:23.0577422Z 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-06-01T21:26:23.0582999Z 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-06-01T21:26:23.0588634Z 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-06-01T21:26:23.0602771Z 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-06-01T21:26:23.0608363Z 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-06-01T21:26:23.0614287Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\DilatedConvolutionUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.0623925Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\DispatchStub.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.0629769Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Distance.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.0635932Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Distributions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.0644042Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\DistributionTemplates.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.0650153Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\EmbeddingBag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.0655718Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Fill.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.0661007Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ForeachUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.0666624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\FractionalMaxPooling.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.0672405Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\FunctionOfAMatrixUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.0677583Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\FusedAdagrad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.0682859Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\FusedAdam.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.0693122Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\FusedSGD.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.0698721Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Gelu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.0704266Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\GridSampler.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.0710210Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\GridSamplerUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.0715738Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\group_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.0721951Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\hip 2025-06-01T21:26:23.0725612Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\hip\bgemm_kernels 2025-06-01T21:26:23.0729359Z 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-06-01T21:26:23.0734966Z 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-06-01T21:26:23.0740637Z 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-06-01T21:26:23.0745642Z 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-06-01T21:26:23.0750883Z 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-06-01T21:26:23.0756754Z 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-06-01T21:26:23.0767338Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Histogram.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.0772781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\im2col.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.0778358Z 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-06-01T21:26:23.0784652Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\IndexingUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.0790200Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\IndexKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.0796184Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\kleidiai 2025-06-01T21:26:23.0803758Z 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-06-01T21:26:23.0809124Z 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-06-01T21:26:23.0814570Z 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-06-01T21:26:23.0822971Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\layer_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.0828391Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Lerp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.0833797Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\LinearAlgebra.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.0839224Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\LinearAlgebraUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.0845231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\LossMulti.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.0850634Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Math.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.0857978Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\MathBitFallThroughLists.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.0863457Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\MathBitsFallback.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.0869334Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\MaxPooling.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.0875018Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mkldnn 2025-06-01T21:26:23.0878415Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mkldnn\xpu 2025-06-01T21:26:23.0881783Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mkldnn\xpu\detail 2025-06-01T21:26:23.0885126Z 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-06-01T21:26:23.0890907Z 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-06-01T21:26:23.0897217Z 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-06-01T21:26:23.0902669Z 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-06-01T21:26:23.0907935Z 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-06-01T21:26:23.0913414Z 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-06-01T21:26:23.0923190Z 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-06-01T21:26:23.0928830Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mps 2025-06-01T21:26:23.0932059Z 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-06-01T21:26:23.0937578Z 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-06-01T21:26:23.0942920Z 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-06-01T21:26:23.0948372Z 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-06-01T21:26:23.0959048Z 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-06-01T21:26:23.0964717Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mps\operations 2025-06-01T21:26:23.0968179Z 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-06-01T21:26:23.0973395Z 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-06-01T21:26:23.0978834Z 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-06-01T21:26:23.0989084Z 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-06-01T21:26:23.0994470Z 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-06-01T21:26:23.0999777Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations\Indexing.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps\operations 2025-06-01T21:26:23.1004851Z 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-06-01T21:26:23.1010650Z 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-06-01T21:26:23.1016611Z 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-06-01T21:26:23.1022466Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\nested 2025-06-01T21:26:23.1031219Z 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-06-01T21:26:23.1036502Z 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-06-01T21:26:23.1042257Z 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-06-01T21:26:23.1051934Z 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-06-01T21:26:23.1057393Z 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-06-01T21:26:23.1062905Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\NonEmptyUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1068414Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\NonSymbolicBC.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1073792Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Normalization.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1084154Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Padding.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1089544Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\PixelShuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1095192Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\PointwiseOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1100729Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Pool.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1106337Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Pow.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1112579Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\quantized 2025-06-01T21:26:23.1116056Z 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-06-01T21:26:23.1121528Z 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-06-01T21:26:23.1126993Z 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-06-01T21:26:23.1137131Z 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-06-01T21:26:23.1142500Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\quantized\cpu 2025-06-01T21:26:23.1145974Z 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-06-01T21:26:23.1151926Z 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-06-01T21:26:23.1157308Z 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-06-01T21:26:23.1162915Z 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-06-01T21:26:23.1173287Z 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-06-01T21:26:23.1178960Z 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-06-01T21:26:23.1184213Z 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-06-01T21:26:23.1189552Z 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-06-01T21:26:23.1194912Z 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-06-01T21:26:23.1200442Z 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-06-01T21:26:23.1205899Z 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-06-01T21:26:23.1211315Z 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-06-01T21:26:23.1217392Z 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-06-01T21:26:23.1256146Z 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-06-01T21:26:23.1261897Z 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-06-01T21:26:23.1266917Z 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-06-01T21:26:23.1272910Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\quantized\cudnn 2025-06-01T21:26:23.1276444Z 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-06-01T21:26:23.1282014Z 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-06-01T21:26:23.1287579Z 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-06-01T21:26:23.1293188Z 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-06-01T21:26:23.1298789Z 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-06-01T21:26:23.1304597Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\RangeFactories.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1309729Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\RangeUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1323693Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ReduceAllOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1329149Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ReduceOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1334637Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ReduceOpsUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1341315Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ReductionType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1347507Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Repeat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1352345Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Resize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1358106Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ResizeCommon.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1363686Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\RNN.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1369076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ScatterGatherChecks.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1374444Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SegmentReduce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1379771Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SharedReduceOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1391570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SobolEngineOpsUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1397006Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Sorting.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1402151Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SortingUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1407620Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SparseTensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1413342Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SpectralOpsUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1419168Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\StridedRandomAccessor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1424650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorAdvancedIndexing.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1430709Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorAdvancedIndexingUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1436135Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorCompare.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1441653Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorConversions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1453741Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorDimApply.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1459538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorFactories.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1465074Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorIterator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1470622Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorIteratorDynamicCasting.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1475987Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorProperties.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1481201Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorShape.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1486799Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorTransformations.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1492363Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TopKImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1498407Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers 2025-06-01T21:26:23.1502163Z 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-06-01T21:26:23.1508038Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda 2025-06-01T21:26:23.1511399Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\flash_attn 2025-06-01T21:26:23.1514787Z 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-06-01T21:26:23.1520349Z 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-06-01T21:26:23.1525710Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-06-01T21:26:23.1529194Z 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-06-01T21:26:23.1534875Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue 2025-06-01T21:26:23.1538570Z 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-06-01T21:26:23.1544513Z 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-06-01T21:26:23.1550184Z 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-06-01T21:26:23.1560468Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-06-01T21:26:23.1563958Z 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-06-01T21:26:23.1569584Z 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-06-01T21:26:23.1575191Z 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-06-01T21:26:23.1581243Z 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-06-01T21:26:23.1591464Z 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-06-01T21:26:23.1597037Z 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-06-01T21:26:23.1602622Z 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-06-01T21:26:23.1609091Z 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-06-01T21:26:23.1620641Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-06-01T21:26:23.1624644Z 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-06-01T21:26:23.1630525Z 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-06-01T21:26:23.1636549Z 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-06-01T21:26:23.1647160Z 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-06-01T21:26:23.1653954Z 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-06-01T21:26:23.1660760Z 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-06-01T21:26:23.1666366Z 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-06-01T21:26:23.1672836Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels 2025-06-01T21:26:23.1676473Z 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-06-01T21:26:23.1683190Z 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-06-01T21:26:23.1689139Z 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-06-01T21:26:23.1696024Z 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-06-01T21:26:23.1702503Z 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-06-01T21:26:23.1708283Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\transform 2025-06-01T21:26:23.1712118Z 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-06-01T21:26:23.1717392Z 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-06-01T21:26:23.1722810Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\hip 2025-06-01T21:26:23.1726655Z 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-06-01T21:26:23.1732354Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\hip\flash_attn 2025-06-01T21:26:23.1735898Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\hip\flash_attn\ck 2025-06-01T21:26:23.1739322Z 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-06-01T21:26:23.1763829Z 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-06-01T21:26:23.1769671Z 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-06-01T21:26:23.1780142Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TransposeType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1785633Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TriangularOpsUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1791258Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TypeProperties.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1796787Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\UnaryOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1802918Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Unfold2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1808878Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Unfold3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1814208Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\UnfoldBackward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1819925Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\UpSample.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1826602Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\utils 2025-06-01T21:26:23.1830025Z 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-06-01T21:26:23.1835400Z 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-06-01T21:26:23.1840923Z 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-06-01T21:26:23.1846388Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\verbose_wrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1851839Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\vol2col.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-06-01T21:26:23.1857966Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NativeFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:23.1864901Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NativeMetaFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:23.1871496Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NestedTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:23.1876866Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NumericUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:23.1882474Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\OpaqueTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:23.1887755Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Operators.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:23.1893999Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\OpMathType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:23.2044511Z creating build\bdist.win-amd64\wheel\torch\include\ATen\ops 2025-06-01T21:26:23.2048282Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\abs.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.2054298Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\absolute.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.2060408Z 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-06-01T21:26:23.2065868Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\absolute_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.2075787Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\absolute_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.2081972Z 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-06-01T21:26:23.2087373Z 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-06-01T21:26:23.2092840Z 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-06-01T21:26:23.2098460Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\abs_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.2104530Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\abs_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.2110046Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.2115727Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.2121635Z 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-06-01T21:26:23.2127017Z 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-06-01T21:26:23.2132532Z 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-06-01T21:26:23.2138097Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.2143570Z 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-06-01T21:26:23.2149225Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.2154950Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.2160942Z 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-06-01T21:26:23.2172130Z 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-06-01T21:26:23.2177799Z 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-06-01T21:26:23.2183326Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.2188766Z 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-06-01T21:26:23.2194395Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.2199904Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.2205622Z 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-06-01T21:26:23.2211669Z 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-06-01T21:26:23.2217368Z 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-06-01T21:26:23.2228234Z 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-06-01T21:26:23.2233876Z 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-06-01T21:26:23.2240430Z 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-06-01T21:26:23.2247531Z 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-06-01T21:26:23.2253260Z 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-06-01T21:26:23.2258925Z 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-06-01T21:26:23.2264718Z 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-06-01T21:26:23.2270376Z 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-06-01T21:26:23.2288322Z 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-06-01T21:26:23.2294297Z 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-06-01T21:26:23.2300372Z 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-06-01T21:26:23.2306847Z 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-06-01T21:26:23.2313017Z 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-06-01T21:26:23.2318747Z 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-06-01T21:26:23.2324930Z 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-06-01T21:26:23.2331343Z 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-06-01T21:26:23.2337320Z 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-06-01T21:26:23.2343013Z 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-06-01T21:26:23.2348906Z 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-06-01T21:26:23.2362626Z 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-06-01T21:26:23.2368725Z 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-06-01T21:26:23.2374464Z 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-06-01T21:26:23.2379999Z 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-06-01T21:26:23.2385489Z 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-06-01T21:26:23.2390958Z 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-06-01T21:26:23.2397189Z 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-06-01T21:26:23.2402827Z 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-06-01T21:26:23.2408895Z 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-06-01T21:26:23.2451490Z 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-06-01T21:26:23.2457573Z 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-06-01T21:26:23.2467480Z 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-06-01T21:26:23.2473230Z 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-06-01T21:26:23.2479170Z 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-06-01T21:26:23.2484936Z 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-06-01T21:26:23.2490330Z 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-06-01T21:26:23.2495980Z 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-06-01T21:26:23.2501846Z 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-06-01T21:26:23.2512043Z 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-06-01T21:26:23.2517804Z 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-06-01T21:26:23.2523676Z 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-06-01T21:26:23.2529370Z 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-06-01T21:26:23.2535655Z 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-06-01T21:26:23.2547405Z 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-06-01T21:26:23.2553230Z 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-06-01T21:26:23.2559352Z 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-06-01T21:26:23.2565829Z 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-06-01T21:26:23.2571714Z 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-06-01T21:26:23.2577547Z 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-06-01T21:26:23.2583761Z 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-06-01T21:26:23.2589643Z 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-06-01T21:26:23.2595771Z 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-06-01T21:26:23.2601572Z 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-06-01T21:26:23.2607546Z 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-06-01T21:26:23.2613330Z 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-06-01T21:26:23.2619225Z 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-06-01T21:26:23.2624847Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.2630062Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addbmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.2635593Z 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-06-01T21:26:23.2641148Z 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-06-01T21:26:23.2646684Z 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-06-01T21:26:23.2657793Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addbmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.2663275Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addbmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.2668702Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.2674288Z 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-06-01T21:26:23.2679718Z 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-06-01T21:26:23.2685857Z 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-06-01T21:26:23.2695750Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.2701517Z 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-06-01T21:26:23.2707187Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.2712760Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.2718548Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.2724200Z 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-06-01T21:26:23.2730065Z 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-06-01T21:26:23.2735885Z 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-06-01T21:26:23.2741500Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.2747446Z 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-06-01T21:26:23.2753286Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.2759061Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.2764704Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.2770548Z 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-06-01T21:26:23.2781464Z 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-06-01T21:26:23.2787025Z 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-06-01T21:26:23.2792637Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.2798246Z 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-06-01T21:26:23.2804136Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.2809966Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.2815701Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.2821672Z 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-06-01T21:26:23.2833133Z 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-06-01T21:26:23.2838921Z 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-06-01T21:26:23.2844384Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.2850023Z 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-06-01T21:26:23.2855806Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.2861441Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.2867264Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.2873070Z 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-06-01T21:26:23.2878676Z 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-06-01T21:26:23.2884145Z 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-06-01T21:26:23.2889641Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.2895747Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.2902042Z 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-06-01T21:26:23.2908135Z 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-06-01T21:26:23.2913829Z 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-06-01T21:26:23.2919879Z 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-06-01T21:26:23.2925416Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.2930636Z 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-06-01T21:26:23.2936212Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.2942079Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.2947565Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adjoint.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.2953306Z 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-06-01T21:26:23.2958950Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adjoint_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.2964554Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adjoint_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.2970645Z 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-06-01T21:26:23.2976638Z 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-06-01T21:26:23.2982763Z 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-06-01T21:26:23.2988433Z 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-06-01T21:26:23.2994333Z 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-06-01T21:26:23.3000754Z 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-06-01T21:26:23.3013812Z 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-06-01T21:26:23.3019747Z 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-06-01T21:26:23.3025490Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3031121Z 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-06-01T21:26:23.3036790Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3042966Z 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-06-01T21:26:23.3048914Z 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-06-01T21:26:23.3054642Z 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-06-01T21:26:23.3060358Z 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-06-01T21:26:23.3066214Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3071479Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3077078Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3082565Z 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-06-01T21:26:23.3088270Z 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-06-01T21:26:23.3093892Z 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-06-01T21:26:23.3099684Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_tensors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3105667Z 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-06-01T21:26:23.3111446Z 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-06-01T21:26:23.3117281Z 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-06-01T21:26:23.3122760Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_to.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3128622Z 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-06-01T21:26:23.3134383Z 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-06-01T21:26:23.3141002Z 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-06-01T21:26:23.3147083Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3152565Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\allclose.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3158417Z 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-06-01T21:26:23.3164093Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\allclose_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3169536Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\allclose_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3175943Z 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-06-01T21:26:23.3181577Z 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-06-01T21:26:23.3187400Z 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-06-01T21:26:23.3192867Z 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-06-01T21:26:23.3198503Z 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-06-01T21:26:23.3204218Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3209534Z 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-06-01T21:26:23.3215321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3220815Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3226197Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alpha_dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3232098Z 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-06-01T21:26:23.3237621Z 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-06-01T21:26:23.3248929Z 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-06-01T21:26:23.3254518Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3260647Z 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-06-01T21:26:23.3266172Z 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-06-01T21:26:23.3272013Z 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-06-01T21:26:23.3277549Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3283012Z 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-06-01T21:26:23.3288571Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3293893Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3299550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3304915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3310935Z 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-06-01T21:26:23.3316305Z 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-06-01T21:26:23.3321812Z 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-06-01T21:26:23.3327303Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3333466Z 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-06-01T21:26:23.3339178Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3344932Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3351046Z 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-06-01T21:26:23.3356559Z 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-06-01T21:26:23.3362815Z 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-06-01T21:26:23.3368739Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3374823Z 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-06-01T21:26:23.3381164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3387097Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3392843Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\and.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3399196Z 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-06-01T21:26:23.3404650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\and_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3410210Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\and_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3415772Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\angle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3421451Z 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-06-01T21:26:23.3427141Z 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-06-01T21:26:23.3432887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\angle_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3438454Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\angle_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3443988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3449895Z 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-06-01T21:26:23.3455595Z 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-06-01T21:26:23.3461401Z 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-06-01T21:26:23.3467046Z 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-06-01T21:26:23.3472577Z 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-06-01T21:26:23.3485452Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3490919Z 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-06-01T21:26:23.3496590Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3502095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3539073Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arange.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3560185Z 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-06-01T21:26:23.3565855Z 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-06-01T21:26:23.3571422Z 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-06-01T21:26:23.3577198Z 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-06-01T21:26:23.3582817Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arange_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3588627Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arange_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3594379Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccos.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3599683Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccosh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3605302Z 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-06-01T21:26:23.3610771Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccosh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3616464Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccosh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3622402Z 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-06-01T21:26:23.3628144Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccos_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3633818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccos_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3639361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3644901Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsinh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3650740Z 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-06-01T21:26:23.3656599Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsinh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3662263Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsinh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3668113Z 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-06-01T21:26:23.3674003Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3679650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3685357Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3690763Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3696553Z 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-06-01T21:26:23.3702125Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3707992Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3713864Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3719826Z 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-06-01T21:26:23.3725457Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctanh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3731173Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctanh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3737229Z 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-06-01T21:26:23.3742912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3748533Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3754150Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3759824Z 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-06-01T21:26:23.3765840Z 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-06-01T21:26:23.3771481Z 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-06-01T21:26:23.3777088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3783078Z 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-06-01T21:26:23.3788767Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3794420Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3800152Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3805953Z 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-06-01T21:26:23.3812292Z 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-06-01T21:26:23.3819414Z 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-06-01T21:26:23.3825846Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3832166Z 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-06-01T21:26:23.3838167Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3844773Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3850581Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argsort.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3856883Z 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-06-01T21:26:23.3863068Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argsort_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3868858Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argsort_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3874664Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argwhere.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3880276Z 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-06-01T21:26:23.3885931Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argwhere_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3891564Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argwhere_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3897556Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3903243Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3909111Z 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-06-01T21:26:23.3914763Z 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-06-01T21:26:23.3920873Z 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-06-01T21:26:23.3926433Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3931956Z 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-06-01T21:26:23.3937822Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3943448Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3949686Z 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-06-01T21:26:23.3955132Z 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-06-01T21:26:23.3960913Z 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-06-01T21:26:23.3966599Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3972446Z 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-06-01T21:26:23.3978224Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3983942Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3989515Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.3995791Z 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-06-01T21:26:23.4001395Z 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-06-01T21:26:23.4007629Z 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-06-01T21:26:23.4013558Z 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-06-01T21:26:23.4019333Z 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-06-01T21:26:23.4033135Z 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-06-01T21:26:23.4038822Z 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-06-01T21:26:23.4044435Z 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-06-01T21:26:23.4050085Z 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-06-01T21:26:23.4055943Z 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-06-01T21:26:23.4061475Z 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-06-01T21:26:23.4067039Z 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-06-01T21:26:23.4073117Z 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-06-01T21:26:23.4079030Z 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-06-01T21:26:23.4084542Z 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-06-01T21:26:23.4090108Z 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-06-01T21:26:23.4095682Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.4101236Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.4106795Z 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-06-01T21:26:23.4112344Z 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-06-01T21:26:23.4118051Z 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-06-01T21:26:23.4123307Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.4128824Z 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-06-01T21:26:23.4134525Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.4140305Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.4145948Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.4151929Z 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-06-01T21:26:23.4157551Z 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-06-01T21:26:23.4163288Z 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-06-01T21:26:23.4169224Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.4174678Z 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-06-01T21:26:23.4180373Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.4186051Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.4192052Z 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-06-01T21:26:23.4197780Z 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-06-01T21:26:23.4203403Z 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-06-01T21:26:23.4209068Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.4214437Z 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-06-01T21:26:23.4220282Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.4225752Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.4231121Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.4237269Z 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-06-01T21:26:23.4242801Z 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-06-01T21:26:23.4248134Z 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-06-01T21:26:23.4253942Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.4260635Z 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-06-01T21:26:23.4266411Z 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-06-01T21:26:23.4272228Z 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-06-01T21:26:23.4277922Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.4284665Z 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-06-01T21:26:23.4290783Z 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-06-01T21:26:23.4296115Z 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-06-01T21:26:23.4301825Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.4307835Z 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-06-01T21:26:23.4313532Z 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-06-01T21:26:23.4319192Z 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-06-01T21:26:23.4325431Z 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-06-01T21:26:23.4331398Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.4337491Z 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-06-01T21:26:23.4343681Z 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-06-01T21:26:23.4349422Z 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-06-01T21:26:23.4355297Z 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-06-01T21:26:23.4361003Z 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-06-01T21:26:23.4366904Z 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-06-01T21:26:23.4372744Z 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-06-01T21:26:23.4378432Z 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-06-01T21:26:23.4384766Z 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-06-01T21:26:23.4394492Z 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-06-01T21:26:23.4400482Z 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-06-01T21:26:23.4406643Z 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-06-01T21:26:23.4413094Z 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-06-01T21:26:23.4419470Z 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-06-01T21:26:23.4425768Z 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-06-01T21:26:23.4432200Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.4438226Z 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-06-01T21:26:23.4444343Z 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-06-01T21:26:23.4450311Z 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-06-01T21:26:23.4489047Z 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-06-01T21:26:23.4494749Z 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-06-01T21:26:23.4500320Z 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-06-01T21:26:23.4506123Z 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-06-01T21:26:23.4517597Z 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-06-01T21:26:23.4523795Z 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-06-01T21:26:23.4529312Z 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-06-01T21:26:23.4534964Z 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-06-01T21:26:23.4540617Z 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-06-01T21:26:23.4546413Z 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-06-01T21:26:23.4552108Z 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-06-01T21:26:23.4557696Z 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-06-01T21:26:23.4563472Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.4569221Z 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-06-01T21:26:23.4574779Z 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-06-01T21:26:23.4580565Z 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-06-01T21:26:23.4586225Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.4592226Z 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-06-01T21:26:23.4598001Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.4603850Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.4609834Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bartlett_window.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.4615859Z 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-06-01T21:26:23.4621523Z 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-06-01T21:26:23.4627259Z 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-06-01T21:26:23.4632990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.4638819Z 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-06-01T21:26:23.4644789Z 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-06-01T21:26:23.4651278Z 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-06-01T21:26:23.4657260Z 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-06-01T21:26:23.4663392Z 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-06-01T21:26:23.4669126Z 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-06-01T21:26:23.4675042Z 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-06-01T21:26:23.4680745Z 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-06-01T21:26:23.4686928Z 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-06-01T21:26:23.4692647Z 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-06-01T21:26:23.4698682Z 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-06-01T21:26:23.4704775Z 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-06-01T21:26:23.4710860Z 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-06-01T21:26:23.4716555Z 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-06-01T21:26:23.4722514Z 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-06-01T21:26:23.4728496Z 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-06-01T21:26:23.4734203Z 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-06-01T21:26:23.4740412Z 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-06-01T21:26:23.4746144Z 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-06-01T21:26:23.4751988Z 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-06-01T21:26:23.4757878Z 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-06-01T21:26:23.4764260Z 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-06-01T21:26:23.4770179Z 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-06-01T21:26:23.4776177Z 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-06-01T21:26:23.4782081Z 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-06-01T21:26:23.4788373Z 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-06-01T21:26:23.4794905Z 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-06-01T21:26:23.4800738Z 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-06-01T21:26:23.4806664Z 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-06-01T21:26:23.4812548Z 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-06-01T21:26:23.4818764Z 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-06-01T21:26:23.4824994Z 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-06-01T21:26:23.4831401Z 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-06-01T21:26:23.4837470Z 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-06-01T21:26:23.4843771Z 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-06-01T21:26:23.4849324Z 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-06-01T21:26:23.4855467Z 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-06-01T21:26:23.4861453Z 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-06-01T21:26:23.4867795Z 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-06-01T21:26:23.4874213Z 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-06-01T21:26:23.4879816Z 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-06-01T21:26:23.4886064Z 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-06-01T21:26:23.4892478Z 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-06-01T21:26:23.4898202Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bernoulli.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.4904025Z 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-06-01T21:26:23.4909845Z 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-06-01T21:26:23.4915703Z 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-06-01T21:26:23.4921563Z 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-06-01T21:26:23.4934680Z 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-06-01T21:26:23.4940425Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bernoulli_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.4946020Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bernoulli_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.4951912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bilinear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.4957602Z 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-06-01T21:26:23.4963355Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bilinear_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.4968607Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bilinear_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.4974361Z 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-06-01T21:26:23.4980301Z 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-06-01T21:26:23.4986210Z 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-06-01T21:26:23.4992301Z 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-06-01T21:26:23.4998235Z 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-06-01T21:26:23.5004049Z 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-06-01T21:26:23.5009719Z 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-06-01T21:26:23.5015871Z 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-06-01T21:26:23.5021459Z 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-06-01T21:26:23.5027495Z 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-06-01T21:26:23.5033244Z 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-06-01T21:26:23.5039415Z 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-06-01T21:26:23.5045474Z 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-06-01T21:26:23.5052509Z 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-06-01T21:26:23.5058434Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bincount.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5064661Z 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-06-01T21:26:23.5070426Z 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-06-01T21:26:23.5076245Z 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-06-01T21:26:23.5082099Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bincount_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5088092Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bincount_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5093928Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binomial.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5101523Z 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-06-01T21:26:23.5107414Z 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-06-01T21:26:23.5113334Z 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-06-01T21:26:23.5135987Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binomial_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5141848Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binomial_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5147795Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_and.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5154161Z 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-06-01T21:26:23.5160158Z 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-06-01T21:26:23.5166399Z 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-06-01T21:26:23.5172840Z 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-06-01T21:26:23.5178688Z 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-06-01T21:26:23.5184680Z 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-06-01T21:26:23.5190771Z 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-06-01T21:26:23.5196727Z 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-06-01T21:26:23.5202703Z 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-06-01T21:26:23.5209280Z 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-06-01T21:26:23.5215263Z 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-06-01T21:26:23.5221215Z 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-06-01T21:26:23.5227249Z 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-06-01T21:26:23.5233443Z 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-06-01T21:26:23.5239462Z 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-06-01T21:26:23.5245548Z 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-06-01T21:26:23.5251665Z 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-06-01T21:26:23.5258482Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_not.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5264847Z 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-06-01T21:26:23.5270530Z 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-06-01T21:26:23.5276374Z 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-06-01T21:26:23.5282525Z 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-06-01T21:26:23.5288228Z 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-06-01T21:26:23.5294129Z 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-06-01T21:26:23.5300108Z 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-06-01T21:26:23.5305990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_or.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5312406Z 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-06-01T21:26:23.5318344Z 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-06-01T21:26:23.5324470Z 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-06-01T21:26:23.5330357Z 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-06-01T21:26:23.5336909Z 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-06-01T21:26:23.5342953Z 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-06-01T21:26:23.5348866Z 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-06-01T21:26:23.5354600Z 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-06-01T21:26:23.5360684Z 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-06-01T21:26:23.5367556Z 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-06-01T21:26:23.5373812Z 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-06-01T21:26:23.5379721Z 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-06-01T21:26:23.5385792Z 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-06-01T21:26:23.5391576Z 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-06-01T21:26:23.5397707Z 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-06-01T21:26:23.5403635Z 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-06-01T21:26:23.5409427Z 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-06-01T21:26:23.5415229Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_xor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5421523Z 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-06-01T21:26:23.5428110Z 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-06-01T21:26:23.5433962Z 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-06-01T21:26:23.5439934Z 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-06-01T21:26:23.5445831Z 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-06-01T21:26:23.5451737Z 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-06-01T21:26:23.5457820Z 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-06-01T21:26:23.5463540Z 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-06-01T21:26:23.5469379Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\blackman_window.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5475357Z 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-06-01T21:26:23.5481430Z 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-06-01T21:26:23.5487173Z 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-06-01T21:26:23.5493025Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\block_diag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5499145Z 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-06-01T21:26:23.5504693Z 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-06-01T21:26:23.5510147Z 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-06-01T21:26:23.5515746Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5521502Z 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-06-01T21:26:23.5527193Z 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-06-01T21:26:23.5532879Z 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-06-01T21:26:23.5538456Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5543665Z 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-06-01T21:26:23.5549448Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5554959Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5560402Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\broadcast_tensors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5566260Z 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-06-01T21:26:23.5572078Z 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-06-01T21:26:23.5577658Z 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-06-01T21:26:23.5583359Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\broadcast_to.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5589694Z 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-06-01T21:26:23.5594958Z 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-06-01T21:26:23.5600579Z 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-06-01T21:26:23.5606446Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bucketize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5612457Z 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-06-01T21:26:23.5617806Z 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-06-01T21:26:23.5623460Z 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-06-01T21:26:23.5629198Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bucketize_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5648209Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bucketize_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5649422Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\can_cast.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5650517Z 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-06-01T21:26:23.5652504Z 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-06-01T21:26:23.5658040Z 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-06-01T21:26:23.5664631Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cartesian_prod.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5671255Z 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-06-01T21:26:23.5676735Z 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-06-01T21:26:23.5682334Z 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-06-01T21:26:23.5688072Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5694363Z 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-06-01T21:26:23.5700527Z 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-06-01T21:26:23.5706314Z 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-06-01T21:26:23.5711960Z 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-06-01T21:26:23.5717618Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5723375Z 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-06-01T21:26:23.5728905Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5734758Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5740450Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cauchy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5746227Z 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-06-01T21:26:23.5751901Z 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-06-01T21:26:23.5757856Z 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-06-01T21:26:23.5763620Z 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-06-01T21:26:23.5776839Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cauchy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5782569Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cauchy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5789609Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ccol_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5795394Z 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-06-01T21:26:23.5801076Z 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-06-01T21:26:23.5807454Z 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-06-01T21:26:23.5813655Z 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-06-01T21:26:23.5819541Z 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-06-01T21:26:23.5826110Z 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-06-01T21:26:23.5832845Z 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-06-01T21:26:23.5839310Z 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-06-01T21:26:23.5845922Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cdist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5851859Z 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-06-01T21:26:23.5857658Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cdist_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5863056Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cdist_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5868653Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5874958Z 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-06-01T21:26:23.5880507Z 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-06-01T21:26:23.5886109Z 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-06-01T21:26:23.5891883Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5897558Z 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-06-01T21:26:23.5902837Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5908272Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5913578Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\celu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5919400Z 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-06-01T21:26:23.5924888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\celu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5930548Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\celu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5935896Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chain_matmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5941717Z 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-06-01T21:26:23.5947367Z 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-06-01T21:26:23.5952717Z 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-06-01T21:26:23.5958051Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chalf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5963532Z 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-06-01T21:26:23.5969021Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chalf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5974222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chalf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5979879Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\channel_shuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.5985910Z 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-06-01T21:26:23.5991542Z 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-06-01T21:26:23.5997370Z 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-06-01T21:26:23.6003816Z 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-06-01T21:26:23.6016607Z 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-06-01T21:26:23.6022227Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6027812Z 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-06-01T21:26:23.6033385Z 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-06-01T21:26:23.6038927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_inverse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6044848Z 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-06-01T21:26:23.6050751Z 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-06-01T21:26:23.6056538Z 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-06-01T21:26:23.6062579Z 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-06-01T21:26:23.6068416Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6073881Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6079508Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_solve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6085719Z 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-06-01T21:26:23.6091528Z 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-06-01T21:26:23.6098185Z 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-06-01T21:26:23.6103688Z 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-06-01T21:26:23.6109614Z 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-06-01T21:26:23.6115354Z 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-06-01T21:26:23.6126669Z 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-06-01T21:26:23.6132724Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chunk.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6138845Z 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-06-01T21:26:23.6145159Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chunk_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6151136Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chunk_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6157134Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6162852Z 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-06-01T21:26:23.6168374Z 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-06-01T21:26:23.6174093Z 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-06-01T21:26:23.6180004Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_max.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6186060Z 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-06-01T21:26:23.6191651Z 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-06-01T21:26:23.6197886Z 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-06-01T21:26:23.6203474Z 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-06-01T21:26:23.6209180Z 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-06-01T21:26:23.6214763Z 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-06-01T21:26:23.6220689Z 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-06-01T21:26:23.6226450Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6237346Z 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-06-01T21:26:23.6243490Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_min.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6249586Z 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-06-01T21:26:23.6255096Z 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-06-01T21:26:23.6261048Z 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-06-01T21:26:23.6267072Z 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-06-01T21:26:23.6272819Z 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-06-01T21:26:23.6278569Z 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-06-01T21:26:23.6284590Z 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-06-01T21:26:23.6290054Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6295662Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6301443Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clip.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6306954Z 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-06-01T21:26:23.6312560Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clip_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6318479Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clip_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6323828Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clone.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6329728Z 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-06-01T21:26:23.6335683Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clone_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6347408Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clone_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6353185Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\coalesce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6358739Z 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-06-01T21:26:23.6364396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\coalesce_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6370076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\coalesce_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6375744Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col2im.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6387263Z 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-06-01T21:26:23.6393105Z 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-06-01T21:26:23.6398723Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col2im_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6404142Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col2im_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6409736Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\column_stack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6415713Z 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-06-01T21:26:23.6426689Z 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-06-01T21:26:23.6432094Z 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-06-01T21:26:23.6437788Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6443442Z 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-06-01T21:26:23.6449132Z 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-06-01T21:26:23.6455426Z 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-06-01T21:26:23.6461400Z 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-06-01T21:26:23.6467061Z 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-06-01T21:26:23.6472678Z 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-06-01T21:26:23.6478478Z 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-06-01T21:26:23.6483916Z 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-06-01T21:26:23.6489685Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\combinations.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6495837Z 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-06-01T21:26:23.6501605Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\combinations_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6507237Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\combinations_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6512686Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\complex.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6518369Z 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-06-01T21:26:23.6523845Z 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-06-01T21:26:23.6529455Z 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-06-01T21:26:23.6535097Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\complex_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6540651Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\complex_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6546435Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6551890Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concatenate.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6565238Z 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-06-01T21:26:23.6570554Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concatenate_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6576299Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concatenate_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6582368Z 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-06-01T21:26:23.6587902Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concat_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6593721Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concat_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6599486Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6604819Z 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-06-01T21:26:23.6610204Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6615620Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6620971Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_physical.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6626851Z 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-06-01T21:26:23.6632791Z 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-06-01T21:26:23.6638522Z 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-06-01T21:26:23.6644170Z 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-06-01T21:26:23.6649843Z 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-06-01T21:26:23.6655531Z 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-06-01T21:26:23.6661204Z 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-06-01T21:26:23.6667040Z 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-06-01T21:26:23.6688336Z 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-06-01T21:26:23.6694167Z 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-06-01T21:26:23.6699928Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\contiguous.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6714538Z 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-06-01T21:26:23.6720209Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\contiguous_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6725585Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\contiguous_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6731249Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6737074Z 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-06-01T21:26:23.6743082Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6748712Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6754430Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6760090Z 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-06-01T21:26:23.6771244Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6777181Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6783306Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6789094Z 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-06-01T21:26:23.6794865Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6800452Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6811386Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6817052Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6823051Z 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-06-01T21:26:23.6828643Z 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-06-01T21:26:23.6835248Z 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-06-01T21:26:23.6841557Z 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-06-01T21:26:23.6853341Z 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-06-01T21:26:23.6859791Z 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-06-01T21:26:23.6866013Z 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-06-01T21:26:23.6871985Z 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-06-01T21:26:23.6878319Z 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-06-01T21:26:23.6884390Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6890475Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6896293Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_overrideable.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6902616Z 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-06-01T21:26:23.6908497Z 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-06-01T21:26:23.6914370Z 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-06-01T21:26:23.6920375Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_depthwise3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6926506Z 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-06-01T21:26:23.6932317Z 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-06-01T21:26:23.6938169Z 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-06-01T21:26:23.6943886Z 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-06-01T21:26:23.6949726Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_tbc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.6955423Z 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-06-01T21:26:23.6966217Z 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-06-01T21:26:23.6972146Z 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-06-01T21:26:23.6978222Z 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-06-01T21:26:23.6984192Z 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-06-01T21:26:23.6989895Z 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-06-01T21:26:23.6995703Z 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-06-01T21:26:23.7001629Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.7007645Z 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-06-01T21:26:23.7013321Z 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-06-01T21:26:23.7019105Z 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-06-01T21:26:23.7024890Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.7030903Z 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-06-01T21:26:23.7036534Z 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-06-01T21:26:23.7042535Z 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-06-01T21:26:23.7048937Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.7054987Z 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-06-01T21:26:23.7061015Z 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-06-01T21:26:23.7066786Z 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-06-01T21:26:23.7072456Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.7077775Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.7083762Z 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-06-01T21:26:23.7089464Z 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-06-01T21:26:23.7095096Z 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-06-01T21:26:23.7100994Z 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-06-01T21:26:23.7106739Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.7112455Z 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-06-01T21:26:23.7118241Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.7124358Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.7130632Z 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-06-01T21:26:23.7136310Z 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-06-01T21:26:23.7142006Z 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-06-01T21:26:23.7147509Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.7153131Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.7158665Z 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-06-01T21:26:23.7165250Z 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-06-01T21:26:23.7171001Z 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-06-01T21:26:23.7176967Z 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-06-01T21:26:23.7183439Z 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-06-01T21:26:23.7188960Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\corrcoef.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.7194455Z 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-06-01T21:26:23.7200296Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\corrcoef_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.7206413Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\corrcoef_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.7211975Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.7217480Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.7223399Z 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-06-01T21:26:23.7229085Z 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-06-01T21:26:23.7234901Z 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-06-01T21:26:23.7240964Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.7246850Z 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-06-01T21:26:23.7252551Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.7258305Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.7263930Z 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-06-01T21:26:23.7270171Z 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-06-01T21:26:23.7275769Z 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-06-01T21:26:23.7281561Z 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-06-01T21:26:23.7287439Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosine_similarity.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.7293722Z 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-06-01T21:26:23.7299911Z 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-06-01T21:26:23.7305660Z 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-06-01T21:26:23.7311777Z 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-06-01T21:26:23.7317394Z 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-06-01T21:26:23.7323149Z 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-06-01T21:26:23.7328971Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.7334411Z 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-06-01T21:26:23.7340570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.7347071Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.7352886Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\count_nonzero.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.7358969Z 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-06-01T21:26:23.7364999Z 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-06-01T21:26:23.7370949Z 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-06-01T21:26:23.7377102Z 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-06-01T21:26:23.7382903Z 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-06-01T21:26:23.7389919Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cov.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.7395765Z 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-06-01T21:26:23.7401387Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cov_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.7407231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cov_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.7412938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cross.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.7418675Z 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-06-01T21:26:23.7424716Z 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-06-01T21:26:23.7430951Z 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-06-01T21:26:23.7436712Z 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-06-01T21:26:23.7442445Z 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-06-01T21:26:23.7448277Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cross_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.7454018Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cross_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.7459899Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\crow_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.7466156Z 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-06-01T21:26:23.7472294Z 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-06-01T21:26:23.7478715Z 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-06-01T21:26:23.7484591Z 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-06-01T21:26:23.7490435Z 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-06-01T21:26:23.7496806Z 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-06-01T21:26:23.7502620Z 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-06-01T21:26:23.7508239Z 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-06-01T21:26:23.7513980Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ctc_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.7525524Z 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-06-01T21:26:23.7531421Z 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-06-01T21:26:23.7537562Z 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-06-01T21:26:23.7543394Z 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-06-01T21:26:23.7558682Z 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-06-01T21:26:23.7564862Z 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-06-01T21:26:23.7570536Z 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-06-01T21:26:23.7576434Z 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-06-01T21:26:23.7582403Z 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-06-01T21:26:23.7588813Z 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-06-01T21:26:23.7594777Z 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-06-01T21:26:23.7601034Z 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-06-01T21:26:23.7606973Z 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-06-01T21:26:23.7612863Z 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-06-01T21:26:23.7618812Z 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-06-01T21:26:23.7625355Z 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-06-01T21:26:23.7631369Z 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-06-01T21:26:23.7637351Z 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-06-01T21:26:23.7643487Z 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-06-01T21:26:23.7649791Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_batch_norm_compositeexplicitautograd_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.7656241Z 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-06-01T21:26:23.7662266Z 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-06-01T21:26:23.7668717Z 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-06-01T21:26:23.7675327Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.7681527Z 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-06-01T21:26:23.7688188Z 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-06-01T21:26:23.7694380Z 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-06-01T21:26:23.7700877Z 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-06-01T21:26:23.7707010Z 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-06-01T21:26:23.7713064Z 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-06-01T21:26:23.7719002Z 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-06-01T21:26:23.7724961Z 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-06-01T21:26:23.7731063Z 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-06-01T21:26:23.7737877Z 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-06-01T21:26:23.7744255Z 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-06-01T21:26:23.7750317Z 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-06-01T21:26:23.7756182Z 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-06-01T21:26:23.7762190Z 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-06-01T21:26:23.7768383Z 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-06-01T21:26:23.7824458Z 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-06-01T21:26:23.7830379Z 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-06-01T21:26:23.7836312Z 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-06-01T21:26:23.7842025Z 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-06-01T21:26:23.7847866Z 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-06-01T21:26:23.7854076Z 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-06-01T21:26:23.7860153Z 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-06-01T21:26:23.7865967Z 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-06-01T21:26:23.7871868Z 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-06-01T21:26:23.7878002Z 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-06-01T21:26:23.7883953Z 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-06-01T21:26:23.7889925Z 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-06-01T21:26:23.7895818Z 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-06-01T21:26:23.7901662Z 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-06-01T21:26:23.7907682Z 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-06-01T21:26:23.7913953Z 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-06-01T21:26:23.7919461Z 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-06-01T21:26:23.7930566Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.7936357Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummaxmin_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.7942228Z 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-06-01T21:26:23.7947926Z 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-06-01T21:26:23.7953747Z 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-06-01T21:26:23.7959782Z 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-06-01T21:26:23.7966072Z 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-06-01T21:26:23.7971907Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.7977961Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.7984126Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.7990379Z 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-06-01T21:26:23.7996393Z 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-06-01T21:26:23.8002606Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8008879Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8015151Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8021009Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8027936Z 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-06-01T21:26:23.8033549Z 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-06-01T21:26:23.8039094Z 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-06-01T21:26:23.8045284Z 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-06-01T21:26:23.8051372Z 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-06-01T21:26:23.8057479Z 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-06-01T21:26:23.8063183Z 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-06-01T21:26:23.8068857Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8074811Z 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-06-01T21:26:23.8080710Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8086262Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8091924Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8098258Z 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-06-01T21:26:23.8103949Z 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-06-01T21:26:23.8109573Z 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-06-01T21:26:23.8115348Z 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-06-01T21:26:23.8121020Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8126755Z 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-06-01T21:26:23.8132428Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8138442Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8144560Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumulative_trapezoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8151137Z 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-06-01T21:26:23.8157064Z 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-06-01T21:26:23.8163812Z 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-06-01T21:26:23.8169047Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\data.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8174297Z 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-06-01T21:26:23.8180302Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\data_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8185578Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\data_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8190965Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\deg2rad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8196652Z 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-06-01T21:26:23.8202280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\deg2rad_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8207909Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\deg2rad_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8213719Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dense_dim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8219590Z 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-06-01T21:26:23.8225348Z 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-06-01T21:26:23.8230911Z 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-06-01T21:26:23.8236549Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dequantize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8242692Z 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-06-01T21:26:23.8248337Z 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-06-01T21:26:23.8254014Z 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-06-01T21:26:23.8260453Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dequantize_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8266384Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dequantize_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8272174Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\det.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8277222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8282992Z 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-06-01T21:26:23.8288505Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8294571Z 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-06-01T21:26:23.8300614Z 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-06-01T21:26:23.8325218Z 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-06-01T21:26:23.8330593Z 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-06-01T21:26:23.8341806Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8346987Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8352797Z 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-06-01T21:26:23.8358481Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\det_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8363985Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\det_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8369257Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8374931Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagflat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8380377Z 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-06-01T21:26:23.8385899Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagflat_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8391257Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagflat_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8396871Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8402264Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8408515Z 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-06-01T21:26:23.8414322Z 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-06-01T21:26:23.8421182Z 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-06-01T21:26:23.8426964Z 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-06-01T21:26:23.8432991Z 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-06-01T21:26:23.8438761Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8445256Z 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-06-01T21:26:23.8451637Z 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-06-01T21:26:23.8458435Z 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-06-01T21:26:23.8464003Z 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-06-01T21:26:23.8470497Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8476294Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8482142Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_scatter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8488388Z 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-06-01T21:26:23.8494649Z 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-06-01T21:26:23.8500569Z 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-06-01T21:26:23.8506323Z 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-06-01T21:26:23.8512387Z 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-06-01T21:26:23.8517983Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag_embed.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8524060Z 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-06-01T21:26:23.8530133Z 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-06-01T21:26:23.8536504Z 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-06-01T21:26:23.8542201Z 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-06-01T21:26:23.8547843Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8553333Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8558782Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diff.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8564399Z 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-06-01T21:26:23.8569998Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diff_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8575843Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diff_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8581296Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8587082Z 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-06-01T21:26:23.8592675Z 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-06-01T21:26:23.8598416Z 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-06-01T21:26:23.8603956Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8609589Z 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-06-01T21:26:23.8615608Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8621949Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8627704Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8632993Z 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-06-01T21:26:23.8682770Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dist_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8688751Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dist_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8694658Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8700275Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\divide.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8706215Z 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-06-01T21:26:23.8712411Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\divide_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8718206Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\divide_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8724303Z 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-06-01T21:26:23.8729876Z 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-06-01T21:26:23.8735910Z 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-06-01T21:26:23.8741201Z 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-06-01T21:26:23.8752658Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8755094Z 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-06-01T21:26:23.8760914Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8766119Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8771661Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8777403Z 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-06-01T21:26:23.8782943Z 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-06-01T21:26:23.8788258Z 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-06-01T21:26:23.8793492Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dot_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8798987Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dot_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8804514Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8810103Z 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-06-01T21:26:23.8815678Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dropout_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8821160Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dropout_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8826747Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dsplit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8832678Z 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-06-01T21:26:23.8838080Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dsplit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8844081Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dsplit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8849904Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dstack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8855384Z 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-06-01T21:26:23.8860993Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dstack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8866382Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dstack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8871840Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\einsum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8877747Z 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-06-01T21:26:23.8883222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\einsum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8889090Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\einsum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8894685Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8900240Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8906528Z 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-06-01T21:26:23.8912452Z 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-06-01T21:26:23.8918065Z 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-06-01T21:26:23.8923630Z 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-06-01T21:26:23.8929585Z 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-06-01T21:26:23.8935673Z 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-06-01T21:26:23.8941432Z 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-06-01T21:26:23.8948046Z 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-06-01T21:26:23.8953752Z 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-06-01T21:26:23.8959298Z 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-06-01T21:26:23.8965238Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8970695Z 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-06-01T21:26:23.8977018Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8982916Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8988648Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.8994515Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9000673Z 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-06-01T21:26:23.9006653Z 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-06-01T21:26:23.9018706Z 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-06-01T21:26:23.9025466Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_bag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9031796Z 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-06-01T21:26:23.9037645Z 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-06-01T21:26:23.9043511Z 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-06-01T21:26:23.9049625Z 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-06-01T21:26:23.9055595Z 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-06-01T21:26:23.9062128Z 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-06-01T21:26:23.9068229Z 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-06-01T21:26:23.9074095Z 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-06-01T21:26:23.9080112Z 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-06-01T21:26:23.9086079Z 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-06-01T21:26:23.9091917Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9097849Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9104201Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_renorm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9110473Z 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-06-01T21:26:23.9116413Z 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-06-01T21:26:23.9122365Z 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-06-01T21:26:23.9134136Z 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-06-01T21:26:23.9140115Z 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-06-01T21:26:23.9145875Z 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-06-01T21:26:23.9152050Z 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-06-01T21:26:23.9158130Z 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-06-01T21:26:23.9163930Z 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-06-01T21:26:23.9169935Z 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-06-01T21:26:23.9175808Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9181505Z 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-06-01T21:26:23.9187524Z 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-06-01T21:26:23.9193094Z 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-06-01T21:26:23.9198965Z 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-06-01T21:26:23.9204637Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9210588Z 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-06-01T21:26:23.9216293Z 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-06-01T21:26:23.9221929Z 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-06-01T21:26:23.9227982Z 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-06-01T21:26:23.9233665Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9239313Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9245382Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_permuted.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9251443Z 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-06-01T21:26:23.9257420Z 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-06-01T21:26:23.9263209Z 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-06-01T21:26:23.9269248Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_quantized.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9275350Z 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-06-01T21:26:23.9281278Z 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-06-01T21:26:23.9287007Z 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-06-01T21:26:23.9292693Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_strided.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9299359Z 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-06-01T21:26:23.9305378Z 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-06-01T21:26:23.9311430Z 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-06-01T21:26:23.9317288Z 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-06-01T21:26:23.9323344Z 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-06-01T21:26:23.9329200Z 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-06-01T21:26:23.9334748Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9340496Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\equal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9346427Z 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-06-01T21:26:23.9352630Z 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-06-01T21:26:23.9358928Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\equal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9365148Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\equal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9371239Z 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-06-01T21:26:23.9377018Z 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-06-01T21:26:23.9382661Z 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-06-01T21:26:23.9419253Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9425102Z 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-06-01T21:26:23.9430327Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9435717Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9441033Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9446357Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9452218Z 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-06-01T21:26:23.9467382Z 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-06-01T21:26:23.9472736Z 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-06-01T21:26:23.9478584Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9484140Z 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-06-01T21:26:23.9490023Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9495785Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9501301Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9507168Z 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-06-01T21:26:23.9512790Z 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-06-01T21:26:23.9518947Z 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-06-01T21:26:23.9524820Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9530329Z 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-06-01T21:26:23.9536435Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9542577Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9548609Z 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-06-01T21:26:23.9554185Z 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-06-01T21:26:23.9559978Z 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-06-01T21:26:23.9565574Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9570885Z 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-06-01T21:26:23.9576699Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9583590Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9588600Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9594110Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9600098Z 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-06-01T21:26:23.9605757Z 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-06-01T21:26:23.9611399Z 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-06-01T21:26:23.9617144Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9622620Z 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-06-01T21:26:23.9628564Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9634156Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9639510Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9644867Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9650771Z 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-06-01T21:26:23.9656546Z 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-06-01T21:26:23.9662214Z 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-06-01T21:26:23.9668800Z 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-06-01T21:26:23.9674785Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9681054Z 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-06-01T21:26:23.9687018Z 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-06-01T21:26:23.9692775Z 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-06-01T21:26:23.9699118Z 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-06-01T21:26:23.9704985Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9710466Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9716470Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9722518Z 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-06-01T21:26:23.9728152Z 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-06-01T21:26:23.9734112Z 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-06-01T21:26:23.9740037Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9745736Z 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-06-01T21:26:23.9751711Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9757756Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9763801Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exponential.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9769921Z 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-06-01T21:26:23.9775998Z 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-06-01T21:26:23.9782016Z 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-06-01T21:26:23.9787644Z 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-06-01T21:26:23.9793329Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exponential_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9799176Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exponential_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9806723Z 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-06-01T21:26:23.9812583Z 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-06-01T21:26:23.9818723Z 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-06-01T21:26:23.9824391Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9829803Z 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-06-01T21:26:23.9835810Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9841460Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9846896Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eye.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9853546Z 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-06-01T21:26:23.9859474Z 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-06-01T21:26:23.9865597Z 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-06-01T21:26:23.9872077Z 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-06-01T21:26:23.9877519Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eye_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9883018Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eye_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:23.9888622Z 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-06-01T21:26:23.9894459Z 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-06-01T21:26:23.9901145Z 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-06-01T21:26:23.9907362Z 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-06-01T21:26:23.9919166Z 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-06-01T21:26:23.9925260Z 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-06-01T21:26:23.9947779Z 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-06-01T21:26:23.9953286Z 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-06-01T21:26:23.9959355Z 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-06-01T21:26:23.9965350Z 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-06-01T21:26:23.9971345Z 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-06-01T21:26:23.9977535Z 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-06-01T21:26:23.9983313Z 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-06-01T21:26:23.9988882Z 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-06-01T21:26:23.9994578Z 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-06-01T21:26:24.0000510Z 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-06-01T21:26:24.0006756Z 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-06-01T21:26:24.0013634Z 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-06-01T21:26:24.0019383Z 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-06-01T21:26:24.0025542Z 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-06-01T21:26:24.0032506Z 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-06-01T21:26:24.0038512Z 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-06-01T21:26:24.0044518Z 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-06-01T21:26:24.0050593Z 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-06-01T21:26:24.0057067Z 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-06-01T21:26:24.0063444Z 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-06-01T21:26:24.0069366Z 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-06-01T21:26:24.0075638Z 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-06-01T21:26:24.0081709Z 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-06-01T21:26:24.0087870Z 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-06-01T21:26:24.0093763Z 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-06-01T21:26:24.0100011Z 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-06-01T21:26:24.0105833Z 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-06-01T21:26:24.0111825Z 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-06-01T21:26:24.0118105Z 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-06-01T21:26:24.0124126Z 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-06-01T21:26:24.0130156Z 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-06-01T21:26:24.0136813Z 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-06-01T21:26:24.0142888Z 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-06-01T21:26:24.0149195Z 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-06-01T21:26:24.0155358Z 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-06-01T21:26:24.0161350Z 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-06-01T21:26:24.0167399Z 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-06-01T21:26:24.0173855Z 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-06-01T21:26:24.0179613Z 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-06-01T21:26:24.0186159Z 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-06-01T21:26:24.0192233Z 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-06-01T21:26:24.0198233Z 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-06-01T21:26:24.0204360Z 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-06-01T21:26:24.0210793Z 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-06-01T21:26:24.0217127Z 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-06-01T21:26:24.0222906Z 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-06-01T21:26:24.0228968Z 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-06-01T21:26:24.0235190Z 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-06-01T21:26:24.0241155Z 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-06-01T21:26:24.0247157Z 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-06-01T21:26:24.0253386Z 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-06-01T21:26:24.0259742Z 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-06-01T21:26:24.0265817Z 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-06-01T21:26:24.0271731Z 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-06-01T21:26:24.0277827Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\feature_dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.0284015Z 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-06-01T21:26:24.0290121Z 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-06-01T21:26:24.0296114Z 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-06-01T21:26:24.0302184Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.0307751Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.0313629Z 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-06-01T21:26:24.0319326Z 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-06-01T21:26:24.0325534Z 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-06-01T21:26:24.0331440Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftfreq.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.0337552Z 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-06-01T21:26:24.0343239Z 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-06-01T21:26:24.0349264Z 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-06-01T21:26:24.0354765Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.0360454Z 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-06-01T21:26:24.0366099Z 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-06-01T21:26:24.0371728Z 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-06-01T21:26:24.0377952Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftshift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.0384079Z 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-06-01T21:26:24.0390412Z 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-06-01T21:26:24.0395566Z 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-06-01T21:26:24.0401515Z 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-06-01T21:26:24.0407325Z 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-06-01T21:26:24.0442106Z 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-06-01T21:26:24.0447447Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.0453050Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.0459154Z 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-06-01T21:26:24.0464793Z 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-06-01T21:26:24.0470812Z 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-06-01T21:26:24.0476855Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.0483313Z 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-06-01T21:26:24.0489384Z 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-06-01T21:26:24.0496294Z 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-06-01T21:26:24.0502006Z 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-06-01T21:26:24.0508159Z 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-06-01T21:26:24.0513971Z 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-06-01T21:26:24.0519785Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.0525469Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.0531454Z 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-06-01T21:26:24.0537241Z 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-06-01T21:26:24.0543379Z 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-06-01T21:26:24.0549139Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.0555321Z 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-06-01T21:26:24.0561090Z 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-06-01T21:26:24.0567224Z 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-06-01T21:26:24.0573099Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifftshift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.0579582Z 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-06-01T21:26:24.0585572Z 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-06-01T21:26:24.0591296Z 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-06-01T21:26:24.0597721Z 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-06-01T21:26:24.0603606Z 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-06-01T21:26:24.0609436Z 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-06-01T21:26:24.0615270Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.0621185Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.0627425Z 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-06-01T21:26:24.0633403Z 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-06-01T21:26:24.0639260Z 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-06-01T21:26:24.0646495Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.0652978Z 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-06-01T21:26:24.0659212Z 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-06-01T21:26:24.0665189Z 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-06-01T21:26:24.0671543Z 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-06-01T21:26:24.0678070Z 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-06-01T21:26:24.0685153Z 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-06-01T21:26:24.0691337Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.0698264Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.0704687Z 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-06-01T21:26:24.0710563Z 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-06-01T21:26:24.0716586Z 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-06-01T21:26:24.0722569Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.0729209Z 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-06-01T21:26:24.0734843Z 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-06-01T21:26:24.0740756Z 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-06-01T21:26:24.0746707Z 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-06-01T21:26:24.0752319Z 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-06-01T21:26:24.0757989Z 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-06-01T21:26:24.0769944Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.0775739Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.0781679Z 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-06-01T21:26:24.0794816Z 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-06-01T21:26:24.0801065Z 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-06-01T21:26:24.0806756Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfftfreq.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.0812887Z 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-06-01T21:26:24.0819176Z 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-06-01T21:26:24.0825776Z 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-06-01T21:26:24.0830932Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.0837000Z 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-06-01T21:26:24.0842891Z 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-06-01T21:26:24.0848583Z 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-06-01T21:26:24.0854560Z 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-06-01T21:26:24.0860334Z 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-06-01T21:26:24.0866057Z 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-06-01T21:26:24.0872023Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.0877821Z 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-06-01T21:26:24.0883455Z 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-06-01T21:26:24.0889102Z 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-06-01T21:26:24.0895230Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_diagonal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.0901319Z 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-06-01T21:26:24.0906886Z 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-06-01T21:26:24.0912457Z 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-06-01T21:26:24.0918163Z 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-06-01T21:26:24.0923801Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.0929964Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.0935546Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fix.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.0941228Z 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-06-01T21:26:24.0946679Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fix_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.0952310Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fix_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.0958200Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flatten.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.0963888Z 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-06-01T21:26:24.0969393Z 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-06-01T21:26:24.0975586Z 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-06-01T21:26:24.0981456Z 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-06-01T21:26:24.0987036Z 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-06-01T21:26:24.0992866Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flatten_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.0998919Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flatten_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1004628Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flip.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1010192Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fliplr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1015853Z 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-06-01T21:26:24.1021787Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fliplr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1027133Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fliplr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1032647Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flipud.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1038098Z 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-06-01T21:26:24.1044052Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flipud_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1049469Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flipud_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1055526Z 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-06-01T21:26:24.1061331Z 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-06-01T21:26:24.1067093Z 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-06-01T21:26:24.1072878Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flip_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1078409Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flip_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1083849Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\float_power.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1090138Z 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-06-01T21:26:24.1095867Z 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-06-01T21:26:24.1101828Z 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-06-01T21:26:24.1107567Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1113400Z 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-06-01T21:26:24.1119012Z 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-06-01T21:26:24.1130165Z 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-06-01T21:26:24.1136664Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_divide.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1142935Z 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-06-01T21:26:24.1148964Z 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-06-01T21:26:24.1166489Z 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-06-01T21:26:24.1167765Z 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-06-01T21:26:24.1168911Z 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-06-01T21:26:24.1172751Z 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-06-01T21:26:24.1178889Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1184948Z 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-06-01T21:26:24.1190962Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1196737Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1202486Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1208839Z 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-06-01T21:26:24.1214711Z 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-06-01T21:26:24.1220596Z 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-06-01T21:26:24.1226427Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1232052Z 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-06-01T21:26:24.1239058Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1244788Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1250226Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1256021Z 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-06-01T21:26:24.1261948Z 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-06-01T21:26:24.1267786Z 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-06-01T21:26:24.1273867Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1290435Z 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-06-01T21:26:24.1296393Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1302684Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1308121Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1314021Z 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-06-01T21:26:24.1319957Z 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-06-01T21:26:24.1325636Z 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-06-01T21:26:24.1331932Z 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-06-01T21:26:24.1337686Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1343353Z 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-06-01T21:26:24.1349246Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1355002Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1360713Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1366562Z 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-06-01T21:26:24.1372447Z 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-06-01T21:26:24.1379121Z 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-06-01T21:26:24.1385000Z 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-06-01T21:26:24.1391147Z 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-06-01T21:26:24.1397354Z 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-06-01T21:26:24.1403466Z 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-06-01T21:26:24.1409651Z 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-06-01T21:26:24.1415684Z 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-06-01T21:26:24.1422075Z 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-06-01T21:26:24.1427771Z 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-06-01T21:26:24.1433850Z 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-06-01T21:26:24.1439864Z 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-06-01T21:26:24.1445913Z 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-06-01T21:26:24.1451929Z 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-06-01T21:26:24.1457748Z 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-06-01T21:26:24.1463592Z 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-06-01T21:26:24.1469440Z 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-06-01T21:26:24.1475141Z 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-06-01T21:26:24.1519261Z 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-06-01T21:26:24.1525215Z 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-06-01T21:26:24.1531036Z 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-06-01T21:26:24.1537414Z 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-06-01T21:26:24.1543171Z 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-06-01T21:26:24.1549402Z 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-06-01T21:26:24.1555178Z 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-06-01T21:26:24.1561165Z 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-06-01T21:26:24.1566895Z 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-06-01T21:26:24.1589300Z 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-06-01T21:26:24.1595376Z 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-06-01T21:26:24.1601184Z 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-06-01T21:26:24.1606833Z 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-06-01T21:26:24.1612499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1618142Z 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-06-01T21:26:24.1623950Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1629443Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1635112Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1640768Z 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-06-01T21:26:24.1646347Z 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-06-01T21:26:24.1651924Z 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-06-01T21:26:24.1662214Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1667885Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1673700Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frobenius_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1679720Z 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-06-01T21:26:24.1685597Z 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-06-01T21:26:24.1691309Z 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-06-01T21:26:24.1697327Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\from_blob.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1703025Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\from_file.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1709118Z 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-06-01T21:26:24.1714838Z 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-06-01T21:26:24.1720652Z 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-06-01T21:26:24.1726503Z 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-06-01T21:26:24.1736784Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1742514Z 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-06-01T21:26:24.1748646Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1754677Z 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-06-01T21:26:24.1760218Z 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-06-01T21:26:24.1765937Z 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-06-01T21:26:24.1771709Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1777427Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1783039Z 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-06-01T21:26:24.1789543Z 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-06-01T21:26:24.1795387Z 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-06-01T21:26:24.1801477Z 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-06-01T21:26:24.1812682Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1818528Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1824824Z 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-06-01T21:26:24.1830942Z 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-06-01T21:26:24.1836922Z 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-06-01T21:26:24.1843228Z 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-06-01T21:26:24.1849195Z 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-06-01T21:26:24.1855672Z 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-06-01T21:26:24.1861629Z 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-06-01T21:26:24.1867643Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1873540Z 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-06-01T21:26:24.1879745Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1885513Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1891366Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1897906Z 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-06-01T21:26:24.1903452Z 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-06-01T21:26:24.1909459Z 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-06-01T21:26:24.1915378Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1925772Z 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-06-01T21:26:24.1932126Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1938309Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1943552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1948832Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1954158Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.1960339Z 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-06-01T21:26:24.1966202Z 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-06-01T21:26:24.1971956Z 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-06-01T21:26:24.1977622Z 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-06-01T21:26:24.1983566Z 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-06-01T21:26:24.1989386Z 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-06-01T21:26:24.1995199Z 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-06-01T21:26:24.2001221Z 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-06-01T21:26:24.2006987Z 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-06-01T21:26:24.2012671Z 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-06-01T21:26:24.2018488Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2024203Z 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-06-01T21:26:24.2034638Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2040174Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2045980Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geometric.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2051873Z 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-06-01T21:26:24.2057773Z 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-06-01T21:26:24.2063530Z 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-06-01T21:26:24.2069227Z 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-06-01T21:26:24.2074892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geometric_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2080579Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geometric_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2086138Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geqrf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2091555Z 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-06-01T21:26:24.2097324Z 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-06-01T21:26:24.2103425Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geqrf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2109065Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geqrf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2114607Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ger.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2120215Z 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-06-01T21:26:24.2125735Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ger_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2131219Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ger_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2137044Z 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-06-01T21:26:24.2142596Z 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-06-01T21:26:24.2148622Z 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-06-01T21:26:24.2154552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2160253Z 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-06-01T21:26:24.2166047Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2171611Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2177416Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2182838Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2188446Z 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-06-01T21:26:24.2194038Z 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-06-01T21:26:24.2199942Z 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-06-01T21:26:24.2206044Z 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-06-01T21:26:24.2212073Z 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-06-01T21:26:24.2218070Z 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-06-01T21:26:24.2223646Z 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-06-01T21:26:24.2229310Z 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-06-01T21:26:24.2235357Z 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-06-01T21:26:24.2241621Z 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-06-01T21:26:24.2248455Z 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-06-01T21:26:24.2253997Z 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-06-01T21:26:24.2259721Z 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-06-01T21:26:24.2265524Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_jvp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2271271Z 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-06-01T21:26:24.2277183Z 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-06-01T21:26:24.2282848Z 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-06-01T21:26:24.2288591Z 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-06-01T21:26:24.2294216Z 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-06-01T21:26:24.2300004Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2305375Z 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-06-01T21:26:24.2311019Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2316726Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2322199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gradient.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2328130Z 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-06-01T21:26:24.2333987Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gradient_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2339874Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gradient_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2345569Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2351256Z 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-06-01T21:26:24.2356910Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater_equal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2363370Z 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-06-01T21:26:24.2369759Z 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-06-01T21:26:24.2376020Z 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-06-01T21:26:24.2382216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2388303Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2394188Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2399970Z 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-06-01T21:26:24.2405823Z 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-06-01T21:26:24.2411873Z 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-06-01T21:26:24.2418077Z 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-06-01T21:26:24.2423991Z 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-06-01T21:26:24.2429868Z 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-06-01T21:26:24.2435767Z 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-06-01T21:26:24.2441831Z 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-06-01T21:26:24.2447874Z 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-06-01T21:26:24.2453711Z 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-06-01T21:26:24.2459646Z 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-06-01T21:26:24.2465669Z 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-06-01T21:26:24.2471423Z 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-06-01T21:26:24.2477186Z 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-06-01T21:26:24.2483194Z 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-06-01T21:26:24.2489148Z 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-06-01T21:26:24.2495098Z 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-06-01T21:26:24.2500962Z 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-06-01T21:26:24.2506670Z 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-06-01T21:26:24.2512711Z 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-06-01T21:26:24.2518527Z 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-06-01T21:26:24.2524585Z 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-06-01T21:26:24.2530521Z 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-06-01T21:26:24.2536337Z 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-06-01T21:26:24.2542334Z 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-06-01T21:26:24.2547812Z 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-06-01T21:26:24.2591722Z 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-06-01T21:26:24.2597469Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\group_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2603680Z 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-06-01T21:26:24.2609467Z 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-06-01T21:26:24.2615174Z 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-06-01T21:26:24.2620995Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2626528Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru_cell.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2632284Z 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-06-01T21:26:24.2638360Z 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-06-01T21:26:24.2644308Z 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-06-01T21:26:24.2650301Z 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-06-01T21:26:24.2655882Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2661754Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2667124Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2673057Z 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-06-01T21:26:24.2679155Z 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-06-01T21:26:24.2684931Z 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-06-01T21:26:24.2690833Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2696673Z 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-06-01T21:26:24.2702379Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2707993Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2713490Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hamming_window.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2719456Z 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-06-01T21:26:24.2725320Z 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-06-01T21:26:24.2731186Z 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-06-01T21:26:24.2737299Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hann_window.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2743239Z 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-06-01T21:26:24.2749252Z 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-06-01T21:26:24.2755176Z 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-06-01T21:26:24.2760796Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2766909Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2773158Z 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-06-01T21:26:24.2779134Z 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-06-01T21:26:24.2785209Z 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-06-01T21:26:24.2790961Z 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-06-01T21:26:24.2796936Z 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-06-01T21:26:24.2803064Z 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-06-01T21:26:24.2808985Z 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-06-01T21:26:24.2815230Z 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-06-01T21:26:24.2821137Z 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-06-01T21:26:24.2827066Z 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-06-01T21:26:24.2838014Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2843918Z 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-06-01T21:26:24.2849785Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2855622Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2861699Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2868198Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2874958Z 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-06-01T21:26:24.2880921Z 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-06-01T21:26:24.2887074Z 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-06-01T21:26:24.2892966Z 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-06-01T21:26:24.2899472Z 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-06-01T21:26:24.2905275Z 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-06-01T21:26:24.2911184Z 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-06-01T21:26:24.2917683Z 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-06-01T21:26:24.2923473Z 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-06-01T21:26:24.2929584Z 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-06-01T21:26:24.2935375Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2941414Z 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-06-01T21:26:24.2947310Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2953409Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2959214Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2965057Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.2971081Z 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-06-01T21:26:24.2976976Z 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-06-01T21:26:24.2982984Z 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-06-01T21:26:24.2988828Z 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-06-01T21:26:24.2994764Z 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-06-01T21:26:24.3000441Z 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-06-01T21:26:24.3006300Z 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-06-01T21:26:24.3011983Z 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-06-01T21:26:24.3017822Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3023906Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3029697Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3035158Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3041455Z 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-06-01T21:26:24.3047076Z 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-06-01T21:26:24.3052755Z 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-06-01T21:26:24.3058494Z 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-06-01T21:26:24.3064528Z 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-06-01T21:26:24.3070302Z 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-06-01T21:26:24.3075976Z 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-06-01T21:26:24.3081785Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3087579Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3093316Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3099429Z 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-06-01T21:26:24.3127023Z 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-06-01T21:26:24.3133719Z 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-06-01T21:26:24.3139300Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3145132Z 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-06-01T21:26:24.3151235Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3156827Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3162577Z 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-06-01T21:26:24.3168654Z 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-06-01T21:26:24.3175054Z 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-06-01T21:26:24.3196293Z 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-06-01T21:26:24.3202056Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3207599Z 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-06-01T21:26:24.3213889Z 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-06-01T21:26:24.3219244Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3225124Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3230782Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogram.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3236731Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogramdd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3242811Z 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-06-01T21:26:24.3248700Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogramdd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3254482Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogramdd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3265131Z 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-06-01T21:26:24.3270928Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogram_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3276736Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogram_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3286957Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hsplit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3292712Z 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-06-01T21:26:24.3298453Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hsplit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3304274Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hsplit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3309952Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hspmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3315477Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hspmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3321225Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hspmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3327187Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hstack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3333378Z 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-06-01T21:26:24.3339315Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hstack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3344887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hstack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3350723Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\huber_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3356527Z 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-06-01T21:26:24.3362726Z 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-06-01T21:26:24.3368901Z 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-06-01T21:26:24.3374828Z 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-06-01T21:26:24.3381380Z 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-06-01T21:26:24.3387232Z 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-06-01T21:26:24.3393045Z 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-06-01T21:26:24.3398890Z 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-06-01T21:26:24.3404531Z 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-06-01T21:26:24.3410380Z 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-06-01T21:26:24.3416007Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3422200Z 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-06-01T21:26:24.3427698Z 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-06-01T21:26:24.3433377Z 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-06-01T21:26:24.3439099Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3444724Z 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-06-01T21:26:24.3450415Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3456109Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3461801Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3467746Z 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-06-01T21:26:24.3473253Z 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-06-01T21:26:24.3478861Z 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-06-01T21:26:24.3484451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3489706Z 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-06-01T21:26:24.3495472Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3500897Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3506296Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3511953Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3517701Z 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-06-01T21:26:24.3523177Z 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-06-01T21:26:24.3528944Z 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-06-01T21:26:24.3534638Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3540492Z 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-06-01T21:26:24.3546181Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3552072Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3558391Z 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-06-01T21:26:24.3563900Z 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-06-01T21:26:24.3569525Z 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-06-01T21:26:24.3575148Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3580990Z 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-06-01T21:26:24.3586799Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3630572Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3636220Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\im2col.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3641655Z 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-06-01T21:26:24.3647416Z 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-06-01T21:26:24.3652578Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\im2col_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3657763Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\im2col_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3663397Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\imag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3668813Z 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-06-01T21:26:24.3674323Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\imag_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3679856Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\imag_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3685431Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3690841Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_add.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3697194Z 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-06-01T21:26:24.3703337Z 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-06-01T21:26:24.3709081Z 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-06-01T21:26:24.3714902Z 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-06-01T21:26:24.3720606Z 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-06-01T21:26:24.3726789Z 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-06-01T21:26:24.3732674Z 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-06-01T21:26:24.3738577Z 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-06-01T21:26:24.3745073Z 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-06-01T21:26:24.3750886Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3757014Z 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-06-01T21:26:24.3763489Z 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-06-01T21:26:24.3769327Z 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-06-01T21:26:24.3775309Z 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-06-01T21:26:24.3781260Z 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-06-01T21:26:24.3787198Z 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-06-01T21:26:24.3792960Z 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-06-01T21:26:24.3798775Z 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-06-01T21:26:24.3804844Z 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-06-01T21:26:24.3810748Z 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-06-01T21:26:24.3816755Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_fill.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3822837Z 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-06-01T21:26:24.3829156Z 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-06-01T21:26:24.3834927Z 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-06-01T21:26:24.3840775Z 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-06-01T21:26:24.3847153Z 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-06-01T21:26:24.3853060Z 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-06-01T21:26:24.3859067Z 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-06-01T21:26:24.3864928Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3871099Z 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-06-01T21:26:24.3876990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3883013Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3888951Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_put.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3895420Z 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-06-01T21:26:24.3901627Z 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-06-01T21:26:24.3907659Z 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-06-01T21:26:24.3913860Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_reduce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3920374Z 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-06-01T21:26:24.3926243Z 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-06-01T21:26:24.3932680Z 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-06-01T21:26:24.3939109Z 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-06-01T21:26:24.3945113Z 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-06-01T21:26:24.3951207Z 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-06-01T21:26:24.3957125Z 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-06-01T21:26:24.3963045Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_select.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.3968861Z 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-06-01T21:26:24.3975086Z 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-06-01T21:26:24.3981264Z 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-06-01T21:26:24.3986989Z 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-06-01T21:26:24.3993158Z 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-06-01T21:26:24.3998880Z 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-06-01T21:26:24.4004469Z 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-06-01T21:26:24.4010053Z 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-06-01T21:26:24.4015980Z 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-06-01T21:26:24.4021922Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4027359Z 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-06-01T21:26:24.4032916Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4038892Z 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-06-01T21:26:24.4044616Z 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-06-01T21:26:24.4050327Z 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-06-01T21:26:24.4057075Z 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-06-01T21:26:24.4062938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4068422Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4074218Z 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-06-01T21:26:24.4080239Z 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-06-01T21:26:24.4085876Z 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-06-01T21:26:24.4091945Z 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-06-01T21:26:24.4102538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inner.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4108189Z 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-06-01T21:26:24.4113653Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inner_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4119391Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inner_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4125106Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\instance_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4130830Z 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-06-01T21:26:24.4136631Z 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-06-01T21:26:24.4142296Z 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-06-01T21:26:24.4147853Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\int_repr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4153582Z 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-06-01T21:26:24.4159041Z 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-06-01T21:26:24.4164586Z 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-06-01T21:26:24.4170467Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inverse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4176064Z 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-06-01T21:26:24.4181804Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inverse_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4187783Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inverse_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4194036Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isclose.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4200553Z 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-06-01T21:26:24.4206961Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isclose_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4213245Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isclose_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4219924Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isfinite.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4226325Z 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-06-01T21:26:24.4233033Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isfinite_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4239287Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isfinite_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4245550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4251831Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isinf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4258468Z 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-06-01T21:26:24.4263769Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isinf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4269359Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isinf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4275317Z 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-06-01T21:26:24.4281021Z 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-06-01T21:26:24.4286716Z 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-06-01T21:26:24.4292558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4299257Z 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-06-01T21:26:24.4304523Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4310138Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4315476Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isnan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4320976Z 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-06-01T21:26:24.4326639Z 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-06-01T21:26:24.4332256Z 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-06-01T21:26:24.4337711Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isnan_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4343349Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isnan_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4349074Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4355011Z 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-06-01T21:26:24.4360915Z 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-06-01T21:26:24.4366884Z 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-06-01T21:26:24.4372648Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4378655Z 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-06-01T21:26:24.4384866Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4390966Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4397196Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4403091Z 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-06-01T21:26:24.4409667Z 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-06-01T21:26:24.4415595Z 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-06-01T21:26:24.4421707Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4427500Z 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-06-01T21:26:24.4433218Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4439049Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4444779Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isreal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4450316Z 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-06-01T21:26:24.4456068Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isreal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4461684Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isreal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4467313Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\istft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4473079Z 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-06-01T21:26:24.4478570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\istft_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4484130Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\istft_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4490208Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_coalesced.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4496096Z 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-06-01T21:26:24.4501980Z 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-06-01T21:26:24.4507394Z 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-06-01T21:26:24.4512990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_complex.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4519138Z 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-06-01T21:26:24.4524543Z 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-06-01T21:26:24.4529968Z 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-06-01T21:26:24.4536367Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_conj.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4542020Z 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-06-01T21:26:24.4547538Z 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-06-01T21:26:24.4552976Z 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-06-01T21:26:24.4564484Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_distributed.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4570311Z 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-06-01T21:26:24.4575766Z 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-06-01T21:26:24.4581345Z 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-06-01T21:26:24.4587213Z 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-06-01T21:26:24.4593240Z 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-06-01T21:26:24.4605690Z 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-06-01T21:26:24.4611002Z 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-06-01T21:26:24.4616757Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_inference.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4622550Z 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-06-01T21:26:24.4628053Z 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-06-01T21:26:24.4633768Z 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-06-01T21:26:24.4644246Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_leaf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4649552Z 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-06-01T21:26:24.4655221Z 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-06-01T21:26:24.4660676Z 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-06-01T21:26:24.4666202Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_neg.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4671657Z 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-06-01T21:26:24.4677252Z 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-06-01T21:26:24.4682566Z 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-06-01T21:26:24.4688296Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_nonzero.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4694216Z 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-06-01T21:26:24.4700104Z 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-06-01T21:26:24.4705709Z 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-06-01T21:26:24.4724639Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_pinned.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4730409Z 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-06-01T21:26:24.4736626Z 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-06-01T21:26:24.4742200Z 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-06-01T21:26:24.4747955Z 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-06-01T21:26:24.4753870Z 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-06-01T21:26:24.4759824Z 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-06-01T21:26:24.4765515Z 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-06-01T21:26:24.4911266Z 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-06-01T21:26:24.4916726Z 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-06-01T21:26:24.4922565Z 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-06-01T21:26:24.4928694Z 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-06-01T21:26:24.4934303Z 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-06-01T21:26:24.4940108Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_signed.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.4946039Z 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-06-01T21:26:24.4951520Z 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-06-01T21:26:24.4957023Z 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-06-01T21:26:24.4963095Z 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-06-01T21:26:24.4983442Z 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-06-01T21:26:24.4988967Z 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-06-01T21:26:24.4994492Z 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-06-01T21:26:24.5000125Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\item.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5005446Z 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-06-01T21:26:24.5010990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\item_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5016634Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\item_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5022114Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kaiser_window.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5028198Z 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-06-01T21:26:24.5033826Z 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-06-01T21:26:24.5039480Z 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-06-01T21:26:24.5045131Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kl_div.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5050827Z 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-06-01T21:26:24.5056358Z 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-06-01T21:26:24.5062000Z 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-06-01T21:26:24.5067499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kron.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5073026Z 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-06-01T21:26:24.5078501Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kron_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5084134Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kron_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5089457Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kthvalue.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5095183Z 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-06-01T21:26:24.5101493Z 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-06-01T21:26:24.5107099Z 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-06-01T21:26:24.5112862Z 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-06-01T21:26:24.5118331Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kthvalue_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5123933Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kthvalue_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5129564Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\l1_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5135487Z 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-06-01T21:26:24.5141276Z 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-06-01T21:26:24.5146816Z 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-06-01T21:26:24.5152516Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\layer_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5158364Z 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-06-01T21:26:24.5163920Z 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-06-01T21:26:24.5169469Z 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-06-01T21:26:24.5174977Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5180789Z 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-06-01T21:26:24.5186229Z 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-06-01T21:26:24.5191761Z 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-06-01T21:26:24.5197499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5202913Z 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-06-01T21:26:24.5208501Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5213962Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5281857Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ldexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5287387Z 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-06-01T21:26:24.5293109Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ldexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5298991Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ldexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5304609Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5310550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5320309Z 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-06-01T21:26:24.5326509Z 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-06-01T21:26:24.5332475Z 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-06-01T21:26:24.5338330Z 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-06-01T21:26:24.5344408Z 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-06-01T21:26:24.5350174Z 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-06-01T21:26:24.5356176Z 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-06-01T21:26:24.5362076Z 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-06-01T21:26:24.5368400Z 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-06-01T21:26:24.5374059Z 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-06-01T21:26:24.5380534Z 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-06-01T21:26:24.5386709Z 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-06-01T21:26:24.5392735Z 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-06-01T21:26:24.5398536Z 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-06-01T21:26:24.5405523Z 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-06-01T21:26:24.5413236Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5416376Z 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-06-01T21:26:24.5422529Z 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-06-01T21:26:24.5428837Z 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-06-01T21:26:24.5441607Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5442318Z 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-06-01T21:26:24.5448496Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5454304Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5459584Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5465374Z 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-06-01T21:26:24.5470965Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less_equal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5476888Z 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-06-01T21:26:24.5482496Z 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-06-01T21:26:24.5488203Z 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-06-01T21:26:24.5493740Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5499529Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5505305Z 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-06-01T21:26:24.5511137Z 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-06-01T21:26:24.5516873Z 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-06-01T21:26:24.5522411Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5527721Z 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-06-01T21:26:24.5533421Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5539028Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5544534Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5550365Z 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-06-01T21:26:24.5555963Z 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-06-01T21:26:24.5561778Z 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-06-01T21:26:24.5573450Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5578988Z 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-06-01T21:26:24.5584652Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5590228Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5595845Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5601471Z 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-06-01T21:26:24.5606889Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_fresh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5612990Z 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-06-01T21:26:24.5618700Z 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-06-01T21:26:24.5625007Z 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-06-01T21:26:24.5630755Z 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-06-01T21:26:24.5636446Z 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-06-01T21:26:24.5642208Z 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-06-01T21:26:24.5648355Z 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-06-01T21:26:24.5653899Z 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-06-01T21:26:24.5659751Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5665116Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5671025Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cholesky.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5678654Z 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-06-01T21:26:24.5685002Z 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-06-01T21:26:24.5691098Z 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-06-01T21:26:24.5697211Z 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-06-01T21:26:24.5703183Z 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-06-01T21:26:24.5709013Z 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-06-01T21:26:24.5737573Z 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-06-01T21:26:24.5744166Z 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-06-01T21:26:24.5750073Z 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-06-01T21:26:24.5756252Z 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-06-01T21:26:24.5762807Z 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-06-01T21:26:24.5768205Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cond.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5780235Z 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-06-01T21:26:24.5786007Z 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-06-01T21:26:24.5791839Z 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-06-01T21:26:24.5797624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cross.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5804131Z 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-06-01T21:26:24.5809846Z 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-06-01T21:26:24.5815714Z 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-06-01T21:26:24.5821462Z 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-06-01T21:26:24.5827128Z 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-06-01T21:26:24.5832957Z 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-06-01T21:26:24.5839046Z 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-06-01T21:26:24.5845280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_det.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5851811Z 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-06-01T21:26:24.5857823Z 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-06-01T21:26:24.5863632Z 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-06-01T21:26:24.5869817Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_diagonal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5875973Z 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-06-01T21:26:24.5881860Z 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-06-01T21:26:24.5887798Z 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-06-01T21:26:24.5893753Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eig.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5900275Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5906532Z 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-06-01T21:26:24.5912843Z 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-06-01T21:26:24.5918784Z 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-06-01T21:26:24.5924741Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigvals.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5930766Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigvalsh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.5936886Z 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-06-01T21:26:24.5942637Z 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-06-01T21:26:24.5948427Z 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-06-01T21:26:24.5954453Z 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-06-01T21:26:24.5960741Z 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-06-01T21:26:24.5966298Z 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-06-01T21:26:24.5972204Z 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-06-01T21:26:24.5978029Z 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-06-01T21:26:24.5988553Z 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-06-01T21:26:24.5994310Z 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-06-01T21:26:24.6000013Z 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-06-01T21:26:24.6005656Z 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-06-01T21:26:24.6011466Z 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-06-01T21:26:24.6100475Z 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-06-01T21:26:24.6107366Z 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-06-01T21:26:24.6113280Z 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-06-01T21:26:24.6119279Z 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-06-01T21:26:24.6125158Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_inv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.6131537Z 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-06-01T21:26:24.6137462Z 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-06-01T21:26:24.6143672Z 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-06-01T21:26:24.6149636Z 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-06-01T21:26:24.6155642Z 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-06-01T21:26:24.6161658Z 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-06-01T21:26:24.6167874Z 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-06-01T21:26:24.6173841Z 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-06-01T21:26:24.6179904Z 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-06-01T21:26:24.6185825Z 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-06-01T21:26:24.6191951Z 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-06-01T21:26:24.6198044Z 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-06-01T21:26:24.6204363Z 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-06-01T21:26:24.6210572Z 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-06-01T21:26:24.6217282Z 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-06-01T21:26:24.6223633Z 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-06-01T21:26:24.6229737Z 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-06-01T21:26:24.6236402Z 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-06-01T21:26:24.6242515Z 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-06-01T21:26:24.6248562Z 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-06-01T21:26:24.6254759Z 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-06-01T21:26:24.6260866Z 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-06-01T21:26:24.6266999Z 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-06-01T21:26:24.6273016Z 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-06-01T21:26:24.6279437Z 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-06-01T21:26:24.6285364Z 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-06-01T21:26:24.6291427Z 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-06-01T21:26:24.6297876Z 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-06-01T21:26:24.6304185Z 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-06-01T21:26:24.6310381Z 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-06-01T21:26:24.6316264Z 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-06-01T21:26:24.6322208Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lstsq.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.6328724Z 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-06-01T21:26:24.6334816Z 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-06-01T21:26:24.6340918Z 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-06-01T21:26:24.6347001Z 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-06-01T21:26:24.6352933Z 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-06-01T21:26:24.6358932Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.6365303Z 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-06-01T21:26:24.6371133Z 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-06-01T21:26:24.6377517Z 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-06-01T21:26:24.6383500Z 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-06-01T21:26:24.6389808Z 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-06-01T21:26:24.6395829Z 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-06-01T21:26:24.6410375Z 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-06-01T21:26:24.6416353Z 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-06-01T21:26:24.6422741Z 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-06-01T21:26:24.6428828Z 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-06-01T21:26:24.6434637Z 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-06-01T21:26:24.6440666Z 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-06-01T21:26:24.6446927Z 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-06-01T21:26:24.6452650Z 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-06-01T21:26:24.6458746Z 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-06-01T21:26:24.6464727Z 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-06-01T21:26:24.6470468Z 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-06-01T21:26:24.6476367Z 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-06-01T21:26:24.6482018Z 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-06-01T21:26:24.6487957Z 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-06-01T21:26:24.6494194Z 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-06-01T21:26:24.6500025Z 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-06-01T21:26:24.6505922Z 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-06-01T21:26:24.6511886Z 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-06-01T21:26:24.6517670Z 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-06-01T21:26:24.6523391Z 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-06-01T21:26:24.6529139Z 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-06-01T21:26:24.6535045Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.6541253Z 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-06-01T21:26:24.6547201Z 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-06-01T21:26:24.6552973Z 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-06-01T21:26:24.6558737Z 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-06-01T21:26:24.6564728Z 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-06-01T21:26:24.6570581Z 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-06-01T21:26:24.6576263Z 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-06-01T21:26:24.6582169Z 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-06-01T21:26:24.6587909Z 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-06-01T21:26:24.6593723Z 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-06-01T21:26:24.6599800Z 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-06-01T21:26:24.6605693Z 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-06-01T21:26:24.6611585Z 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-06-01T21:26:24.6617404Z 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-06-01T21:26:24.6623688Z 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-06-01T21:26:24.6629456Z 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-06-01T21:26:24.6653010Z 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-06-01T21:26:24.6658852Z 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-06-01T21:26:24.6665008Z 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-06-01T21:26:24.6671118Z 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-06-01T21:26:24.6677052Z 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-06-01T21:26:24.6682912Z 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-06-01T21:26:24.6688881Z 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-06-01T21:26:24.6694471Z 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-06-01T21:26:24.6700381Z 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-06-01T21:26:24.6706019Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.6712172Z 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-06-01T21:26:24.6718017Z 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-06-01T21:26:24.6723816Z 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-06-01T21:26:24.6729681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_pinv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.6736079Z 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-06-01T21:26:24.6742464Z 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-06-01T21:26:24.6748552Z 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-06-01T21:26:24.6754590Z 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-06-01T21:26:24.6760566Z 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-06-01T21:26:24.6766636Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_qr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.6773671Z 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-06-01T21:26:24.6779724Z 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-06-01T21:26:24.6785542Z 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-06-01T21:26:24.6791436Z 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-06-01T21:26:24.6797528Z 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-06-01T21:26:24.6803462Z 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-06-01T21:26:24.6809244Z 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-06-01T21:26:24.6814990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_slogdet.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.6821295Z 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-06-01T21:26:24.6827084Z 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-06-01T21:26:24.6833410Z 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-06-01T21:26:24.6839847Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.6846154Z 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-06-01T21:26:24.6852328Z 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-06-01T21:26:24.6858585Z 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-06-01T21:26:24.6864410Z 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-06-01T21:26:24.6875322Z 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-06-01T21:26:24.6881239Z 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-06-01T21:26:24.6887330Z 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-06-01T21:26:24.6893204Z 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-06-01T21:26:24.6900232Z 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-06-01T21:26:24.6906897Z 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-06-01T21:26:24.6914066Z 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-06-01T21:26:24.6919646Z 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-06-01T21:26:24.6925601Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_svd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.6932335Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_svdvals.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.6938708Z 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-06-01T21:26:24.6944689Z 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-06-01T21:26:24.6950603Z 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-06-01T21:26:24.6956641Z 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-06-01T21:26:24.6962467Z 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-06-01T21:26:24.6968278Z 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-06-01T21:26:24.6974371Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_tensorinv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.6980650Z 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-06-01T21:26:24.6986385Z 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-06-01T21:26:24.6997154Z 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-06-01T21:26:24.7003197Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_tensorsolve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7009130Z 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-06-01T21:26:24.7015041Z 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-06-01T21:26:24.7020899Z 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-06-01T21:26:24.7026739Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vander.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7032722Z 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-06-01T21:26:24.7044663Z 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-06-01T21:26:24.7050176Z 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-06-01T21:26:24.7056507Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vecdot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7062989Z 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-06-01T21:26:24.7085611Z 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-06-01T21:26:24.7091309Z 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-06-01T21:26:24.7097245Z 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-06-01T21:26:24.7103524Z 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-06-01T21:26:24.7156277Z 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-06-01T21:26:24.7162723Z 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-06-01T21:26:24.7168753Z 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-06-01T21:26:24.7174846Z 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-06-01T21:26:24.7181087Z 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-06-01T21:26:24.7187153Z 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-06-01T21:26:24.7198890Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7204863Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7211075Z 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-06-01T21:26:24.7216950Z 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-06-01T21:26:24.7222619Z 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-06-01T21:26:24.7228612Z 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-06-01T21:26:24.7234493Z 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-06-01T21:26:24.7245439Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7251221Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7257372Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linspace.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7263211Z 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-06-01T21:26:24.7268870Z 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-06-01T21:26:24.7274938Z 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-06-01T21:26:24.7280552Z 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-06-01T21:26:24.7286309Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linspace_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7292082Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linspace_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7298164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7303653Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7309896Z 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-06-01T21:26:24.7315531Z 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-06-01T21:26:24.7321235Z 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-06-01T21:26:24.7326989Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7332714Z 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-06-01T21:26:24.7338866Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7344960Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7350462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7356344Z 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-06-01T21:26:24.7361946Z 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-06-01T21:26:24.7367802Z 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-06-01T21:26:24.7373549Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7379351Z 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-06-01T21:26:24.7385169Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7391170Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7397204Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7433237Z 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-06-01T21:26:24.7434824Z 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-06-01T21:26:24.7435966Z 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-06-01T21:26:24.7436945Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7437902Z 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-06-01T21:26:24.7438878Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7442385Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7447601Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7453017Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7459181Z 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-06-01T21:26:24.7464640Z 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-06-01T21:26:24.7470314Z 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-06-01T21:26:24.7475839Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7481452Z 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-06-01T21:26:24.7488233Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7494167Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7500289Z 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-06-01T21:26:24.7505871Z 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-06-01T21:26:24.7511463Z 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-06-01T21:26:24.7517018Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7522818Z 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-06-01T21:26:24.7528576Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7539538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7545085Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logcumsumexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7550856Z 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-06-01T21:26:24.7556544Z 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-06-01T21:26:24.7562197Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logcumsumexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7567639Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logcumsumexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7573186Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logdet.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7578649Z 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-06-01T21:26:24.7584186Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logdet_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7589561Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logdet_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7595420Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_and.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7601234Z 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-06-01T21:26:24.7606783Z 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-06-01T21:26:24.7612593Z 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-06-01T21:26:24.7623932Z 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-06-01T21:26:24.7629574Z 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-06-01T21:26:24.7635282Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_not.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7641268Z 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-06-01T21:26:24.7646930Z 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-06-01T21:26:24.7660941Z 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-06-01T21:26:24.7667163Z 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-06-01T21:26:24.7673266Z 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-06-01T21:26:24.7679188Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_or.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7685289Z 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-06-01T21:26:24.7691371Z 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-06-01T21:26:24.7697254Z 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-06-01T21:26:24.7703041Z 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-06-01T21:26:24.7708913Z 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-06-01T21:26:24.7714769Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_xor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7720704Z 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-06-01T21:26:24.7727105Z 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-06-01T21:26:24.7733050Z 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-06-01T21:26:24.7738982Z 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-06-01T21:26:24.7744777Z 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-06-01T21:26:24.7750477Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7756179Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7762325Z 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-06-01T21:26:24.7768121Z 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-06-01T21:26:24.7773844Z 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-06-01T21:26:24.7779645Z 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-06-01T21:26:24.7785527Z 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-06-01T21:26:24.7791292Z 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-06-01T21:26:24.7797524Z 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-06-01T21:26:24.7803735Z 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-06-01T21:26:24.7809706Z 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-06-01T21:26:24.7815649Z 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-06-01T21:26:24.7821582Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7827387Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7833123Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logspace.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7845590Z 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-06-01T21:26:24.7852122Z 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-06-01T21:26:24.7858007Z 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-06-01T21:26:24.7863671Z 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-06-01T21:26:24.7869360Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logspace_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7875173Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logspace_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7881388Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logsumexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7892977Z 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-06-01T21:26:24.7899302Z 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-06-01T21:26:24.7905246Z 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-06-01T21:26:24.7911131Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logsumexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7916909Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logsumexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7923026Z 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-06-01T21:26:24.7928490Z 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-06-01T21:26:24.7934303Z 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-06-01T21:26:24.7940758Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7945997Z 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-06-01T21:26:24.7951738Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7957366Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_normal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.7964154Z 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-06-01T21:26:24.7970476Z 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-06-01T21:26:24.7976999Z 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-06-01T21:26:24.7983438Z 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-06-01T21:26:24.7989530Z 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-06-01T21:26:24.7995549Z 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-06-01T21:26:24.8001745Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.8007723Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.8013333Z 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-06-01T21:26:24.8024737Z 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-06-01T21:26:24.8030767Z 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-06-01T21:26:24.8037108Z 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-06-01T21:26:24.8042877Z 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-06-01T21:26:24.8048879Z 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-06-01T21:26:24.8054477Z 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-06-01T21:26:24.8060785Z 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-06-01T21:26:24.8071491Z 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-06-01T21:26:24.8077588Z 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-06-01T21:26:24.8083897Z 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-06-01T21:26:24.8089768Z 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-06-01T21:26:24.8095424Z 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-06-01T21:26:24.8101208Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.8106964Z 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-06-01T21:26:24.8112761Z 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-06-01T21:26:24.8118725Z 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-06-01T21:26:24.8124467Z 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-06-01T21:26:24.8130229Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lshift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.8135925Z 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-06-01T21:26:24.8141485Z 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-06-01T21:26:24.8147225Z 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-06-01T21:26:24.8153136Z 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-06-01T21:26:24.8158915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lshift_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.8164599Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lshift_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.8170365Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.8175742Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_cell.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.8181648Z 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-06-01T21:26:24.8187022Z 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-06-01T21:26:24.8192672Z 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-06-01T21:26:24.8198437Z 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-06-01T21:26:24.8204250Z 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-06-01T21:26:24.8210182Z 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-06-01T21:26:24.8215926Z 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-06-01T21:26:24.8221652Z 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-06-01T21:26:24.8227467Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.8233090Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.8239074Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.8244434Z 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-06-01T21:26:24.8249914Z 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-06-01T21:26:24.8255665Z 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-06-01T21:26:24.8261828Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.8267294Z 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-06-01T21:26:24.8272996Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.8278583Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.8284102Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_solve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.8290781Z 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-06-01T21:26:24.8296711Z 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-06-01T21:26:24.8325405Z 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-06-01T21:26:24.8331061Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_unpack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.8337324Z 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-06-01T21:26:24.8343023Z 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-06-01T21:26:24.8348878Z 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-06-01T21:26:24.8354872Z 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-06-01T21:26:24.8360766Z 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-06-01T21:26:24.8366839Z 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-06-01T21:26:24.8372603Z 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-06-01T21:26:24.8378616Z 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-06-01T21:26:24.8384570Z 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-06-01T21:26:24.8390229Z 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-06-01T21:26:24.8396397Z 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-06-01T21:26:24.8402268Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_fill.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.8408318Z 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-06-01T21:26:24.8414184Z 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-06-01T21:26:24.8420498Z 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-06-01T21:26:24.8426554Z 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-06-01T21:26:24.8432649Z 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-06-01T21:26:24.8438553Z 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-06-01T21:26:24.8444408Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_scatter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.8450246Z 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-06-01T21:26:24.8456507Z 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-06-01T21:26:24.8462310Z 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-06-01T21:26:24.8468522Z 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-06-01T21:26:24.8474643Z 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-06-01T21:26:24.8480549Z 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-06-01T21:26:24.8486361Z 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-06-01T21:26:24.8492502Z 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-06-01T21:26:24.8498207Z 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-06-01T21:26:24.8503929Z 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-06-01T21:26:24.8509648Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_select.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.8515411Z 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-06-01T21:26:24.8521788Z 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-06-01T21:26:24.8527561Z 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-06-01T21:26:24.8533143Z 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-06-01T21:26:24.8539174Z 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-06-01T21:26:24.8544984Z 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-06-01T21:26:24.8550933Z 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-06-01T21:26:24.8556928Z 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-06-01T21:26:24.8562536Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.8568000Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.8573930Z 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-06-01T21:26:24.8579566Z 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-06-01T21:26:24.8585412Z 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-06-01T21:26:24.8591413Z 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-06-01T21:26:24.8597215Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.8602884Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.8608789Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_exp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.8614438Z 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-06-01T21:26:24.8620554Z 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-06-01T21:26:24.8626161Z 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-06-01T21:26:24.8631687Z 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-06-01T21:26:24.8637884Z 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-06-01T21:26:24.8643545Z 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-06-01T21:26:24.8649610Z 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-06-01T21:26:24.8655342Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_H.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.8660785Z 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-06-01T21:26:24.8673801Z 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-06-01T21:26:24.8679483Z 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-06-01T21:26:24.8685355Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_power.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.8691429Z 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-06-01T21:26:24.8735419Z 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-06-01T21:26:24.8741396Z 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-06-01T21:26:24.8747206Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.8752720Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.8758653Z 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-06-01T21:26:24.8764235Z 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-06-01T21:26:24.8770395Z 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-06-01T21:26:24.8776149Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.8782052Z 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-06-01T21:26:24.8787828Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.8793872Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.8800179Z 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-06-01T21:26:24.8806050Z 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-06-01T21:26:24.8812227Z 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-06-01T21:26:24.8818133Z 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-06-01T21:26:24.8823825Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.8829324Z 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-06-01T21:26:24.8834970Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.8840638Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.8846190Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.8852401Z 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-06-01T21:26:24.8858568Z 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-06-01T21:26:24.8864813Z 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-06-01T21:26:24.8870618Z 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-06-01T21:26:24.8877220Z 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-06-01T21:26:24.8883147Z 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-06-01T21:26:24.8889116Z 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-06-01T21:26:24.8895151Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.8901113Z 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-06-01T21:26:24.8907371Z 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-06-01T21:26:24.8913719Z 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-06-01T21:26:24.8919713Z 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-06-01T21:26:24.8926038Z 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-06-01T21:26:24.8932152Z 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-06-01T21:26:24.8938372Z 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-06-01T21:26:24.8944556Z 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-06-01T21:26:24.8950771Z 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-06-01T21:26:24.8957281Z 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-06-01T21:26:24.8963109Z 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-06-01T21:26:24.8969038Z 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-06-01T21:26:24.8975144Z 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-06-01T21:26:24.8981310Z 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-06-01T21:26:24.8987336Z 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-06-01T21:26:24.8993304Z 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-06-01T21:26:24.8999402Z 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-06-01T21:26:24.9005566Z 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-06-01T21:26:24.9011623Z 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-06-01T21:26:24.9018387Z 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-06-01T21:26:24.9024592Z 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-06-01T21:26:24.9030411Z 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-06-01T21:26:24.9036505Z 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-06-01T21:26:24.9042245Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.9048588Z 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-06-01T21:26:24.9054319Z 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-06-01T21:26:24.9060307Z 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-06-01T21:26:24.9066619Z 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-06-01T21:26:24.9072829Z 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-06-01T21:26:24.9079054Z 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-06-01T21:26:24.9085067Z 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-06-01T21:26:24.9091032Z 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-06-01T21:26:24.9096989Z 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-06-01T21:26:24.9102988Z 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-06-01T21:26:24.9109052Z 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-06-01T21:26:24.9114970Z 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-06-01T21:26:24.9120739Z 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-06-01T21:26:24.9126425Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_unpool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.9132101Z 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-06-01T21:26:24.9137898Z 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-06-01T21:26:24.9143604Z 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-06-01T21:26:24.9149337Z 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-06-01T21:26:24.9155290Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_unpool3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.9161130Z 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-06-01T21:26:24.9166855Z 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-06-01T21:26:24.9172725Z 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-06-01T21:26:24.9178894Z 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-06-01T21:26:24.9184814Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.9190628Z 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-06-01T21:26:24.9197380Z 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-06-01T21:26:24.9203366Z 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-06-01T21:26:24.9209023Z 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-06-01T21:26:24.9220572Z 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-06-01T21:26:24.9226781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.9232552Z 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-06-01T21:26:24.9238308Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.9244235Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.9250208Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\median.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.9256107Z 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-06-01T21:26:24.9261915Z 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-06-01T21:26:24.9267695Z 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-06-01T21:26:24.9273541Z 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-06-01T21:26:24.9279235Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\median_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.9317362Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\median_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.9323388Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\meshgrid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.9329229Z 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-06-01T21:26:24.9340637Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\meshgrid_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.9346262Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\meshgrid_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.9351920Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mH.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.9357476Z 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-06-01T21:26:24.9363203Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mH_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.9369469Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mH_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.9374595Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.9380178Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.9386132Z 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-06-01T21:26:24.9391847Z 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-06-01T21:26:24.9398075Z 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-06-01T21:26:24.9404134Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.9410084Z 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-06-01T21:26:24.9416179Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.9427486Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.9433952Z 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-06-01T21:26:24.9439946Z 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-06-01T21:26:24.9445796Z 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-06-01T21:26:24.9451685Z 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-06-01T21:26:24.9457842Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.9463454Z 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-06-01T21:26:24.9469627Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.9475522Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.9480901Z 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-06-01T21:26:24.9486671Z 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-06-01T21:26:24.9492833Z 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-06-01T21:26:24.9499103Z 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-06-01T21:26:24.9504532Z 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-06-01T21:26:24.9511058Z 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-06-01T21:26:24.9517935Z 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-06-01T21:26:24.9523515Z 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-06-01T21:26:24.9529408Z 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-06-01T21:26:24.9535174Z 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-06-01T21:26:24.9540997Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.9546962Z 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-06-01T21:26:24.9552912Z 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-06-01T21:26:24.9558855Z 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-06-01T21:26:24.9564717Z 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-06-01T21:26:24.9570788Z 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-06-01T21:26:24.9576716Z 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-06-01T21:26:24.9583490Z 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-06-01T21:26:24.9589253Z 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-06-01T21:26:24.9601466Z 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-06-01T21:26:24.9607587Z 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-06-01T21:26:24.9613348Z 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-06-01T21:26:24.9619255Z 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-06-01T21:26:24.9625118Z 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-06-01T21:26:24.9631536Z 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-06-01T21:26:24.9637639Z 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-06-01T21:26:24.9643550Z 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-06-01T21:26:24.9649307Z 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-06-01T21:26:24.9696491Z 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-06-01T21:26:24.9702538Z 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-06-01T21:26:24.9708730Z 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-06-01T21:26:24.9714618Z 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-06-01T21:26:24.9720623Z 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-06-01T21:26:24.9726296Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_rnn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.9732414Z 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-06-01T21:26:24.9738999Z 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-06-01T21:26:24.9744730Z 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-06-01T21:26:24.9750794Z 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-06-01T21:26:24.9756534Z 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-06-01T21:26:24.9762604Z 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-06-01T21:26:24.9768473Z 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-06-01T21:26:24.9774649Z 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-06-01T21:26:24.9780610Z 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-06-01T21:26:24.9786443Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.9791875Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.9798076Z 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-06-01T21:26:24.9804286Z 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-06-01T21:26:24.9809973Z 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-06-01T21:26:24.9815810Z 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-06-01T21:26:24.9822095Z 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-06-01T21:26:24.9828279Z 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-06-01T21:26:24.9833858Z 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-06-01T21:26:24.9839631Z 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-06-01T21:26:24.9845325Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.9851241Z 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-06-01T21:26:24.9857198Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.9863177Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.9868640Z 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-06-01T21:26:24.9874487Z 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-06-01T21:26:24.9880627Z 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-06-01T21:26:24.9886420Z 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-06-01T21:26:24.9892409Z 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-06-01T21:26:24.9898668Z 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-06-01T21:26:24.9904643Z 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-06-01T21:26:24.9910894Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.9917189Z 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-06-01T21:26:24.9924148Z 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-06-01T21:26:24.9930428Z 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-06-01T21:26:24.9936728Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:24.9943133Z 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-06-01T21:26:24.9949753Z 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-06-01T21:26:24.9955875Z 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-06-01T21:26:24.9962801Z 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-06-01T21:26:24.9969102Z 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-06-01T21:26:24.9975078Z 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-06-01T21:26:24.9981290Z 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-06-01T21:26:24.9987345Z 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-06-01T21:26:25.0014759Z 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-06-01T21:26:25.0021098Z 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-06-01T21:26:25.0027085Z 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-06-01T21:26:25.0033216Z 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-06-01T21:26:25.0039189Z 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-06-01T21:26:25.0045119Z 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-06-01T21:26:25.0050891Z 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-06-01T21:26:25.0057089Z 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-06-01T21:26:25.0062993Z 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-06-01T21:26:25.0069640Z 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-06-01T21:26:25.0075587Z 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-06-01T21:26:25.0081264Z 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-06-01T21:26:25.0087340Z 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-06-01T21:26:25.0093119Z 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-06-01T21:26:25.0099002Z 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-06-01T21:26:25.0105249Z 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-06-01T21:26:25.0111259Z 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-06-01T21:26:25.0117477Z 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-06-01T21:26:25.0123996Z 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-06-01T21:26:25.0130286Z 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-06-01T21:26:25.0136494Z 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-06-01T21:26:25.0142668Z 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-06-01T21:26:25.0148428Z 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-06-01T21:26:25.0154362Z 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-06-01T21:26:25.0160533Z 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-06-01T21:26:25.0166253Z 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-06-01T21:26:25.0172159Z 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-06-01T21:26:25.0178582Z 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-06-01T21:26:25.0184801Z 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-06-01T21:26:25.0190631Z 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-06-01T21:26:25.0196685Z 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-06-01T21:26:25.0202540Z 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-06-01T21:26:25.0212032Z 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-06-01T21:26:25.0216192Z 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-06-01T21:26:25.0222661Z 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-06-01T21:26:25.0228752Z 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-06-01T21:26:25.0234850Z 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-06-01T21:26:25.0241269Z 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-06-01T21:26:25.0247718Z 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-06-01T21:26:25.0253930Z 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-06-01T21:26:25.0260049Z 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-06-01T21:26:25.0265992Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.0272018Z 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-06-01T21:26:25.0277978Z 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-06-01T21:26:25.0284000Z 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-06-01T21:26:25.0290200Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.0296027Z 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-06-01T21:26:25.0302881Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.0308555Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.0314091Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.0320561Z 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-06-01T21:26:25.0326471Z 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-06-01T21:26:25.0332240Z 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-06-01T21:26:25.0338540Z 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-06-01T21:26:25.0344376Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mode_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.0350173Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mode_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.0356655Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\moveaxis.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.0362654Z 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-06-01T21:26:25.0368535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\moveaxis_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.0374252Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\moveaxis_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.0380367Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\movedim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.0386246Z 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-06-01T21:26:25.0391954Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\movedim_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.0397789Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\movedim_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.0403809Z 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-06-01T21:26:25.0409886Z 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-06-01T21:26:25.0415581Z 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-06-01T21:26:25.0422378Z 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-06-01T21:26:25.0428230Z 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-06-01T21:26:25.0434667Z 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-06-01T21:26:25.0440450Z 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-06-01T21:26:25.0446717Z 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-06-01T21:26:25.0452833Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.0458825Z 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-06-01T21:26:25.0464742Z 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-06-01T21:26:25.0470910Z 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-06-01T21:26:25.0477000Z 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-06-01T21:26:25.0482848Z 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-06-01T21:26:25.0489225Z 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-06-01T21:26:25.0495889Z 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-06-01T21:26:25.0501648Z 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-06-01T21:26:25.0507564Z 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-06-01T21:26:25.0513573Z 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-06-01T21:26:25.0519620Z 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-06-01T21:26:25.0525544Z 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-06-01T21:26:25.0531178Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\msort.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.0537044Z 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-06-01T21:26:25.0542813Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\msort_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.0548176Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\msort_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.0553769Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mT.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.0559247Z 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-06-01T21:26:25.0565072Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mT_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.0570624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mT_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.0576128Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.0581763Z 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-06-01T21:26:25.0588098Z 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-06-01T21:26:25.0594140Z 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-06-01T21:26:25.0599951Z 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-06-01T21:26:25.0605852Z 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-06-01T21:26:25.0611898Z 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-06-01T21:26:25.0618144Z 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-06-01T21:26:25.0624684Z 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-06-01T21:26:25.0630662Z 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-06-01T21:26:25.0636851Z 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-06-01T21:26:25.0642769Z 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-06-01T21:26:25.0648626Z 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-06-01T21:26:25.0654783Z 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-06-01T21:26:25.0660876Z 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-06-01T21:26:25.0666634Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multinomial.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.0672496Z 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-06-01T21:26:25.0678365Z 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-06-01T21:26:25.0684399Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multinomial_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.0690304Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multinomial_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.0696138Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multiply.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.0702499Z 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-06-01T21:26:25.0708189Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multiply_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.0713959Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multiply_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.0719852Z 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-06-01T21:26:25.0726537Z 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-06-01T21:26:25.0739350Z 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-06-01T21:26:25.0745186Z 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-06-01T21:26:25.0751402Z 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-06-01T21:26:25.0757286Z 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-06-01T21:26:25.0763326Z 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-06-01T21:26:25.0769223Z 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-06-01T21:26:25.0775210Z 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-06-01T21:26:25.0781121Z 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-06-01T21:26:25.0787482Z 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-06-01T21:26:25.0793289Z 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-06-01T21:26:25.0799016Z 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-06-01T21:26:25.0804835Z 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-06-01T21:26:25.0810695Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.0816081Z 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-06-01T21:26:25.0821879Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.0845036Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.0850504Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.0856124Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mvlgamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.0867392Z 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-06-01T21:26:25.0873064Z 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-06-01T21:26:25.0878891Z 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-06-01T21:26:25.0884562Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mvlgamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.0890331Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mvlgamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.0896519Z 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-06-01T21:26:25.0902363Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.0908253Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.0913711Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmean.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.0919395Z 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-06-01T21:26:25.0925196Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmean_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.0931129Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmean_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.0937281Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmedian.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.0942876Z 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-06-01T21:26:25.0949121Z 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-06-01T21:26:25.0955193Z 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-06-01T21:26:25.0961019Z 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-06-01T21:26:25.0967017Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmedian_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.0972768Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmedian_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.1033092Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanquantile.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.1039478Z 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-06-01T21:26:25.1044985Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanquantile_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.1050688Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanquantile_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.1056583Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nansum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.1062106Z 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-06-01T21:26:25.1067979Z 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-06-01T21:26:25.1073743Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nansum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.1079350Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nansum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.1085354Z 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-06-01T21:26:25.1091330Z 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-06-01T21:26:25.1097063Z 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-06-01T21:26:25.1102838Z 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-06-01T21:26:25.1108690Z 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-06-01T21:26:25.1114559Z 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-06-01T21:26:25.1120086Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.1126003Z 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-06-01T21:26:25.1131938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.1138104Z 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-06-01T21:26:25.1143751Z 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-06-01T21:26:25.1149429Z 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-06-01T21:26:25.1155083Z 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-06-01T21:26:25.1160790Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.1166569Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.1172429Z 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-06-01T21:26:25.1178270Z 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-06-01T21:26:25.1184263Z 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-06-01T21:26:25.1190174Z 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-06-01T21:26:25.1196183Z 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-06-01T21:26:25.1201826Z 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-06-01T21:26:25.1207826Z 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-06-01T21:26:25.1213677Z 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-06-01T21:26:25.1219676Z 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-06-01T21:26:25.1225420Z 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-06-01T21:26:25.1231252Z 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-06-01T21:26:25.1237086Z 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-06-01T21:26:25.1243483Z 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-06-01T21:26:25.1249406Z 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-06-01T21:26:25.1255234Z 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-06-01T21:26:25.1261409Z 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-06-01T21:26:25.1267850Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.1273539Z 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-06-01T21:26:25.1279930Z 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-06-01T21:26:25.1286118Z 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-06-01T21:26:25.1292130Z 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-06-01T21:26:25.1298160Z 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-06-01T21:26:25.1304136Z 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-06-01T21:26:25.1310361Z 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-06-01T21:26:25.1316502Z 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-06-01T21:26:25.1322583Z 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-06-01T21:26:25.1328774Z 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-06-01T21:26:25.1334755Z 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-06-01T21:26:25.1340887Z 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-06-01T21:26:25.1347107Z 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-06-01T21:26:25.1353705Z 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-06-01T21:26:25.1359820Z 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-06-01T21:26:25.1365852Z 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-06-01T21:26:25.1371846Z 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-06-01T21:26:25.1377973Z 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-06-01T21:26:25.1384154Z 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-06-01T21:26:25.1390266Z 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-06-01T21:26:25.1396985Z 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-06-01T21:26:25.1402909Z 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-06-01T21:26:25.1408763Z 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-06-01T21:26:25.1414879Z 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-06-01T21:26:25.1421115Z 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-06-01T21:26:25.1427437Z 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-06-01T21:26:25.1434248Z 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-06-01T21:26:25.1440569Z 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-06-01T21:26:25.1446744Z 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-06-01T21:26:25.1453105Z 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-06-01T21:26:25.1459593Z 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-06-01T21:26:25.1465816Z 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-06-01T21:26:25.1472075Z 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-06-01T21:26:25.1477891Z 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-06-01T21:26:25.1484000Z 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-06-01T21:26:25.1490246Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.1496854Z 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-06-01T21:26:25.1502761Z 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-06-01T21:26:25.1508935Z 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-06-01T21:26:25.1514727Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.1520292Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.1526294Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\negative.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.1531929Z 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-06-01T21:26:25.1538030Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\negative_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.1544038Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\negative_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.1549964Z 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-06-01T21:26:25.1555797Z 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-06-01T21:26:25.1561190Z 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-06-01T21:26:25.1566449Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.1571492Z 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-06-01T21:26:25.1576901Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.1582454Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.1588165Z 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-06-01T21:26:25.1594420Z 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-06-01T21:26:25.1600172Z 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-06-01T21:26:25.1605950Z 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-06-01T21:26:25.1611771Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_empty.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.1617886Z 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-06-01T21:26:25.1646278Z 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-06-01T21:26:25.1652059Z 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-06-01T21:26:25.1658449Z 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-06-01T21:26:25.1664878Z 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-06-01T21:26:25.1670866Z 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-06-01T21:26:25.1676621Z 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-06-01T21:26:25.1682581Z 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-06-01T21:26:25.1688366Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_full.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.1694235Z 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-06-01T21:26:25.1700383Z 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-06-01T21:26:25.1706452Z 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-06-01T21:26:25.1712482Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_ones.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.1718342Z 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-06-01T21:26:25.1724922Z 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-06-01T21:26:25.1730530Z 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-06-01T21:26:25.1736268Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_zeros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.1794165Z 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-06-01T21:26:25.1799875Z 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-06-01T21:26:25.1805702Z 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-06-01T21:26:25.1811535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.1817763Z 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-06-01T21:26:25.1823696Z 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-06-01T21:26:25.1834929Z 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-06-01T21:26:25.1840922Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.1846927Z 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-06-01T21:26:25.1852674Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.1858564Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.1864769Z 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-06-01T21:26:25.1870340Z 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-06-01T21:26:25.1876100Z 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-06-01T21:26:25.1882034Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.1887574Z 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-06-01T21:26:25.1893200Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.1899336Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.1904779Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.1910061Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.1915881Z 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-06-01T21:26:25.1922167Z 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-06-01T21:26:25.1927538Z 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-06-01T21:26:25.1933636Z 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-06-01T21:26:25.1939640Z 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-06-01T21:26:25.1945667Z 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-06-01T21:26:25.1951377Z 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-06-01T21:26:25.1957644Z 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-06-01T21:26:25.1963635Z 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-06-01T21:26:25.1969707Z 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-06-01T21:26:25.1975584Z 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-06-01T21:26:25.1981599Z 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-06-01T21:26:25.1987449Z 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-06-01T21:26:25.1993228Z 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-06-01T21:26:25.2007370Z 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-06-01T21:26:25.2013339Z 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-06-01T21:26:25.2019874Z 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-06-01T21:26:25.2025619Z 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-06-01T21:26:25.2031422Z 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-06-01T21:26:25.2037633Z 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-06-01T21:26:25.2043518Z 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-06-01T21:26:25.2049629Z 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-06-01T21:26:25.2055554Z 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-06-01T21:26:25.2061904Z 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-06-01T21:26:25.2067674Z 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-06-01T21:26:25.2073564Z 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-06-01T21:26:25.2079487Z 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-06-01T21:26:25.2085410Z 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-06-01T21:26:25.2091546Z 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-06-01T21:26:25.2097802Z 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-06-01T21:26:25.2103573Z 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-06-01T21:26:25.2109312Z 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-06-01T21:26:25.2115579Z 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-06-01T21:26:25.2121475Z 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-06-01T21:26:25.2127497Z 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-06-01T21:26:25.2133760Z 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-06-01T21:26:25.2140003Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2145661Z 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-06-01T21:26:25.2151612Z 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-06-01T21:26:25.2157309Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2163076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_numpy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2169158Z 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-06-01T21:26:25.2175230Z 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-06-01T21:26:25.2181184Z 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-06-01T21:26:25.2187230Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2193019Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_static.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2199443Z 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-06-01T21:26:25.2204923Z 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-06-01T21:26:25.2211250Z 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-06-01T21:26:25.2217416Z 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-06-01T21:26:25.2223560Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2229354Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\normal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2235490Z 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-06-01T21:26:25.2242406Z 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-06-01T21:26:25.2248551Z 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-06-01T21:26:25.2254495Z 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-06-01T21:26:25.2262304Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\normal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2268137Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\normal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2274767Z 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-06-01T21:26:25.2281161Z 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-06-01T21:26:25.2287410Z 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-06-01T21:26:25.2294058Z 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-06-01T21:26:25.2299797Z 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-06-01T21:26:25.2305728Z 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-06-01T21:26:25.2311934Z 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-06-01T21:26:25.2318016Z 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-06-01T21:26:25.2323774Z 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-06-01T21:26:25.2330006Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2336023Z 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-06-01T21:26:25.2341752Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2347752Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2353385Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\not_equal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2359566Z 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-06-01T21:26:25.2365451Z 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-06-01T21:26:25.2371303Z 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-06-01T21:26:25.2377471Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nuclear_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2383571Z 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-06-01T21:26:25.2395435Z 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-06-01T21:26:25.2401253Z 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-06-01T21:26:25.2407352Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\numpy_T.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2413055Z 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-06-01T21:26:25.2419707Z 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-06-01T21:26:25.2425271Z 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-06-01T21:26:25.2431095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2445043Z 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-06-01T21:26:25.2457360Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2460212Z 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-06-01T21:26:25.2465469Z 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-06-01T21:26:25.2471458Z 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-06-01T21:26:25.2477561Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2483036Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2488618Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\one_hot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2494242Z 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-06-01T21:26:25.2499950Z 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-06-01T21:26:25.2505589Z 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-06-01T21:26:25.2511192Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\or.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2516621Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\orgqr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2522483Z 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-06-01T21:26:25.2528130Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\orgqr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2533834Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\orgqr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2540373Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ormqr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2545801Z 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-06-01T21:26:25.2551591Z 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-06-01T21:26:25.2557235Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ormqr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2562944Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ormqr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2568951Z 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-06-01T21:26:25.2580960Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\or_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2586656Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\or_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2592077Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\outer.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2597627Z 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-06-01T21:26:25.2603340Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\outer_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2609095Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\outer_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2614672Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\output_nr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2620432Z 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-06-01T21:26:25.2626172Z 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-06-01T21:26:25.2631600Z 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-06-01T21:26:25.2637182Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2642988Z 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-06-01T21:26:25.2648494Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2653957Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2659486Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad_sequence.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2665676Z 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-06-01T21:26:25.2671414Z 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-06-01T21:26:25.2677158Z 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-06-01T21:26:25.2683885Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pairwise_distance.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2689738Z 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-06-01T21:26:25.2695388Z 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-06-01T21:26:25.2701140Z 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-06-01T21:26:25.2706997Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pdist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2712624Z 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-06-01T21:26:25.2718240Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pdist_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2723562Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pdist_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2729070Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2734432Z 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-06-01T21:26:25.2740159Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2746207Z 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-06-01T21:26:25.2752922Z 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-06-01T21:26:25.2758663Z 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-06-01T21:26:25.2765757Z 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-06-01T21:26:25.2772720Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2780580Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.2787956Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pinverse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.4811708Z 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-06-01T21:26:25.4817513Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pinverse_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.4823098Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pinverse_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.4828834Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pin_memory.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.4834498Z 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-06-01T21:26:25.4845080Z 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-06-01T21:26:25.4850750Z 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-06-01T21:26:25.4856527Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_shuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.4862793Z 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-06-01T21:26:25.4868835Z 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-06-01T21:26:25.4874531Z 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-06-01T21:26:25.4880300Z 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-06-01T21:26:25.4885953Z 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-06-01T21:26:25.4891700Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_unshuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.4898273Z 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-06-01T21:26:25.4904502Z 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-06-01T21:26:25.4910224Z 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-06-01T21:26:25.4916015Z 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-06-01T21:26:25.4921706Z 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-06-01T21:26:25.4927944Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.4934101Z 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-06-01T21:26:25.4940066Z 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-06-01T21:26:25.4945689Z 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-06-01T21:26:25.4951537Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.4957324Z 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-06-01T21:26:25.4963510Z 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-06-01T21:26:25.4970366Z 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-06-01T21:26:25.4982097Z 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-06-01T21:26:25.4988064Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.4993477Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.4999218Z 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-06-01T21:26:25.5004790Z 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-06-01T21:26:25.5010548Z 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-06-01T21:26:25.5016377Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polar_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5022220Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polar_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5028269Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5034529Z 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-06-01T21:26:25.5040213Z 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-06-01T21:26:25.5045895Z 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-06-01T21:26:25.5051597Z 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-06-01T21:26:25.5057469Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5063260Z 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-06-01T21:26:25.5069347Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5075070Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5081514Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\positive.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5087805Z 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-06-01T21:26:25.5093508Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\positive_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5099326Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\positive_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5104981Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5110990Z 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-06-01T21:26:25.5116955Z 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-06-01T21:26:25.5122685Z 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-06-01T21:26:25.5128306Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5133771Z 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-06-01T21:26:25.5139602Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5145319Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5150948Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prelu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5156520Z 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-06-01T21:26:25.5167254Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prelu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5172723Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prelu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5178493Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5184483Z 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-06-01T21:26:25.5190369Z 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-06-01T21:26:25.5196225Z 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-06-01T21:26:25.5202041Z 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-06-01T21:26:25.5208332Z 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-06-01T21:26:25.5214149Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5220929Z 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-06-01T21:26:25.5226712Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5232261Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5237701Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\promote_types.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5243694Z 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-06-01T21:26:25.5249335Z 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-06-01T21:26:25.5255077Z 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-06-01T21:26:25.5260874Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\put.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5266682Z 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-06-01T21:26:25.5273146Z 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-06-01T21:26:25.5345229Z 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-06-01T21:26:25.5367023Z 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-06-01T21:26:25.5372882Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\put_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5379023Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\put_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5384867Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5390706Z 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-06-01T21:26:25.5396342Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5402011Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5407518Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qscheme.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5412800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qscheme_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5418373Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qscheme_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5424174Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantile.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5430005Z 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-06-01T21:26:25.5435878Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantile_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5441639Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantile_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5447995Z 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-06-01T21:26:25.5453761Z 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-06-01T21:26:25.5460110Z 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-06-01T21:26:25.5466442Z 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-06-01T21:26:25.5473141Z 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-06-01T21:26:25.5479805Z 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-06-01T21:26:25.5485761Z 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-06-01T21:26:25.5491783Z 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-06-01T21:26:25.5497788Z 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-06-01T21:26:25.5503943Z 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-06-01T21:26:25.5509819Z 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-06-01T21:26:25.5515820Z 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-06-01T21:26:25.5530476Z 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-06-01T21:26:25.5531685Z 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-06-01T21:26:25.5534085Z 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-06-01T21:26:25.5539744Z 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-06-01T21:26:25.5545374Z 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-06-01T21:26:25.5551547Z 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-06-01T21:26:25.5557548Z 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-06-01T21:26:25.5563392Z 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-06-01T21:26:25.5569195Z 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-06-01T21:26:25.5575375Z 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-06-01T21:26:25.5581619Z 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-06-01T21:26:25.5587552Z 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-06-01T21:26:25.5593985Z 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-06-01T21:26:25.5600311Z 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-06-01T21:26:25.5605875Z 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-06-01T21:26:25.5611830Z 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-06-01T21:26:25.5618439Z 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-06-01T21:26:25.5624614Z 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-06-01T21:26:25.5630913Z 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-06-01T21:26:25.5636480Z 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-06-01T21:26:25.5642236Z 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-06-01T21:26:25.5648361Z 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-06-01T21:26:25.5654147Z 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-06-01T21:26:25.5660192Z 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-06-01T21:26:25.5666358Z 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-06-01T21:26:25.5672170Z 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-06-01T21:26:25.5677887Z 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-06-01T21:26:25.5684077Z 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-06-01T21:26:25.5690284Z 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-06-01T21:26:25.5696411Z 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-06-01T21:26:25.5702466Z 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-06-01T21:26:25.5708447Z 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-06-01T21:26:25.5715285Z 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-06-01T21:26:25.5721414Z 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-06-01T21:26:25.5727473Z 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-06-01T21:26:25.5733848Z 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-06-01T21:26:25.5739754Z 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-06-01T21:26:25.5745592Z 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-06-01T21:26:25.5751560Z 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-06-01T21:26:25.5757247Z 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-06-01T21:26:25.5762998Z 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-06-01T21:26:25.5770201Z 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-06-01T21:26:25.5777374Z 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-06-01T21:26:25.5783071Z 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-06-01T21:26:25.5788935Z 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-06-01T21:26:25.5795491Z 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-06-01T21:26:25.5801639Z 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-06-01T21:26:25.5807361Z 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-06-01T21:26:25.5813533Z 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-06-01T21:26:25.5819392Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_scale.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5824725Z 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-06-01T21:26:25.5830749Z 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-06-01T21:26:25.5836553Z 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-06-01T21:26:25.5842279Z 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-06-01T21:26:25.5848165Z 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-06-01T21:26:25.5854051Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rad2deg.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5860329Z 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-06-01T21:26:25.5865988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rad2deg_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5871892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rad2deg_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5877776Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5885013Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5891296Z 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-06-01T21:26:25.5897700Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5903633Z 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-06-01T21:26:25.5909979Z 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-06-01T21:26:25.5916389Z 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-06-01T21:26:25.5922552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5928456Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5934408Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5940970Z 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-06-01T21:26:25.5947038Z 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-06-01T21:26:25.5953174Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5959339Z 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-06-01T21:26:25.5966039Z 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-06-01T21:26:25.5972369Z 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-06-01T21:26:25.5978450Z 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-06-01T21:26:25.5984647Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5990739Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.5997346Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\random.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6004742Z 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-06-01T21:26:25.6010833Z 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-06-01T21:26:25.6016580Z 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-06-01T21:26:25.6022408Z 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-06-01T21:26:25.6028247Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\random_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6033991Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\random_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6039900Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randperm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6046968Z 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-06-01T21:26:25.6052658Z 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-06-01T21:26:25.6058845Z 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-06-01T21:26:25.6064563Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randperm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6070251Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randperm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6076448Z 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-06-01T21:26:25.6082100Z 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-06-01T21:26:25.6087912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6094032Z 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-06-01T21:26:25.6099721Z 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-06-01T21:26:25.6105395Z 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-06-01T21:26:25.6111466Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6117241Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6122693Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\range.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6128473Z 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-06-01T21:26:25.6134411Z 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-06-01T21:26:25.6140774Z 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-06-01T21:26:25.6146655Z 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-06-01T21:26:25.6152325Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\range_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6158046Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\range_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6164215Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ravel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6169433Z 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-06-01T21:26:25.6175313Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ravel_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6180974Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ravel_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6186678Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\real.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6192187Z 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-06-01T21:26:25.6197843Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\real_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6203280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\real_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6209333Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6215440Z 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-06-01T21:26:25.6221468Z 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-06-01T21:26:25.6227204Z 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-06-01T21:26:25.6233165Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6238822Z 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-06-01T21:26:25.6244372Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6250047Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6255863Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\record_stream.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6261583Z 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-06-01T21:26:25.6267287Z 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-06-01T21:26:25.6272895Z 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-06-01T21:26:25.6278877Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\refine_names.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6284816Z 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-06-01T21:26:25.6290727Z 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-06-01T21:26:25.6296433Z 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-06-01T21:26:25.6302689Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6308462Z 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-06-01T21:26:25.6314933Z 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-06-01T21:26:25.6320845Z 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-06-01T21:26:25.6326897Z 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-06-01T21:26:25.6333028Z 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-06-01T21:26:25.6339183Z 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-06-01T21:26:25.6345351Z 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-06-01T21:26:25.6351298Z 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-06-01T21:26:25.6358031Z 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-06-01T21:26:25.6398565Z 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-06-01T21:26:25.6404464Z 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-06-01T21:26:25.6410667Z 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-06-01T21:26:25.6416717Z 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-06-01T21:26:25.6423248Z 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-06-01T21:26:25.6429782Z 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-06-01T21:26:25.6435465Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6441517Z 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-06-01T21:26:25.6447665Z 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-06-01T21:26:25.6453886Z 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-06-01T21:26:25.6460320Z 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-06-01T21:26:25.6466150Z 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-06-01T21:26:25.6472156Z 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-06-01T21:26:25.6478073Z 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-06-01T21:26:25.6484079Z 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-06-01T21:26:25.6490311Z 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-06-01T21:26:25.6496340Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6502579Z 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-06-01T21:26:25.6509357Z 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-06-01T21:26:25.6515362Z 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-06-01T21:26:25.6521628Z 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-06-01T21:26:25.6527916Z 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-06-01T21:26:25.6534280Z 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-06-01T21:26:25.6540704Z 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-06-01T21:26:25.6546562Z 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-06-01T21:26:25.6553672Z 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-06-01T21:26:25.6559362Z 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-06-01T21:26:25.6571183Z 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-06-01T21:26:25.6577221Z 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-06-01T21:26:25.6583342Z 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-06-01T21:26:25.6589101Z 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-06-01T21:26:25.6595043Z 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-06-01T21:26:25.6600893Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6606310Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu6.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6612045Z 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-06-01T21:26:25.6617961Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu6_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6623484Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu6_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6647971Z 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-06-01T21:26:25.6653599Z 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-06-01T21:26:25.6659747Z 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-06-01T21:26:25.6666138Z 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-06-01T21:26:25.6671809Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6677631Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6683119Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6689203Z 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-06-01T21:26:25.6695972Z 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-06-01T21:26:25.6701949Z 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-06-01T21:26:25.6707604Z 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-06-01T21:26:25.6713406Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6719315Z 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-06-01T21:26:25.6725062Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6730742Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6736545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rename.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6742152Z 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-06-01T21:26:25.6747689Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rename_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6753333Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rename_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6759120Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6765308Z 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-06-01T21:26:25.6770953Z 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-06-01T21:26:25.6776899Z 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-06-01T21:26:25.6782683Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6788560Z 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-06-01T21:26:25.6794504Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6800327Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6806069Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6812016Z 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-06-01T21:26:25.6817909Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_interleave.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6824070Z 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-06-01T21:26:25.6830242Z 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-06-01T21:26:25.6836461Z 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-06-01T21:26:25.6842494Z 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-06-01T21:26:25.6848796Z 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-06-01T21:26:25.6854656Z 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-06-01T21:26:25.6860890Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6867080Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6872951Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6878937Z 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-06-01T21:26:25.6885308Z 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-06-01T21:26:25.6891559Z 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-06-01T21:26:25.6897823Z 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-06-01T21:26:25.6903856Z 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-06-01T21:26:25.6909750Z 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-06-01T21:26:25.6915726Z 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-06-01T21:26:25.6921790Z 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-06-01T21:26:25.6928116Z 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-06-01T21:26:25.6933975Z 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-06-01T21:26:25.6940345Z 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-06-01T21:26:25.6946141Z 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-06-01T21:26:25.6952428Z 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-06-01T21:26:25.6958632Z 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-06-01T21:26:25.6983488Z 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-06-01T21:26:25.6989836Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.6995992Z 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-06-01T21:26:25.7002155Z 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-06-01T21:26:25.7008355Z 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-06-01T21:26:25.7014391Z 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-06-01T21:26:25.7020580Z 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-06-01T21:26:25.7027016Z 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-06-01T21:26:25.7032861Z 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-06-01T21:26:25.7038722Z 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-06-01T21:26:25.7044816Z 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-06-01T21:26:25.7050968Z 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-06-01T21:26:25.7057046Z 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-06-01T21:26:25.7063021Z 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-06-01T21:26:25.7069071Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.7075198Z 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-06-01T21:26:25.7081201Z 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-06-01T21:26:25.7086973Z 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-06-01T21:26:25.7094520Z 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-06-01T21:26:25.7100545Z 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-06-01T21:26:25.7106989Z 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-06-01T21:26:25.7113049Z 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-06-01T21:26:25.7119103Z 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-06-01T21:26:25.7124976Z 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-06-01T21:26:25.7131210Z 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-06-01T21:26:25.7137267Z 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-06-01T21:26:25.7143147Z 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-06-01T21:26:25.7149033Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\requires_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.7155304Z 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-06-01T21:26:25.7161312Z 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-06-01T21:26:25.7167030Z 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-06-01T21:26:25.7172924Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.7178555Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.7184515Z 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-06-01T21:26:25.7190361Z 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-06-01T21:26:25.7196642Z 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-06-01T21:26:25.7202196Z 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-06-01T21:26:25.7208679Z 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-06-01T21:26:25.7214839Z 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-06-01T21:26:25.7221137Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.7226714Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.7232515Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.7238105Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.7244140Z 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-06-01T21:26:25.7250052Z 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-06-01T21:26:25.7256157Z 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-06-01T21:26:25.7262487Z 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-06-01T21:26:25.7268485Z 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-06-01T21:26:25.7274402Z 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-06-01T21:26:25.7280463Z 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-06-01T21:26:25.7286477Z 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-06-01T21:26:25.7292814Z 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-06-01T21:26:25.7298842Z 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-06-01T21:26:25.7304687Z 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-06-01T21:26:25.7310623Z 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-06-01T21:26:25.7316457Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.7329046Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.7335401Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resolve_conj.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.7341751Z 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-06-01T21:26:25.7347603Z 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-06-01T21:26:25.7353322Z 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-06-01T21:26:25.7359193Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resolve_neg.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.7365669Z 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-06-01T21:26:25.7371773Z 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-06-01T21:26:25.7383232Z 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-06-01T21:26:25.7389042Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\result_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.7395268Z 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-06-01T21:26:25.7401404Z 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-06-01T21:26:25.7407126Z 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-06-01T21:26:25.7412850Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\retains_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.7423885Z 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-06-01T21:26:25.7429653Z 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-06-01T21:26:25.7435385Z 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-06-01T21:26:25.7441592Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\retain_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.7447308Z 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-06-01T21:26:25.7515367Z 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-06-01T21:26:25.7523382Z 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-06-01T21:26:25.7530120Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rms_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.7536332Z 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-06-01T21:26:25.7542354Z 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-06-01T21:26:25.7548215Z 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-06-01T21:26:25.7553920Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.7560104Z 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-06-01T21:26:25.7565573Z 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-06-01T21:26:25.7582526Z 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-06-01T21:26:25.7588592Z 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-06-01T21:26:25.7594481Z 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-06-01T21:26:25.7600209Z 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-06-01T21:26:25.7606232Z 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-06-01T21:26:25.7611887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_tanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.7618072Z 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-06-01T21:26:25.7624163Z 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-06-01T21:26:25.7629870Z 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-06-01T21:26:25.7636149Z 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-06-01T21:26:25.7642110Z 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-06-01T21:26:25.7647932Z 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-06-01T21:26:25.7653617Z 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-06-01T21:26:25.7659307Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\roll.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.7664967Z 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-06-01T21:26:25.7670582Z 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-06-01T21:26:25.7676856Z 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-06-01T21:26:25.7682816Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\roll_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.7688790Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\roll_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.7694909Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rot90.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.7701402Z 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-06-01T21:26:25.7707509Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rot90_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.7713605Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rot90_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.7719593Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.7725639Z 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-06-01T21:26:25.7731355Z 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-06-01T21:26:25.7737351Z 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-06-01T21:26:25.7743226Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.7749159Z 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-06-01T21:26:25.7754911Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.7767613Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.7770158Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.7777832Z 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-06-01T21:26:25.7783322Z 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-06-01T21:26:25.7789477Z 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-06-01T21:26:25.7795806Z 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-06-01T21:26:25.7802841Z 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-06-01T21:26:25.7808728Z 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-06-01T21:26:25.7814616Z 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-06-01T21:26:25.7820364Z 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-06-01T21:26:25.7826255Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_stack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.7833431Z 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-06-01T21:26:25.7846090Z 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-06-01T21:26:25.7851492Z 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-06-01T21:26:25.7857226Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.7863397Z 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-06-01T21:26:25.7868960Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.7874499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.7880679Z 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-06-01T21:26:25.7886646Z 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-06-01T21:26:25.7892796Z 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-06-01T21:26:25.7898756Z 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-06-01T21:26:25.7904544Z 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-06-01T21:26:25.7910584Z 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-06-01T21:26:25.7916341Z 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-06-01T21:26:25.7922851Z 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-06-01T21:26:25.7928825Z 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-06-01T21:26:25.7934869Z 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-06-01T21:26:25.7940974Z 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-06-01T21:26:25.7946858Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rshift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.7952647Z 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-06-01T21:26:25.7959112Z 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-06-01T21:26:25.7966912Z 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-06-01T21:26:25.7975741Z 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-06-01T21:26:25.7986281Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rshift_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.7995329Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rshift_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.8004858Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.8013652Z 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-06-01T21:26:25.8020836Z 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-06-01T21:26:25.8027270Z 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-06-01T21:26:25.8032987Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.8038578Z 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-06-01T21:26:25.8044445Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.8049987Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.8055652Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsub.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.8061818Z 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-06-01T21:26:25.8067336Z 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-06-01T21:26:25.8073205Z 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-06-01T21:26:25.8078810Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsub_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.8084529Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsub_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.8089883Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scalar_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.8095932Z 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-06-01T21:26:25.8101497Z 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-06-01T21:26:25.8107536Z 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-06-01T21:26:25.8112961Z 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-06-01T21:26:25.8119558Z 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-06-01T21:26:25.8125268Z 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-06-01T21:26:25.8131250Z 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-06-01T21:26:25.8137036Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.8142413Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_add.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.8148624Z 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-06-01T21:26:25.8154656Z 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-06-01T21:26:25.8160393Z 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-06-01T21:26:25.8166246Z 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-06-01T21:26:25.8172570Z 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-06-01T21:26:25.8178444Z 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-06-01T21:26:25.8184369Z 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-06-01T21:26:25.8190365Z 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-06-01T21:26:25.8196502Z 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-06-01T21:26:25.8202323Z 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-06-01T21:26:25.8208039Z 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-06-01T21:26:25.8213791Z 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-06-01T21:26:25.8219618Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.8225496Z 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-06-01T21:26:25.8231581Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.8237331Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.8243105Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_reduce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.8249768Z 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-06-01T21:26:25.8255521Z 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-06-01T21:26:25.8261577Z 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-06-01T21:26:25.8267463Z 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-06-01T21:26:25.8273692Z 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-06-01T21:26:25.8279743Z 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-06-01T21:26:25.8285628Z 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-06-01T21:26:25.8291454Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\searchsorted.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.8297586Z 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-06-01T21:26:25.8303375Z 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-06-01T21:26:25.8309175Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\searchsorted_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.8315077Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\searchsorted_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.8321190Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\segment_reduce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.8327209Z 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-06-01T21:26:25.8333276Z 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-06-01T21:26:25.8339266Z 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-06-01T21:26:25.8345065Z 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-06-01T21:26:25.8350982Z 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-06-01T21:26:25.8356939Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.8362726Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.8369390Z 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-06-01T21:26:25.8375314Z 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-06-01T21:26:25.8381096Z 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-06-01T21:26:25.8386797Z 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-06-01T21:26:25.8392858Z 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-06-01T21:26:25.8399036Z 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-06-01T21:26:25.8404749Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.8411077Z 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-06-01T21:26:25.8417286Z 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-06-01T21:26:25.8423089Z 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-06-01T21:26:25.8428870Z 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-06-01T21:26:25.8434889Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.8440614Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.8457413Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_scatter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.8463713Z 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-06-01T21:26:25.8470118Z 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-06-01T21:26:25.8475944Z 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-06-01T21:26:25.8482198Z 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-06-01T21:26:25.8488407Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\selu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.8494052Z 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-06-01T21:26:25.8499939Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\selu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.8505386Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\selu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.8510923Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.8516584Z 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-06-01T21:26:25.8522528Z 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-06-01T21:26:25.8528202Z 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-06-01T21:26:25.8533760Z 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-06-01T21:26:25.8539437Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_data.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.8544865Z 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-06-01T21:26:25.8550424Z 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-06-01T21:26:25.8555754Z 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-06-01T21:26:25.8561423Z 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-06-01T21:26:25.8567698Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.8573373Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.8578867Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.8584669Z 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-06-01T21:26:25.8590192Z 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-06-01T21:26:25.8595746Z 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-06-01T21:26:25.8601235Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.8606401Z 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-06-01T21:26:25.8611904Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.8618197Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.8623927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.8629469Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:25.8635709Z 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-06-01T21:26:26.0155017Z 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-06-01T21:26:26.0161277Z 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-06-01T21:26:26.0167312Z 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-06-01T21:26:26.0173432Z 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-06-01T21:26:26.0179257Z 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-06-01T21:26:26.0185712Z 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-06-01T21:26:26.0191974Z 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-06-01T21:26:26.0197953Z 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-06-01T21:26:26.0203783Z 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-06-01T21:26:26.0209489Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.0215367Z 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-06-01T21:26:26.0221371Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.0227079Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.0232963Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.0238792Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.0244497Z 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-06-01T21:26:26.0249978Z 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-06-01T21:26:26.0256351Z 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-06-01T21:26:26.0261957Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.0267970Z 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-06-01T21:26:26.0273347Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.0279321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.0285413Z 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-06-01T21:26:26.0290947Z 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-06-01T21:26:26.0296876Z 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-06-01T21:26:26.0303526Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.0308988Z 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-06-01T21:26:26.0314953Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.0321038Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.0326299Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.0331737Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.0338308Z 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-06-01T21:26:26.0344481Z 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-06-01T21:26:26.0350193Z 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-06-01T21:26:26.0356442Z 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-06-01T21:26:26.0362130Z 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-06-01T21:26:26.0368324Z 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-06-01T21:26:26.0374112Z 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-06-01T21:26:26.0385003Z 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-06-01T21:26:26.0391350Z 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-06-01T21:26:26.0396894Z 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-06-01T21:26:26.0402787Z 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-06-01T21:26:26.0408606Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.0414192Z 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-06-01T21:26:26.0420501Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.0427406Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.0432762Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.0438289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.0443737Z 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-06-01T21:26:26.0449218Z 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-06-01T21:26:26.0455122Z 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-06-01T21:26:26.0461153Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.0467289Z 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-06-01T21:26:26.0473060Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.0479022Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.0485236Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.0491672Z 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-06-01T21:26:26.0497914Z 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-06-01T21:26:26.0503833Z 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-06-01T21:26:26.0510057Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.0515656Z 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-06-01T21:26:26.0521440Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.0527749Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.0533821Z 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-06-01T21:26:26.0539765Z 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-06-01T21:26:26.0546357Z 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-06-01T21:26:26.0552367Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.0557254Z 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-06-01T21:26:26.0563092Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.0568816Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.0574697Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\size.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.0580628Z 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-06-01T21:26:26.0629927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\size_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.0640336Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\size_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.0645915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.0651696Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.0657858Z 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-06-01T21:26:26.0663519Z 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-06-01T21:26:26.0669285Z 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-06-01T21:26:26.0675558Z 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-06-01T21:26:26.0681429Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.0687685Z 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-06-01T21:26:26.0693601Z 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-06-01T21:26:26.0699523Z 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-06-01T21:26:26.0705259Z 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-06-01T21:26:26.0711300Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_inverse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.0717569Z 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-06-01T21:26:26.0727810Z 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-06-01T21:26:26.0733778Z 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-06-01T21:26:26.0739663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.0745246Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.0750946Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_scatter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.0757303Z 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-06-01T21:26:26.0763216Z 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-06-01T21:26:26.0774161Z 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-06-01T21:26:26.0780333Z 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-06-01T21:26:26.0791774Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slogdet.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.0797748Z 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-06-01T21:26:26.0803570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slogdet_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.0810053Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slogdet_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.0816524Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.0823053Z 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-06-01T21:26:26.0829827Z 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-06-01T21:26:26.0835938Z 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-06-01T21:26:26.0841994Z 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-06-01T21:26:26.0848040Z 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-06-01T21:26:26.0854258Z 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-06-01T21:26:26.0860240Z 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-06-01T21:26:26.0866260Z 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-06-01T21:26:26.0872828Z 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-06-01T21:26:26.0878746Z 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-06-01T21:26:26.0884706Z 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-06-01T21:26:26.0891003Z 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-06-01T21:26:26.0897217Z 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-06-01T21:26:26.0902993Z 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-06-01T21:26:26.0909580Z 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-06-01T21:26:26.0915456Z 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-06-01T21:26:26.0921484Z 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-06-01T21:26:26.0927419Z 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-06-01T21:26:26.0933571Z 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-06-01T21:26:26.0939697Z 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-06-01T21:26:26.0946074Z 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-06-01T21:26:26.0952010Z 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-06-01T21:26:26.0957982Z 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-06-01T21:26:26.0963889Z 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-06-01T21:26:26.0970202Z 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-06-01T21:26:26.0977072Z 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-06-01T21:26:26.0983517Z 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-06-01T21:26:26.0989632Z 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-06-01T21:26:26.0995774Z 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-06-01T21:26:26.1001949Z 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-06-01T21:26:26.1008423Z 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-06-01T21:26:26.1014400Z 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-06-01T21:26:26.1020306Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.1026617Z 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-06-01T21:26:26.1032296Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.1042810Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.1048333Z 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-06-01T21:26:26.1054195Z 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-06-01T21:26:26.1060562Z 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-06-01T21:26:26.1066305Z 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-06-01T21:26:26.1072159Z 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-06-01T21:26:26.1078020Z 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-06-01T21:26:26.1083885Z 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-06-01T21:26:26.1090221Z 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-06-01T21:26:26.1095825Z 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-06-01T21:26:26.1101904Z 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-06-01T21:26:26.1107589Z 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-06-01T21:26:26.1113355Z 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-06-01T21:26:26.1119066Z 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-06-01T21:26:26.1124795Z 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-06-01T21:26:26.1130761Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.1136982Z 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-06-01T21:26:26.1142366Z 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-06-01T21:26:26.1147962Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.1154055Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.1159277Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.1164736Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.1171048Z 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-06-01T21:26:26.1176970Z 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-06-01T21:26:26.1182803Z 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-06-01T21:26:26.1188562Z 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-06-01T21:26:26.1194517Z 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-06-01T21:26:26.1200180Z 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-06-01T21:26:26.1206268Z 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-06-01T21:26:26.1212475Z 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-06-01T21:26:26.1218749Z 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-06-01T21:26:26.1224679Z 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-06-01T21:26:26.1230484Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.1236296Z 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-06-01T21:26:26.1241973Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.1252717Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.1258534Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.1264712Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.1270831Z 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-06-01T21:26:26.1276418Z 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-06-01T21:26:26.1282297Z 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-06-01T21:26:26.1288113Z 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-06-01T21:26:26.1294884Z 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-06-01T21:26:26.1300909Z 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-06-01T21:26:26.1306571Z 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-06-01T21:26:26.1312846Z 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-06-01T21:26:26.1318590Z 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-06-01T21:26:26.1324540Z 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-06-01T21:26:26.1330440Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.1336440Z 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-06-01T21:26:26.1342366Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.1348122Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.1353964Z 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-06-01T21:26:26.1359907Z 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-06-01T21:26:26.1366067Z 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-06-01T21:26:26.1373014Z 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-06-01T21:26:26.1384345Z 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-06-01T21:26:26.1390519Z 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-06-01T21:26:26.1396495Z 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-06-01T21:26:26.1402464Z 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-06-01T21:26:26.1408252Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.1414292Z 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-06-01T21:26:26.1420390Z 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-06-01T21:26:26.1432351Z 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-06-01T21:26:26.1438560Z 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-06-01T21:26:26.1444273Z 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-06-01T21:26:26.1450190Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.1456093Z 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-06-01T21:26:26.1461888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.1467871Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.1473545Z 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-06-01T21:26:26.1479558Z 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-06-01T21:26:26.1485796Z 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-06-01T21:26:26.1492980Z 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-06-01T21:26:26.1499889Z 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-06-01T21:26:26.1506310Z 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-06-01T21:26:26.1512506Z 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-06-01T21:26:26.1518497Z 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-06-01T21:26:26.1524509Z 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-06-01T21:26:26.1530615Z 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-06-01T21:26:26.1536813Z 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-06-01T21:26:26.1542657Z 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-06-01T21:26:26.1548632Z 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-06-01T21:26:26.1554821Z 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-06-01T21:26:26.1560828Z 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-06-01T21:26:26.1566508Z 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-06-01T21:26:26.1572073Z 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-06-01T21:26:26.1577988Z 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-06-01T21:26:26.1584302Z 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-06-01T21:26:26.1590032Z 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-06-01T21:26:26.1595713Z 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-06-01T21:26:26.1601466Z 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-06-01T21:26:26.1608033Z 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-06-01T21:26:26.1613729Z 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-06-01T21:26:26.1619877Z 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-06-01T21:26:26.1626321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_dim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.1632165Z 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-06-01T21:26:26.1637779Z 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-06-01T21:26:26.1643668Z 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-06-01T21:26:26.1649457Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_mask.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.1655626Z 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-06-01T21:26:26.1661454Z 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-06-01T21:26:26.1667552Z 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-06-01T21:26:26.1673303Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_resize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.1679115Z 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-06-01T21:26:26.1685451Z 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-06-01T21:26:26.1691301Z 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-06-01T21:26:26.1726275Z 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-06-01T21:26:26.1732444Z 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-06-01T21:26:26.1739450Z 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-06-01T21:26:26.1746068Z 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-06-01T21:26:26.1751994Z 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-06-01T21:26:26.1758722Z 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-06-01T21:26:26.1764808Z 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-06-01T21:26:26.1770988Z 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-06-01T21:26:26.1777510Z 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-06-01T21:26:26.1783523Z 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-06-01T21:26:26.1789784Z 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-06-01T21:26:26.1795673Z 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-06-01T21:26:26.1801667Z 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-06-01T21:26:26.1826700Z 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-06-01T21:26:26.1833041Z 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-06-01T21:26:26.1839197Z 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-06-01T21:26:26.1845092Z 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-06-01T21:26:26.1850940Z 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-06-01T21:26:26.1857228Z 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-06-01T21:26:26.1863213Z 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-06-01T21:26:26.1869234Z 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-06-01T21:26:26.1890426Z 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-06-01T21:26:26.1896909Z 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-06-01T21:26:26.1903574Z 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-06-01T21:26:26.1909472Z 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-06-01T21:26:26.1915334Z 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-06-01T21:26:26.1921674Z 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-06-01T21:26:26.1927760Z 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-06-01T21:26:26.1933686Z 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-06-01T21:26:26.1939721Z 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-06-01T21:26:26.1945680Z 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-06-01T21:26:26.1952143Z 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-06-01T21:26:26.1957695Z 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-06-01T21:26:26.1963742Z 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-06-01T21:26:26.1970359Z 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-06-01T21:26:26.1976232Z 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-06-01T21:26:26.1982182Z 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-06-01T21:26:26.1988138Z 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-06-01T21:26:26.1994409Z 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-06-01T21:26:26.2000119Z 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-06-01T21:26:26.2010824Z 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-06-01T21:26:26.2016669Z 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-06-01T21:26:26.2023083Z 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-06-01T21:26:26.2028919Z 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-06-01T21:26:26.2034701Z 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-06-01T21:26:26.2050145Z 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-06-01T21:26:26.2051250Z 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-06-01T21:26:26.2058001Z 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-06-01T21:26:26.2063807Z 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-06-01T21:26:26.2069767Z 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-06-01T21:26:26.2076004Z 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-06-01T21:26:26.2081963Z 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-06-01T21:26:26.2091873Z 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-06-01T21:26:26.2096314Z 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-06-01T21:26:26.2102048Z 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-06-01T21:26:26.2108231Z 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-06-01T21:26:26.2114071Z 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-06-01T21:26:26.2120255Z 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-06-01T21:26:26.2126257Z 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-06-01T21:26:26.2132538Z 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-06-01T21:26:26.2138783Z 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-06-01T21:26:26.2150014Z 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-06-01T21:26:26.2156052Z 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-06-01T21:26:26.2162072Z 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-06-01T21:26:26.2168034Z 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-06-01T21:26:26.2173983Z 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-06-01T21:26:26.2180053Z 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-06-01T21:26:26.2192742Z 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-06-01T21:26:26.2199157Z 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-06-01T21:26:26.2205313Z 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-06-01T21:26:26.2211465Z 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-06-01T21:26:26.2218001Z 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-06-01T21:26:26.2224705Z 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-06-01T21:26:26.2231072Z 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-06-01T21:26:26.2238446Z 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-06-01T21:26:26.2245661Z 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-06-01T21:26:26.2253404Z 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-06-01T21:26:26.2261254Z 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-06-01T21:26:26.2267314Z 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-06-01T21:26:26.2273764Z 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-06-01T21:26:26.2280259Z 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-06-01T21:26:26.2285975Z 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-06-01T21:26:26.2292444Z 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-06-01T21:26:26.2298512Z 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-06-01T21:26:26.2304421Z 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-06-01T21:26:26.2310733Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_digamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.2316886Z 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-06-01T21:26:26.2322730Z 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-06-01T21:26:26.2328773Z 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-06-01T21:26:26.2334761Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_entr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.2341408Z 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-06-01T21:26:26.2352812Z 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-06-01T21:26:26.2358665Z 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-06-01T21:26:26.2364434Z 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-06-01T21:26:26.2370129Z 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-06-01T21:26:26.2376144Z 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-06-01T21:26:26.2381990Z 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-06-01T21:26:26.2387920Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.2393710Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.2399435Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfcx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.2405686Z 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-06-01T21:26:26.2411410Z 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-06-01T21:26:26.2418842Z 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-06-01T21:26:26.2430221Z 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-06-01T21:26:26.2436327Z 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-06-01T21:26:26.2442251Z 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-06-01T21:26:26.2448471Z 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-06-01T21:26:26.2454533Z 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-06-01T21:26:26.2460633Z 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-06-01T21:26:26.2466587Z 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-06-01T21:26:26.2472477Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfinv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.2478558Z 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-06-01T21:26:26.2484276Z 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-06-01T21:26:26.2490026Z 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-06-01T21:26:26.2497074Z 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-06-01T21:26:26.2503255Z 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-06-01T21:26:26.2509070Z 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-06-01T21:26:26.2515367Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_exp2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.2521921Z 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-06-01T21:26:26.2528702Z 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-06-01T21:26:26.2534891Z 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-06-01T21:26:26.2541188Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_expit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.2547434Z 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-06-01T21:26:26.2553534Z 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-06-01T21:26:26.2559377Z 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-06-01T21:26:26.2565215Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_expm1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.2571414Z 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-06-01T21:26:26.2577305Z 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-06-01T21:26:26.2582958Z 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-06-01T21:26:26.2589042Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammainc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.2594919Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammaincc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.2601136Z 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-06-01T21:26:26.2606996Z 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-06-01T21:26:26.2612789Z 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-06-01T21:26:26.2619242Z 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-06-01T21:26:26.2625158Z 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-06-01T21:26:26.2631163Z 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-06-01T21:26:26.2636955Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammaln.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.2643201Z 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-06-01T21:26:26.2649185Z 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-06-01T21:26:26.2655045Z 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-06-01T21:26:26.2660963Z 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-06-01T21:26:26.2666876Z 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-06-01T21:26:26.2673348Z 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-06-01T21:26:26.2679281Z 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-06-01T21:26:26.2728010Z 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-06-01T21:26:26.2734448Z 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-06-01T21:26:26.2741054Z 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-06-01T21:26:26.2747542Z 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-06-01T21:26:26.2753539Z 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-06-01T21:26:26.2759607Z 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-06-01T21:26:26.2766053Z 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-06-01T21:26:26.2772284Z 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-06-01T21:26:26.2778450Z 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-06-01T21:26:26.2784507Z 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-06-01T21:26:26.2790612Z 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-06-01T21:26:26.2796665Z 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-06-01T21:26:26.2802715Z 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-06-01T21:26:26.2809231Z 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-06-01T21:26:26.2815586Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.2821865Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0e.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.2828319Z 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-06-01T21:26:26.2834301Z 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-06-01T21:26:26.2840451Z 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-06-01T21:26:26.2846775Z 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-06-01T21:26:26.2852538Z 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-06-01T21:26:26.2858698Z 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-06-01T21:26:26.2864642Z 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-06-01T21:26:26.2870955Z 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-06-01T21:26:26.2876990Z 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-06-01T21:26:26.2882754Z 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-06-01T21:26:26.2888785Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.2895001Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1e.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.2901616Z 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-06-01T21:26:26.2907763Z 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-06-01T21:26:26.2913718Z 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-06-01T21:26:26.2919343Z 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-06-01T21:26:26.2925222Z 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-06-01T21:26:26.2931190Z 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-06-01T21:26:26.2937400Z 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-06-01T21:26:26.2943948Z 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-06-01T21:26:26.2949912Z 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-06-01T21:26:26.2956014Z 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-06-01T21:26:26.2962379Z 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-06-01T21:26:26.2968083Z 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-06-01T21:26:26.2974135Z 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-06-01T21:26:26.2980547Z 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-06-01T21:26:26.2991311Z 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-06-01T21:26:26.2998060Z 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-06-01T21:26:26.3004337Z 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-06-01T21:26:26.3010938Z 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-06-01T21:26:26.3017364Z 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-06-01T21:26:26.3023571Z 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-06-01T21:26:26.3030167Z 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-06-01T21:26:26.3036503Z 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-06-01T21:26:26.3042554Z 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-06-01T21:26:26.3048681Z 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-06-01T21:26:26.3055542Z 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-06-01T21:26:26.3062090Z 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-06-01T21:26:26.3068141Z 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-06-01T21:26:26.3074291Z 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-06-01T21:26:26.3080719Z 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-06-01T21:26:26.3086789Z 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-06-01T21:26:26.3094211Z 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-06-01T21:26:26.3100444Z 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-06-01T21:26:26.3106564Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log1p.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.3112901Z 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-06-01T21:26:26.3118884Z 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-06-01T21:26:26.3124629Z 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-06-01T21:26:26.3130695Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_logit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.3137186Z 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-06-01T21:26:26.3143191Z 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-06-01T21:26:26.3149322Z 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-06-01T21:26:26.3155076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_logsumexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.3161279Z 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-06-01T21:26:26.3167451Z 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-06-01T21:26:26.3173367Z 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-06-01T21:26:26.3179468Z 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-06-01T21:26:26.3185562Z 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-06-01T21:26:26.3191761Z 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-06-01T21:26:26.3197790Z 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-06-01T21:26:26.3204092Z 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-06-01T21:26:26.3210302Z 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-06-01T21:26:26.3216314Z 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-06-01T21:26:26.3222381Z 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-06-01T21:26:26.3229026Z 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-06-01T21:26:26.3235341Z 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-06-01T21:26:26.3242133Z 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-06-01T21:26:26.3247972Z 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-06-01T21:26:26.3253971Z 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-06-01T21:26:26.3260423Z 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-06-01T21:26:26.3266357Z 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-06-01T21:26:26.3272317Z 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-06-01T21:26:26.3278616Z 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-06-01T21:26:26.3284722Z 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-06-01T21:26:26.3290718Z 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-06-01T21:26:26.3296850Z 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-06-01T21:26:26.3302861Z 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-06-01T21:26:26.3309605Z 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-06-01T21:26:26.3315898Z 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-06-01T21:26:26.3322081Z 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-06-01T21:26:26.3328275Z 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-06-01T21:26:26.3334256Z 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-06-01T21:26:26.3340465Z 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-06-01T21:26:26.3346859Z 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-06-01T21:26:26.3352866Z 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-06-01T21:26:26.3359381Z 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-06-01T21:26:26.3365715Z 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-06-01T21:26:26.3372319Z 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-06-01T21:26:26.3378576Z 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-06-01T21:26:26.3385181Z 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-06-01T21:26:26.3391507Z 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-06-01T21:26:26.3397670Z 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-06-01T21:26:26.3404137Z 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-06-01T21:26:26.3411213Z 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-06-01T21:26:26.3417765Z 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-06-01T21:26:26.3424082Z 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-06-01T21:26:26.3430383Z 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-06-01T21:26:26.3436677Z 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-06-01T21:26:26.3442891Z 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-06-01T21:26:26.3448990Z 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-06-01T21:26:26.3455517Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_multigammaln.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.3462246Z 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-06-01T21:26:26.3468662Z 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-06-01T21:26:26.3474688Z 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-06-01T21:26:26.3480659Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.3486749Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtri.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.3493228Z 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-06-01T21:26:26.3499543Z 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-06-01T21:26:26.3522149Z 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-06-01T21:26:26.3528071Z 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-06-01T21:26:26.3534527Z 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-06-01T21:26:26.3540180Z 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-06-01T21:26:26.3546126Z 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-06-01T21:26:26.3552650Z 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-06-01T21:26:26.3558558Z 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-06-01T21:26:26.3564249Z 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-06-01T21:26:26.3570431Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_polygamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.3576687Z 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-06-01T21:26:26.3582433Z 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-06-01T21:26:26.3588266Z 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-06-01T21:26:26.3594374Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_psi.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.3600593Z 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-06-01T21:26:26.3606302Z 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-06-01T21:26:26.3611771Z 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-06-01T21:26:26.3617601Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_round.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.3623681Z 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-06-01T21:26:26.3629508Z 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-06-01T21:26:26.3635538Z 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-06-01T21:26:26.3641935Z 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-06-01T21:26:26.3648269Z 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-06-01T21:26:26.3654151Z 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-06-01T21:26:26.3660587Z 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-06-01T21:26:26.3666877Z 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-06-01T21:26:26.3672940Z 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-06-01T21:26:26.3678681Z 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-06-01T21:26:26.3684605Z 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-06-01T21:26:26.3690657Z 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-06-01T21:26:26.3697442Z 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-06-01T21:26:26.3703386Z 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-06-01T21:26:26.3709359Z 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-06-01T21:26:26.3715304Z 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-06-01T21:26:26.3721483Z 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-06-01T21:26:26.3727828Z 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-06-01T21:26:26.3733846Z 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-06-01T21:26:26.3740027Z 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-06-01T21:26:26.3746367Z 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-06-01T21:26:26.3752568Z 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-06-01T21:26:26.3758934Z 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-06-01T21:26:26.3765059Z 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-06-01T21:26:26.3771691Z 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-06-01T21:26:26.3778080Z 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-06-01T21:26:26.3784313Z 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-06-01T21:26:26.3822335Z 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-06-01T21:26:26.3829063Z 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-06-01T21:26:26.3835212Z 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-06-01T21:26:26.3841546Z 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-06-01T21:26:26.3847894Z 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-06-01T21:26:26.3854031Z 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-06-01T21:26:26.3860280Z 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-06-01T21:26:26.3866230Z 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-06-01T21:26:26.3872365Z 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-06-01T21:26:26.3878677Z 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-06-01T21:26:26.3884654Z 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-06-01T21:26:26.3891775Z 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-06-01T21:26:26.3898443Z 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-06-01T21:26:26.3904702Z 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-06-01T21:26:26.3910891Z 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-06-01T21:26:26.3916934Z 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-06-01T21:26:26.3923198Z 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-06-01T21:26:26.3929229Z 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-06-01T21:26:26.3935506Z 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-06-01T21:26:26.3941882Z 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-06-01T21:26:26.3948499Z 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-06-01T21:26:26.3954937Z 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-06-01T21:26:26.3961393Z 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-06-01T21:26:26.3967745Z 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-06-01T21:26:26.3973916Z 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-06-01T21:26:26.3980142Z 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-06-01T21:26:26.3986319Z 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-06-01T21:26:26.3992669Z 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-06-01T21:26:26.3998875Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_sinc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4005221Z 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-06-01T21:26:26.4011239Z 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-06-01T21:26:26.4017046Z 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-06-01T21:26:26.4023200Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4029527Z 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-06-01T21:26:26.4035559Z 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-06-01T21:26:26.4041340Z 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-06-01T21:26:26.4048302Z 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-06-01T21:26:26.4054683Z 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-06-01T21:26:26.4060873Z 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-06-01T21:26:26.4067326Z 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-06-01T21:26:26.4073429Z 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-06-01T21:26:26.4079445Z 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-06-01T21:26:26.4086071Z 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-06-01T21:26:26.4092404Z 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-06-01T21:26:26.4098988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlog1py.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4105906Z 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-06-01T21:26:26.4112425Z 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-06-01T21:26:26.4118946Z 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-06-01T21:26:26.4125093Z 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-06-01T21:26:26.4131519Z 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-06-01T21:26:26.4142597Z 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-06-01T21:26:26.4148816Z 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-06-01T21:26:26.4154770Z 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-06-01T21:26:26.4160742Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlogy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4167078Z 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-06-01T21:26:26.4172811Z 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-06-01T21:26:26.4178996Z 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-06-01T21:26:26.4184982Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_zeta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4191318Z 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-06-01T21:26:26.4197506Z 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-06-01T21:26:26.4203446Z 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-06-01T21:26:26.4209412Z 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-06-01T21:26:26.4215339Z 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-06-01T21:26:26.4221678Z 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-06-01T21:26:26.4228194Z 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-06-01T21:26:26.4234651Z 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-06-01T21:26:26.4240414Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4246035Z 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-06-01T21:26:26.4252130Z 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-06-01T21:26:26.4257628Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4263769Z 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-06-01T21:26:26.4269951Z 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-06-01T21:26:26.4275715Z 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-06-01T21:26:26.4281624Z 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-06-01T21:26:26.4287517Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4293323Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4299275Z 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-06-01T21:26:26.4305506Z 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-06-01T21:26:26.4311545Z 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-06-01T21:26:26.4318095Z 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-06-01T21:26:26.4324499Z 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-06-01T21:26:26.4330857Z 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-06-01T21:26:26.4337129Z 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-06-01T21:26:26.4343147Z 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-06-01T21:26:26.4349403Z 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-06-01T21:26:26.4355309Z 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-06-01T21:26:26.4361438Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4367365Z 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-06-01T21:26:26.4373472Z 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-06-01T21:26:26.4379424Z 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-06-01T21:26:26.4385023Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4391075Z 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-06-01T21:26:26.4396845Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4402757Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4408290Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\square.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4414040Z 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-06-01T21:26:26.4419703Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\square_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4425439Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\square_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4432120Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4437882Z 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-06-01T21:26:26.4443917Z 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-06-01T21:26:26.4449807Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4456600Z 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-06-01T21:26:26.4462661Z 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-06-01T21:26:26.4468404Z 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-06-01T21:26:26.4481203Z 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-06-01T21:26:26.4485199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4491024Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4496831Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sspaddmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4502853Z 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-06-01T21:26:26.4508332Z 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-06-01T21:26:26.4514588Z 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-06-01T21:26:26.4520873Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sspaddmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4527257Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sspaddmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4533142Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4538925Z 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-06-01T21:26:26.4544589Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4550341Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4555992Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4562507Z 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-06-01T21:26:26.4567968Z 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-06-01T21:26:26.4573743Z 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-06-01T21:26:26.4579529Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_mean.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4585491Z 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-06-01T21:26:26.4591569Z 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-06-01T21:26:26.4597144Z 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-06-01T21:26:26.4602928Z 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-06-01T21:26:26.4608724Z 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-06-01T21:26:26.4614781Z 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-06-01T21:26:26.4620644Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4626244Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4631573Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4637199Z 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-06-01T21:26:26.4642873Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stft_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4648506Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stft_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4654055Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stride.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4659809Z 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-06-01T21:26:26.4665779Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stride_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4671126Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stride_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4676669Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4682524Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\subtract.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4687890Z 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-06-01T21:26:26.4693440Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\subtract_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4699212Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\subtract_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4705392Z 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-06-01T21:26:26.4711279Z 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-06-01T21:26:26.4716751Z 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-06-01T21:26:26.4722572Z 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-06-01T21:26:26.4728019Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4733225Z 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-06-01T21:26:26.4738986Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4744511Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4750117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4755794Z 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-06-01T21:26:26.4761722Z 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-06-01T21:26:26.4767446Z 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-06-01T21:26:26.4773476Z 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-06-01T21:26:26.4778897Z 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-06-01T21:26:26.4784898Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4790392Z 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-06-01T21:26:26.4796134Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4801585Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4807029Z 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-06-01T21:26:26.4813056Z 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-06-01T21:26:26.4819036Z 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-06-01T21:26:26.4824628Z 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-06-01T21:26:26.4830622Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\svd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4836339Z 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-06-01T21:26:26.4842314Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\svd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4848057Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\svd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4853597Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapaxes.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4859575Z 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-06-01T21:26:26.4865443Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapaxes_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4871067Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapaxes_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4877028Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapdims.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4883158Z 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-06-01T21:26:26.4889186Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapdims_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4894937Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapdims_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4901078Z 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-06-01T21:26:26.4907208Z 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-06-01T21:26:26.4913060Z 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-06-01T21:26:26.4919207Z 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-06-01T21:26:26.4925609Z 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-06-01T21:26:26.4931554Z 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-06-01T21:26:26.4941393Z 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-06-01T21:26:26.4947389Z 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-06-01T21:26:26.4953256Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_numel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4959802Z 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-06-01T21:26:26.4966710Z 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-06-01T21:26:26.4972608Z 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-06-01T21:26:26.4978544Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_size.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.4984278Z 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-06-01T21:26:26.4989890Z 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-06-01T21:26:26.4995691Z 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-06-01T21:26:26.5001296Z 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-06-01T21:26:26.5007306Z 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-06-01T21:26:26.5014551Z 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-06-01T21:26:26.5021449Z 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-06-01T21:26:26.5027795Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_stride.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5033894Z 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-06-01T21:26:26.5040878Z 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-06-01T21:26:26.5047319Z 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-06-01T21:26:26.5053153Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5058482Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\take.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5064132Z 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-06-01T21:26:26.5070084Z 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-06-01T21:26:26.5075639Z 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-06-01T21:26:26.5081789Z 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-06-01T21:26:26.5087420Z 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-06-01T21:26:26.5093001Z 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-06-01T21:26:26.5099008Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\take_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5104974Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\take_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5127791Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5132947Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5138377Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5144745Z 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-06-01T21:26:26.5149910Z 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-06-01T21:26:26.5155490Z 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-06-01T21:26:26.5161847Z 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-06-01T21:26:26.5167810Z 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-06-01T21:26:26.5173543Z 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-06-01T21:26:26.5179782Z 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-06-01T21:26:26.5185726Z 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-06-01T21:26:26.5191126Z 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-06-01T21:26:26.5197137Z 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-06-01T21:26:26.5203603Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5209135Z 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-06-01T21:26:26.5215669Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5221471Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5227731Z 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-06-01T21:26:26.5233469Z 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-06-01T21:26:26.5239153Z 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-06-01T21:26:26.5244671Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5250433Z 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-06-01T21:26:26.5256214Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5261656Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5268321Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5272896Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensordot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5278547Z 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-06-01T21:26:26.5284317Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensordot_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5290088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensordot_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5295996Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensor_split.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5302323Z 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-06-01T21:26:26.5308095Z 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-06-01T21:26:26.5314010Z 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-06-01T21:26:26.5319818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\thnn_conv2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5325699Z 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-06-01T21:26:26.5331384Z 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-06-01T21:26:26.5337681Z 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-06-01T21:26:26.5343459Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5366196Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5372324Z 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-06-01T21:26:26.5378186Z 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-06-01T21:26:26.5384067Z 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-06-01T21:26:26.5390006Z 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-06-01T21:26:26.5396201Z 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-06-01T21:26:26.5402119Z 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-06-01T21:26:26.5408112Z 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-06-01T21:26:26.5414428Z 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-06-01T21:26:26.5420203Z 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-06-01T21:26:26.5426584Z 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-06-01T21:26:26.5432270Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5438056Z 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-06-01T21:26:26.5444031Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5449837Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5455521Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tile.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5461746Z 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-06-01T21:26:26.5467383Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tile_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5473122Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tile_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5478666Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5484455Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5490036Z 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-06-01T21:26:26.5496211Z 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-06-01T21:26:26.5502105Z 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-06-01T21:26:26.5507813Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5513570Z 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-06-01T21:26:26.5519837Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5525892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5531984Z 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-06-01T21:26:26.5539193Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_dense.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5543057Z 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-06-01T21:26:26.5549141Z 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-06-01T21:26:26.5554928Z 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-06-01T21:26:26.5560907Z 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-06-01T21:26:26.5567737Z 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-06-01T21:26:26.5572682Z 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-06-01T21:26:26.5578714Z 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-06-01T21:26:26.5584324Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_mkldnn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5590021Z 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-06-01T21:26:26.5596089Z 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-06-01T21:26:26.5601807Z 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-06-01T21:26:26.5607343Z 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-06-01T21:26:26.5613827Z 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-06-01T21:26:26.5619689Z 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-06-01T21:26:26.5625455Z 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-06-01T21:26:26.5631205Z 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-06-01T21:26:26.5636882Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5642461Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5647995Z 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-06-01T21:26:26.5654073Z 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-06-01T21:26:26.5660077Z 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-06-01T21:26:26.5665881Z 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-06-01T21:26:26.5672394Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5677759Z 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-06-01T21:26:26.5683672Z 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-06-01T21:26:26.5689238Z 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-06-01T21:26:26.5695061Z 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-06-01T21:26:26.5700999Z 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-06-01T21:26:26.5707104Z 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-06-01T21:26:26.5713425Z 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-06-01T21:26:26.5719015Z 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-06-01T21:26:26.5725148Z 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-06-01T21:26:26.5730871Z 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-06-01T21:26:26.5737145Z 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-06-01T21:26:26.5742987Z 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-06-01T21:26:26.5748871Z 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-06-01T21:26:26.5754711Z 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-06-01T21:26:26.5760600Z 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-06-01T21:26:26.5766599Z 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-06-01T21:26:26.5772165Z 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-06-01T21:26:26.5778322Z 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-06-01T21:26:26.5784127Z 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-06-01T21:26:26.5789938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5795473Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5801939Z 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-06-01T21:26:26.5807590Z 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-06-01T21:26:26.5813112Z 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-06-01T21:26:26.5818936Z 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-06-01T21:26:26.5825060Z 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-06-01T21:26:26.5831955Z 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-06-01T21:26:26.5839177Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5844926Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5850663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5856710Z 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-06-01T21:26:26.5862617Z 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-06-01T21:26:26.5868632Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5875028Z 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-06-01T21:26:26.5881131Z 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-06-01T21:26:26.5886781Z 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-06-01T21:26:26.5930291Z 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-06-01T21:26:26.5936136Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5942594Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5948388Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapezoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5954526Z 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-06-01T21:26:26.5960198Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapezoid_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5966037Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapezoid_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5972329Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapz.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5978852Z 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-06-01T21:26:26.5984808Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapz_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5990474Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapz_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.5996453Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triangular_solve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6002424Z 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-06-01T21:26:26.6008123Z 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-06-01T21:26:26.6014025Z 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-06-01T21:26:26.6020031Z 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-06-01T21:26:26.6026674Z 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-06-01T21:26:26.6032539Z 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-06-01T21:26:26.6038619Z 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-06-01T21:26:26.6044201Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6049953Z 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-06-01T21:26:26.6055801Z 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-06-01T21:26:26.6061545Z 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-06-01T21:26:26.6067387Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6073243Z 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-06-01T21:26:26.6078933Z 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-06-01T21:26:26.6084771Z 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-06-01T21:26:26.6090629Z 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-06-01T21:26:26.6096419Z 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-06-01T21:26:26.6102235Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6107914Z 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-06-01T21:26:26.6113680Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6119240Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6125315Z 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-06-01T21:26:26.6130709Z 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-06-01T21:26:26.6136291Z 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-06-01T21:26:26.6142068Z 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-06-01T21:26:26.6147842Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6154113Z 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-06-01T21:26:26.6159686Z 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-06-01T21:26:26.6165284Z 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-06-01T21:26:26.6170840Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6176937Z 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-06-01T21:26:26.6182537Z 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-06-01T21:26:26.6188843Z 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-06-01T21:26:26.6194706Z 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-06-01T21:26:26.6200459Z 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-06-01T21:26:26.6206279Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6211761Z 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-06-01T21:26:26.6217524Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6223044Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6228406Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\true_divide.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6234220Z 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-06-01T21:26:26.6239969Z 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-06-01T21:26:26.6245624Z 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-06-01T21:26:26.6251188Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6257078Z 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-06-01T21:26:26.6262824Z 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-06-01T21:26:26.6268391Z 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-06-01T21:26:26.6273890Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6279550Z 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-06-01T21:26:26.6285276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6290908Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6296619Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\type_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6302014Z 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-06-01T21:26:26.6307532Z 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-06-01T21:26:26.6312802Z 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-06-01T21:26:26.6318628Z 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-06-01T21:26:26.6324399Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6330230Z 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-06-01T21:26:26.6336514Z 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-06-01T21:26:26.6342292Z 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-06-01T21:26:26.6347800Z 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-06-01T21:26:26.6353536Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6358849Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6364161Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6369915Z 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-06-01T21:26:26.6375841Z 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-06-01T21:26:26.6381856Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6387951Z 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-06-01T21:26:26.6393888Z 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-06-01T21:26:26.6399913Z 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-06-01T21:26:26.6406005Z 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-06-01T21:26:26.6411833Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6417814Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6423640Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unflatten.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6429621Z 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-06-01T21:26:26.6435585Z 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-06-01T21:26:26.6441675Z 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-06-01T21:26:26.6447844Z 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-06-01T21:26:26.6453570Z 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-06-01T21:26:26.6459590Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unflatten_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6465334Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unflatten_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6471087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6476307Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6482477Z 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-06-01T21:26:26.6488466Z 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-06-01T21:26:26.6494905Z 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-06-01T21:26:26.6500851Z 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-06-01T21:26:26.6506738Z 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-06-01T21:26:26.6512520Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6518658Z 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-06-01T21:26:26.6524902Z 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-06-01T21:26:26.6531304Z 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-06-01T21:26:26.6537583Z 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-06-01T21:26:26.6543602Z 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-06-01T21:26:26.6549507Z 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-06-01T21:26:26.6555466Z 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-06-01T21:26:26.6561338Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6567056Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6573022Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\uniform.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6578964Z 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-06-01T21:26:26.6584693Z 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-06-01T21:26:26.6590316Z 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-06-01T21:26:26.6596954Z 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-06-01T21:26:26.6602618Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\uniform_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6608352Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\uniform_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6614405Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_consecutive.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6621215Z 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-06-01T21:26:26.6626991Z 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-06-01T21:26:26.6633208Z 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-06-01T21:26:26.6639065Z 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-06-01T21:26:26.6644765Z 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-06-01T21:26:26.6650534Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_dim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6656865Z 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-06-01T21:26:26.6662695Z 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-06-01T21:26:26.6668788Z 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-06-01T21:26:26.6674763Z 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-06-01T21:26:26.6680911Z 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-06-01T21:26:26.6701961Z 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-06-01T21:26:26.6708257Z 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-06-01T21:26:26.6714240Z 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-06-01T21:26:26.6720313Z 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-06-01T21:26:26.6726249Z 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-06-01T21:26:26.6732219Z 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-06-01T21:26:26.6738326Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_chunk.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6744229Z 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-06-01T21:26:26.6750669Z 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-06-01T21:26:26.6756315Z 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-06-01T21:26:26.6762244Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_split.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6768449Z 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-06-01T21:26:26.6774181Z 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-06-01T21:26:26.6780125Z 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-06-01T21:26:26.6786011Z 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-06-01T21:26:26.6792631Z 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-06-01T21:26:26.6798493Z 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-06-01T21:26:26.6804609Z 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-06-01T21:26:26.6810353Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6816382Z 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-06-01T21:26:26.6822133Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6828576Z 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-06-01T21:26:26.6834711Z 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-06-01T21:26:26.6840455Z 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-06-01T21:26:26.6846347Z 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-06-01T21:26:26.6852179Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6858117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6924465Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.6931130Z 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-06-01T21:26:26.6937764Z 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-06-01T21:26:26.6943964Z 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-06-01T21:26:26.6950789Z 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-06-01T21:26:26.6957261Z 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-06-01T21:26:26.6963724Z 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-06-01T21:26:26.6969918Z 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-06-01T21:26:26.6975890Z 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-06-01T21:26:26.6982665Z 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-06-01T21:26:26.6988913Z 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-06-01T21:26:26.6995242Z 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-06-01T21:26:26.7001514Z 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-06-01T21:26:26.7007872Z 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-06-01T21:26:26.7014075Z 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-06-01T21:26:26.7020390Z 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-06-01T21:26:26.7026826Z 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-06-01T21:26:26.7033154Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.7039803Z 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-06-01T21:26:26.7046143Z 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-06-01T21:26:26.7057635Z 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-06-01T21:26:26.7063707Z 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-06-01T21:26:26.7069734Z 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-06-01T21:26:26.7075914Z 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-06-01T21:26:26.7081902Z 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-06-01T21:26:26.7087760Z 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-06-01T21:26:26.7093965Z 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-06-01T21:26:26.7100187Z 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-06-01T21:26:26.7106256Z 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-06-01T21:26:26.7112268Z 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-06-01T21:26:26.7118269Z 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-06-01T21:26:26.7124079Z 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-06-01T21:26:26.7130023Z 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-06-01T21:26:26.7135615Z 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-06-01T21:26:26.7141547Z 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-06-01T21:26:26.7147904Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.7159888Z 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-06-01T21:26:26.7167943Z 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-06-01T21:26:26.7174129Z 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-06-01T21:26:26.7180363Z 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-06-01T21:26:26.7186789Z 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-06-01T21:26:26.7193856Z 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-06-01T21:26:26.7200251Z 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-06-01T21:26:26.7207430Z 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-06-01T21:26:26.7213839Z 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-06-01T21:26:26.7220140Z 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-06-01T21:26:26.7226433Z 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-06-01T21:26:26.7232443Z 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-06-01T21:26:26.7238642Z 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-06-01T21:26:26.7244825Z 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-06-01T21:26:26.7250823Z 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-06-01T21:26:26.7256981Z 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-06-01T21:26:26.7263353Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.7269628Z 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-06-01T21:26:26.7276438Z 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-06-01T21:26:26.7282419Z 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-06-01T21:26:26.7288632Z 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-06-01T21:26:26.7294579Z 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-06-01T21:26:26.7300917Z 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-06-01T21:26:26.7306971Z 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-06-01T21:26:26.7313061Z 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-06-01T21:26:26.7319408Z 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-06-01T21:26:26.7325424Z 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-06-01T21:26:26.7331500Z 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-06-01T21:26:26.7337564Z 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-06-01T21:26:26.7343679Z 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-06-01T21:26:26.7349846Z 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-06-01T21:26:26.7356335Z 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-06-01T21:26:26.7362352Z 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-06-01T21:26:26.7368679Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.7375114Z 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-06-01T21:26:26.7381752Z 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-06-01T21:26:26.7387731Z 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-06-01T21:26:26.7393836Z 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-06-01T21:26:26.7399798Z 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-06-01T21:26:26.7406196Z 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-06-01T21:26:26.7412414Z 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-06-01T21:26:26.7418658Z 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-06-01T21:26:26.7425474Z 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-06-01T21:26:26.7431520Z 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-06-01T21:26:26.7438094Z 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-06-01T21:26:26.7444230Z 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-06-01T21:26:26.7450248Z 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-06-01T21:26:26.7455971Z 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-06-01T21:26:26.7461930Z 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-06-01T21:26:26.7467688Z 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-06-01T21:26:26.7473868Z 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-06-01T21:26:26.7479799Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.7485969Z 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-06-01T21:26:26.7492239Z 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-06-01T21:26:26.7498268Z 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-06-01T21:26:26.7504255Z 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-06-01T21:26:26.7510422Z 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-06-01T21:26:26.7516455Z 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-06-01T21:26:26.7522586Z 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-06-01T21:26:26.7528365Z 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-06-01T21:26:26.7534794Z 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-06-01T21:26:26.7541078Z 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-06-01T21:26:26.7546932Z 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-06-01T21:26:26.7552881Z 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-06-01T21:26:26.7558637Z 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-06-01T21:26:26.7564594Z 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-06-01T21:26:26.7570400Z 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-06-01T21:26:26.7576676Z 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-06-01T21:26:26.7582701Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.7588529Z 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-06-01T21:26:26.7594862Z 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-06-01T21:26:26.7601305Z 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-06-01T21:26:26.7607183Z 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-06-01T21:26:26.7613202Z 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-06-01T21:26:26.7619233Z 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-06-01T21:26:26.7625158Z 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-06-01T21:26:26.7630958Z 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-06-01T21:26:26.7637397Z 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-06-01T21:26:26.7644074Z 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-06-01T21:26:26.7650542Z 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-06-01T21:26:26.7657051Z 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-06-01T21:26:26.7663268Z 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-06-01T21:26:26.7669726Z 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-06-01T21:26:26.7675855Z 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-06-01T21:26:26.7682424Z 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-06-01T21:26:26.7688685Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.7694553Z 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-06-01T21:26:26.7700686Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.7707175Z 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-06-01T21:26:26.7713117Z 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-06-01T21:26:26.7719164Z 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-06-01T21:26:26.7724745Z 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-06-01T21:26:26.7730736Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.7736856Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.7742809Z 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-06-01T21:26:26.7749140Z 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-06-01T21:26:26.7754910Z 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-06-01T21:26:26.7761229Z 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-06-01T21:26:26.7766850Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vander.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.7772646Z 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-06-01T21:26:26.7778333Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vander_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.7783776Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vander_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.7789598Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.7795453Z 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-06-01T21:26:26.7801156Z 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-06-01T21:26:26.7806805Z 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-06-01T21:26:26.7813154Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_mean.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.7819146Z 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-06-01T21:26:26.7824922Z 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-06-01T21:26:26.7830484Z 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-06-01T21:26:26.7836239Z 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-06-01T21:26:26.7842403Z 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-06-01T21:26:26.7848041Z 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-06-01T21:26:26.7853997Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.7860039Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.7865498Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vdot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.7871076Z 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-06-01T21:26:26.7876679Z 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-06-01T21:26:26.7882326Z 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-06-01T21:26:26.7888420Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vdot_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.7894000Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vdot_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.7899485Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.7904850Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.7910121Z 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-06-01T21:26:26.7915856Z 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-06-01T21:26:26.7922044Z 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-06-01T21:26:26.7928617Z 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-06-01T21:26:26.7934532Z 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-06-01T21:26:26.7940537Z 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-06-01T21:26:26.7946511Z 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-06-01T21:26:26.7952330Z 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-06-01T21:26:26.7958177Z 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-06-01T21:26:26.7964361Z 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-06-01T21:26:26.7970174Z 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-06-01T21:26:26.7976343Z 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-06-01T21:26:26.8072575Z 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-06-01T21:26:26.8078472Z 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-06-01T21:26:26.8084699Z 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-06-01T21:26:26.8090609Z 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-06-01T21:26:26.8097164Z 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-06-01T21:26:26.8103485Z 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-06-01T21:26:26.8109660Z 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-06-01T21:26:26.8115830Z 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-06-01T21:26:26.8121776Z 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-06-01T21:26:26.8127810Z 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-06-01T21:26:26.8134199Z 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-06-01T21:26:26.8140538Z 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-06-01T21:26:26.8146114Z 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-06-01T21:26:26.8163573Z 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-06-01T21:26:26.8164812Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.8165968Z 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-06-01T21:26:26.8170853Z 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-06-01T21:26:26.8176886Z 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-06-01T21:26:26.8183175Z 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-06-01T21:26:26.8189193Z 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-06-01T21:26:26.8195337Z 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-06-01T21:26:26.8201369Z 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-06-01T21:26:26.8207314Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.8213096Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.8218763Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vsplit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.8225294Z 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-06-01T21:26:26.8230769Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vsplit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.8236574Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vsplit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.8242296Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vstack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.8248130Z 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-06-01T21:26:26.8253927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vstack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.8259634Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vstack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.8265550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\where.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.8271726Z 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-06-01T21:26:26.8277744Z 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-06-01T21:26:26.8283600Z 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-06-01T21:26:26.8289448Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\where_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.8295304Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\where_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.8301343Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.8307508Z 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-06-01T21:26:26.8313448Z 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-06-01T21:26:26.8319527Z 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-06-01T21:26:26.8325701Z 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-06-01T21:26:26.8331465Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.8337581Z 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-06-01T21:26:26.8343577Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.8349424Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.8355335Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.8361709Z 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-06-01T21:26:26.8367728Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.8373519Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.8379173Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zero.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.8384571Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.8391514Z 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-06-01T21:26:26.8397488Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.8403580Z 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-06-01T21:26:26.8410362Z 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-06-01T21:26:26.8416263Z 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-06-01T21:26:26.8440906Z 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-06-01T21:26:26.8447108Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.8453279Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.8459630Z 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-06-01T21:26:26.8465796Z 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-06-01T21:26:26.8471695Z 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-06-01T21:26:26.8477945Z 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-06-01T21:26:26.8483803Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zero_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.8489814Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zero_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.8495424Z 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-06-01T21:26:26.8501459Z 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-06-01T21:26:26.8508020Z 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-06-01T21:26:26.8514159Z 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-06-01T21:26:26.8520570Z 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-06-01T21:26:26.8527154Z 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-06-01T21:26:26.8533565Z 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-06-01T21:26:26.8539784Z 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-06-01T21:26:26.8545777Z 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-06-01T21:26:26.8551985Z 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-06-01T21:26:26.8557962Z 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-06-01T21:26:26.8563883Z 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-06-01T21:26:26.8569719Z 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-06-01T21:26:26.8575667Z 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-06-01T21:26:26.8581937Z 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-06-01T21:26:26.8588130Z 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-06-01T21:26:26.8594112Z 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-06-01T21:26:26.8600554Z 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-06-01T21:26:26.8606418Z 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-06-01T21:26:26.8612627Z 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-06-01T21:26:26.8618886Z 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-06-01T21:26:26.8624913Z 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-06-01T21:26:26.8630779Z 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-06-01T21:26:26.8636888Z 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-06-01T21:26:26.8642700Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_addmm_activation.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.8648771Z 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-06-01T21:26:26.8654644Z 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-06-01T21:26:26.8660670Z 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-06-01T21:26:26.8666631Z 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-06-01T21:26:26.8672400Z 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-06-01T21:26:26.8678295Z 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-06-01T21:26:26.8684385Z 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-06-01T21:26:26.8690251Z 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-06-01T21:26:26.8696485Z 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-06-01T21:26:26.8702593Z 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-06-01T21:26:26.8708256Z 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-06-01T21:26:26.8720683Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_add_relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.8727086Z 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-06-01T21:26:26.8733329Z 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-06-01T21:26:26.8739483Z 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-06-01T21:26:26.8745830Z 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-06-01T21:26:26.8751929Z 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-06-01T21:26:26.8758036Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_aminmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.8763966Z 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-06-01T21:26:26.8770083Z 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-06-01T21:26:26.8776016Z 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-06-01T21:26:26.8782088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_aminmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.8788062Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_aminmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.8794527Z 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-06-01T21:26:26.8800984Z 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-06-01T21:26:26.8807083Z 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-06-01T21:26:26.8813413Z 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-06-01T21:26:26.8819830Z 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-06-01T21:26:26.8826591Z 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-06-01T21:26:26.8832722Z 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-06-01T21:26:26.8839000Z 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-06-01T21:26:26.8845033Z 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-06-01T21:26:26.8851020Z 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-06-01T21:26:26.8857523Z 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-06-01T21:26:26.8863876Z 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-06-01T21:26:26.8869930Z 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-06-01T21:26:26.8876030Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_async.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.8882368Z 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-06-01T21:26:26.8888784Z 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-06-01T21:26:26.8894993Z 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-06-01T21:26:26.8901444Z 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-06-01T21:26:26.8907377Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_scalar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.8913717Z 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-06-01T21:26:26.8919651Z 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-06-01T21:26:26.8925305Z 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-06-01T21:26:26.8931419Z 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-06-01T21:26:26.8937871Z 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-06-01T21:26:26.8944274Z 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-06-01T21:26:26.8950620Z 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-06-01T21:26:26.8956720Z 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-06-01T21:26:26.8962918Z 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-06-01T21:26:26.8968920Z 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-06-01T21:26:26.8975094Z 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-06-01T21:26:26.9008790Z 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-06-01T21:26:26.9014911Z 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-06-01T21:26:26.9021250Z 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-06-01T21:26:26.9026895Z 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-06-01T21:26:26.9033313Z 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-06-01T21:26:26.9039954Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.9045942Z 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-06-01T21:26:26.9051915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.9058124Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.9064366Z 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-06-01T21:26:26.9070458Z 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-06-01T21:26:26.9077529Z 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-06-01T21:26:26.9083895Z 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-06-01T21:26:26.9090057Z 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-06-01T21:26:26.9111994Z 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-06-01T21:26:26.9117932Z 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-06-01T21:26:26.9123752Z 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-06-01T21:26:26.9129740Z 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-06-01T21:26:26.9136149Z 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-06-01T21:26:26.9141950Z 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-06-01T21:26:26.9147865Z 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-06-01T21:26:26.9153667Z 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-06-01T21:26:26.9159865Z 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-06-01T21:26:26.9166136Z 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-06-01T21:26:26.9172253Z 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-06-01T21:26:26.9178195Z 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-06-01T21:26:26.9184050Z 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-06-01T21:26:26.9189932Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Byte.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.9195815Z 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-06-01T21:26:26.9201505Z 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-06-01T21:26:26.9207226Z 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-06-01T21:26:26.9213007Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Char.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.9219016Z 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-06-01T21:26:26.9224754Z 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-06-01T21:26:26.9230342Z 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-06-01T21:26:26.9236015Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Double.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.9242103Z 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-06-01T21:26:26.9248003Z 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-06-01T21:26:26.9253622Z 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-06-01T21:26:26.9259518Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Float.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.9265665Z 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-06-01T21:26:26.9271383Z 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-06-01T21:26:26.9276872Z 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-06-01T21:26:26.9282749Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Half.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.9289105Z 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-06-01T21:26:26.9294710Z 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-06-01T21:26:26.9300304Z 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-06-01T21:26:26.9306077Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Int.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.9312858Z 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-06-01T21:26:26.9318624Z 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-06-01T21:26:26.9324280Z 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-06-01T21:26:26.9330117Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Long.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.9336776Z 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-06-01T21:26:26.9342712Z 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-06-01T21:26:26.9348402Z 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-06-01T21:26:26.9354197Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Short.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.9360393Z 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-06-01T21:26:26.9366286Z 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-06-01T21:26:26.9371897Z 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-06-01T21:26:26.9378024Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.9384026Z 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-06-01T21:26:26.9389775Z 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-06-01T21:26:26.9395677Z 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-06-01T21:26:26.9401593Z 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-06-01T21:26:26.9407581Z 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-06-01T21:26:26.9413620Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.9420155Z 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-06-01T21:26:26.9426072Z 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-06-01T21:26:26.9431971Z 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-06-01T21:26:26.9438077Z 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-06-01T21:26:26.9443937Z 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-06-01T21:26:26.9449974Z 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-06-01T21:26:26.9456513Z 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-06-01T21:26:26.9462472Z 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-06-01T21:26:26.9468357Z 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-06-01T21:26:26.9474468Z 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-06-01T21:26:26.9480376Z 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-06-01T21:26:26.9486323Z 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-06-01T21:26:26.9492706Z 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-06-01T21:26:26.9498683Z 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-06-01T21:26:26.9504357Z 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-06-01T21:26:26.9510624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_chunk_cat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.9516719Z 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-06-01T21:26:26.9522433Z 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-06-01T21:26:26.9528691Z 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-06-01T21:26:26.9535115Z 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-06-01T21:26:26.9541228Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.9546900Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesced.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.9552866Z 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-06-01T21:26:26.9558767Z 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-06-01T21:26:26.9564847Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesced_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.9570636Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesced_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.9577434Z 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-06-01T21:26:26.9583681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesce_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.9589782Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesce_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.9596063Z 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-06-01T21:26:26.9602388Z 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-06-01T21:26:26.9608400Z 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-06-01T21:26:26.9614459Z 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-06-01T21:26:26.9620463Z 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-06-01T21:26:26.9626211Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.9631781Z 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-06-01T21:26:26.9637715Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.9643856Z 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-06-01T21:26:26.9649620Z 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-06-01T21:26:26.9655571Z 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-06-01T21:26:26.9661190Z 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-06-01T21:26:26.9666981Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.9672533Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.9678364Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_physical.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.9684429Z 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-06-01T21:26:26.9690489Z 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-06-01T21:26:26.9696686Z 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-06-01T21:26:26.9702807Z 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-06-01T21:26:26.9708983Z 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-06-01T21:26:26.9714654Z 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-06-01T21:26:26.9720611Z 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-06-01T21:26:26.9726693Z 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-06-01T21:26:26.9747122Z 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-06-01T21:26:26.9752843Z 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-06-01T21:26:26.9758750Z 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-06-01T21:26:26.9764822Z 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-06-01T21:26:26.9771201Z 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-06-01T21:26:26.9777957Z 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-06-01T21:26:26.9783969Z 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-06-01T21:26:26.9789969Z 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-06-01T21:26:26.9795976Z 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-06-01T21:26:26.9802375Z 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-06-01T21:26:26.9808352Z 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-06-01T21:26:26.9814344Z 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-06-01T21:26:26.9820349Z 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-06-01T21:26:26.9826417Z 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-06-01T21:26:26.9832092Z 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-06-01T21:26:26.9838006Z 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-06-01T21:26:26.9843780Z 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-06-01T21:26:26.9849754Z 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-06-01T21:26:26.9855510Z 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-06-01T21:26:26.9861544Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.9867715Z 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-06-01T21:26:26.9874046Z 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-06-01T21:26:26.9879667Z 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-06-01T21:26:26.9886392Z 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-06-01T21:26:26.9892305Z 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-06-01T21:26:26.9899119Z 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-06-01T21:26:26.9905331Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_mode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.9911733Z 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-06-01T21:26:26.9917555Z 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-06-01T21:26:26.9923403Z 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-06-01T21:26:26.9929343Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.9935173Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.9941142Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conv_depthwise2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.9947076Z 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-06-01T21:26:26.9953201Z 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-06-01T21:26:26.9959178Z 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-06-01T21:26:26.9964866Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_copy_from.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:26.9970545Z 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-06-01T21:26:26.9976687Z 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-06-01T21:26:26.9983476Z 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-06-01T21:26:26.9989590Z 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-06-01T21:26:26.9995818Z 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-06-01T21:26:27.0001732Z 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-06-01T21:26:27.0007408Z 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-06-01T21:26:27.0013396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cslt_compress.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.0019398Z 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-06-01T21:26:27.0025336Z 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-06-01T21:26:27.0031257Z 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-06-01T21:26:27.0037445Z 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-06-01T21:26:27.0043948Z 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-06-01T21:26:27.0050284Z 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-06-01T21:26:27.0073889Z 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-06-01T21:26:27.0079989Z 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-06-01T21:26:27.0086182Z 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-06-01T21:26:27.0092657Z 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-06-01T21:26:27.0098734Z 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-06-01T21:26:27.0104548Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.0110143Z 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-06-01T21:26:27.0116545Z 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-06-01T21:26:27.0122408Z 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-06-01T21:26:27.0128140Z 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-06-01T21:26:27.0134266Z 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-06-01T21:26:27.0140189Z 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-06-01T21:26:27.0146260Z 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-06-01T21:26:27.0152171Z 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-06-01T21:26:27.0158596Z 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-06-01T21:26:27.0164394Z 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-06-01T21:26:27.0170493Z 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-06-01T21:26:27.0176324Z 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-06-01T21:26:27.0182297Z 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-06-01T21:26:27.0188124Z 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-06-01T21:26:27.0193983Z 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-06-01T21:26:27.0199659Z 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-06-01T21:26:27.0205190Z 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-06-01T21:26:27.0211507Z 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-06-01T21:26:27.0217434Z 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-06-01T21:26:27.0223340Z 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-06-01T21:26:27.0229297Z 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-06-01T21:26:27.0235076Z 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-06-01T21:26:27.0241292Z 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-06-01T21:26:27.0247101Z 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-06-01T21:26:27.0253165Z 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-06-01T21:26:27.0259031Z 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-06-01T21:26:27.0264727Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.0270646Z 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-06-01T21:26:27.0277068Z 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-06-01T21:26:27.0282933Z 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-06-01T21:26:27.0289054Z 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-06-01T21:26:27.0294946Z 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-06-01T21:26:27.0301121Z 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-06-01T21:26:27.0307328Z 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-06-01T21:26:27.0313301Z 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-06-01T21:26:27.0319639Z 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-06-01T21:26:27.0325966Z 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-06-01T21:26:27.0332095Z 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-06-01T21:26:27.0338227Z 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-06-01T21:26:27.0344147Z 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-06-01T21:26:27.0350154Z 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-06-01T21:26:27.0356336Z 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-06-01T21:26:27.0362822Z 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-06-01T21:26:27.0368669Z 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-06-01T21:26:27.0374381Z 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-06-01T21:26:27.0380534Z 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-06-01T21:26:27.0386822Z 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-06-01T21:26:27.0393290Z 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-06-01T21:26:27.0398901Z 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-06-01T21:26:27.0404752Z 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-06-01T21:26:27.0411145Z 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-06-01T21:26:27.0417273Z 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-06-01T21:26:27.0423043Z 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-06-01T21:26:27.0429291Z 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-06-01T21:26:27.0435724Z 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-06-01T21:26:27.0441878Z 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-06-01T21:26:27.0447667Z 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-06-01T21:26:27.0453803Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cummax_helper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.0459985Z 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-06-01T21:26:27.0465947Z 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-06-01T21:26:27.0471766Z 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-06-01T21:26:27.0477551Z 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-06-01T21:26:27.0483545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cummin_helper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.0489374Z 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-06-01T21:26:27.0495241Z 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-06-01T21:26:27.0501523Z 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-06-01T21:26:27.0507611Z 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-06-01T21:26:27.0513809Z 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-06-01T21:26:27.0519819Z 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-06-01T21:26:27.0525470Z 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-06-01T21:26:27.0531456Z 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-06-01T21:26:27.0536904Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimI.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.0542498Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimI_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.0548459Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimI_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.0554247Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimV.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.0559582Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimV_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.0565001Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimV_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.0570902Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dim_arange.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.0577157Z 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-06-01T21:26:27.0589559Z 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-06-01T21:26:27.0594986Z 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-06-01T21:26:27.0600980Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dirichlet_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.0607123Z 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-06-01T21:26:27.0612795Z 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-06-01T21:26:27.0618644Z 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-06-01T21:26:27.0624450Z 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-06-01T21:26:27.0630161Z 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-06-01T21:26:27.0636148Z 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-06-01T21:26:27.0642123Z 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-06-01T21:26:27.0647820Z 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-06-01T21:26:27.0653577Z 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-06-01T21:26:27.0659421Z 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-06-01T21:26:27.0665555Z 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-06-01T21:26:27.0671324Z 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-06-01T21:26:27.0677369Z 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-06-01T21:26:27.0683188Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficientzerotensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.0689421Z 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-06-01T21:26:27.0695360Z 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-06-01T21:26:27.0701365Z 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-06-01T21:26:27.0707364Z 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-06-01T21:26:27.0713585Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficientzerotensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.0719524Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficientzerotensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.0725551Z 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-06-01T21:26:27.0731683Z 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-06-01T21:26:27.0737934Z 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-06-01T21:26:27.0743857Z 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-06-01T21:26:27.0750048Z 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-06-01T21:26:27.0756224Z 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-06-01T21:26:27.0762212Z 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-06-01T21:26:27.0768256Z 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-06-01T21:26:27.0774209Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.0780328Z 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-06-01T21:26:27.0786956Z 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-06-01T21:26:27.0793215Z 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-06-01T21:26:27.0799170Z 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-06-01T21:26:27.0805687Z 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-06-01T21:26:27.0811385Z 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-06-01T21:26:27.0817259Z 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-06-01T21:26:27.0823588Z 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-06-01T21:26:27.0829353Z 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-06-01T21:26:27.0835819Z 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-06-01T21:26:27.0841845Z 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-06-01T21:26:27.0848771Z 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-06-01T21:26:27.0856725Z 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-06-01T21:26:27.0862693Z 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-06-01T21:26:27.0868558Z 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-06-01T21:26:27.0874842Z 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-06-01T21:26:27.0880781Z 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-06-01T21:26:27.0887038Z 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-06-01T21:26:27.0893332Z 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-06-01T21:26:27.0899699Z 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-06-01T21:26:27.0905753Z 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-06-01T21:26:27.0911896Z 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-06-01T21:26:27.0918075Z 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-06-01T21:26:27.0924690Z 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-06-01T21:26:27.0931098Z 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-06-01T21:26:27.0937339Z 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-06-01T21:26:27.0943316Z 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-06-01T21:26:27.0949193Z 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-06-01T21:26:27.0955028Z 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-06-01T21:26:27.0961451Z 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-06-01T21:26:27.0967596Z 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-06-01T21:26:27.0973632Z 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-06-01T21:26:27.0979699Z 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-06-01T21:26:27.0985961Z 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-06-01T21:26:27.0992148Z 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-06-01T21:26:27.0998274Z 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-06-01T21:26:27.1004188Z 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-06-01T21:26:27.1010368Z 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-06-01T21:26:27.1016658Z 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-06-01T21:26:27.1022692Z 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-06-01T21:26:27.1028799Z 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-06-01T21:26:27.1034709Z 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-06-01T21:26:27.1040653Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_euclidean_dist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.1046621Z 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-06-01T21:26:27.1052295Z 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-06-01T21:26:27.1058254Z 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-06-01T21:26:27.1064380Z 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-06-01T21:26:27.1070447Z 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-06-01T21:26:27.1076271Z 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-06-01T21:26:27.1082428Z 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-06-01T21:26:27.1088653Z 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-06-01T21:26:27.1094910Z 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-06-01T21:26:27.1101484Z 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-06-01T21:26:27.1107594Z 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-06-01T21:26:27.1134790Z 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-06-01T21:26:27.1141885Z 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-06-01T21:26:27.1148445Z 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-06-01T21:26:27.1154932Z 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-06-01T21:26:27.1161707Z 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-06-01T21:26:27.1168843Z 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-06-01T21:26:27.1175238Z 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-06-01T21:26:27.1181683Z 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-06-01T21:26:27.1187979Z 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-06-01T21:26:27.1194398Z 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-06-01T21:26:27.1200774Z 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-06-01T21:26:27.1207026Z 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-06-01T21:26:27.1213440Z 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-06-01T21:26:27.1219803Z 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-06-01T21:26:27.1226867Z 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-06-01T21:26:27.1233231Z 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-06-01T21:26:27.1239266Z 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-06-01T21:26:27.1245574Z 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-06-01T21:26:27.1251841Z 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-06-01T21:26:27.1258360Z 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-06-01T21:26:27.1264123Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_c2c.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.1269913Z 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-06-01T21:26:27.1275819Z 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-06-01T21:26:27.1281690Z 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-06-01T21:26:27.1287533Z 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-06-01T21:26:27.1293385Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_c2r.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.1299060Z 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-06-01T21:26:27.1304783Z 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-06-01T21:26:27.1310779Z 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-06-01T21:26:27.1316527Z 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-06-01T21:26:27.1322649Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_r2c.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.1328433Z 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-06-01T21:26:27.1334327Z 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-06-01T21:26:27.1340309Z 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-06-01T21:26:27.1346501Z 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-06-01T21:26:27.1352591Z 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-06-01T21:26:27.1358417Z 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-06-01T21:26:27.1364605Z 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-06-01T21:26:27.1370510Z 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-06-01T21:26:27.1376327Z 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-06-01T21:26:27.1382346Z 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-06-01T21:26:27.1388629Z 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-06-01T21:26:27.1394426Z 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-06-01T21:26:27.1400246Z 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-06-01T21:26:27.1406346Z 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-06-01T21:26:27.1412889Z 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-06-01T21:26:27.1419115Z 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-06-01T21:26:27.1425259Z 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-06-01T21:26:27.1431341Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foobar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.1437367Z 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-06-01T21:26:27.1443260Z 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-06-01T21:26:27.1449224Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foobar_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.1455435Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foobar_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.1461779Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_abs.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.1467817Z 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-06-01T21:26:27.1473649Z 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-06-01T21:26:27.1479479Z 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-06-01T21:26:27.1485587Z 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-06-01T21:26:27.1492021Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_acos.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.1498444Z 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-06-01T21:26:27.1504502Z 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-06-01T21:26:27.1510692Z 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-06-01T21:26:27.1516941Z 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-06-01T21:26:27.1523131Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_add.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.1529114Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_addcdiv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.1535612Z 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-06-01T21:26:27.1542036Z 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-06-01T21:26:27.1548680Z 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-06-01T21:26:27.1554995Z 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-06-01T21:26:27.1561385Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_addcmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.1568638Z 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-06-01T21:26:27.1574752Z 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-06-01T21:26:27.1580869Z 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-06-01T21:26:27.1635437Z 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-06-01T21:26:27.1642318Z 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-06-01T21:26:27.1648321Z 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-06-01T21:26:27.1654592Z 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-06-01T21:26:27.1660917Z 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-06-01T21:26:27.1666949Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_asin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.1673301Z 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-06-01T21:26:27.1679711Z 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-06-01T21:26:27.1686112Z 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-06-01T21:26:27.1692004Z 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-06-01T21:26:27.1697904Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_atan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.1704398Z 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-06-01T21:26:27.1728638Z 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-06-01T21:26:27.1734538Z 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-06-01T21:26:27.1740846Z 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-06-01T21:26:27.1746789Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_ceil.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.1753101Z 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-06-01T21:26:27.1759127Z 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-06-01T21:26:27.1765147Z 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-06-01T21:26:27.1771238Z 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-06-01T21:26:27.1777377Z 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-06-01T21:26:27.1784052Z 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-06-01T21:26:27.1790444Z 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-06-01T21:26:27.1796416Z 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-06-01T21:26:27.1802523Z 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-06-01T21:26:27.1808580Z 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-06-01T21:26:27.1814852Z 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-06-01T21:26:27.1821336Z 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-06-01T21:26:27.1827224Z 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-06-01T21:26:27.1833219Z 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-06-01T21:26:27.1839079Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.1845585Z 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-06-01T21:26:27.1851588Z 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-06-01T21:26:27.1858000Z 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-06-01T21:26:27.1864030Z 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-06-01T21:26:27.1870509Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_cos.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.1876844Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_cosh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.1883173Z 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-06-01T21:26:27.1889287Z 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-06-01T21:26:27.1895625Z 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-06-01T21:26:27.1901887Z 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-06-01T21:26:27.1908488Z 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-06-01T21:26:27.1914524Z 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-06-01T21:26:27.1920659Z 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-06-01T21:26:27.1926774Z 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-06-01T21:26:27.1932533Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_div.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.1939291Z 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-06-01T21:26:27.1945604Z 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-06-01T21:26:27.1951665Z 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-06-01T21:26:27.1957427Z 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-06-01T21:26:27.1963722Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_erf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.1969685Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_erfc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.1976343Z 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-06-01T21:26:27.1982394Z 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-06-01T21:26:27.1988850Z 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-06-01T21:26:27.1995091Z 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-06-01T21:26:27.2001286Z 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-06-01T21:26:27.2007289Z 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-06-01T21:26:27.2013762Z 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-06-01T21:26:27.2019873Z 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-06-01T21:26:27.2025991Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_exp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.2032213Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_expm1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.2038800Z 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-06-01T21:26:27.2044918Z 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-06-01T21:26:27.2051433Z 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-06-01T21:26:27.2057948Z 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-06-01T21:26:27.2064779Z 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-06-01T21:26:27.2070721Z 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-06-01T21:26:27.2077381Z 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-06-01T21:26:27.2083762Z 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-06-01T21:26:27.2090103Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_floor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.2096341Z 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-06-01T21:26:27.2102682Z 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-06-01T21:26:27.2108609Z 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-06-01T21:26:27.2114547Z 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-06-01T21:26:27.2121266Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_frac.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.2127690Z 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-06-01T21:26:27.2133885Z 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-06-01T21:26:27.2140014Z 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-06-01T21:26:27.2145949Z 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-06-01T21:26:27.2152269Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_lerp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.2158409Z 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-06-01T21:26:27.2165021Z 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-06-01T21:26:27.2171051Z 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-06-01T21:26:27.2177214Z 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-06-01T21:26:27.2183439Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_lgamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.2189705Z 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-06-01T21:26:27.2196292Z 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-06-01T21:26:27.2202198Z 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-06-01T21:26:27.2208596Z 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-06-01T21:26:27.2214491Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.2220367Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log10.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.2226653Z 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-06-01T21:26:27.2232923Z 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-06-01T21:26:27.2238821Z 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-06-01T21:26:27.2244994Z 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-06-01T21:26:27.2251463Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log1p.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.2265179Z 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-06-01T21:26:27.2275869Z 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-06-01T21:26:27.2282062Z 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-06-01T21:26:27.2287953Z 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-06-01T21:26:27.2294234Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.2300364Z 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-06-01T21:26:27.2306528Z 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-06-01T21:26:27.2312999Z 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-06-01T21:26:27.2318953Z 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-06-01T21:26:27.2325230Z 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-06-01T21:26:27.2331005Z 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-06-01T21:26:27.2337338Z 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-06-01T21:26:27.2343534Z 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-06-01T21:26:27.2349792Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_max.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.2355916Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_maximum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.2362001Z 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-06-01T21:26:27.2367929Z 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-06-01T21:26:27.2373958Z 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-06-01T21:26:27.2380256Z 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-06-01T21:26:27.2386452Z 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-06-01T21:26:27.2392281Z 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-06-01T21:26:27.2398481Z 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-06-01T21:26:27.2404215Z 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-06-01T21:26:27.2410280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_minimum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.2416691Z 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-06-01T21:26:27.2422801Z 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-06-01T21:26:27.2429427Z 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-06-01T21:26:27.2435396Z 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-06-01T21:26:27.2441188Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_mul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.2447234Z 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-06-01T21:26:27.2453464Z 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-06-01T21:26:27.2459780Z 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-06-01T21:26:27.2465827Z 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-06-01T21:26:27.2472003Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_neg.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.2478173Z 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-06-01T21:26:27.2484591Z 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-06-01T21:26:27.2490640Z 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-06-01T21:26:27.2496874Z 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-06-01T21:26:27.2503179Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.2509594Z 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-06-01T21:26:27.2516452Z 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-06-01T21:26:27.2522442Z 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-06-01T21:26:27.2528652Z 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-06-01T21:26:27.2534778Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_pow.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.2541127Z 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-06-01T21:26:27.2547091Z 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-06-01T21:26:27.2553215Z 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-06-01T21:26:27.2560204Z 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-06-01T21:26:27.2566719Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_reciprocal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.2573846Z 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-06-01T21:26:27.2580736Z 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-06-01T21:26:27.2587213Z 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-06-01T21:26:27.2593235Z 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-06-01T21:26:27.2599826Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_round.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.2606470Z 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-06-01T21:26:27.2612608Z 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-06-01T21:26:27.2618754Z 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-06-01T21:26:27.2625040Z 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-06-01T21:26:27.2631203Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_rsqrt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.2637628Z 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-06-01T21:26:27.2643814Z 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-06-01T21:26:27.2649880Z 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-06-01T21:26:27.2655869Z 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-06-01T21:26:27.2661915Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sigmoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.2668471Z 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-06-01T21:26:27.2674483Z 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-06-01T21:26:27.2680534Z 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-06-01T21:26:27.2686657Z 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-06-01T21:26:27.2692782Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sign.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.2714648Z 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-06-01T21:26:27.2721017Z 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-06-01T21:26:27.2727202Z 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-06-01T21:26:27.2733520Z 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-06-01T21:26:27.2739717Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.2745939Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sinh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.2752275Z 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-06-01T21:26:27.2758206Z 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-06-01T21:26:27.2764165Z 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-06-01T21:26:27.2769953Z 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-06-01T21:26:27.2776134Z 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-06-01T21:26:27.2782507Z 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-06-01T21:26:27.2788975Z 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-06-01T21:26:27.2794843Z 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-06-01T21:26:27.2801011Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sqrt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.2807229Z 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-06-01T21:26:27.2813027Z 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-06-01T21:26:27.2819306Z 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-06-01T21:26:27.2825494Z 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-06-01T21:26:27.2831619Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sub.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.2838219Z 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-06-01T21:26:27.2844133Z 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-06-01T21:26:27.2850075Z 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-06-01T21:26:27.2855954Z 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-06-01T21:26:27.2862362Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_tan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.2868455Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_tanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.2875252Z 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-06-01T21:26:27.2881467Z 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-06-01T21:26:27.2887758Z 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-06-01T21:26:27.2893348Z 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-06-01T21:26:27.2899675Z 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-06-01T21:26:27.2905912Z 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-06-01T21:26:27.2912017Z 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-06-01T21:26:27.2918111Z 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-06-01T21:26:27.2924022Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_trunc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.2930359Z 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-06-01T21:26:27.2936486Z 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-06-01T21:26:27.2942407Z 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-06-01T21:26:27.2948568Z 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-06-01T21:26:27.2954629Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_zero.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.2961225Z 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-06-01T21:26:27.2967215Z 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-06-01T21:26:27.2973860Z 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-06-01T21:26:27.2980539Z 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-06-01T21:26:27.2986940Z 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-06-01T21:26:27.2993206Z 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-06-01T21:26:27.2999560Z 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-06-01T21:26:27.3005699Z 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-06-01T21:26:27.3011917Z 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-06-01T21:26:27.3018250Z 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-06-01T21:26:27.3024402Z 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-06-01T21:26:27.3030891Z 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-06-01T21:26:27.3039248Z 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-06-01T21:26:27.3045946Z 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-06-01T21:26:27.3051951Z 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-06-01T21:26:27.3059175Z 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-06-01T21:26:27.3066128Z 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-06-01T21:26:27.3073098Z 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-06-01T21:26:27.3079755Z 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-06-01T21:26:27.3086553Z 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-06-01T21:26:27.3092911Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adagrad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.3099416Z 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-06-01T21:26:27.3105443Z 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-06-01T21:26:27.3111689Z 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-06-01T21:26:27.3117700Z 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-06-01T21:26:27.3124024Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adam.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.3130503Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adamw.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.3136952Z 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-06-01T21:26:27.3143476Z 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-06-01T21:26:27.3149567Z 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-06-01T21:26:27.3155656Z 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-06-01T21:26:27.3161365Z 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-06-01T21:26:27.3167552Z 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-06-01T21:26:27.3174132Z 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-06-01T21:26:27.3179580Z 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-06-01T21:26:27.3185631Z 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-06-01T21:26:27.3191498Z 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-06-01T21:26:27.3197496Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.3203682Z 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-06-01T21:26:27.3209728Z 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-06-01T21:26:27.3215850Z 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-06-01T21:26:27.3269591Z 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-06-01T21:26:27.3275958Z 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-06-01T21:26:27.3282412Z 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-06-01T21:26:27.3288541Z 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-06-01T21:26:27.3295151Z 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-06-01T21:26:27.3301493Z 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-06-01T21:26:27.3307457Z 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-06-01T21:26:27.3313326Z 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-06-01T21:26:27.3319629Z 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-06-01T21:26:27.3325324Z 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-06-01T21:26:27.3331426Z 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-06-01T21:26:27.3337943Z 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-06-01T21:26:27.3344113Z 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-06-01T21:26:27.3350341Z 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-06-01T21:26:27.3356693Z 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-06-01T21:26:27.3363162Z 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-06-01T21:26:27.3369439Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_sgd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.3375689Z 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-06-01T21:26:27.3381837Z 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-06-01T21:26:27.3388214Z 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-06-01T21:26:27.3394326Z 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-06-01T21:26:27.3416063Z 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-06-01T21:26:27.3422657Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fw_primal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.3428696Z 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-06-01T21:26:27.3434466Z 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-06-01T21:26:27.3440814Z 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-06-01T21:26:27.3446823Z 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-06-01T21:26:27.3452872Z 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-06-01T21:26:27.3459403Z 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-06-01T21:26:27.3465564Z 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-06-01T21:26:27.3471196Z 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-06-01T21:26:27.3477762Z 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-06-01T21:26:27.3483814Z 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-06-01T21:26:27.3489714Z 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-06-01T21:26:27.3495879Z 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-06-01T21:26:27.3502200Z 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-06-01T21:26:27.3508593Z 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-06-01T21:26:27.3515088Z 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-06-01T21:26:27.3521102Z 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-06-01T21:26:27.3527326Z 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-06-01T21:26:27.3533978Z 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-06-01T21:26:27.3540068Z 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-06-01T21:26:27.3546395Z 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-06-01T21:26:27.3552551Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_grouped_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.3558405Z 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-06-01T21:26:27.3565071Z 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-06-01T21:26:27.3571646Z 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-06-01T21:26:27.3577933Z 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-06-01T21:26:27.3584741Z 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-06-01T21:26:27.3591056Z 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-06-01T21:26:27.3597025Z 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-06-01T21:26:27.3603267Z 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-06-01T21:26:27.3609758Z 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-06-01T21:26:27.3615786Z 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-06-01T21:26:27.3621272Z 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-06-01T21:26:27.3627457Z 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-06-01T21:26:27.3633641Z 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-06-01T21:26:27.3639677Z 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-06-01T21:26:27.3645967Z 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-06-01T21:26:27.3651901Z 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-06-01T21:26:27.3658668Z 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-06-01T21:26:27.3665030Z 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-06-01T21:26:27.3670877Z 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-06-01T21:26:27.3676769Z 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-06-01T21:26:27.3682762Z 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-06-01T21:26:27.3688968Z 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-06-01T21:26:27.3695262Z 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-06-01T21:26:27.3701233Z 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-06-01T21:26:27.3707131Z 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-06-01T21:26:27.3713369Z 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-06-01T21:26:27.3719452Z 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-06-01T21:26:27.3725644Z 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-06-01T21:26:27.3731786Z 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-06-01T21:26:27.3737778Z 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-06-01T21:26:27.3743824Z 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-06-01T21:26:27.3750032Z 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-06-01T21:26:27.3755946Z 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-06-01T21:26:27.3761827Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.3767110Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.3773229Z 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-06-01T21:26:27.3779697Z 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-06-01T21:26:27.3785595Z 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-06-01T21:26:27.3791345Z 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-06-01T21:26:27.3797452Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.3803265Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.3809276Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_int_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.3814853Z 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-06-01T21:26:27.3821071Z 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-06-01T21:26:27.3827004Z 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-06-01T21:26:27.3832898Z 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-06-01T21:26:27.3838951Z 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-06-01T21:26:27.3845148Z 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-06-01T21:26:27.3851171Z 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-06-01T21:26:27.3857330Z 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-06-01T21:26:27.3863003Z 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-06-01T21:26:27.3868999Z 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-06-01T21:26:27.3874884Z 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-06-01T21:26:27.3881097Z 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-06-01T21:26:27.3887568Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_is_zerotensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.3893855Z 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-06-01T21:26:27.3899710Z 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-06-01T21:26:27.3905512Z 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-06-01T21:26:27.3911567Z 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-06-01T21:26:27.3917503Z 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-06-01T21:26:27.3923940Z 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-06-01T21:26:27.3930399Z 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-06-01T21:26:27.3936429Z 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-06-01T21:26:27.3942950Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lazy_clone.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.3949068Z 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-06-01T21:26:27.3954750Z 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-06-01T21:26:27.3960814Z 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-06-01T21:26:27.3966802Z 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-06-01T21:26:27.3972889Z 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-06-01T21:26:27.3979323Z 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-06-01T21:26:27.3985110Z 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-06-01T21:26:27.3991438Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_det.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.3998325Z 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-06-01T21:26:27.4004409Z 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-06-01T21:26:27.4010390Z 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-06-01T21:26:27.4016797Z 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-06-01T21:26:27.4022872Z 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-06-01T21:26:27.4028788Z 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-06-01T21:26:27.4034748Z 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-06-01T21:26:27.4040650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.4047618Z 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-06-01T21:26:27.4053589Z 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-06-01T21:26:27.4060075Z 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-06-01T21:26:27.4066076Z 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-06-01T21:26:27.4072220Z 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-06-01T21:26:27.4078259Z 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-06-01T21:26:27.4084154Z 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-06-01T21:26:27.4090459Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigvals.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.4097401Z 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-06-01T21:26:27.4104193Z 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-06-01T21:26:27.4109990Z 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-06-01T21:26:27.4115629Z 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-06-01T21:26:27.4121911Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_slogdet.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.4128265Z 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-06-01T21:26:27.4134451Z 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-06-01T21:26:27.4140902Z 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-06-01T21:26:27.4146831Z 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-06-01T21:26:27.4152688Z 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-06-01T21:26:27.4159049Z 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-06-01T21:26:27.4164962Z 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-06-01T21:26:27.4171202Z 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-06-01T21:26:27.4177820Z 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-06-01T21:26:27.4183731Z 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-06-01T21:26:27.4190158Z 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-06-01T21:26:27.4196246Z 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-06-01T21:26:27.4202259Z 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-06-01T21:26:27.4208507Z 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-06-01T21:26:27.4214716Z 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-06-01T21:26:27.4220660Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_svd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.4227142Z 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-06-01T21:26:27.4232860Z 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-06-01T21:26:27.4238930Z 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-06-01T21:26:27.4244857Z 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-06-01T21:26:27.4250662Z 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-06-01T21:26:27.4256708Z 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-06-01T21:26:27.4262738Z 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-06-01T21:26:27.4279956Z 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-06-01T21:26:27.4280664Z 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-06-01T21:26:27.4333679Z 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-06-01T21:26:27.4339986Z 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-06-01T21:26:27.4346029Z 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-06-01T21:26:27.4352469Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_logcumsumexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.4359898Z 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-06-01T21:26:27.4365702Z 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-06-01T21:26:27.4371815Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_logcumsumexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.4377674Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_logcumsumexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.4383615Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.4389474Z 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-06-01T21:26:27.4397166Z 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-06-01T21:26:27.4403337Z 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-06-01T21:26:27.4410340Z 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-06-01T21:26:27.4416907Z 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-06-01T21:26:27.4423077Z 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-06-01T21:26:27.4429306Z 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-06-01T21:26:27.4435955Z 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-06-01T21:26:27.4442503Z 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-06-01T21:26:27.4448636Z 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-06-01T21:26:27.4454881Z 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-06-01T21:26:27.4461099Z 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-06-01T21:26:27.4467431Z 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-06-01T21:26:27.4473965Z 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-06-01T21:26:27.4480224Z 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-06-01T21:26:27.4486516Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lstm_mps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.4492825Z 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-06-01T21:26:27.4498913Z 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-06-01T21:26:27.4505338Z 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-06-01T21:26:27.4511370Z 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-06-01T21:26:27.4517733Z 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-06-01T21:26:27.4523584Z 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-06-01T21:26:27.4530282Z 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-06-01T21:26:27.4536401Z 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-06-01T21:26:27.4542332Z 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-06-01T21:26:27.4548622Z 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-06-01T21:26:27.4554697Z 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-06-01T21:26:27.4560657Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dual.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.4566992Z 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-06-01T21:26:27.4573000Z 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-06-01T21:26:27.4580223Z 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-06-01T21:26:27.4586757Z 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-06-01T21:26:27.4592761Z 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-06-01T21:26:27.4598879Z 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-06-01T21:26:27.4605043Z 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-06-01T21:26:27.4610710Z 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-06-01T21:26:27.4616450Z 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-06-01T21:26:27.4623285Z 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-06-01T21:26:27.4629251Z 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-06-01T21:26:27.4635231Z 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-06-01T21:26:27.4641712Z 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-06-01T21:26:27.4647634Z 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-06-01T21:26:27.4653621Z 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-06-01T21:26:27.4660150Z 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-06-01T21:26:27.4666106Z 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-06-01T21:26:27.4672452Z 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-06-01T21:26:27.4678481Z 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-06-01T21:26:27.4684567Z 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-06-01T21:26:27.4690873Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_scale.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.4696805Z 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-06-01T21:26:27.4702721Z 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-06-01T21:26:27.4708841Z 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-06-01T21:26:27.4715137Z 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-06-01T21:26:27.4720739Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.4726675Z 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-06-01T21:26:27.4732859Z 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-06-01T21:26:27.4738990Z 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-06-01T21:26:27.4745230Z 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-06-01T21:26:27.4751330Z 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-06-01T21:26:27.4757340Z 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-06-01T21:26:27.4763662Z 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-06-01T21:26:27.4769504Z 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-06-01T21:26:27.4775504Z 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-06-01T21:26:27.4781801Z 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-06-01T21:26:27.4787653Z 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-06-01T21:26:27.4793709Z 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-06-01T21:26:27.4799574Z 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-06-01T21:26:27.4805272Z 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-06-01T21:26:27.4811442Z 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-06-01T21:26:27.4817514Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mkldnn_reshape.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.4823978Z 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-06-01T21:26:27.4829688Z 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-06-01T21:26:27.4835518Z 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-06-01T21:26:27.4841395Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mkldnn_transpose.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.4847575Z 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-06-01T21:26:27.4853849Z 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-06-01T21:26:27.4860465Z 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-06-01T21:26:27.4866484Z 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-06-01T21:26:27.4872476Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mps_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.4886391Z 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-06-01T21:26:27.4899195Z 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-06-01T21:26:27.4905397Z 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-06-01T21:26:27.4911642Z 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-06-01T21:26:27.4918512Z 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-06-01T21:26:27.4924659Z 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-06-01T21:26:27.4930737Z 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-06-01T21:26:27.4937134Z 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-06-01T21:26:27.4943340Z 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-06-01T21:26:27.4949512Z 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-06-01T21:26:27.4955584Z 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-06-01T21:26:27.4961556Z 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-06-01T21:26:27.4967674Z 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-06-01T21:26:27.4980544Z 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-06-01T21:26:27.4986783Z 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-06-01T21:26:27.4993116Z 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-06-01T21:26:27.4999365Z 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-06-01T21:26:27.5005906Z 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-06-01T21:26:27.5012430Z 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-06-01T21:26:27.5018769Z 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-06-01T21:26:27.5025086Z 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-06-01T21:26:27.5031297Z 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-06-01T21:26:27.5037341Z 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-06-01T21:26:27.5043572Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_neg_view.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.5049686Z 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-06-01T21:26:27.5055708Z 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-06-01T21:26:27.5062530Z 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-06-01T21:26:27.5086497Z 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-06-01T21:26:27.5092261Z 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-06-01T21:26:27.5098259Z 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-06-01T21:26:27.5103786Z 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-06-01T21:26:27.5109364Z 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-06-01T21:26:27.5115801Z 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-06-01T21:26:27.5121991Z 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-06-01T21:26:27.5127742Z 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-06-01T21:26:27.5133736Z 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-06-01T21:26:27.5140312Z 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-06-01T21:26:27.5146136Z 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-06-01T21:26:27.5152404Z 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-06-01T21:26:27.5158713Z 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-06-01T21:26:27.5165182Z 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-06-01T21:26:27.5171310Z 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-06-01T21:26:27.5177876Z 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-06-01T21:26:27.5183873Z 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-06-01T21:26:27.5190213Z 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-06-01T21:26:27.5196244Z 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-06-01T21:26:27.5202174Z 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-06-01T21:26:27.5208381Z 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-06-01T21:26:27.5214551Z 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-06-01T21:26:27.5220790Z 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-06-01T21:26:27.5227323Z 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-06-01T21:26:27.5233404Z 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-06-01T21:26:27.5239336Z 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-06-01T21:26:27.5245256Z 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-06-01T21:26:27.5252188Z 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-06-01T21:26:27.5258220Z 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-06-01T21:26:27.5271031Z 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-06-01T21:26:27.5276754Z 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-06-01T21:26:27.5283084Z 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-06-01T21:26:27.5289832Z 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-06-01T21:26:27.5296460Z 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-06-01T21:26:27.5302475Z 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-06-01T21:26:27.5308597Z 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-06-01T21:26:27.5314691Z 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-06-01T21:26:27.5320587Z 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-06-01T21:26:27.5326775Z 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-06-01T21:26:27.5332784Z 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-06-01T21:26:27.5338929Z 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-06-01T21:26:27.5344591Z 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-06-01T21:26:27.5350393Z 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-06-01T21:26:27.5356879Z 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-06-01T21:26:27.5363312Z 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-06-01T21:26:27.5369455Z 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-06-01T21:26:27.5375354Z 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-06-01T21:26:27.5381555Z 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-06-01T21:26:27.5387723Z 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-06-01T21:26:27.5393573Z 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-06-01T21:26:27.5399464Z 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-06-01T21:26:27.5405293Z 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-06-01T21:26:27.5411501Z 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-06-01T21:26:27.5417611Z 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-06-01T21:26:27.5423580Z 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-06-01T21:26:27.5429653Z 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-06-01T21:26:27.5435787Z 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-06-01T21:26:27.5441998Z 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-06-01T21:26:27.5448270Z 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-06-01T21:26:27.5454419Z 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-06-01T21:26:27.5460638Z 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-06-01T21:26:27.5467277Z 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-06-01T21:26:27.5473562Z 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-06-01T21:26:27.5479935Z 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-06-01T21:26:27.5486216Z 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-06-01T21:26:27.5492298Z 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-06-01T21:26:27.5536078Z 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-06-01T21:26:27.5542715Z 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-06-01T21:26:27.5549121Z 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-06-01T21:26:27.5555586Z 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-06-01T21:26:27.5562278Z 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-06-01T21:26:27.5568990Z 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-06-01T21:26:27.5575540Z 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-06-01T21:26:27.5582242Z 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-06-01T21:26:27.5588683Z 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-06-01T21:26:27.5595893Z 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-06-01T21:26:27.5601809Z 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-06-01T21:26:27.5608089Z 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-06-01T21:26:27.5614523Z 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-06-01T21:26:27.5621089Z 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-06-01T21:26:27.5627245Z 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-06-01T21:26:27.5633446Z 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-06-01T21:26:27.5639930Z 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-06-01T21:26:27.5646456Z 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-06-01T21:26:27.5652571Z 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-06-01T21:26:27.5658667Z 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-06-01T21:26:27.5664870Z 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-06-01T21:26:27.5672283Z 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-06-01T21:26:27.5678810Z 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-06-01T21:26:27.5684914Z 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-06-01T21:26:27.5691006Z 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-06-01T21:26:27.5697253Z 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-06-01T21:26:27.5703251Z 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-06-01T21:26:27.5709272Z 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-06-01T21:26:27.5715619Z 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-06-01T21:26:27.5721603Z 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-06-01T21:26:27.5728011Z 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-06-01T21:26:27.5734940Z 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-06-01T21:26:27.5741257Z 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-06-01T21:26:27.5747243Z 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-06-01T21:26:27.5753429Z 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-06-01T21:26:27.5759530Z 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-06-01T21:26:27.5765123Z 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-06-01T21:26:27.5771289Z 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-06-01T21:26:27.5777919Z 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-06-01T21:26:27.5784014Z 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-06-01T21:26:27.5790091Z 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-06-01T21:26:27.5796438Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnpack_available.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.5802577Z 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-06-01T21:26:27.5808265Z 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-06-01T21:26:27.5814037Z 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-06-01T21:26:27.5820353Z 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-06-01T21:26:27.5827120Z 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-06-01T21:26:27.5832916Z 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-06-01T21:26:27.5839173Z 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-06-01T21:26:27.5845174Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnz.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.5850591Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnz_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.5856486Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnz_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.5862064Z 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-06-01T21:26:27.5868215Z 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-06-01T21:26:27.5874604Z 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-06-01T21:26:27.5880460Z 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-06-01T21:26:27.5886433Z 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-06-01T21:26:27.5893540Z 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-06-01T21:26:27.5901716Z 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-06-01T21:26:27.5907785Z 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-06-01T21:26:27.5914011Z 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-06-01T21:26:27.5920279Z 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-06-01T21:26:27.5926291Z 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-06-01T21:26:27.5932960Z 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-06-01T21:26:27.5939282Z 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-06-01T21:26:27.5945240Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_circular.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.5952090Z 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-06-01T21:26:27.5958137Z 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-06-01T21:26:27.5963911Z 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-06-01T21:26:27.5970641Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_enum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.5976612Z 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-06-01T21:26:27.5982449Z 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-06-01T21:26:27.5988377Z 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-06-01T21:26:27.5994591Z 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-06-01T21:26:27.6001056Z 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-06-01T21:26:27.6006903Z 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-06-01T21:26:27.6013635Z 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-06-01T21:26:27.6019149Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.6025188Z 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-06-01T21:26:27.6030934Z 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-06-01T21:26:27.6036833Z 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-06-01T21:26:27.6042687Z 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-06-01T21:26:27.6048536Z 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-06-01T21:26:27.6054699Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.6060911Z 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-06-01T21:26:27.6066885Z 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-06-01T21:26:27.6073005Z 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-06-01T21:26:27.6078972Z 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-06-01T21:26:27.6084873Z 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-06-01T21:26:27.6091011Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pin_memory.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.6097484Z 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-06-01T21:26:27.6108816Z 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-06-01T21:26:27.6114870Z 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-06-01T21:26:27.6120759Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_prelu_kernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.6126746Z 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-06-01T21:26:27.6132976Z 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-06-01T21:26:27.6154882Z 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-06-01T21:26:27.6160843Z 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-06-01T21:26:27.6166983Z 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-06-01T21:26:27.6173351Z 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-06-01T21:26:27.6179531Z 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-06-01T21:26:27.6185535Z 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-06-01T21:26:27.6191344Z 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-06-01T21:26:27.6197084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_print.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.6203224Z 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-06-01T21:26:27.6208968Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_print_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.6214588Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_print_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.6220741Z 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-06-01T21:26:27.6226693Z 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-06-01T21:26:27.6232434Z 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-06-01T21:26:27.6238146Z 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-06-01T21:26:27.6244451Z 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-06-01T21:26:27.6250737Z 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-06-01T21:26:27.6256596Z 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-06-01T21:26:27.6262432Z 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-06-01T21:26:27.6268331Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_alias.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.6274026Z 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-06-01T21:26:27.6280196Z 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-06-01T21:26:27.6286273Z 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-06-01T21:26:27.6292066Z 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-06-01T21:26:27.6297991Z 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-06-01T21:26:27.6303972Z 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-06-01T21:26:27.6310097Z 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-06-01T21:26:27.6316026Z 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-06-01T21:26:27.6321819Z 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-06-01T21:26:27.6327388Z 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-06-01T21:26:27.6333234Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.6339367Z 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-06-01T21:26:27.6345173Z 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-06-01T21:26:27.6350776Z 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-06-01T21:26:27.6357011Z 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-06-01T21:26:27.6363378Z 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-06-01T21:26:27.6369421Z 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-06-01T21:26:27.6375296Z 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-06-01T21:26:27.6381390Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_resize_output.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.6387920Z 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-06-01T21:26:27.6393859Z 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-06-01T21:26:27.6400097Z 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-06-01T21:26:27.6406212Z 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-06-01T21:26:27.6412283Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_rowwise_prune.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.6418619Z 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-06-01T21:26:27.6424496Z 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-06-01T21:26:27.6430454Z 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-06-01T21:26:27.6436529Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_safe_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.6442928Z 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-06-01T21:26:27.6448764Z 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-06-01T21:26:27.6489844Z 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-06-01T21:26:27.6495537Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sample_dirichlet.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.6501566Z 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-06-01T21:26:27.6507505Z 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-06-01T21:26:27.6513817Z 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-06-01T21:26:27.6520250Z 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-06-01T21:26:27.6526216Z 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-06-01T21:26:27.6532204Z 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-06-01T21:26:27.6538920Z 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-06-01T21:26:27.6544628Z 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-06-01T21:26:27.6550551Z 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-06-01T21:26:27.6556776Z 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-06-01T21:26:27.6562888Z 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-06-01T21:26:27.6569045Z 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-06-01T21:26:27.6575310Z 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-06-01T21:26:27.6581327Z 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-06-01T21:26:27.6588107Z 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-06-01T21:26:27.6594740Z 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-06-01T21:26:27.6600996Z 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-06-01T21:26:27.6607132Z 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-06-01T21:26:27.6613723Z 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-06-01T21:26:27.6620787Z 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-06-01T21:26:27.6626907Z 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-06-01T21:26:27.6633303Z 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-06-01T21:26:27.6639329Z 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-06-01T21:26:27.6645277Z 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-06-01T21:26:27.6651678Z 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-06-01T21:26:27.6657855Z 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-06-01T21:26:27.6664141Z 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-06-01T21:26:27.6670206Z 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-06-01T21:26:27.6676312Z 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-06-01T21:26:27.6682933Z 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-06-01T21:26:27.6689443Z 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-06-01T21:26:27.6695301Z 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-06-01T21:26:27.6701337Z 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-06-01T21:26:27.6707288Z 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-06-01T21:26:27.6713458Z 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-06-01T21:26:27.6719497Z 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-06-01T21:26:27.6725611Z 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-06-01T21:26:27.6731632Z 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-06-01T21:26:27.6737799Z 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-06-01T21:26:27.6744280Z 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-06-01T21:26:27.6750918Z 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-06-01T21:26:27.6757204Z 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-06-01T21:26:27.6778403Z 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-06-01T21:26:27.6784631Z 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-06-01T21:26:27.6790787Z 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-06-01T21:26:27.6797242Z 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-06-01T21:26:27.6802948Z 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-06-01T21:26:27.6809155Z 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-06-01T21:26:27.6815523Z 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-06-01T21:26:27.6822219Z 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-06-01T21:26:27.6828500Z 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-06-01T21:26:27.6835029Z 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-06-01T21:26:27.6841379Z 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-06-01T21:26:27.6847933Z 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-06-01T21:26:27.6854066Z 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-06-01T21:26:27.6860878Z 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-06-01T21:26:27.6866775Z 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-06-01T21:26:27.6873132Z 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-06-01T21:26:27.6879452Z 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-06-01T21:26:27.6885572Z 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-06-01T21:26:27.6891551Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.6897781Z 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-06-01T21:26:27.6903911Z 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-06-01T21:26:27.6909889Z 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-06-01T21:26:27.6916836Z 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-06-01T21:26:27.6922954Z 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-06-01T21:26:27.6929335Z 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-06-01T21:26:27.6935411Z 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-06-01T21:26:27.6941900Z 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-06-01T21:26:27.6948207Z 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-06-01T21:26:27.6954768Z 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-06-01T21:26:27.6960999Z 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-06-01T21:26:27.6967034Z 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-06-01T21:26:27.6972794Z 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-06-01T21:26:27.6978739Z 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-06-01T21:26:27.6985441Z 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-06-01T21:26:27.6991949Z 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-06-01T21:26:27.6998114Z 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-06-01T21:26:27.7004425Z 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-06-01T21:26:27.7010632Z 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-06-01T21:26:27.7016626Z 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-06-01T21:26:27.7022344Z 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-06-01T21:26:27.7028674Z 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-06-01T21:26:27.7034817Z 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-06-01T21:26:27.7040702Z 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-06-01T21:26:27.7046714Z 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-06-01T21:26:27.7052548Z 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-06-01T21:26:27.7058946Z 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-06-01T21:26:27.7065235Z 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-06-01T21:26:27.7071468Z 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-06-01T21:26:27.7077470Z 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-06-01T21:26:27.7083919Z 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-06-01T21:26:27.7089890Z 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-06-01T21:26:27.7096019Z 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-06-01T21:26:27.7102798Z 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-06-01T21:26:27.7109467Z 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-06-01T21:26:27.7116082Z 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-06-01T21:26:27.7122664Z 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-06-01T21:26:27.7128919Z 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-06-01T21:26:27.7135662Z 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-06-01T21:26:27.7141829Z 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-06-01T21:26:27.7147990Z 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-06-01T21:26:27.7153952Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.7159712Z 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-06-01T21:26:27.7166127Z 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-06-01T21:26:27.7171822Z 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-06-01T21:26:27.7178212Z 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-06-01T21:26:27.7184310Z 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-06-01T21:26:27.7190356Z 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-06-01T21:26:27.7196510Z 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-06-01T21:26:27.7202533Z 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-06-01T21:26:27.7208728Z 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-06-01T21:26:27.7214527Z 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-06-01T21:26:27.7220336Z 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-06-01T21:26:27.7226535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.7232528Z 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-06-01T21:26:27.7238681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.7244124Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.7249990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_addmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.7256168Z 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-06-01T21:26:27.7262081Z 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-06-01T21:26:27.7268033Z 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-06-01T21:26:27.7274108Z 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-06-01T21:26:27.7280120Z 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-06-01T21:26:27.7286474Z 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-06-01T21:26:27.7292790Z 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-06-01T21:26:27.7298961Z 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-06-01T21:26:27.7305071Z 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-06-01T21:26:27.7311134Z 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-06-01T21:26:27.7316613Z 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-06-01T21:26:27.7322560Z 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-06-01T21:26:27.7328859Z 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-06-01T21:26:27.7334594Z 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-06-01T21:26:27.7340757Z 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-06-01T21:26:27.7346897Z 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-06-01T21:26:27.7353577Z 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-06-01T21:26:27.7359225Z 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-06-01T21:26:27.7364951Z 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-06-01T21:26:27.7371457Z 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-06-01T21:26:27.7379790Z 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-06-01T21:26:27.7388240Z 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-06-01T21:26:27.7393870Z 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-06-01T21:26:27.7400340Z 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-06-01T21:26:27.7406693Z 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-06-01T21:26:27.7413606Z 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-06-01T21:26:27.7419659Z 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-06-01T21:26:27.7425654Z 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-06-01T21:26:27.7432249Z 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-06-01T21:26:27.7438556Z 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-06-01T21:26:27.7445124Z 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-06-01T21:26:27.7451522Z 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-06-01T21:26:27.7458052Z 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-06-01T21:26:27.7464770Z 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-06-01T21:26:27.7470688Z 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-06-01T21:26:27.7477095Z 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-06-01T21:26:27.7483575Z 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-06-01T21:26:27.7490372Z 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-06-01T21:26:27.7496431Z 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-06-01T21:26:27.7502671Z 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-06-01T21:26:27.7509023Z 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-06-01T21:26:27.7515745Z 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-06-01T21:26:27.7522430Z 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-06-01T21:26:27.7528228Z 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-06-01T21:26:27.7534989Z 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-06-01T21:26:27.7541282Z 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-06-01T21:26:27.7547516Z 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-06-01T21:26:27.7553892Z 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-06-01T21:26:27.7560091Z 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-06-01T21:26:27.7594573Z 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-06-01T21:26:27.7601162Z 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-06-01T21:26:27.7607699Z 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-06-01T21:26:27.7614135Z 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-06-01T21:26:27.7619895Z 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-06-01T21:26:27.7626611Z 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-06-01T21:26:27.7632598Z 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-06-01T21:26:27.7638414Z 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-06-01T21:26:27.7644655Z 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-06-01T21:26:27.7650863Z 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-06-01T21:26:27.7657309Z 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-06-01T21:26:27.7663530Z 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-06-01T21:26:27.7669391Z 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-06-01T21:26:27.7675408Z 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-06-01T21:26:27.7681474Z 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-06-01T21:26:27.7687448Z 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-06-01T21:26:27.7693556Z 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-06-01T21:26:27.7699604Z 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-06-01T21:26:27.7705913Z 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-06-01T21:26:27.7711744Z 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-06-01T21:26:27.7717469Z 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-06-01T21:26:27.7723326Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.7729722Z 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-06-01T21:26:27.7735481Z 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-06-01T21:26:27.7741335Z 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-06-01T21:26:27.7747493Z 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-06-01T21:26:27.7753902Z 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-06-01T21:26:27.7760099Z 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-06-01T21:26:27.7766183Z 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-06-01T21:26:27.7772053Z 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-06-01T21:26:27.7778330Z 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-06-01T21:26:27.7784456Z 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-06-01T21:26:27.7790494Z 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-06-01T21:26:27.7797055Z 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-06-01T21:26:27.7803328Z 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-06-01T21:26:27.7809371Z 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-06-01T21:26:27.7815858Z 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-06-01T21:26:27.7821925Z 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-06-01T21:26:27.7828330Z 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-06-01T21:26:27.7834533Z 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-06-01T21:26:27.7840960Z 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-06-01T21:26:27.7847042Z 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-06-01T21:26:27.7853052Z 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-06-01T21:26:27.7859331Z 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-06-01T21:26:27.7865576Z 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-06-01T21:26:27.7871938Z 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-06-01T21:26:27.7878962Z 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-06-01T21:26:27.7884776Z 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-06-01T21:26:27.7891058Z 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-06-01T21:26:27.7897715Z 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-06-01T21:26:27.7903979Z 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-06-01T21:26:27.7910188Z 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-06-01T21:26:27.7916632Z 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-06-01T21:26:27.7922578Z 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-06-01T21:26:27.7928664Z 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-06-01T21:26:27.7934593Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.7940902Z 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-06-01T21:26:27.7947717Z 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-06-01T21:26:27.7954165Z 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-06-01T21:26:27.7960415Z 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-06-01T21:26:27.7967619Z 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-06-01T21:26:27.7975662Z 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-06-01T21:26:27.7982859Z 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-06-01T21:26:27.7990984Z 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-06-01T21:26:27.7998132Z 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-06-01T21:26:27.8005855Z 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-06-01T21:26:27.8014313Z 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-06-01T21:26:27.8021992Z 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-06-01T21:26:27.8029084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.8036866Z 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-06-01T21:26:27.8044941Z 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-06-01T21:26:27.8051646Z 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-06-01T21:26:27.8058931Z 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-06-01T21:26:27.8065210Z 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-06-01T21:26:27.8071431Z 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-06-01T21:26:27.8077519Z 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-06-01T21:26:27.8083544Z 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-06-01T21:26:27.8089043Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spdiags.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.8094847Z 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-06-01T21:26:27.8100606Z 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-06-01T21:26:27.8106288Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spdiags_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.8112121Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spdiags_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.8117752Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spsolve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.8123161Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spsolve_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.8128808Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spsolve_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.8134385Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_stack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.8140343Z 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-06-01T21:26:27.8146131Z 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-06-01T21:26:27.8151858Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_stack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.8157525Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_stack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.8163399Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_standard_gamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:27.8169260Z 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-06-01T21:26:27.8174989Z 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-06-01T21:26:27.8180723Z 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-06-01T21:26:27.8186469Z 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-06-01T21:26:27.8192687Z 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-06-01T21:26:27.8198584Z 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-06-01T21:26:27.8204275Z 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-06-01T21:26:27.8210654Z 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-06-01T21:26:27.8217167Z 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-06-01T21:26:27.8223710Z 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-06-01T21:26:27.8229838Z 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-06-01T21:26:27.8236184Z 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-06-01T21:26:27.8242397Z 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-06-01T21:26:27.8248480Z 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-06-01T21:26:27.8254304Z 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-06-01T21:26:27.8260353Z 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-06-01T21:26:27.8267047Z 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-06-01T21:26:27.8273191Z 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-06-01T21:26:27.8279504Z 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-06-01T21:26:27.8285524Z 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-06-01T21:26:27.8291385Z 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-06-01T21:26:27.8297946Z 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-06-01T21:26:27.8304086Z 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-06-01T21:26:27.8310997Z 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-06-01T21:26:27.8324505Z 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-06-01T21:26:27.8330599Z 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-06-01T21:26:27.8336787Z 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-06-01T21:26:27.8343027Z 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-06-01T21:26:27.8348648Z 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-06-01T21:26:27.8354582Z 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-06-01T21:26:27.8360903Z 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-06-01T21:26:27.8366922Z 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-06-01T21:26:27.8372847Z 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-06-01T21:26:27.8379265Z 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-06-01T21:26:27.8385242Z 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-06-01T21:26:27.8391291Z 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-06-01T21:26:27.8397032Z 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-06-01T21:26:27.8402895Z 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-06-01T21:26:27.8408670Z 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-06-01T21:26:28.0105319Z 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-06-01T21:26:28.0112525Z 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-06-01T21:26:28.0119065Z 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-06-01T21:26:28.0125478Z 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-06-01T21:26:28.0135049Z 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-06-01T21:26:28.0142628Z 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-06-01T21:26:28.0149083Z 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-06-01T21:26:28.0155063Z 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-06-01T21:26:28.0161162Z 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-06-01T21:26:28.0168243Z 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-06-01T21:26:28.0174767Z 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-06-01T21:26:28.0181261Z 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-06-01T21:26:28.0187163Z 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-06-01T21:26:28.0211578Z 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-06-01T21:26:28.0267397Z 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-06-01T21:26:28.0274959Z 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-06-01T21:26:28.0281305Z 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-06-01T21:26:28.0287390Z 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-06-01T21:26:28.0293516Z 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-06-01T21:26:28.0300280Z 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-06-01T21:26:28.0306161Z 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-06-01T21:26:28.0312212Z 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-06-01T21:26:28.0318145Z 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-06-01T21:26:28.0324489Z 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-06-01T21:26:28.0330301Z 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-06-01T21:26:28.0336281Z 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-06-01T21:26:28.0342449Z 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-06-01T21:26:28.0348859Z 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-06-01T21:26:28.0354968Z 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-06-01T21:26:28.0361144Z 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-06-01T21:26:28.0367168Z 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-06-01T21:26:28.0374543Z 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-06-01T21:26:28.0384548Z 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-06-01T21:26:28.0403285Z 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-06-01T21:26:28.0409537Z 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-06-01T21:26:28.0416441Z 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-06-01T21:26:28.0422863Z 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-06-01T21:26:28.0428878Z 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-06-01T21:26:28.0435194Z 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-06-01T21:26:28.0441928Z 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-06-01T21:26:28.0448859Z 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-06-01T21:26:28.0454988Z 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-06-01T21:26:28.0461471Z 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-06-01T21:26:28.0467746Z 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-06-01T21:26:28.0474537Z 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-06-01T21:26:28.0480632Z 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-06-01T21:26:28.0486774Z 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-06-01T21:26:28.0493032Z 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-06-01T21:26:28.0499112Z 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-06-01T21:26:28.0505363Z 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-06-01T21:26:28.0511506Z 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-06-01T21:26:28.0517739Z 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-06-01T21:26:28.0524451Z 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-06-01T21:26:28.0530722Z 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-06-01T21:26:28.0537072Z 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-06-01T21:26:28.0543858Z 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-06-01T21:26:28.0550056Z 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-06-01T21:26:28.0556390Z 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-06-01T21:26:28.0562752Z 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-06-01T21:26:28.0568920Z 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-06-01T21:26:28.0575087Z 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-06-01T21:26:28.0581639Z 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-06-01T21:26:28.0587850Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:28.0593879Z 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-06-01T21:26:28.0599994Z 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-06-01T21:26:28.0606049Z 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-06-01T21:26:28.0611965Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_cpu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:28.0618152Z 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-06-01T21:26:28.0624672Z 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-06-01T21:26:28.0630767Z 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-06-01T21:26:28.0636839Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_dense.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:28.0643161Z 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-06-01T21:26:28.0649240Z 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-06-01T21:26:28.0655464Z 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-06-01T21:26:28.0661552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:28.0667246Z 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-06-01T21:26:28.0673872Z 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-06-01T21:26:28.0679678Z 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-06-01T21:26:28.0685855Z 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-06-01T21:26:28.0691799Z 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-06-01T21:26:28.0697909Z 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-06-01T21:26:28.0703722Z 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-06-01T21:26:28.0709914Z 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-06-01T21:26:28.0716138Z 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-06-01T21:26:28.0722269Z 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-06-01T21:26:28.0728131Z 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-06-01T21:26:28.0734081Z 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-06-01T21:26:28.0740323Z 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-06-01T21:26:28.0746237Z 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-06-01T21:26:28.0752411Z 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-06-01T21:26:28.0758745Z 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-06-01T21:26:28.0764541Z 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-06-01T21:26:28.0770833Z 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-06-01T21:26:28.0776579Z 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-06-01T21:26:28.0782599Z 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-06-01T21:26:28.0788535Z 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-06-01T21:26:28.0800742Z 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-06-01T21:26:28.0806969Z 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-06-01T21:26:28.0813537Z 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-06-01T21:26:28.0819328Z 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-06-01T21:26:28.0824897Z 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-06-01T21:26:28.0830779Z 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-06-01T21:26:28.0836628Z 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-06-01T21:26:28.0842593Z 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-06-01T21:26:28.0848472Z 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-06-01T21:26:28.0854418Z 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-06-01T21:26:28.0860536Z 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-06-01T21:26:28.0866211Z 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-06-01T21:26:28.0872162Z 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-06-01T21:26:28.0878231Z 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-06-01T21:26:28.0902813Z 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-06-01T21:26:28.0908844Z 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-06-01T21:26:28.0915196Z 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-06-01T21:26:28.0921753Z 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-06-01T21:26:28.0930083Z 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-06-01T21:26:28.0938478Z 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-06-01T21:26:28.0944974Z 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-06-01T21:26:28.0951453Z 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-06-01T21:26:28.0957882Z 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-06-01T21:26:28.0964286Z 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-06-01T21:26:28.0971026Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_trilinear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:28.0977901Z 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-06-01T21:26:28.0984230Z 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-06-01T21:26:28.0990433Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_trilinear_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:28.0996207Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_trilinear_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:28.1002146Z 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-06-01T21:26:28.1008225Z 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-06-01T21:26:28.1014212Z 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-06-01T21:26:28.1020343Z 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-06-01T21:26:28.1026441Z 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-06-01T21:26:28.1032575Z 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-06-01T21:26:28.1038841Z 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-06-01T21:26:28.1044935Z 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-06-01T21:26:28.1050965Z 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-06-01T21:26:28.1057269Z 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-06-01T21:26:28.1063628Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:28.1069181Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:28.1075000Z 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-06-01T21:26:28.1081011Z 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-06-01T21:26:28.1087129Z 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-06-01T21:26:28.1092884Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:28.1098985Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:28.1105048Z 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-06-01T21:26:28.1110853Z 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-06-01T21:26:28.1119716Z 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-06-01T21:26:28.1126286Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:28.1133198Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:28.1139927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unpack_dual.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:28.1146513Z 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-06-01T21:26:28.1152330Z 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-06-01T21:26:28.1158040Z 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-06-01T21:26:28.1163891Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_index.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:28.1170047Z 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-06-01T21:26:28.1175928Z 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-06-01T21:26:28.1181530Z 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-06-01T21:26:28.1187301Z 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-06-01T21:26:28.1193390Z 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-06-01T21:26:28.1199252Z 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-06-01T21:26:28.1205068Z 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-06-01T21:26:28.1210824Z 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-06-01T21:26:28.1217101Z 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-06-01T21:26:28.1222828Z 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-06-01T21:26:28.1228578Z 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-06-01T21:26:28.1234402Z 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-06-01T21:26:28.1240500Z 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-06-01T21:26:28.1246909Z 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-06-01T21:26:28.1252855Z 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-06-01T21:26:28.1258672Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_view.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:28.1264840Z 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-06-01T21:26:28.1270642Z 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-06-01T21:26:28.1276548Z 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-06-01T21:26:28.1282962Z 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-06-01T21:26:28.1289317Z 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-06-01T21:26:28.1313560Z 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-06-01T21:26:28.1319445Z 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-06-01T21:26:28.1325266Z 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-06-01T21:26:28.1331311Z 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-06-01T21:26:28.1337650Z 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-06-01T21:26:28.1343634Z 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-06-01T21:26:28.1349735Z 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-06-01T21:26:28.1356416Z 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-06-01T21:26:28.1362458Z 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-06-01T21:26:28.1368682Z 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-06-01T21:26:28.1374727Z 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-06-01T21:26:28.1380686Z 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-06-01T21:26:28.1386615Z 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-06-01T21:26:28.1392465Z 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-06-01T21:26:28.1398356Z 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-06-01T21:26:28.1404427Z 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-06-01T21:26:28.1410373Z 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-06-01T21:26:28.1416936Z 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-06-01T21:26:28.1431743Z 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-06-01T21:26:28.1437794Z 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-06-01T21:26:28.1444081Z 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-06-01T21:26:28.1450298Z 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-06-01T21:26:28.1456753Z 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-06-01T21:26:28.1463229Z 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-06-01T21:26:28.1469881Z 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-06-01T21:26:28.1476518Z 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-06-01T21:26:28.1482834Z 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-06-01T21:26:28.1489185Z 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-06-01T21:26:28.1495357Z 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-06-01T21:26:28.1501998Z 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-06-01T21:26:28.1508210Z 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-06-01T21:26:28.1514916Z 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-06-01T21:26:28.1521253Z 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-06-01T21:26:28.1527672Z 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-06-01T21:26:28.1534407Z 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-06-01T21:26:28.1540679Z 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-06-01T21:26:28.1547143Z 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-06-01T21:26:28.1553226Z 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-06-01T21:26:28.1559477Z 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-06-01T21:26:28.1565651Z 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-06-01T21:26:28.1571851Z 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-06-01T21:26:28.1579027Z 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-06-01T21:26:28.1585445Z 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-06-01T21:26:28.1591533Z 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-06-01T21:26:28.1597758Z 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-06-01T21:26:28.1604005Z 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-06-01T21:26:28.1610676Z 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-06-01T21:26:28.1616984Z 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-06-01T21:26:28.1623534Z 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-06-01T21:26:28.1630123Z 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-06-01T21:26:28.1636514Z 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-06-01T21:26:28.1643114Z 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-06-01T21:26:28.1650382Z 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-06-01T21:26:28.1656796Z 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-06-01T21:26:28.1663253Z 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-06-01T21:26:28.1669182Z 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-06-01T21:26:28.1675360Z 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-06-01T21:26:28.1681689Z 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-06-01T21:26:28.1688278Z 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-06-01T21:26:28.1694540Z 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-06-01T21:26:28.1700622Z 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-06-01T21:26:28.1706565Z 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-06-01T21:26:28.1712871Z 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-06-01T21:26:28.1719164Z 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-06-01T21:26:28.1725123Z 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-06-01T21:26:28.1731104Z 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-06-01T21:26:28.1737287Z 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-06-01T21:26:28.1743485Z 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-06-01T21:26:28.1750190Z 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-06-01T21:26:28.1756232Z 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-06-01T21:26:28.1762478Z 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-06-01T21:26:28.1768638Z 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-06-01T21:26:28.1774790Z 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-06-01T21:26:28.1781328Z 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-06-01T21:26:28.1787465Z 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-06-01T21:26:28.1793931Z 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-06-01T21:26:28.1800268Z 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-06-01T21:26:28.1806541Z 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-06-01T21:26:28.1812629Z 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-06-01T21:26:28.1818864Z 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-06-01T21:26:28.1825117Z 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-06-01T21:26:28.1831272Z 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-06-01T21:26:28.1837195Z 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-06-01T21:26:28.1859055Z 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-06-01T21:26:28.1864846Z 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-06-01T21:26:28.1870742Z 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-06-01T21:26:28.1876707Z 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-06-01T21:26:28.1882901Z 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-06-01T21:26:28.1889232Z 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-06-01T21:26:28.1895650Z 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-06-01T21:26:28.1901694Z 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-06-01T21:26:28.1907758Z 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-06-01T21:26:28.1913989Z 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-06-01T21:26:28.1920013Z 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-06-01T21:26:28.1933714Z 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-06-01T21:26:28.1935656Z 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-06-01T21:26:28.1938621Z 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-06-01T21:26:28.1944824Z 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-06-01T21:26:28.1950943Z 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-06-01T21:26:28.1957134Z 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-06-01T21:26:28.1963589Z 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-06-01T21:26:28.1970079Z 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-06-01T21:26:28.1976115Z 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-06-01T21:26:28.1982448Z 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-06-01T21:26:28.1988598Z 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-06-01T21:26:28.1994916Z 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-06-01T21:26:28.2001104Z 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-06-01T21:26:28.2007248Z 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-06-01T21:26:28.2013170Z 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-06-01T21:26:28.2019820Z 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-06-01T21:26:28.2026066Z 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-06-01T21:26:28.2032184Z 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-06-01T21:26:28.2038873Z 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-06-01T21:26:28.2093502Z 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-06-01T21:26:28.2099641Z 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-06-01T21:26:28.2105838Z 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-06-01T21:26:28.2112302Z 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-06-01T21:26:28.2118658Z 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-06-01T21:26:28.2124725Z 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-06-01T21:26:28.2130766Z 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-06-01T21:26:28.2136665Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:28.2142062Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:28.2149049Z 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-06-01T21:26:28.2155094Z 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-06-01T21:26:28.2161119Z 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-06-01T21:26:28.2167040Z 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-06-01T21:26:28.2173045Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:28.2178643Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:28.2184674Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_version.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:28.2190371Z 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-06-01T21:26:28.2195951Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_version_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:28.2202037Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_version_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:28.2207388Z 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-06-01T21:26:28.2213147Z 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-06-01T21:26:28.2219119Z 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-06-01T21:26:28.2225736Z 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-06-01T21:26:28.2232128Z 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-06-01T21:26:28.2238007Z 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-06-01T21:26:28.2243872Z 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-06-01T21:26:28.2250261Z 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-06-01T21:26:28.2255807Z 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-06-01T21:26:28.2261824Z 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-06-01T21:26:28.2267914Z 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-06-01T21:26:28.2273941Z 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-06-01T21:26:28.2280312Z 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-06-01T21:26:28.2288212Z 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-06-01T21:26:28.2294101Z 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-06-01T21:26:28.2300254Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-06-01T21:26:28.2307182Z 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-06-01T21:26:28.2313563Z 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-06-01T21:26:28.2319995Z 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-06-01T21:26:28.2326022Z 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-06-01T21:26:28.2332273Z 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-06-01T21:26:28.2338264Z 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-06-01T21:26:28.2344597Z 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-06-01T21:26:28.2351078Z 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-06-01T21:26:28.2357286Z 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-06-01T21:26:28.2363426Z 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-06-01T21:26:28.2369465Z 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-06-01T21:26:28.2375777Z 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-06-01T21:26:28.2382197Z 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-06-01T21:26:28.2388283Z 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-06-01T21:26:28.2394416Z 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-06-01T21:26:28.2400693Z 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-06-01T21:26:28.2407565Z 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-06-01T21:26:28.2414021Z 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-06-01T21:26:28.2419980Z 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-06-01T21:26:28.2426273Z 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-06-01T21:26:28.2432573Z 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-06-01T21:26:28.2438795Z 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-06-01T21:26:28.2444737Z 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-06-01T21:26:28.2451156Z 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-06-01T21:26:28.2457517Z 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-06-01T21:26:28.2463483Z 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-06-01T21:26:28.2469452Z 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-06-01T21:26:28.2484178Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\PadNd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2489939Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Parallel-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2496231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Parallel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2501639Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ParallelFuture.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2506943Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ParallelNative.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2512277Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ParallelOpenMP.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2517902Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\PTThreadPool.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2523665Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\PythonTorchFunctionTLS.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2530156Z creating build\bdist.win-amd64\wheel\torch\include\ATen\quantized 2025-06-01T21:26:28.2533684Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\quantized\QTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\quantized 2025-06-01T21:26:28.2539987Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\quantized\Quantizer.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\quantized 2025-06-01T21:26:28.2546038Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\record_function.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2552235Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\RedispatchFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2578711Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\RegistrationDeclarations.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2592888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ROCmFABackend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2598492Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SavedTensorHooks.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2603900Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Scalar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2609025Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ScalarOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2614548Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ScalarType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2619937Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SDPBackend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2625423Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SequenceNumber.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2635493Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SmallVector.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2640924Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SparseCsrTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2646407Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SparseCsrTensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2652887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SparseTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2658446Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Storage.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2663399Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\StorageUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2668855Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2674042Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorAccessor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2679535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorGeometry.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2684989Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorIndexing.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2690960Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorIterator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2697804Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorIteratorInternal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2703405Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorMeta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2708887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorNames.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2714402Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorOperators.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2720226Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorOptions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2725748Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorSubclassLikeUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2731169Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2737108Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ThreadLocalPythonObjects.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2742532Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ThreadLocalState.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2753000Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TracerMode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2758997Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TypeDefault.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2764235Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2769631Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Version.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2775015Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\VmapGeneratedPlumbing.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2798432Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\WrapDimUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2804235Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\WrapDimUtilsMulti.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-06-01T21:26:28.2810856Z creating build\bdist.win-amd64\wheel\torch\include\ATen\xpu 2025-06-01T21:26:28.2814492Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\CachingHostAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-06-01T21:26:28.2820871Z creating build\bdist.win-amd64\wheel\torch\include\ATen\xpu\detail 2025-06-01T21:26:28.2824201Z 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-06-01T21:26:28.2829750Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\PinnedMemoryAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-06-01T21:26:28.2834899Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\XPUContext.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-06-01T21:26:28.2845069Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\XPUDevice.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-06-01T21:26:28.2850587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\XPUEvent.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-06-01T21:26:28.2856376Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\XPUGeneratorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-06-01T21:26:28.2869941Z creating build\bdist.win-amd64\wheel\torch\include\c10 2025-06-01T21:26:28.2873785Z creating build\bdist.win-amd64\wheel\torch\include\c10\core 2025-06-01T21:26:28.2877215Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\alignment.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.2882646Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Allocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.2888085Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\AutogradState.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.2893400Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Backend.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.2904197Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\CachingDeviceAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.2909784Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\CompileTimeFunctionPointer.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.2915221Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\ConstantSymNodeImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.2920876Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Contiguity.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.2926323Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\CopyBytes.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.2931959Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\CPUAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.2937547Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DefaultDtype.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.2942909Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DefaultTensorOptions.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.2948304Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Device.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.2953865Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DeviceArray.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.2959423Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DeviceGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.2964935Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DeviceType.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.2970689Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DispatchKey.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.2977279Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DispatchKeySet.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.2983774Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DynamicCast.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.2989299Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Event.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.2999747Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\GeneratorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.3005500Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\GradMode.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.3011648Z creating build\bdist.win-amd64\wheel\torch\include\c10\core\impl 2025-06-01T21:26:28.3015173Z 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-06-01T21:26:28.3020804Z 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-06-01T21:26:28.3026288Z 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-06-01T21:26:28.3032116Z 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-06-01T21:26:28.3042471Z 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-06-01T21:26:28.3047889Z 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-06-01T21:26:28.3053487Z 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-06-01T21:26:28.3059145Z 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-06-01T21:26:28.3064657Z 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-06-01T21:26:28.3070255Z 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-06-01T21:26:28.3075786Z 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-06-01T21:26:28.3081432Z 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-06-01T21:26:28.3086978Z 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-06-01T21:26:28.3092544Z 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-06-01T21:26:28.3098105Z 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-06-01T21:26:28.3103775Z 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-06-01T21:26:28.3109306Z 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-06-01T21:26:28.3114835Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\InferenceMode.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.3120387Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Layout.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.3126081Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\MemoryFormat.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.3131373Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\OptionalRef.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.3136517Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\PyHandleCache.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.3142334Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\QEngine.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.3147681Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\QScheme.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.3152989Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\RefcountedDeleter.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.3158379Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SafePyObject.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.3163714Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Scalar.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.3174270Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\ScalarType.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.3181155Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\ScalarTypeToTypeMeta.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.3186899Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Storage.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.3192420Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\StorageImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.3198606Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Stream.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.3204208Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\StreamGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.3209991Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymbolicShapeMeta.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.3223521Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymBool.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.3296009Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymFloat.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.3301629Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymInt.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.3307414Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymIntArrayRef.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.3314327Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymNodeImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.3324542Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\TensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.3332285Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\TensorOptions.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.3338413Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\thread_pool.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.3344293Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\UndefinedTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.3349814Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\WrapDimMinimal.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-06-01T21:26:28.3356205Z creating build\bdist.win-amd64\wheel\torch\include\c10\cuda 2025-06-01T21:26:28.3359759Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAAlgorithm.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-06-01T21:26:28.3365298Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAAllocatorConfig.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-06-01T21:26:28.3371048Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDACachingAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-06-01T21:26:28.3377289Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDADeviceAssertion.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-06-01T21:26:28.3387948Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDADeviceAssertionHost.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-06-01T21:26:28.3393534Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAException.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-06-01T21:26:28.3399090Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-06-01T21:26:28.3404577Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAGraphsC10Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-06-01T21:26:28.3410018Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-06-01T21:26:28.3415518Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAMacros.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-06-01T21:26:28.3421432Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAMathCompat.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-06-01T21:26:28.3427185Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAMiscFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-06-01T21:26:28.3432458Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAStream.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-06-01T21:26:28.3437943Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\driver_api.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-06-01T21:26:28.3444172Z creating build\bdist.win-amd64\wheel\torch\include\c10\cuda\impl 2025-06-01T21:26:28.3447841Z 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-06-01T21:26:28.3453414Z 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-06-01T21:26:28.3458708Z 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-06-01T21:26:28.3464379Z creating build\bdist.win-amd64\wheel\torch\include\c10\macros 2025-06-01T21:26:28.3467890Z copying build\lib.win-amd64-cpython-39\torch\include\c10\macros\cmake_macros.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\macros 2025-06-01T21:26:28.3473330Z copying build\lib.win-amd64-cpython-39\torch\include\c10\macros\Export.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\macros 2025-06-01T21:26:28.3478787Z copying build\lib.win-amd64-cpython-39\torch\include\c10\macros\Macros.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\macros 2025-06-01T21:26:28.3485033Z creating build\bdist.win-amd64\wheel\torch\include\c10\metal 2025-06-01T21:26:28.3488381Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\atomic.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-06-01T21:26:28.3494298Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\common.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-06-01T21:26:28.3499670Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\indexing.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-06-01T21:26:28.3505346Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\random.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-06-01T21:26:28.3510645Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\reduction_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-06-01T21:26:28.3516132Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\special_math.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-06-01T21:26:28.3528308Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-06-01T21:26:28.3534639Z creating build\bdist.win-amd64\wheel\torch\include\c10\mobile 2025-06-01T21:26:28.3538216Z copying build\lib.win-amd64-cpython-39\torch\include\c10\mobile\CPUCachingAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\mobile 2025-06-01T21:26:28.3544128Z copying build\lib.win-amd64-cpython-39\torch\include\c10\mobile\CPUProfilingAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\mobile 2025-06-01T21:26:28.3549870Z creating build\bdist.win-amd64\wheel\torch\include\c10\test 2025-06-01T21:26:28.3557382Z creating build\bdist.win-amd64\wheel\torch\include\c10\test\util 2025-06-01T21:26:28.3561058Z 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-06-01T21:26:28.3567546Z 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-06-01T21:26:28.3591798Z 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-06-01T21:26:28.3598078Z creating build\bdist.win-amd64\wheel\torch\include\c10\util 2025-06-01T21:26:28.3601396Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\AbortHandler.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3606598Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\accumulate.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3612042Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\AlignOf.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3617667Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ApproximateClock.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3627607Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Array.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3632550Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ArrayRef.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3637981Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Backtrace.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3643299Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\BFloat16-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3648693Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\BFloat16-math.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3654175Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\BFloat16.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3659401Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\bits.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3664614Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Bitset.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3669973Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\bit_cast.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3675567Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\C++17.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3680887Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\CallOnce.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3686072Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\complex.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3691838Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\complex_math.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3697244Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\complex_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3702501Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ConstexprCrc.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3707886Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\copysign.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3713247Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\DeadlockDetection.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3718905Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Deprecated.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3724489Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\DimVector.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3729742Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\DynamicCounter.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3740064Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Enumerate.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3745424Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\env.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3750625Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\error.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3755583Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Exception.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3761569Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ExclusivelyOwned.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3767322Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ExclusivelyOwnedTensorTraits.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3772758Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\FbcodeMaps.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3778435Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Flags.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3783820Z 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-06-01T21:26:28.3790181Z 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-06-01T21:26:28.3795722Z 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-06-01T21:26:28.3805658Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e4m3fn.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3811098Z 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-06-01T21:26:28.3816575Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e4m3fnuz.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3822077Z 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-06-01T21:26:28.3827831Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e5m2.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3833335Z 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-06-01T21:26:28.3838855Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e5m2fnuz.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3844751Z 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-06-01T21:26:28.3849886Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e8m0fnu.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3860749Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_fnuz_cvt.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3866310Z 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-06-01T21:26:28.3871789Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\FunctionRef.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3877676Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Gauge.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3883184Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\generic_math.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3888830Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Half-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3894512Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Half.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3900287Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\hash.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3905669Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\IdWrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3911850Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\int128.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3917318Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\IntrusiveList.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3922903Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\intrusive_ptr.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3929021Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\irange.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3939046Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Lazy.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3944644Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\LeftRight.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3950288Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\llvmMathExtras.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3956069Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Load.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3961233Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Logging.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3966773Z 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-06-01T21:26:28.3972418Z 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-06-01T21:26:28.3978272Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\MathConstants.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3983743Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\MaybeOwned.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3989593Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Metaprogramming.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.3995320Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\NetworkFlow.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4009906Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\numa.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4015266Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Optional.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4020877Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\OptionalArrayRef.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4026456Z 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-06-01T21:26:28.4032955Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\overflows.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4038702Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\overloaded.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4044389Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ParallelGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4049908Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\python_stub.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4055117Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\qint32.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4060637Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\qint8.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4065782Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\quint2x4.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4070646Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\quint4x2.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4081547Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\quint8.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4086696Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Registry.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4092151Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\safe_numerics.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4097852Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ScopeExit.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4103136Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Semaphore.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4108858Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\signal_handler.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4114407Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\SmallBuffer.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4119878Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\SmallVector.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4126620Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\sparse_bitset.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4132795Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ssize.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4138669Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\static_tracepoint.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4144303Z 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-06-01T21:26:28.4154944Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\strides.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4160370Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\StringUtil.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4166169Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\string_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4171314Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\string_view.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4178994Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\strong_type.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4185161Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Synchronized.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4190591Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\tempfile.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4195954Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ThreadLocal.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4201843Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ThreadLocalDebugInfo.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4207382Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\thread_name.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4213210Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Type.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4218597Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\TypeCast.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4224138Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\typeid.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4230031Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\TypeIndex.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4235438Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\TypeList.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4241094Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\TypeSafeSignMath.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4276518Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\TypeTraits.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4282500Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Unicode.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4287530Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\UniqueVoidPtr.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4293125Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Unroll.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4299372Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\WaitCounter.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4304890Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\WaitCounterDynamicBackend.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4310499Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\win32-headers.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-06-01T21:26:28.4321780Z creating build\bdist.win-amd64\wheel\torch\include\c10\xpu 2025-06-01T21:26:28.4329807Z creating build\bdist.win-amd64\wheel\torch\include\c10\xpu\impl 2025-06-01T21:26:28.4333174Z 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-06-01T21:26:28.4339414Z creating build\bdist.win-amd64\wheel\torch\include\c10\xpu\test 2025-06-01T21:26:28.4342780Z creating build\bdist.win-amd64\wheel\torch\include\c10\xpu\test\impl 2025-06-01T21:26:28.4346770Z 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-06-01T21:26:28.4352232Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUCachingAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-06-01T21:26:28.4357811Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUDeviceProp.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-06-01T21:26:28.4363320Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUException.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-06-01T21:26:28.4373503Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-06-01T21:26:28.4378889Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUMacros.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-06-01T21:26:28.4384231Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUStream.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-06-01T21:26:28.4390309Z creating build\bdist.win-amd64\wheel\torch\include\caffe2 2025-06-01T21:26:28.4393838Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\core 2025-06-01T21:26:28.4397004Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\core\common.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\core 2025-06-01T21:26:28.4402525Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\core\macros.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\core 2025-06-01T21:26:28.4408521Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\core\timer.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\core 2025-06-01T21:26:28.4414167Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\perfkernels 2025-06-01T21:26:28.4417724Z 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-06-01T21:26:28.4423382Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels\common.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\perfkernels 2025-06-01T21:26:28.4429150Z 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-06-01T21:26:28.4434773Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\serialize 2025-06-01T21:26:28.4438139Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\crc_alt.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-06-01T21:26:28.4444936Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\file_adapter.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-06-01T21:26:28.4450393Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\inline_container.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-06-01T21:26:28.4455868Z 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-06-01T21:26:28.4465483Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\istream_adapter.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-06-01T21:26:28.4471064Z 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-06-01T21:26:28.4476522Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\versions.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-06-01T21:26:28.4482812Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\utils 2025-06-01T21:26:28.4486092Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\fixed_divisor.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\utils 2025-06-01T21:26:28.4491526Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\proto_wrap.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\utils 2025-06-01T21:26:28.4496952Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\string_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\utils 2025-06-01T21:26:28.4503017Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\utils\threadpool 2025-06-01T21:26:28.4524390Z 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-06-01T21:26:28.4529980Z 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-06-01T21:26:28.4536659Z 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-06-01T21:26:28.4546097Z 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-06-01T21:26:28.4553476Z 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-06-01T21:26:28.4557973Z 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-06-01T21:26:28.4563515Z copying build\lib.win-amd64-cpython-39\torch\include\cpuinfo.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:26:28.4575089Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:26:28.4580571Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:26:28.4586044Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_config.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:26:28.4591418Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_debug.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:26:28.4596906Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_ocl.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:26:28.4602151Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_ocl.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:26:28.4607565Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_sycl.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:26:28.4612986Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_sycl.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:26:28.4618864Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_sycl_types.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:26:28.4624458Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_threadpool.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:26:28.4630077Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_threadpool.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:26:28.4635644Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_threadpool_iface.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:26:28.4641127Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_types.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:26:28.4646558Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_version.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:26:28.4652150Z copying build\lib.win-amd64-cpython-39\torch\include\experiments-config.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:26:28.4658682Z creating build\bdist.win-amd64\wheel\torch\include\fbgemm 2025-06-01T21:26:28.4662101Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\ConvUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:26:28.4667696Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\Fbgemm.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:26:28.4673997Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmBuild.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:26:28.4679254Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmConvert.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:26:28.4690197Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmEmbedding.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:26:28.4695572Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmFP16.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:26:28.4701007Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmFP32.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:26:28.4706377Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmFPCommon.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:26:28.4711884Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmI64.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:26:28.4717342Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmI8DepthwiseAvx2.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:26:28.4723040Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmI8DirectconvAvx2.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:26:28.4728526Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmI8Spmdm.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:26:28.4734464Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmPackMatrixB.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:26:28.4739628Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmSparse.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:26:28.4745135Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FloatConversion.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:26:28.4750999Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\OutputProcessing-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:26:28.4756123Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\PackingTraits-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:26:28.4761968Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\QuantUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:26:28.4767818Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\QuantUtilsAvx2.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:26:28.4777624Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\QuantUtilsAvx512.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:26:28.4783145Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\QuantUtilsNeon.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:26:28.4788600Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\SimdUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:26:28.4793959Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\spmmUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:26:28.4799405Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\spmmUtilsAvx2.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:26:28.4804683Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\Types.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:26:28.4809644Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:26:28.4815858Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\UtilsAvx2.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-06-01T21:26:28.4822367Z creating build\bdist.win-amd64\wheel\torch\include\fmt 2025-06-01T21:26:28.4825701Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\args.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-06-01T21:26:28.4831320Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\base.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-06-01T21:26:28.4837583Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\chrono.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-06-01T21:26:28.4843903Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\color.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-06-01T21:26:28.4849672Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\compile.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-06-01T21:26:28.4855193Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\core.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-06-01T21:26:28.4860321Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\format-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-06-01T21:26:28.4872779Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\format.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-06-01T21:26:28.4880171Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\os.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-06-01T21:26:28.4884956Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\ostream.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-06-01T21:26:28.4890365Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\printf.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-06-01T21:26:28.4895972Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\ranges.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-06-01T21:26:28.4901750Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\std.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-06-01T21:26:28.4907448Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\xchar.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-06-01T21:26:28.4913494Z creating build\bdist.win-amd64\wheel\torch\include\fp16 2025-06-01T21:26:28.4916805Z copying build\lib.win-amd64-cpython-39\torch\include\fp16\bitcasts.h -> build\bdist.win-amd64\wheel\.\torch\include\fp16 2025-06-01T21:26:28.4922022Z copying build\lib.win-amd64-cpython-39\torch\include\fp16\fp16.h -> build\bdist.win-amd64\wheel\.\torch\include\fp16 2025-06-01T21:26:28.4927716Z copying build\lib.win-amd64-cpython-39\torch\include\fp16\psimd.h -> build\bdist.win-amd64\wheel\.\torch\include\fp16 2025-06-01T21:26:28.4933029Z copying build\lib.win-amd64-cpython-39\torch\include\fp16.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:26:28.4938244Z copying build\lib.win-amd64-cpython-39\torch\include\fxdiv.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:26:28.4948985Z creating build\bdist.win-amd64\wheel\torch\include\google 2025-06-01T21:26:28.4953080Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf 2025-06-01T21:26:28.4957134Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\any.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:26:28.4962119Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\any.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:26:28.4967510Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\api.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:26:28.4973800Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\arena.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:26:28.4979748Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\arenastring.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:26:28.4990357Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\arena_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:26:28.4996299Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler 2025-06-01T21:26:28.5000063Z 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-06-01T21:26:28.5005395Z 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-06-01T21:26:28.5011403Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\cpp 2025-06-01T21:26:28.5015037Z 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-06-01T21:26:28.5021072Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\csharp 2025-06-01T21:26:28.5024645Z 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-06-01T21:26:28.5030316Z 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-06-01T21:26:28.5035432Z 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-06-01T21:26:28.5047637Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\java 2025-06-01T21:26:28.5051193Z 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-06-01T21:26:28.5056944Z 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-06-01T21:26:28.5062600Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\js 2025-06-01T21:26:28.5065634Z 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-06-01T21:26:28.5071433Z 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-06-01T21:26:28.5077124Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\objectivec 2025-06-01T21:26:28.5081060Z 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-06-01T21:26:28.5086722Z 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-06-01T21:26:28.5092614Z 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-06-01T21:26:28.5098563Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\php 2025-06-01T21:26:28.5102023Z 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-06-01T21:26:28.5107474Z 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-06-01T21:26:28.5113108Z 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-06-01T21:26:28.5119912Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\python 2025-06-01T21:26:28.5123406Z 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-06-01T21:26:28.5129092Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\ruby 2025-06-01T21:26:28.5150232Z 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-06-01T21:26:28.5155927Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\descriptor.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:26:28.5163291Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\descriptor.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:26:28.5174276Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\descriptor_database.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:26:28.5180511Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\duration.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:26:28.5186123Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\dynamic_message.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:26:28.5191937Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\empty.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:26:28.5197626Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\extension_set.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:26:28.5204488Z 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-06-01T21:26:28.5210268Z 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-06-01T21:26:28.5216290Z 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-06-01T21:26:28.5222139Z 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-06-01T21:26:28.5228403Z 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-06-01T21:26:28.5233918Z 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-06-01T21:26:28.5247876Z 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-06-01T21:26:28.5253370Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\has_bits.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:26:28.5258498Z 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-06-01T21:26:28.5264151Z 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-06-01T21:26:28.5270529Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\io 2025-06-01T21:26:28.5274313Z 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-06-01T21:26:28.5280509Z 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-06-01T21:26:28.5285859Z 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-06-01T21:26:28.5291333Z 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-06-01T21:26:28.5296514Z 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-06-01T21:26:28.5307341Z 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-06-01T21:26:28.5313334Z 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-06-01T21:26:28.5318996Z 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-06-01T21:26:28.5324653Z 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-06-01T21:26:28.5330467Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\map.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:26:28.5336364Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\map_entry.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:26:28.5341931Z 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-06-01T21:26:28.5347902Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\map_field.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:26:28.5354006Z 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-06-01T21:26:28.5359522Z 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-06-01T21:26:28.5370162Z 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-06-01T21:26:28.5376798Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\message.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:26:28.5386618Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\message_lite.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:26:28.5390847Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\metadata.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:26:28.5395885Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\metadata_lite.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:26:28.5401411Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\parse_context.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:26:28.5407239Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\port.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:26:28.5412509Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\reflection.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:26:28.5418609Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\reflection_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:26:28.5424211Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\repeated_field.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:26:28.5431170Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\service.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:26:28.5436754Z 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-06-01T21:26:28.5447282Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\struct.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:26:28.5453959Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\stubs 2025-06-01T21:26:28.5457537Z 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-06-01T21:26:28.5463008Z 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-06-01T21:26:28.5468494Z 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-06-01T21:26:28.5473794Z 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-06-01T21:26:28.5478997Z 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-06-01T21:26:28.5484203Z 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-06-01T21:26:28.5494261Z 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-06-01T21:26:28.5499855Z 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-06-01T21:26:28.5505467Z 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-06-01T21:26:28.5541199Z 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-06-01T21:26:28.5546089Z 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-06-01T21:26:28.5551618Z 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-06-01T21:26:28.5557177Z 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-06-01T21:26:28.5562465Z 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-06-01T21:26:28.5567607Z 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-06-01T21:26:28.5572772Z 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-06-01T21:26:28.5578688Z 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-06-01T21:26:28.5584741Z 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-06-01T21:26:28.5590252Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\text_format.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:26:28.5596494Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\timestamp.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:26:28.5602085Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\type.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:26:28.5608988Z 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-06-01T21:26:28.5615357Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\util 2025-06-01T21:26:28.5619214Z 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-06-01T21:26:28.5624887Z 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-06-01T21:26:28.5630536Z 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-06-01T21:26:28.5641331Z 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-06-01T21:26:28.5647456Z 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-06-01T21:26:28.5653839Z 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-06-01T21:26:28.5659940Z 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-06-01T21:26:28.5665585Z 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-06-01T21:26:28.5670925Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\wire_format.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:26:28.5677331Z 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-06-01T21:26:28.5684212Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\wrappers.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-06-01T21:26:28.5696559Z copying build\lib.win-amd64-cpython-39\torch\include\ittnotify-zca.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:26:28.5702425Z copying build\lib.win-amd64-cpython-39\torch\include\ittnotify.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:26:28.5710411Z copying build\lib.win-amd64-cpython-39\torch\include\jitprofiling.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:26:28.5717145Z creating build\bdist.win-amd64\wheel\torch\include\kineto 2025-06-01T21:26:28.5720785Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\AbstractConfig.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-06-01T21:26:28.5726227Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ActivityProfilerInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-06-01T21:26:28.5731699Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ActivityTraceInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-06-01T21:26:28.5742273Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ActivityType.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-06-01T21:26:28.5747591Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ClientInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-06-01T21:26:28.5753046Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\Config.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-06-01T21:26:28.5758739Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\GenericTraceActivity.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-06-01T21:26:28.5764038Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\IActivityProfiler.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-06-01T21:26:28.5769339Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ILoggerObserver.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-06-01T21:26:28.5774746Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ITraceActivity.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-06-01T21:26:28.5780194Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\libkineto.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-06-01T21:26:28.5785610Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\LoggingAPI.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-06-01T21:26:28.5790724Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\output_base.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-06-01T21:26:28.5796147Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ThreadUtil.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-06-01T21:26:28.5801513Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\time_since_epoch.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-06-01T21:26:28.5808101Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\TraceSpan.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-06-01T21:26:28.5819509Z creating build\bdist.win-amd64\wheel\torch\include\legacy 2025-06-01T21:26:28.5822818Z copying build\lib.win-amd64-cpython-39\torch\include\legacy\ittnotify.h -> build\bdist.win-amd64\wheel\.\torch\include\legacy 2025-06-01T21:26:28.5829020Z copying build\lib.win-amd64-cpython-39\torch\include\libittnotify.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:26:28.5834160Z copying build\lib.win-amd64-cpython-39\torch\include\libshm.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:26:28.5839845Z creating build\bdist.win-amd64\wheel\torch\include\mimalloc-2.2 2025-06-01T21:26:28.5843866Z 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-06-01T21:26:28.5849244Z 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-06-01T21:26:28.5855077Z 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-06-01T21:26:28.5865876Z 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-06-01T21:26:28.5872279Z creating build\bdist.win-amd64\wheel\torch\include\oneapi 2025-06-01T21:26:28.5875971Z creating build\bdist.win-amd64\wheel\torch\include\oneapi\dnnl 2025-06-01T21:26:28.5879211Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-06-01T21:26:28.5886641Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-06-01T21:26:28.5897756Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_common.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-06-01T21:26:28.5903654Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_common.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-06-01T21:26:28.5908656Z 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-06-01T21:26:28.5919820Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_config.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-06-01T21:26:28.5924982Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_debug.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-06-01T21:26:28.5930248Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_graph.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-06-01T21:26:28.5936724Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_graph.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-06-01T21:26:28.5943284Z 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-06-01T21:26:28.5948767Z 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-06-01T21:26:28.5954810Z 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-06-01T21:26:28.5961546Z 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-06-01T21:26:28.5968390Z 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-06-01T21:26:28.5974212Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_ocl.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-06-01T21:26:28.5979813Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_ocl.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-06-01T21:26:28.5985611Z 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-06-01T21:26:28.5991516Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_sycl.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-06-01T21:26:28.5997077Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_sycl.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-06-01T21:26:28.6002786Z 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-06-01T21:26:28.6008429Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_threadpool.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-06-01T21:26:28.6019434Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_threadpool.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-06-01T21:26:28.6025048Z 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-06-01T21:26:28.6030693Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_types.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-06-01T21:26:28.6037667Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_ukernel.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-06-01T21:26:28.6043299Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_ukernel.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-06-01T21:26:28.6049670Z 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-06-01T21:26:28.6055364Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_version.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-06-01T21:26:28.6061177Z 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-06-01T21:26:28.6067122Z copying build\lib.win-amd64-cpython-39\torch\include\psimd.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:26:28.6073413Z copying build\lib.win-amd64-cpython-39\torch\include\pthreadpool.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:26:28.6081189Z creating build\bdist.win-amd64\wheel\torch\include\pybind11 2025-06-01T21:26:28.6085542Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\attr.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:26:28.6092127Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\buffer_info.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:26:28.6097967Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\cast.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:26:28.6104973Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\chrono.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:26:28.6110631Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\common.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:26:28.6115855Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\complex.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:26:28.6127251Z creating build\bdist.win-amd64\wheel\torch\include\pybind11\detail 2025-06-01T21:26:28.6130626Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\class.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-06-01T21:26:28.6137185Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\common.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-06-01T21:26:28.6147383Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\cpp_conduit.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-06-01T21:26:28.6148999Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\descr.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-06-01T21:26:28.6155230Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\exception_translation.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-06-01T21:26:28.6165594Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\init.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-06-01T21:26:28.6171921Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\internals.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-06-01T21:26:28.6178266Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\typeid.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-06-01T21:26:28.6183931Z 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-06-01T21:26:28.6190539Z 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-06-01T21:26:28.6196572Z creating build\bdist.win-amd64\wheel\torch\include\pybind11\eigen 2025-06-01T21:26:28.6199890Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen\common.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\eigen 2025-06-01T21:26:28.6204927Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen\matrix.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\eigen 2025-06-01T21:26:28.6211352Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen\tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\eigen 2025-06-01T21:26:28.6216862Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:26:28.6221933Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\embed.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:26:28.6227619Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\eval.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:26:28.6234246Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\functional.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:26:28.6239552Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\gil.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:26:28.6244930Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\gil_safe_call_once.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:26:28.6250198Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\iostream.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:26:28.6255463Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\numpy.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:26:28.6262015Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\operators.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:26:28.6267571Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\options.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:26:28.6272697Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\pybind11.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:26:28.6279601Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\pytypes.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:26:28.6286450Z creating build\bdist.win-amd64\wheel\torch\include\pybind11\stl 2025-06-01T21:26:28.6289910Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\stl\filesystem.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\stl 2025-06-01T21:26:28.6295485Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\stl.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:26:28.6301034Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\stl_bind.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:26:28.6307028Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\type_caster_pyobject_ptr.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:26:28.6312462Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\typing.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-06-01T21:26:28.6317810Z copying build\lib.win-amd64-cpython-39\torch\include\sleef.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:26:28.6327272Z creating build\bdist.win-amd64\wheel\torch\include\THC 2025-06-01T21:26:28.6335738Z copying build\lib.win-amd64-cpython-39\torch\include\THC\THCAtomics.cuh -> build\bdist.win-amd64\wheel\.\torch\include\THC 2025-06-01T21:26:28.6341049Z copying build\lib.win-amd64-cpython-39\torch\include\THC\THCDeviceUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\THC 2025-06-01T21:26:28.6347241Z creating build\bdist.win-amd64\wheel\torch\include\torch 2025-06-01T21:26:28.6350922Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc 2025-06-01T21:26:28.6354189Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api 2025-06-01T21:26:28.6357351Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include 2025-06-01T21:26:28.6360950Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch 2025-06-01T21:26:28.6364195Z 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-06-01T21:26:28.6369273Z 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-06-01T21:26:28.6374499Z 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-06-01T21:26:28.6379639Z 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-06-01T21:26:28.6385165Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data 2025-06-01T21:26:28.6388623Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\dataloader 2025-06-01T21:26:28.6392079Z 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-06-01T21:26:28.6397654Z 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-06-01T21:26:28.6403161Z 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-06-01T21:26:28.6408443Z 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-06-01T21:26:28.6413777Z 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-06-01T21:26:28.6419813Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\datasets 2025-06-01T21:26:28.6429328Z 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-06-01T21:26:28.6434744Z 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-06-01T21:26:28.6440555Z 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-06-01T21:26:28.6445808Z 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-06-01T21:26:28.6451060Z 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-06-01T21:26:28.6456344Z 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-06-01T21:26:28.6461712Z 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-06-01T21:26:28.6474165Z 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-06-01T21:26:28.6478211Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\detail 2025-06-01T21:26:28.6482147Z 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-06-01T21:26:28.6487325Z 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-06-01T21:26:28.6493084Z 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-06-01T21:26:28.6498933Z 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-06-01T21:26:28.6504308Z 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-06-01T21:26:28.6510071Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\samplers 2025-06-01T21:26:28.6513570Z 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-06-01T21:26:28.6519262Z 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-06-01T21:26:28.6524470Z 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-06-01T21:26:28.6530325Z 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-06-01T21:26:28.6535809Z 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-06-01T21:26:28.6546123Z 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-06-01T21:26:28.6551867Z 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-06-01T21:26:28.6557304Z 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-06-01T21:26:28.6562700Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\transforms 2025-06-01T21:26:28.6566376Z 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-06-01T21:26:28.6571943Z 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-06-01T21:26:28.6577475Z 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-06-01T21:26:28.6583600Z 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-06-01T21:26:28.6589041Z 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-06-01T21:26:28.6594713Z 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-06-01T21:26:28.6600209Z 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-06-01T21:26:28.6605879Z 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-06-01T21:26:28.6610578Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\detail 2025-06-01T21:26:28.6615979Z 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-06-01T21:26:28.6621711Z 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-06-01T21:26:28.6627332Z 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-06-01T21:26:28.6638671Z 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-06-01T21:26:28.6643671Z 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-06-01T21:26:28.6649519Z 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-06-01T21:26:28.6654644Z 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-06-01T21:26:28.6660271Z 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-06-01T21:26:28.6665529Z 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-06-01T21:26:28.6685600Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn 2025-06-01T21:26:28.6688995Z 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-06-01T21:26:28.6694844Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\functional 2025-06-01T21:26:28.6698630Z 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-06-01T21:26:28.6704648Z 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-06-01T21:26:28.6710236Z 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-06-01T21:26:28.6715587Z 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-06-01T21:26:28.6725550Z 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-06-01T21:26:28.6730978Z 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-06-01T21:26:28.6754119Z 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-06-01T21:26:28.6759422Z 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-06-01T21:26:28.6764970Z 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-06-01T21:26:28.6771197Z 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-06-01T21:26:28.6777306Z 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-06-01T21:26:28.6782996Z 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-06-01T21:26:28.6788193Z 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-06-01T21:26:28.6793635Z 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-06-01T21:26:28.6799826Z 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-06-01T21:26:28.6805354Z 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-06-01T21:26:28.6810626Z 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-06-01T21:26:28.6815927Z 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-06-01T21:26:28.6826493Z 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-06-01T21:26:28.6832894Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\modules 2025-06-01T21:26:28.6836441Z 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-06-01T21:26:28.6842432Z 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-06-01T21:26:28.6847699Z 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-06-01T21:26:28.6853423Z 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-06-01T21:26:28.6858759Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-06-01T21:26:28.6867063Z 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-06-01T21:26:28.6872360Z 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-06-01T21:26:28.6877773Z 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-06-01T21:26:28.6883261Z 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-06-01T21:26:28.6893292Z 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-06-01T21:26:28.6899466Z 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-06-01T21:26:28.6904456Z 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-06-01T21:26:28.6910049Z 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-06-01T21:26:28.6915366Z 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-06-01T21:26:28.6920881Z 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-06-01T21:26:28.6926423Z 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-06-01T21:26:28.6932074Z 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-06-01T21:26:28.6937635Z 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-06-01T21:26:28.6943039Z 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-06-01T21:26:28.6948490Z 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-06-01T21:26:28.6953861Z 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-06-01T21:26:28.6959206Z 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-06-01T21:26:28.6964664Z 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-06-01T21:26:28.6970725Z 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-06-01T21:26:28.6976220Z 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-06-01T21:26:28.6982009Z 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-06-01T21:26:28.6987552Z 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-06-01T21:26:28.6993561Z 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-06-01T21:26:28.6999547Z 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-06-01T21:26:28.7005035Z 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-06-01T21:26:28.7010727Z 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-06-01T21:26:28.7016409Z 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-06-01T21:26:28.7022116Z 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-06-01T21:26:28.7027648Z 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-06-01T21:26:28.7033416Z 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-06-01T21:26:28.7039645Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\options 2025-06-01T21:26:28.7043453Z 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-06-01T21:26:28.7049599Z 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-06-01T21:26:28.7055263Z 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-06-01T21:26:28.7060868Z 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-06-01T21:26:28.7066455Z 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-06-01T21:26:28.7077333Z 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-06-01T21:26:28.7082834Z 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-06-01T21:26:28.7088722Z 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-06-01T21:26:28.7094289Z 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-06-01T21:26:28.7099983Z 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-06-01T21:26:28.7105422Z 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-06-01T21:26:28.7111866Z 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-06-01T21:26:28.7117521Z 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-06-01T21:26:28.7123195Z 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-06-01T21:26:28.7128870Z 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-06-01T21:26:28.7134806Z 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-06-01T21:26:28.7140567Z 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-06-01T21:26:28.7146241Z 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-06-01T21:26:28.7152016Z 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-06-01T21:26:28.7157833Z 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-06-01T21:26:28.7163656Z 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-06-01T21:26:28.7169731Z 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-06-01T21:26:28.7176238Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\parallel 2025-06-01T21:26:28.7180278Z 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-06-01T21:26:28.7185945Z 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-06-01T21:26:28.7191642Z 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-06-01T21:26:28.7197556Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\utils 2025-06-01T21:26:28.7201073Z 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-06-01T21:26:28.7206956Z 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-06-01T21:26:28.7212288Z 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-06-01T21:26:28.7217952Z 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-06-01T21:26:28.7223777Z 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-06-01T21:26:28.7229039Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\optim 2025-06-01T21:26:28.7232646Z 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-06-01T21:26:28.7238151Z 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-06-01T21:26:28.7243389Z 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-06-01T21:26:28.7249058Z 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-06-01T21:26:28.7253896Z 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-06-01T21:26:28.7259433Z 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-06-01T21:26:28.7270307Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\optim\schedulers 2025-06-01T21:26:28.7273618Z 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-06-01T21:26:28.7279188Z 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-06-01T21:26:28.7284510Z 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-06-01T21:26:28.7295113Z 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-06-01T21:26:28.7301315Z 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-06-01T21:26:28.7306734Z 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-06-01T21:26:28.7311990Z 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-06-01T21:26:28.7318240Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\python 2025-06-01T21:26:28.7321678Z 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-06-01T21:26:28.7326824Z 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-06-01T21:26:28.7332478Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\serialize 2025-06-01T21:26:28.7335995Z 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-06-01T21:26:28.7341244Z 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-06-01T21:26:28.7346600Z 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-06-01T21:26:28.7351881Z 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-06-01T21:26:28.7361661Z 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-06-01T21:26:28.7367089Z 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-06-01T21:26:28.7372076Z 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-06-01T21:26:28.7378256Z 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-06-01T21:26:28.7383285Z 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-06-01T21:26:28.7389075Z 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-06-01T21:26:28.7393957Z 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-06-01T21:26:28.7399245Z 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-06-01T21:26:28.7406300Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\autograd 2025-06-01T21:26:28.7409469Z 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-06-01T21:26:28.7415131Z 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-06-01T21:26:28.7420948Z 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-06-01T21:26:28.7426367Z 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-06-01T21:26:28.7437058Z 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-06-01T21:26:28.7444571Z 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-06-01T21:26:28.7450696Z 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-06-01T21:26:28.7457090Z 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-06-01T21:26:28.7462800Z 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-06-01T21:26:28.7469194Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\autograd\functions 2025-06-01T21:26:28.7473212Z 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-06-01T21:26:28.7478928Z 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-06-01T21:26:28.7484709Z 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-06-01T21:26:28.7490070Z 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-06-01T21:26:28.7499826Z 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-06-01T21:26:28.7506106Z 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-06-01T21:26:28.7511529Z 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-06-01T21:26:28.7517887Z 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-06-01T21:26:28.7523907Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\autograd\generated 2025-06-01T21:26:28.7527366Z 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-06-01T21:26:28.7538765Z 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-06-01T21:26:28.7544815Z 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-06-01T21:26:28.7555211Z 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-06-01T21:26:28.7560577Z 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-06-01T21:26:28.7567483Z 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-06-01T21:26:28.7573307Z 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-06-01T21:26:28.7578854Z 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-06-01T21:26:28.7584453Z 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-06-01T21:26:28.7589600Z 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-06-01T21:26:28.7595534Z 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-06-01T21:26:28.7609364Z 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-06-01T21:26:28.7610700Z 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-06-01T21:26:28.7612868Z 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-06-01T21:26:28.7618251Z 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-06-01T21:26:28.7628377Z 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-06-01T21:26:28.7633695Z 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-06-01T21:26:28.7639021Z 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-06-01T21:26:28.7644213Z 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-06-01T21:26:28.7650043Z 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-06-01T21:26:28.7655560Z 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-06-01T21:26:28.7661134Z 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-06-01T21:26:28.7666344Z 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-06-01T21:26:28.7671909Z 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-06-01T21:26:28.7681791Z 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-06-01T21:26:28.7686972Z 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-06-01T21:26:28.7692312Z 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-06-01T21:26:28.7697967Z 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-06-01T21:26:28.7703420Z 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-06-01T21:26:28.7729355Z 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-06-01T21:26:28.7735046Z 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-06-01T21:26:28.7741238Z 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-06-01T21:26:28.7747052Z 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-06-01T21:26:28.7757860Z 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-06-01T21:26:28.7763675Z 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-06-01T21:26:28.7769506Z 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-06-01T21:26:28.7775561Z 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-06-01T21:26:28.7781195Z 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-06-01T21:26:28.7787333Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\autograd\utils 2025-06-01T21:26:28.7790885Z 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-06-01T21:26:28.7796605Z 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-06-01T21:26:28.7802373Z 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-06-01T21:26:28.7807591Z 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-06-01T21:26:28.7817832Z 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-06-01T21:26:28.7823325Z 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-06-01T21:26:28.7829538Z 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-06-01T21:26:28.7835147Z 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-06-01T21:26:28.7841257Z 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-06-01T21:26:28.7846726Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\copy_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:26:28.7852753Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\cpu 2025-06-01T21:26:28.7856536Z 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-06-01T21:26:28.7862348Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\cuda 2025-06-01T21:26:28.7878022Z 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-06-01T21:26:28.7879251Z 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-06-01T21:26:28.7880459Z 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-06-01T21:26:28.7882452Z 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-06-01T21:26:28.7887668Z 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-06-01T21:26:28.7898039Z 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-06-01T21:26:28.7908469Z 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-06-01T21:26:28.7913588Z 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-06-01T21:26:28.7919142Z 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-06-01T21:26:28.7924256Z 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-06-01T21:26:28.7929591Z 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-06-01T21:26:28.7934855Z 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-06-01T21:26:28.7940529Z 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-06-01T21:26:28.7945695Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\CudaIPCTypes.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:26:28.7955153Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\DataLoader.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:26:28.7960215Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Device.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:26:28.7965275Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\DeviceAccelerator.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:26:28.7970912Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed 2025-06-01T21:26:28.7974510Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd 2025-06-01T21:26:28.7978101Z 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-06-01T21:26:28.7983710Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd\context 2025-06-01T21:26:28.7987107Z 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-06-01T21:26:28.7992548Z 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-06-01T21:26:28.7998041Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd\engine 2025-06-01T21:26:28.8001430Z 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-06-01T21:26:28.8006783Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd\functions 2025-06-01T21:26:28.8010123Z 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-06-01T21:26:28.8015333Z 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-06-01T21:26:28.8020579Z 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-06-01T21:26:28.8030329Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-06-01T21:26:28.8033800Z 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-06-01T21:26:28.8039252Z 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-06-01T21:26:28.8044492Z 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-06-01T21:26:28.8054154Z 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-06-01T21:26:28.8060160Z 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-06-01T21:26:28.8065595Z 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-06-01T21:26:28.8070997Z 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-06-01T21:26:28.8076650Z 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-06-01T21:26:28.8082152Z 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-06-01T21:26:28.8087604Z 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-06-01T21:26:28.8092694Z 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-06-01T21:26:28.8103447Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:28.8105326Z 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-06-01T21:26:28.8110479Z 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-06-01T21:26:28.8115582Z 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-06-01T21:26:28.8120609Z 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-06-01T21:26:28.8126263Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d\control_collectives 2025-06-01T21:26:28.8136394Z 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-06-01T21:26:28.8141874Z 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-06-01T21:26:28.8147682Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d\control_plane 2025-06-01T21:26:28.8155711Z 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-06-01T21:26:28.8161074Z 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-06-01T21:26:28.8166676Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d\cuda 2025-06-01T21:26:28.8175597Z 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-06-01T21:26:28.8181027Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\CUDASymmetricMemory-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:28.8186653Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\CUDASymmetricMemory.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:28.8192210Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\CUDASymmetricMemoryTypes.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:28.8197416Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\CUDASymmetricMemoryUtils.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:28.8202789Z 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-06-01T21:26:28.8208101Z 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-06-01T21:26:28.8213727Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\DMAConnectivity.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:28.8219237Z 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-06-01T21:26:28.8224573Z 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-06-01T21:26:28.8230123Z 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-06-01T21:26:28.8235589Z 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-06-01T21:26:28.8241556Z 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-06-01T21:26:28.8247399Z 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-06-01T21:26:28.8252831Z 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-06-01T21:26:28.8259047Z 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-06-01T21:26:28.8269230Z 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-06-01T21:26:28.8274846Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\intra_node_comm.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:28.8295709Z 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-06-01T21:26:28.8301550Z 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-06-01T21:26:28.8307078Z 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-06-01T21:26:28.8312140Z 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-06-01T21:26:28.8317867Z 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-06-01T21:26:28.8323525Z 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-06-01T21:26:28.8329071Z 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-06-01T21:26:28.8335782Z 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-06-01T21:26:28.8346380Z 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-06-01T21:26:28.8352509Z 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-06-01T21:26:28.8359322Z 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-06-01T21:26:28.8365526Z 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-06-01T21:26:28.8371952Z 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-06-01T21:26:28.8377955Z 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-06-01T21:26:28.8383923Z 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-06-01T21:26:28.8390005Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d\quantization 2025-06-01T21:26:28.8393859Z 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-06-01T21:26:28.8399366Z 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-06-01T21:26:28.8405026Z 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-06-01T21:26:28.8415582Z 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-06-01T21:26:28.8425705Z 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-06-01T21:26:28.8431767Z 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-06-01T21:26:28.8437570Z 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-06-01T21:26:28.8443111Z 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-06-01T21:26:28.8448759Z 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-06-01T21:26:28.8454298Z 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-06-01T21:26:28.8460145Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\SymmetricMemory.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-06-01T21:26:28.8465613Z 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-06-01T21:26:28.8471111Z 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-06-01T21:26:28.8476664Z 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-06-01T21:26:28.8482204Z 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-06-01T21:26:28.8487707Z 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-06-01T21:26:28.8497600Z 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-06-01T21:26:28.8503384Z 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-06-01T21:26:28.8508572Z 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-06-01T21:26:28.8514402Z 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-06-01T21:26:28.8519543Z 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-06-01T21:26:28.8525893Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\rpc 2025-06-01T21:26:28.8530585Z 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-06-01T21:26:28.8536076Z 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-06-01T21:26:28.8542189Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\rpc\metrics 2025-06-01T21:26:28.8545838Z 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-06-01T21:26:28.8551785Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\rpc\profiler 2025-06-01T21:26:28.8555366Z 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-06-01T21:26:28.8561332Z 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-06-01T21:26:28.8566707Z 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-06-01T21:26:28.8577414Z 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-06-01T21:26:28.8582877Z 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-06-01T21:26:28.8588892Z 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-06-01T21:26:28.8594841Z 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-06-01T21:26:28.8607530Z 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-06-01T21:26:28.8612854Z 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-06-01T21:26:28.8618624Z 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-06-01T21:26:28.8624284Z 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-06-01T21:26:28.8629674Z 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-06-01T21:26:28.8634845Z 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-06-01T21:26:28.8640501Z 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-06-01T21:26:28.8646018Z 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-06-01T21:26:28.8651584Z 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-06-01T21:26:28.8658045Z 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-06-01T21:26:28.8664012Z 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-06-01T21:26:28.8669932Z 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-06-01T21:26:28.8680113Z 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-06-01T21:26:28.8685492Z 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-06-01T21:26:28.8691834Z 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-06-01T21:26:28.8698427Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\rpc\testing 2025-06-01T21:26:28.8702301Z 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-06-01T21:26:28.8707931Z 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-06-01T21:26:28.8713471Z 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-06-01T21:26:28.8719256Z 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-06-01T21:26:28.8725142Z 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-06-01T21:26:28.8731269Z 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-06-01T21:26:28.8737036Z 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-06-01T21:26:28.8742832Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Dtype.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:26:28.8748448Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\DynamicTypes.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:26:28.8754515Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\dynamo 2025-06-01T21:26:28.8757953Z 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-06-01T21:26:28.8763644Z 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-06-01T21:26:28.8770053Z 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-06-01T21:26:28.8775637Z 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-06-01T21:26:28.8785737Z 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-06-01T21:26:28.8791099Z 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-06-01T21:26:28.8796430Z 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-06-01T21:26:28.8801795Z 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-06-01T21:26:28.8807515Z 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-06-01T21:26:28.8813295Z 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-06-01T21:26:28.8819014Z 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-06-01T21:26:28.8824299Z 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-06-01T21:26:28.8829676Z 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-06-01T21:26:28.8834849Z 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-06-01T21:26:28.8839879Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Event.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:26:28.8844983Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Exceptions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:26:28.8851382Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\export 2025-06-01T21:26:28.8854581Z 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-06-01T21:26:28.8859905Z 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-06-01T21:26:28.8865720Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Export.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:26:28.8871654Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\functorch 2025-06-01T21:26:28.8875003Z 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-06-01T21:26:28.8880295Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\fx 2025-06-01T21:26:28.8883504Z 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-06-01T21:26:28.8888908Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Generator.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:26:28.8894640Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor 2025-06-01T21:26:28.8898091Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_eager 2025-06-01T21:26:28.8901482Z 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-06-01T21:26:28.8907062Z 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-06-01T21:26:28.8912662Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_include 2025-06-01T21:26:28.8916707Z 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-06-01T21:26:28.8921505Z 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-06-01T21:26:28.8926935Z 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-06-01T21:26:28.8931593Z 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-06-01T21:26:28.8936828Z 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-06-01T21:26:28.9036176Z 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-06-01T21:26:28.9041587Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_package 2025-06-01T21:26:28.9045207Z 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-06-01T21:26:28.9050813Z 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-06-01T21:26:28.9056294Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_runner 2025-06-01T21:26:28.9065200Z 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-06-01T21:26:28.9071499Z 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-06-01T21:26:28.9076759Z 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-06-01T21:26:28.9087084Z 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-06-01T21:26:28.9092737Z 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-06-01T21:26:28.9098354Z 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-06-01T21:26:28.9103772Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_runtime 2025-06-01T21:26:28.9107420Z 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-06-01T21:26:28.9112988Z 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-06-01T21:26:28.9118087Z 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-06-01T21:26:28.9128487Z 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-06-01T21:26:28.9134203Z 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-06-01T21:26:28.9139667Z 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-06-01T21:26:28.9145724Z 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-06-01T21:26:28.9152035Z 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-06-01T21:26:28.9157685Z 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-06-01T21:26:28.9163257Z 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-06-01T21:26:28.9168954Z 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-06-01T21:26:28.9174620Z 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-06-01T21:26:28.9180160Z 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-06-01T21:26:28.9186435Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_torch 2025-06-01T21:26:28.9189809Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_torch\c 2025-06-01T21:26:28.9193284Z 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-06-01T21:26:28.9199567Z 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-06-01T21:26:28.9205193Z 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-06-01T21:26:28.9210257Z 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-06-01T21:26:28.9215997Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-06-01T21:26:28.9219643Z 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-06-01T21:26:28.9225720Z 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-06-01T21:26:28.9231878Z 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-06-01T21:26:28.9242180Z 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-06-01T21:26:28.9247904Z 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-06-01T21:26:28.9253144Z 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-06-01T21:26:28.9263345Z 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-06-01T21:26:28.9268945Z 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-06-01T21:26:28.9274347Z 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-06-01T21:26:28.9280173Z 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-06-01T21:26:28.9285178Z 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-06-01T21:26:28.9292007Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\cpp_wrapper 2025-06-01T21:26:28.9295206Z 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-06-01T21:26:28.9300498Z 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-06-01T21:26:28.9305771Z 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-06-01T21:26:28.9310808Z 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-06-01T21:26:28.9316091Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-06-01T21:26:28.9324524Z 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-06-01T21:26:28.9329686Z 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-06-01T21:26:28.9335083Z 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-06-01T21:26:28.9340903Z 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-06-01T21:26:28.9345869Z 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-06-01T21:26:28.9350928Z 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-06-01T21:26:28.9355931Z 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-06-01T21:26:28.9361608Z 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-06-01T21:26:28.9367441Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\instruction_counter 2025-06-01T21:26:28.9370896Z 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-06-01T21:26:28.9375813Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\itt.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:26:28.9381268Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\itt_wrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:26:28.9386865Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit 2025-06-01T21:26:28.9390179Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\api 2025-06-01T21:26:28.9393681Z 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-06-01T21:26:28.9399330Z 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-06-01T21:26:28.9404538Z 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-06-01T21:26:28.9409803Z 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-06-01T21:26:28.9415637Z 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-06-01T21:26:28.9426580Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends 2025-06-01T21:26:28.9429893Z 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-06-01T21:26:28.9435575Z 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-06-01T21:26:28.9441284Z 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-06-01T21:26:28.9446770Z 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-06-01T21:26:28.9457572Z 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-06-01T21:26:28.9463103Z 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-06-01T21:26:28.9468358Z 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-06-01T21:26:28.9473896Z 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-06-01T21:26:28.9479124Z 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-06-01T21:26:28.9484685Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\coreml 2025-06-01T21:26:28.9488284Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\coreml\cpp 2025-06-01T21:26:28.9491769Z 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-06-01T21:26:28.9497623Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\coreml\objc 2025-06-01T21:26:28.9501140Z 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-06-01T21:26:28.9506816Z 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-06-01T21:26:28.9512584Z 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-06-01T21:26:28.9523575Z 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-06-01T21:26:28.9529100Z 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-06-01T21:26:28.9535052Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\xnnpack 2025-06-01T21:26:28.9538823Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\xnnpack\compiler 2025-06-01T21:26:28.9542299Z 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-06-01T21:26:28.9548003Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\xnnpack\executor 2025-06-01T21:26:28.9551518Z 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-06-01T21:26:28.9557569Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\xnnpack\serialization 2025-06-01T21:26:28.9561266Z 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-06-01T21:26:28.9567252Z 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-06-01T21:26:28.9573067Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen 2025-06-01T21:26:28.9576382Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\cuda 2025-06-01T21:26:28.9579995Z 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-06-01T21:26:28.9585889Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\fuser 2025-06-01T21:26:28.9600430Z 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-06-01T21:26:28.9605960Z 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-06-01T21:26:28.9611589Z 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-06-01T21:26:28.9617426Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\fuser\cpu 2025-06-01T21:26:28.9620889Z 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-06-01T21:26:28.9626879Z 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-06-01T21:26:28.9632639Z 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-06-01T21:26:28.9638638Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\fuser\cuda 2025-06-01T21:26:28.9642094Z 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-06-01T21:26:28.9647774Z 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-06-01T21:26:28.9653726Z 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-06-01T21:26:28.9659008Z 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-06-01T21:26:28.9669157Z 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-06-01T21:26:28.9674744Z 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-06-01T21:26:28.9680055Z 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-06-01T21:26:28.9685842Z 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-06-01T21:26:28.9691135Z 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-06-01T21:26:28.9696333Z 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-06-01T21:26:28.9701993Z 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-06-01T21:26:28.9707500Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\onednn 2025-06-01T21:26:28.9711053Z 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-06-01T21:26:28.9725371Z 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-06-01T21:26:28.9730560Z 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-06-01T21:26:28.9736187Z 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-06-01T21:26:28.9746667Z 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-06-01T21:26:28.9752044Z 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-06-01T21:26:28.9757458Z 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-06-01T21:26:28.9763259Z 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-06-01T21:26:28.9768546Z 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-06-01T21:26:28.9774096Z 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-06-01T21:26:28.9779702Z 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-06-01T21:26:28.9785191Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\cuda 2025-06-01T21:26:28.9788515Z 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-06-01T21:26:28.9794243Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\frontend 2025-06-01T21:26:28.9797651Z 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-06-01T21:26:28.9803335Z 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-06-01T21:26:28.9808639Z 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-06-01T21:26:28.9818743Z 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-06-01T21:26:28.9824408Z 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-06-01T21:26:28.9830152Z 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-06-01T21:26:28.9835450Z 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-06-01T21:26:28.9840479Z 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-06-01T21:26:28.9846007Z 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-06-01T21:26:28.9851621Z 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-06-01T21:26:28.9857184Z 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-06-01T21:26:28.9863461Z 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-06-01T21:26:28.9888772Z 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-06-01T21:26:28.9894583Z 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-06-01T21:26:28.9900563Z 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-06-01T21:26:28.9905820Z 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-06-01T21:26:28.9912095Z 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-06-01T21:26:28.9917762Z 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-06-01T21:26:28.9923946Z 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-06-01T21:26:28.9930010Z 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-06-01T21:26:28.9940114Z 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-06-01T21:26:28.9946429Z 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-06-01T21:26:28.9952319Z 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-06-01T21:26:28.9957807Z 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-06-01T21:26:28.9964306Z 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-06-01T21:26:28.9970164Z 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-06-01T21:26:28.9976039Z 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-06-01T21:26:28.9983104Z 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-06-01T21:26:28.9989551Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\ir 2025-06-01T21:26:28.9993384Z 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-06-01T21:26:28.9998946Z 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-06-01T21:26:29.0004791Z 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-06-01T21:26:29.0010620Z 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-06-01T21:26:29.0021097Z 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-06-01T21:26:29.0026261Z 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-06-01T21:26:29.0032690Z 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-06-01T21:26:29.0038243Z 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-06-01T21:26:29.0044129Z 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-06-01T21:26:29.0051665Z 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-06-01T21:26:29.0057144Z 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-06-01T21:26:29.0063050Z 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-06-01T21:26:29.0068910Z 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-06-01T21:26:29.0074264Z 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-06-01T21:26:29.0080430Z 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-06-01T21:26:29.0705615Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile 2025-06-01T21:26:29.0714683Z 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-06-01T21:26:29.0739701Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\compatibility 2025-06-01T21:26:29.0743550Z 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-06-01T21:26:29.0749821Z 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-06-01T21:26:29.0755443Z 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-06-01T21:26:29.0765487Z 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-06-01T21:26:29.0770981Z 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-06-01T21:26:29.0776602Z 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-06-01T21:26:29.0787038Z 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-06-01T21:26:29.0792422Z 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-06-01T21:26:29.0797710Z 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-06-01T21:26:29.0803444Z 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-06-01T21:26:29.0808668Z 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-06-01T21:26:29.0814274Z 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-06-01T21:26:29.0819563Z 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-06-01T21:26:29.0824730Z 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-06-01T21:26:29.0831014Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\model_tracer 2025-06-01T21:26:29.0834662Z 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-06-01T21:26:29.0840123Z 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-06-01T21:26:29.0845825Z 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-06-01T21:26:29.0856941Z 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-06-01T21:26:29.0862793Z 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-06-01T21:26:29.0868122Z 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-06-01T21:26:29.0873233Z 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-06-01T21:26:29.0878575Z 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-06-01T21:26:29.0884441Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\nnc 2025-06-01T21:26:29.0887864Z 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-06-01T21:26:29.0893311Z 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-06-01T21:26:29.0898748Z 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-06-01T21:26:29.0904175Z 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-06-01T21:26:29.0909801Z 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-06-01T21:26:29.0915261Z 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-06-01T21:26:29.0921142Z 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-06-01T21:26:29.0926734Z 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-06-01T21:26:29.0932200Z 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-06-01T21:26:29.0937839Z 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-06-01T21:26:29.0943208Z 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-06-01T21:26:29.0953643Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\train 2025-06-01T21:26:29.0957009Z 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-06-01T21:26:29.0963753Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\train\optim 2025-06-01T21:26:29.0967089Z 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-06-01T21:26:29.0972673Z 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-06-01T21:26:29.0978070Z 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-06-01T21:26:29.0983452Z 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-06-01T21:26:29.0990037Z 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-06-01T21:26:29.0997544Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\operator_upgraders 2025-06-01T21:26:29.1001037Z 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-06-01T21:26:29.1006566Z 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-06-01T21:26:29.1011926Z 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-06-01T21:26:29.1017425Z 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-06-01T21:26:29.1029393Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes 2025-06-01T21:26:29.1033096Z 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-06-01T21:26:29.1038500Z 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-06-01T21:26:29.1043663Z 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-06-01T21:26:29.1048883Z 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-06-01T21:26:29.1059026Z 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-06-01T21:26:29.1064236Z 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-06-01T21:26:29.1069965Z 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-06-01T21:26:29.1075253Z 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-06-01T21:26:29.1080716Z 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-06-01T21:26:29.1086413Z 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-06-01T21:26:29.1091962Z 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-06-01T21:26:29.1097080Z 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-06-01T21:26:29.1102309Z 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-06-01T21:26:29.1107710Z 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-06-01T21:26:29.1113335Z 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-06-01T21:26:29.1118749Z 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-06-01T21:26:29.1124885Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\dbr_quantization 2025-06-01T21:26:29.1128689Z 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-06-01T21:26:29.1134305Z 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-06-01T21:26:29.1140058Z 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-06-01T21:26:29.1190309Z 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-06-01T21:26:29.1195663Z 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-06-01T21:26:29.1201192Z 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-06-01T21:26:29.1206830Z 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-06-01T21:26:29.1212962Z 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-06-01T21:26:29.1219559Z 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-06-01T21:26:29.1225353Z 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-06-01T21:26:29.1231396Z 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-06-01T21:26:29.1237232Z 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-06-01T21:26:29.1248146Z 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-06-01T21:26:29.1253477Z 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-06-01T21:26:29.1259961Z 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-06-01T21:26:29.1265531Z 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-06-01T21:26:29.1271207Z 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-06-01T21:26:29.1276795Z 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-06-01T21:26:29.1282504Z 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-06-01T21:26:29.1288253Z 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-06-01T21:26:29.1293558Z 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-06-01T21:26:29.1303692Z 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-06-01T21:26:29.1309393Z 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-06-01T21:26:29.1315111Z 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-06-01T21:26:29.1320473Z 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-06-01T21:26:29.1325716Z 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-06-01T21:26:29.1331121Z 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-06-01T21:26:29.1336526Z 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-06-01T21:26:29.1342160Z 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-06-01T21:26:29.1347425Z 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-06-01T21:26:29.1357434Z 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-06-01T21:26:29.1363342Z 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-06-01T21:26:29.1368912Z 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-06-01T21:26:29.1374054Z 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-06-01T21:26:29.1380092Z 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-06-01T21:26:29.1385487Z 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-06-01T21:26:29.1390960Z 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-06-01T21:26:29.1396672Z 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-06-01T21:26:29.1401903Z 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-06-01T21:26:29.1407876Z 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-06-01T21:26:29.1413531Z 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-06-01T21:26:29.1427150Z 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-06-01T21:26:29.1433800Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\onnx 2025-06-01T21:26:29.1437690Z 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-06-01T21:26:29.1443096Z 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-06-01T21:26:29.1448962Z 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-06-01T21:26:29.1454646Z 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-06-01T21:26:29.1465788Z 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-06-01T21:26:29.1471324Z 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-06-01T21:26:29.1476665Z 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-06-01T21:26:29.1481850Z 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-06-01T21:26:29.1487718Z 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-06-01T21:26:29.1493164Z 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-06-01T21:26:29.1499286Z 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-06-01T21:26:29.1504137Z 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-06-01T21:26:29.1510023Z 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-06-01T21:26:29.1516329Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion 2025-06-01T21:26:29.1524204Z 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-06-01T21:26:29.1529648Z 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-06-01T21:26:29.1535195Z 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-06-01T21:26:29.1545796Z 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-06-01T21:26:29.1551180Z 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-06-01T21:26:29.1556422Z 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-06-01T21:26:29.1561942Z 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-06-01T21:26:29.1567561Z 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-06-01T21:26:29.1573215Z 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-06-01T21:26:29.1579020Z 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-06-01T21:26:29.1589174Z 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-06-01T21:26:29.1594634Z 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-06-01T21:26:29.1600574Z 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-06-01T21:26:29.1606295Z 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-06-01T21:26:29.1611757Z 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-06-01T21:26:29.1617499Z 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-06-01T21:26:29.1624097Z 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-06-01T21:26:29.1629893Z 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-06-01T21:26:29.1635432Z 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-06-01T21:26:29.1646720Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\quantization 2025-06-01T21:26:29.1650516Z 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-06-01T21:26:29.1656335Z 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-06-01T21:26:29.1662349Z 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-06-01T21:26:29.1667633Z 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-06-01T21:26:29.1748614Z 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-06-01T21:26:29.1755044Z 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-06-01T21:26:29.1761127Z 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-06-01T21:26:29.1767797Z 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-06-01T21:26:29.1773446Z 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-06-01T21:26:29.1778953Z 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-06-01T21:26:29.1784830Z 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-06-01T21:26:29.1790176Z 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-06-01T21:26:29.1796982Z 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-06-01T21:26:29.1802996Z 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-06-01T21:26:29.1808678Z 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-06-01T21:26:29.1814968Z 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-06-01T21:26:29.1821683Z 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-06-01T21:26:29.1831154Z 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-06-01T21:26:29.1836865Z 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-06-01T21:26:29.1842644Z 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-06-01T21:26:29.1848965Z 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-06-01T21:26:29.1854978Z 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-06-01T21:26:29.1860776Z 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-06-01T21:26:29.1866703Z 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-06-01T21:26:29.1872697Z 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-06-01T21:26:29.1878375Z 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-06-01T21:26:29.1884428Z 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-06-01T21:26:29.1891038Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\utils 2025-06-01T21:26:29.1895035Z 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-06-01T21:26:29.1900654Z 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-06-01T21:26:29.1906495Z 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-06-01T21:26:29.1916542Z 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-06-01T21:26:29.1922104Z 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-06-01T21:26:29.1927924Z 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-06-01T21:26:29.1934341Z 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-06-01T21:26:29.1940444Z 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-06-01T21:26:29.1946001Z 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-06-01T21:26:29.1952808Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\python 2025-06-01T21:26:29.1956336Z 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-06-01T21:26:29.1961709Z 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-06-01T21:26:29.1967088Z 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-06-01T21:26:29.1972522Z 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-06-01T21:26:29.1978964Z 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-06-01T21:26:29.1990246Z 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-06-01T21:26:29.1995671Z 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-06-01T21:26:29.2001147Z 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-06-01T21:26:29.2007113Z 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-06-01T21:26:29.2012656Z 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-06-01T21:26:29.2018409Z 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-06-01T21:26:29.2023841Z 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-06-01T21:26:29.2029334Z 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-06-01T21:26:29.2034730Z 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-06-01T21:26:29.2040141Z 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-06-01T21:26:29.2045397Z 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-06-01T21:26:29.2050805Z 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-06-01T21:26:29.2057308Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\runtime 2025-06-01T21:26:29.2060827Z 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-06-01T21:26:29.2066754Z 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-06-01T21:26:29.2072301Z 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-06-01T21:26:29.2077648Z 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-06-01T21:26:29.2088704Z 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-06-01T21:26:29.2094531Z 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-06-01T21:26:29.2099814Z 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-06-01T21:26:29.2105475Z 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-06-01T21:26:29.2110878Z 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-06-01T21:26:29.2121652Z 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-06-01T21:26:29.2127189Z 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-06-01T21:26:29.2160497Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\runtime\interpreter 2025-06-01T21:26:29.2164171Z 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-06-01T21:26:29.2170077Z 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-06-01T21:26:29.2176394Z 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-06-01T21:26:29.2182602Z 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-06-01T21:26:29.2194208Z 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-06-01T21:26:29.2200403Z 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-06-01T21:26:29.2206416Z 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-06-01T21:26:29.2212148Z 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-06-01T21:26:29.2217715Z 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-06-01T21:26:29.2223355Z 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-06-01T21:26:29.2248373Z 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-06-01T21:26:29.2256066Z 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-06-01T21:26:29.3787799Z 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-06-01T21:26:29.3793580Z 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-06-01T21:26:29.3800133Z 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-06-01T21:26:29.3806051Z 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-06-01T21:26:29.3811373Z 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-06-01T21:26:29.3816770Z 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-06-01T21:26:29.3822630Z 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-06-01T21:26:29.3828982Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\runtime\static 2025-06-01T21:26:29.3832561Z 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-06-01T21:26:29.3837947Z 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-06-01T21:26:29.3843930Z 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-06-01T21:26:29.3849183Z 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-06-01T21:26:29.3854547Z 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-06-01T21:26:29.3859982Z 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-06-01T21:26:29.3870329Z 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-06-01T21:26:29.3875880Z 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-06-01T21:26:29.3881354Z 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-06-01T21:26:29.3886744Z 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-06-01T21:26:29.3892604Z 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-06-01T21:26:29.3902340Z 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-06-01T21:26:29.3907880Z 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-06-01T21:26:29.3913765Z 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-06-01T21:26:29.3919264Z 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-06-01T21:26:29.3925496Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\serialization 2025-06-01T21:26:29.3929276Z 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-06-01T21:26:29.3934718Z 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-06-01T21:26:29.3940271Z 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-06-01T21:26:29.3950413Z 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-06-01T21:26:29.3955930Z 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-06-01T21:26:29.3961032Z 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-06-01T21:26:29.3966623Z 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-06-01T21:26:29.3972253Z 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-06-01T21:26:29.3977700Z 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-06-01T21:26:29.3983249Z 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-06-01T21:26:29.3988860Z 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-06-01T21:26:29.3994873Z 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-06-01T21:26:29.4001696Z 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-06-01T21:26:29.4007005Z 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-06-01T21:26:29.4012642Z 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-06-01T21:26:29.4018318Z 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-06-01T21:26:29.4024018Z 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-06-01T21:26:29.4029948Z 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-06-01T21:26:29.4035614Z 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-06-01T21:26:29.4041409Z 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-06-01T21:26:29.4053168Z 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-06-01T21:26:29.4060424Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\tensorexpr 2025-06-01T21:26:29.4064098Z 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-06-01T21:26:29.4069841Z 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-06-01T21:26:29.4075419Z 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-06-01T21:26:29.4081607Z 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-06-01T21:26:29.4091482Z 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-06-01T21:26:29.4096976Z 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-06-01T21:26:29.4102578Z 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-06-01T21:26:29.4108107Z 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-06-01T21:26:29.4113793Z 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-06-01T21:26:29.4119292Z 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-06-01T21:26:29.4124876Z 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-06-01T21:26:29.4130404Z 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-06-01T21:26:29.4135909Z 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-06-01T21:26:29.4141660Z 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-06-01T21:26:29.4147192Z 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-06-01T21:26:29.4153003Z 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-06-01T21:26:29.4159532Z 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-06-01T21:26:29.4165234Z 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-06-01T21:26:29.4170751Z 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-06-01T21:26:29.4176538Z 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-06-01T21:26:29.4182140Z 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-06-01T21:26:29.4192590Z 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-06-01T21:26:29.4198176Z 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-06-01T21:26:29.4204034Z 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-06-01T21:26:29.4210172Z 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-06-01T21:26:29.4216175Z 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-06-01T21:26:29.4221789Z 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-06-01T21:26:29.4227343Z 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-06-01T21:26:29.4232831Z 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-06-01T21:26:29.4238319Z 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-06-01T21:26:29.4243760Z 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-06-01T21:26:29.4249846Z 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-06-01T21:26:29.4259978Z 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-06-01T21:26:29.4265743Z 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-06-01T21:26:29.4272001Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\tensorexpr\operators 2025-06-01T21:26:29.4275545Z 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-06-01T21:26:29.4280966Z 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-06-01T21:26:29.4286057Z 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-06-01T21:26:29.4291251Z 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-06-01T21:26:29.4296333Z 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-06-01T21:26:29.4306398Z 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-06-01T21:26:29.4312436Z 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-06-01T21:26:29.4317947Z 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-06-01T21:26:29.4323240Z 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-06-01T21:26:29.4328594Z 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-06-01T21:26:29.4334229Z 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-06-01T21:26:29.4339831Z 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-06-01T21:26:29.4345715Z 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-06-01T21:26:29.4351257Z 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-06-01T21:26:29.4356510Z 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-06-01T21:26:29.4362028Z 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-06-01T21:26:29.4367574Z 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-06-01T21:26:29.4373791Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\testing 2025-06-01T21:26:29.4377386Z 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-06-01T21:26:29.4383084Z 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-06-01T21:26:29.4388505Z 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-06-01T21:26:29.4394293Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Layout.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:26:29.4399941Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy 2025-06-01T21:26:29.4403348Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\backend 2025-06-01T21:26:29.4406784Z 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-06-01T21:26:29.4412648Z 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-06-01T21:26:29.4418025Z 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-06-01T21:26:29.4423585Z 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-06-01T21:26:29.4434292Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\core 2025-06-01T21:26:29.4437859Z 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-06-01T21:26:29.4443294Z 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-06-01T21:26:29.4448578Z 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-06-01T21:26:29.4453916Z 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-06-01T21:26:29.4459362Z 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-06-01T21:26:29.4470041Z 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-06-01T21:26:29.4475505Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\core\internal_ops 2025-06-01T21:26:29.4478937Z 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-06-01T21:26:29.4484292Z 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-06-01T21:26:29.4489639Z 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-06-01T21:26:29.4494953Z 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-06-01T21:26:29.4500780Z 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-06-01T21:26:29.4506135Z 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-06-01T21:26:29.4511634Z 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-06-01T21:26:29.4517263Z 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-06-01T21:26:29.4522628Z 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-06-01T21:26:29.4528392Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\core\ops 2025-06-01T21:26:29.4531973Z 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-06-01T21:26:29.4537226Z 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-06-01T21:26:29.4542733Z 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-06-01T21:26:29.4548248Z 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-06-01T21:26:29.4553888Z 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-06-01T21:26:29.4559464Z 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-06-01T21:26:29.4564999Z 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-06-01T21:26:29.4570487Z 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-06-01T21:26:29.4576121Z 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-06-01T21:26:29.4581760Z 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-06-01T21:26:29.4587216Z 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-06-01T21:26:29.4596976Z 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-06-01T21:26:29.4603026Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\generated 2025-06-01T21:26:29.4606513Z 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-06-01T21:26:29.4615709Z 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-06-01T21:26:29.4621961Z 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-06-01T21:26:29.4627789Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\python 2025-06-01T21:26:29.4631255Z 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-06-01T21:26:29.4637104Z 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-06-01T21:26:29.4642878Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\ts_backend 2025-06-01T21:26:29.4651036Z 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-06-01T21:26:29.4656276Z 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-06-01T21:26:29.4661851Z 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-06-01T21:26:29.4668169Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\ts_backend\ops 2025-06-01T21:26:29.4676615Z 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-06-01T21:26:29.4682564Z 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-06-01T21:26:29.4687981Z 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-06-01T21:26:29.4693426Z 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-06-01T21:26:29.4698922Z 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-06-01T21:26:29.4704470Z 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-06-01T21:26:29.4710264Z 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-06-01T21:26:29.4716130Z 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-06-01T21:26:29.4721801Z 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-06-01T21:26:29.4727326Z 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-06-01T21:26:29.4733231Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\MemoryFormat.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:26:29.4744112Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Module.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:26:29.4749855Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\monitor 2025-06-01T21:26:29.4753160Z 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-06-01T21:26:29.4758397Z 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-06-01T21:26:29.4763932Z 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-06-01T21:26:29.4770360Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\mps 2025-06-01T21:26:29.4773842Z 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-06-01T21:26:29.4779505Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\mtia 2025-06-01T21:26:29.4783349Z 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-06-01T21:26:29.4788682Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\mtia\profiler 2025-06-01T21:26:29.4792049Z 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-06-01T21:26:29.4797578Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\multiprocessing 2025-06-01T21:26:29.4800978Z 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-06-01T21:26:29.4806092Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\onnx 2025-06-01T21:26:29.4809509Z 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-06-01T21:26:29.4815257Z 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-06-01T21:26:29.4820317Z 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-06-01T21:26:29.4825593Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler 2025-06-01T21:26:29.4828882Z 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-06-01T21:26:29.4833971Z 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-06-01T21:26:29.4841438Z 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-06-01T21:26:29.4846899Z 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-06-01T21:26:29.4857214Z 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-06-01T21:26:29.4862786Z 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-06-01T21:26:29.4868849Z 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-06-01T21:26:29.4873984Z 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-06-01T21:26:29.4879622Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\orchestration 2025-06-01T21:26:29.4883078Z 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-06-01T21:26:29.4888709Z 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-06-01T21:26:29.4894193Z 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-06-01T21:26:29.4899407Z 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-06-01T21:26:29.4904667Z 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-06-01T21:26:29.4910390Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\python 2025-06-01T21:26:29.4914106Z 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-06-01T21:26:29.4919439Z 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-06-01T21:26:29.4924658Z 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-06-01T21:26:29.4930181Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\standalone 2025-06-01T21:26:29.4933735Z 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-06-01T21:26:29.4939810Z 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-06-01T21:26:29.4944787Z 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-06-01T21:26:29.4955183Z 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-06-01T21:26:29.4960640Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\stubs 2025-06-01T21:26:29.4963945Z 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-06-01T21:26:29.4969587Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\unwind 2025-06-01T21:26:29.4973083Z 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-06-01T21:26:29.4978630Z 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-06-01T21:26:29.4983853Z 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-06-01T21:26:29.4989252Z 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-06-01T21:26:29.4999930Z 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-06-01T21:26:29.5005425Z 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-06-01T21:26:29.5011047Z 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-06-01T21:26:29.5016382Z 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-06-01T21:26:29.5021920Z 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-06-01T21:26:29.5031906Z 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-06-01T21:26:29.5037347Z 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-06-01T21:26:29.5042758Z 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-06-01T21:26:29.5048160Z 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-06-01T21:26:29.5053360Z 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-06-01T21:26:29.5059255Z 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-06-01T21:26:29.5064576Z 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-06-01T21:26:29.5069975Z 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-06-01T21:26:29.5079860Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\PyInterpreter.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:26:29.5085048Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\python_dimname.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:26:29.5090601Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\python_headers.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:26:29.5096026Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\QScheme.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:26:29.5101313Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\serialization.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:26:29.5106564Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Size.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:26:29.5112194Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\stable 2025-06-01T21:26:29.5119896Z 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-06-01T21:26:29.5125378Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Storage.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:26:29.5130948Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\StorageMethods.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:26:29.5136031Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\StorageSharing.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:26:29.5141428Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Stream.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:26:29.5147300Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\tensor 2025-06-01T21:26:29.5150719Z 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-06-01T21:26:29.5156171Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\THConcat.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:26:29.5161494Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\THP.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:26:29.5166898Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\TypeInfo.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:26:29.5172267Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Types.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:26:29.5178610Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\utils 2025-06-01T21:26:29.5182017Z 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-06-01T21:26:29.5187690Z 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-06-01T21:26:29.5193025Z 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-06-01T21:26:29.5198251Z 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-06-01T21:26:29.5210418Z 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-06-01T21:26:29.5217145Z 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-06-01T21:26:29.5224860Z 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-06-01T21:26:29.5230675Z 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-06-01T21:26:29.5236465Z 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-06-01T21:26:29.5241775Z 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-06-01T21:26:29.5271077Z 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-06-01T21:26:29.5276606Z 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-06-01T21:26:29.5300905Z 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-06-01T21:26:29.5306812Z 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-06-01T21:26:29.5312177Z 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-06-01T21:26:29.5317507Z 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-06-01T21:26:29.5324585Z 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-06-01T21:26:29.5330865Z 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-06-01T21:26:29.5336446Z 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-06-01T21:26:29.5341930Z 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-06-01T21:26:29.5352712Z 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-06-01T21:26:29.5358348Z 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-06-01T21:26:29.5363925Z 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-06-01T21:26:29.5369418Z 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-06-01T21:26:29.5374857Z 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-06-01T21:26:29.5380700Z 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-06-01T21:26:29.5386212Z 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-06-01T21:26:29.5391880Z 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-06-01T21:26:29.5397335Z 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-06-01T21:26:29.5402785Z 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-06-01T21:26:29.5412601Z 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-06-01T21:26:29.5417955Z 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-06-01T21:26:29.5423230Z 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-06-01T21:26:29.5428656Z 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-06-01T21:26:29.5433975Z 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-06-01T21:26:29.5439287Z 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-06-01T21:26:29.5444941Z 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-06-01T21:26:29.5450649Z 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-06-01T21:26:29.5456843Z 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-06-01T21:26:29.5467154Z 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-06-01T21:26:29.5472851Z 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-06-01T21:26:29.5478546Z 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-06-01T21:26:29.5484560Z 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-06-01T21:26:29.5490082Z 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-06-01T21:26:29.5495606Z 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-06-01T21:26:29.5501024Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-06-01T21:26:29.5507310Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\xpu 2025-06-01T21:26:29.5510736Z 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-06-01T21:26:29.5516493Z 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-06-01T21:26:29.5522175Z 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-06-01T21:26:29.5528577Z copying build\lib.win-amd64-cpython-39\torch\include\torch\custom_class.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-06-01T21:26:29.5535255Z copying build\lib.win-amd64-cpython-39\torch\include\torch\custom_class_detail.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-06-01T21:26:29.5541051Z copying build\lib.win-amd64-cpython-39\torch\include\torch\extension.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-06-01T21:26:29.5551195Z copying build\lib.win-amd64-cpython-39\torch\include\torch\library.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-06-01T21:26:29.5556985Z copying build\lib.win-amd64-cpython-39\torch\include\torch\script.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-06-01T21:26:29.5562705Z copying build\lib.win-amd64-cpython-39\torch\include\xnnpack.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-06-01T21:26:29.5579754Z creating build\bdist.win-amd64\wheel\torch\jit 2025-06-01T21:26:29.5583460Z copying build\lib.win-amd64-cpython-39\torch\jit\annotations.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:26:29.5589375Z copying build\lib.win-amd64-cpython-39\torch\jit\frontend.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:26:29.5595405Z copying build\lib.win-amd64-cpython-39\torch\jit\generate_bytecode.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:26:29.5601110Z creating build\bdist.win-amd64\wheel\torch\jit\mobile 2025-06-01T21:26:29.5604389Z copying build\lib.win-amd64-cpython-39\torch\jit\mobile\__init__.py -> build\bdist.win-amd64\wheel\.\torch\jit\mobile 2025-06-01T21:26:29.5609856Z copying build\lib.win-amd64-cpython-39\torch\jit\quantized.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:26:29.5619454Z copying build\lib.win-amd64-cpython-39\torch\jit\supported_ops.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:26:29.5624968Z copying build\lib.win-amd64-cpython-39\torch\jit\unsupported_tensor_ops.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:26:29.5630383Z copying build\lib.win-amd64-cpython-39\torch\jit\_async.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:26:29.5635688Z copying build\lib.win-amd64-cpython-39\torch\jit\_await.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:26:29.5641088Z copying build\lib.win-amd64-cpython-39\torch\jit\_builtins.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:26:29.5646538Z copying build\lib.win-amd64-cpython-39\torch\jit\_check.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:26:29.5652056Z copying build\lib.win-amd64-cpython-39\torch\jit\_dataclass_impls.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:26:29.5657638Z copying build\lib.win-amd64-cpython-39\torch\jit\_decompositions.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:26:29.5663216Z copying build\lib.win-amd64-cpython-39\torch\jit\_decomposition_utils.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:26:29.5668454Z copying build\lib.win-amd64-cpython-39\torch\jit\_freeze.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:26:29.5673756Z copying build\lib.win-amd64-cpython-39\torch\jit\_fuser.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:26:29.5679084Z copying build\lib.win-amd64-cpython-39\torch\jit\_ir_utils.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:26:29.5684466Z copying build\lib.win-amd64-cpython-39\torch\jit\_logging.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:26:29.5689721Z copying build\lib.win-amd64-cpython-39\torch\jit\_monkeytype_config.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:26:29.5695306Z creating build\bdist.win-amd64\wheel\torch\jit\_passes 2025-06-01T21:26:29.5698748Z copying build\lib.win-amd64-cpython-39\torch\jit\_passes\_property_propagation.py -> build\bdist.win-amd64\wheel\.\torch\jit\_passes 2025-06-01T21:26:29.5704239Z copying build\lib.win-amd64-cpython-39\torch\jit\_passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\jit\_passes 2025-06-01T21:26:29.5708938Z copying build\lib.win-amd64-cpython-39\torch\jit\_pickle.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:26:29.5714693Z copying build\lib.win-amd64-cpython-39\torch\jit\_recursive.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:26:29.5720772Z copying build\lib.win-amd64-cpython-39\torch\jit\_script.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:26:29.5727624Z copying build\lib.win-amd64-cpython-39\torch\jit\_script.pyi -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:26:29.5732964Z copying build\lib.win-amd64-cpython-39\torch\jit\_serialization.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:26:29.5744271Z copying build\lib.win-amd64-cpython-39\torch\jit\_shape_functions.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:26:29.5750871Z copying build\lib.win-amd64-cpython-39\torch\jit\_state.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:26:29.5756060Z copying build\lib.win-amd64-cpython-39\torch\jit\_trace.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:26:29.5762037Z copying build\lib.win-amd64-cpython-39\torch\jit\__init__.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-06-01T21:26:29.5768481Z creating build\bdist.win-amd64\wheel\torch\lib 2025-06-01T21:26:29.5771790Z copying build\lib.win-amd64-cpython-39\torch\lib\aoti_custom_ops.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:26:29.5779893Z copying build\lib.win-amd64-cpython-39\torch\lib\aoti_custom_ops.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:26:29.5785948Z copying build\lib.win-amd64-cpython-39\torch\lib\asmjit.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:26:29.5794695Z copying build\lib.win-amd64-cpython-39\torch\lib\asmjit.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:26:29.5802116Z copying build\lib.win-amd64-cpython-39\torch\lib\backend_with_compiler.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:26:29.5814540Z copying build\lib.win-amd64-cpython-39\torch\lib\backend_with_compiler.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:26:29.5820548Z copying build\lib.win-amd64-cpython-39\torch\lib\c10.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:26:29.5836259Z copying build\lib.win-amd64-cpython-39\torch\lib\c10.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:26:29.5861747Z copying build\lib.win-amd64-cpython-39\torch\lib\c10_cuda.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:26:29.5862437Z copying build\lib.win-amd64-cpython-39\torch\lib\c10_cuda.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:26:29.5864686Z copying build\lib.win-amd64-cpython-39\torch\lib\caffe2_nvrtc.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:26:29.5870506Z copying build\lib.win-amd64-cpython-39\torch\lib\caffe2_nvrtc.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:26:29.5875947Z copying build\lib.win-amd64-cpython-39\torch\lib\cpuinfo.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:26:29.5882655Z copying build\lib.win-amd64-cpython-39\torch\lib\dnnl.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:26:30.2018772Z copying build\lib.win-amd64-cpython-39\torch\lib\fbgemm.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:26:30.2078063Z copying build\lib.win-amd64-cpython-39\torch\lib\fbgemm.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:26:30.2099544Z copying build\lib.win-amd64-cpython-39\torch\lib\fmt.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:26:30.2117284Z copying build\lib.win-amd64-cpython-39\torch\lib\jitbackend_test.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:26:30.2125053Z copying build\lib.win-amd64-cpython-39\torch\lib\jitbackend_test.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:26:30.2131631Z copying build\lib.win-amd64-cpython-39\torch\lib\kineto.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:26:30.2469276Z copying build\lib.win-amd64-cpython-39\torch\lib\libittnotify.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:26:30.2479879Z copying build\lib.win-amd64-cpython-39\torch\lib\libprotobuf-lite.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:26:30.2529006Z copying build\lib.win-amd64-cpython-39\torch\lib\libprotobuf.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:26:30.2870484Z copying build\lib.win-amd64-cpython-39\torch\lib\libprotoc.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:26:30.3224024Z creating build\bdist.win-amd64\wheel\torch\lib\libshm 2025-06-01T21:26:30.3227930Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm\alloc_info.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm 2025-06-01T21:26:30.3233651Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm\err.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm 2025-06-01T21:26:30.3239063Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm\libshm.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm 2025-06-01T21:26:30.3244335Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm\socket.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm 2025-06-01T21:26:30.3250250Z creating build\bdist.win-amd64\wheel\torch\lib\libshm_windows 2025-06-01T21:26:30.3253872Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm_windows\libshm.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm_windows 2025-06-01T21:26:30.3259569Z copying build\lib.win-amd64-cpython-39\torch\lib\microkernels-prod.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:26:30.3292406Z copying build\lib.win-amd64-cpython-39\torch\lib\pthreadpool.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:26:30.3300046Z copying build\lib.win-amd64-cpython-39\torch\lib\shm.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:26:30.3306552Z copying build\lib.win-amd64-cpython-39\torch\lib\shm.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:26:30.3312114Z copying build\lib.win-amd64-cpython-39\torch\lib\sleef.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:26:30.3393181Z copying build\lib.win-amd64-cpython-39\torch\lib\torch.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:26:30.3398803Z copying build\lib.win-amd64-cpython-39\torch\lib\torch.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:26:30.3404219Z copying build\lib.win-amd64-cpython-39\torch\lib\torchbind_test.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:26:30.3414774Z copying build\lib.win-amd64-cpython-39\torch\lib\torchbind_test.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:26:30.3420839Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_cpu.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:26:30.4725144Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_cpu.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:26:30.4996586Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_cuda.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:26:30.6824761Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_cuda.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:26:30.6847675Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_global_deps.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:26:30.6854274Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_python.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:26:30.7001238Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_python.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:26:30.7010546Z copying build\lib.win-amd64-cpython-39\torch\lib\XNNPACK.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:26:30.7040440Z copying build\lib.win-amd64-cpython-39\torch\lib\_C.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-06-01T21:26:30.7046019Z copying build\lib.win-amd64-cpython-39\torch\library.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:30.7053075Z creating build\bdist.win-amd64\wheel\torch\linalg 2025-06-01T21:26:30.7056328Z copying build\lib.win-amd64-cpython-39\torch\linalg\__init__.py -> build\bdist.win-amd64\wheel\.\torch\linalg 2025-06-01T21:26:30.7063801Z creating build\bdist.win-amd64\wheel\torch\masked 2025-06-01T21:26:30.7067356Z creating build\bdist.win-amd64\wheel\torch\masked\maskedtensor 2025-06-01T21:26:30.7070733Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\binary.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-06-01T21:26:30.7076041Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\core.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-06-01T21:26:30.7081292Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\creation.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-06-01T21:26:30.7086295Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\passthrough.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-06-01T21:26:30.7092091Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\reductions.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-06-01T21:26:30.7103210Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\unary.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-06-01T21:26:30.7108439Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\_ops_refs.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-06-01T21:26:30.7114130Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-06-01T21:26:30.7119040Z copying build\lib.win-amd64-cpython-39\torch\masked\_docs.py -> build\bdist.win-amd64\wheel\.\torch\masked 2025-06-01T21:26:30.7124979Z copying build\lib.win-amd64-cpython-39\torch\masked\_ops.py -> build\bdist.win-amd64\wheel\.\torch\masked 2025-06-01T21:26:30.7131280Z copying build\lib.win-amd64-cpython-39\torch\masked\__init__.py -> build\bdist.win-amd64\wheel\.\torch\masked 2025-06-01T21:26:30.7136740Z creating build\bdist.win-amd64\wheel\torch\monitor 2025-06-01T21:26:30.7140042Z copying build\lib.win-amd64-cpython-39\torch\monitor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\monitor 2025-06-01T21:26:30.7145437Z creating build\bdist.win-amd64\wheel\torch\mps 2025-06-01T21:26:30.7148731Z copying build\lib.win-amd64-cpython-39\torch\mps\event.py -> build\bdist.win-amd64\wheel\.\torch\mps 2025-06-01T21:26:30.7154235Z copying build\lib.win-amd64-cpython-39\torch\mps\profiler.py -> build\bdist.win-amd64\wheel\.\torch\mps 2025-06-01T21:26:30.7159428Z copying build\lib.win-amd64-cpython-39\torch\mps\__init__.py -> build\bdist.win-amd64\wheel\.\torch\mps 2025-06-01T21:26:30.7164819Z creating build\bdist.win-amd64\wheel\torch\mtia 2025-06-01T21:26:30.7168053Z copying build\lib.win-amd64-cpython-39\torch\mtia\memory.py -> build\bdist.win-amd64\wheel\.\torch\mtia 2025-06-01T21:26:30.7173241Z copying build\lib.win-amd64-cpython-39\torch\mtia\_utils.py -> build\bdist.win-amd64\wheel\.\torch\mtia 2025-06-01T21:26:30.7178507Z copying build\lib.win-amd64-cpython-39\torch\mtia\__init__.py -> build\bdist.win-amd64\wheel\.\torch\mtia 2025-06-01T21:26:30.7184309Z creating build\bdist.win-amd64\wheel\torch\multiprocessing 2025-06-01T21:26:30.7187533Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\pool.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-06-01T21:26:30.7192808Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\queue.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-06-01T21:26:30.7197981Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\reductions.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-06-01T21:26:30.7203679Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\spawn.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-06-01T21:26:30.7208857Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\_atfork.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-06-01T21:26:30.7218364Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-06-01T21:26:30.7224394Z creating build\bdist.win-amd64\wheel\torch\nested 2025-06-01T21:26:30.7227630Z creating build\bdist.win-amd64\wheel\torch\nested\_internal 2025-06-01T21:26:30.7230961Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\nested_int.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-06-01T21:26:30.7236254Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\nested_tensor.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-06-01T21:26:30.7241999Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\ops.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-06-01T21:26:30.7249905Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\sdpa.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-06-01T21:26:30.7264304Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-06-01T21:26:30.7268525Z copying build\lib.win-amd64-cpython-39\torch\nested\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nested 2025-06-01T21:26:30.7274672Z creating build\bdist.win-amd64\wheel\torch\nn 2025-06-01T21:26:30.7277996Z creating build\bdist.win-amd64\wheel\torch\nn\attention 2025-06-01T21:26:30.7281235Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\bias.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention 2025-06-01T21:26:30.7287110Z creating build\bdist.win-amd64\wheel\torch\nn\attention\experimental 2025-06-01T21:26:30.7290525Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\experimental\_paged_attention.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention\experimental 2025-06-01T21:26:30.7296349Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention\experimental 2025-06-01T21:26:30.7301465Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\flex_attention.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention 2025-06-01T21:26:30.7307832Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\_utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention 2025-06-01T21:26:30.7318454Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention 2025-06-01T21:26:30.7324058Z creating build\bdist.win-amd64\wheel\torch\nn\backends 2025-06-01T21:26:30.7327203Z copying build\lib.win-amd64-cpython-39\torch\nn\backends\thnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\backends 2025-06-01T21:26:30.7332583Z copying build\lib.win-amd64-cpython-39\torch\nn\backends\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\backends 2025-06-01T21:26:30.7338595Z copying build\lib.win-amd64-cpython-39\torch\nn\common_types.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-06-01T21:26:30.7344741Z copying build\lib.win-amd64-cpython-39\torch\nn\cpp.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-06-01T21:26:30.7350457Z copying build\lib.win-amd64-cpython-39\torch\nn\functional.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-06-01T21:26:30.7362744Z copying build\lib.win-amd64-cpython-39\torch\nn\functional.pyi -> build\bdist.win-amd64\wheel\.\torch\nn 2025-06-01T21:26:30.7368808Z copying build\lib.win-amd64-cpython-39\torch\nn\grad.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-06-01T21:26:30.7374192Z copying build\lib.win-amd64-cpython-39\torch\nn\init.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-06-01T21:26:30.7385286Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic 2025-06-01T21:26:30.7388866Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\modules 2025-06-01T21:26:30.7392202Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\modules\fused.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\modules 2025-06-01T21:26:30.7397246Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\modules 2025-06-01T21:26:30.7402525Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\qat 2025-06-01T21:26:30.7405890Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\qat\modules 2025-06-01T21:26:30.7409165Z 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-06-01T21:26:30.7414483Z 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-06-01T21:26:30.7419678Z 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-06-01T21:26:30.7424711Z 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-06-01T21:26:30.7435773Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\qat 2025-06-01T21:26:30.7440945Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\quantized 2025-06-01T21:26:30.7444208Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\quantized\dynamic 2025-06-01T21:26:30.7449381Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\quantized\dynamic\modules 2025-06-01T21:26:30.7451549Z 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-06-01T21:26:30.7456662Z 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-06-01T21:26:30.7461668Z 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-06-01T21:26:30.7466822Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\quantized\modules 2025-06-01T21:26:30.7470105Z 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-06-01T21:26:30.7475235Z 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-06-01T21:26:30.7480278Z 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-06-01T21:26:30.7485395Z 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-06-01T21:26:30.7490787Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\quantized 2025-06-01T21:26:30.7495854Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic 2025-06-01T21:26:30.7501724Z creating build\bdist.win-amd64\wheel\torch\nn\modules 2025-06-01T21:26:30.7504929Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\activation.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:26:30.7511246Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\adaptive.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:26:30.7516486Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\batchnorm.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:26:30.7522410Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\channelshuffle.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:26:30.7532520Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\container.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:26:30.7538445Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\conv.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:26:30.7544788Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\distance.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:26:30.7550059Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\dropout.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:26:30.7555221Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\flatten.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:26:30.7560530Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\fold.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:26:30.7614101Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\instancenorm.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:26:30.7620239Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\lazy.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:26:30.7625792Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:26:30.7631167Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\loss.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:26:30.7637887Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\module.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:26:30.7645043Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\normalization.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:26:30.7650726Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\padding.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:26:30.7656767Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\pixelshuffle.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:26:30.7662363Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\pooling.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:26:30.7669119Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\rnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:26:30.7675757Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\sparse.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:26:30.7682120Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\transformer.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:26:30.7688401Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\upsampling.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:26:30.7694127Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:26:30.7700011Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\_functions.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:26:30.7705604Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-06-01T21:26:30.7712188Z creating build\bdist.win-amd64\wheel\torch\nn\parallel 2025-06-01T21:26:30.7715412Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\comm.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-06-01T21:26:30.7721448Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\data_parallel.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-06-01T21:26:30.7727320Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\distributed.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-06-01T21:26:30.7733950Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\parallel_apply.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-06-01T21:26:30.7745477Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\replicate.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-06-01T21:26:30.7751305Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\scatter_gather.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-06-01T21:26:30.7756829Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\_functions.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-06-01T21:26:30.7762244Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-06-01T21:26:30.7767412Z copying build\lib.win-amd64-cpython-39\torch\nn\parameter.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-06-01T21:26:30.7772931Z copying build\lib.win-amd64-cpython-39\torch\nn\parameter.pyi -> build\bdist.win-amd64\wheel\.\torch\nn 2025-06-01T21:26:30.7778706Z creating build\bdist.win-amd64\wheel\torch\nn\qat 2025-06-01T21:26:30.7782003Z creating build\bdist.win-amd64\wheel\torch\nn\qat\dynamic 2025-06-01T21:26:30.7785242Z creating build\bdist.win-amd64\wheel\torch\nn\qat\dynamic\modules 2025-06-01T21:26:30.7788675Z 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-06-01T21:26:30.7793750Z 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-06-01T21:26:30.7798625Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\dynamic 2025-06-01T21:26:30.7803866Z creating build\bdist.win-amd64\wheel\torch\nn\qat\modules 2025-06-01T21:26:30.7806988Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\modules\conv.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\modules 2025-06-01T21:26:30.7829909Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\modules\embedding_ops.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\modules 2025-06-01T21:26:30.7834829Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\modules 2025-06-01T21:26:30.7839719Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\modules 2025-06-01T21:26:30.7844513Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat 2025-06-01T21:26:30.7849694Z creating build\bdist.win-amd64\wheel\torch\nn\quantizable 2025-06-01T21:26:30.7853060Z creating build\bdist.win-amd64\wheel\torch\nn\quantizable\modules 2025-06-01T21:26:30.7856336Z copying build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules\activation.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantizable\modules 2025-06-01T21:26:30.7861896Z copying build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules\rnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantizable\modules 2025-06-01T21:26:30.7867034Z copying build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantizable\modules 2025-06-01T21:26:30.7872011Z copying build\lib.win-amd64-cpython-39\torch\nn\quantizable\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantizable 2025-06-01T21:26:30.7877681Z creating build\bdist.win-amd64\wheel\torch\nn\quantized 2025-06-01T21:26:30.7880996Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\dynamic 2025-06-01T21:26:30.7884278Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\dynamic\modules 2025-06-01T21:26:30.7887517Z 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-06-01T21:26:30.7892961Z 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-06-01T21:26:30.7898084Z 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-06-01T21:26:30.7903496Z 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-06-01T21:26:30.7909098Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\dynamic 2025-06-01T21:26:30.7920675Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\functional.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized 2025-06-01T21:26:30.7926217Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\modules 2025-06-01T21:26:30.7929856Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\activation.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-06-01T21:26:30.7934883Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\batchnorm.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-06-01T21:26:30.7940108Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\conv.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-06-01T21:26:30.7945166Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\dropout.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-06-01T21:26:30.7950381Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\embedding_ops.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-06-01T21:26:30.7961153Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\functional_modules.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-06-01T21:26:30.7966573Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-06-01T21:26:30.7971602Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\normalization.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-06-01T21:26:30.7976999Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\rnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-06-01T21:26:30.7982175Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-06-01T21:26:30.7987451Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-06-01T21:26:30.7992894Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\_reference 2025-06-01T21:26:30.8001531Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\_reference\modules 2025-06-01T21:26:30.8004732Z 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-06-01T21:26:30.8009913Z 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-06-01T21:26:30.8014897Z 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-06-01T21:26:30.8020042Z 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-06-01T21:26:30.8024961Z 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-06-01T21:26:30.8029834Z 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-06-01T21:26:30.8035182Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\_reference 2025-06-01T21:26:30.8040521Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized 2025-06-01T21:26:30.8046009Z creating build\bdist.win-amd64\wheel\torch\nn\utils 2025-06-01T21:26:30.8049259Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\clip_grad.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-06-01T21:26:30.8054651Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\convert_parameters.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-06-01T21:26:30.8065657Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\fusion.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-06-01T21:26:30.8070942Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\init.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-06-01T21:26:30.8076279Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\memory_format.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-06-01T21:26:30.8086732Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\parametrizations.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-06-01T21:26:30.8092887Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\parametrize.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-06-01T21:26:30.8099511Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\prune.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-06-01T21:26:30.8106040Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\rnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-06-01T21:26:30.8112229Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\spectral_norm.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-06-01T21:26:30.8117970Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\stateless.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-06-01T21:26:30.8123494Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\weight_norm.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-06-01T21:26:30.8129014Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_deprecation_utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-06-01T21:26:30.8134662Z creating build\bdist.win-amd64\wheel\torch\nn\utils\_expanded_weights 2025-06-01T21:26:30.8138397Z 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-06-01T21:26:30.8143763Z 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-06-01T21:26:30.8149516Z 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-06-01T21:26:30.8160007Z 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-06-01T21:26:30.8165511Z 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-06-01T21:26:30.8171169Z 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-06-01T21:26:30.8176644Z 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-06-01T21:26:30.8182245Z 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-06-01T21:26:30.8187778Z 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-06-01T21:26:30.8193141Z 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-06-01T21:26:30.8198544Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_named_member_accessor.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-06-01T21:26:30.8204461Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_per_sample_grad.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-06-01T21:26:30.8209866Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-06-01T21:26:30.8215320Z copying build\lib.win-amd64-cpython-39\torch\nn\_reduction.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-06-01T21:26:30.8220747Z copying build\lib.win-amd64-cpython-39\torch\nn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-06-01T21:26:30.8227444Z creating build\bdist.win-amd64\wheel\torch\onnx 2025-06-01T21:26:30.8230717Z copying build\lib.win-amd64-cpython-39\torch\onnx\errors.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:26:30.8236011Z copying build\lib.win-amd64-cpython-39\torch\onnx\operators.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:26:30.8241646Z creating build\bdist.win-amd64\wheel\torch\onnx\ops 2025-06-01T21:26:30.8244832Z copying build\lib.win-amd64-cpython-39\torch\onnx\ops\_symbolic_impl.py -> build\bdist.win-amd64\wheel\.\torch\onnx\ops 2025-06-01T21:26:30.8250416Z copying build\lib.win-amd64-cpython-39\torch\onnx\ops\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\ops 2025-06-01T21:26:30.8255980Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_caffe2.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:26:30.8261452Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_helper.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:26:30.8272752Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset10.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:26:30.8278862Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset11.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:26:30.8285244Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset12.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:26:30.8290988Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset13.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:26:30.8297153Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset14.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:26:30.8302886Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset15.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:26:30.8308433Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset16.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:26:30.8313814Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset17.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:26:30.8319288Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset18.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:26:30.8324846Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset19.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:26:30.8329965Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset20.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:26:30.8335463Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset7.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:26:30.8340958Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset8.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:26:30.8346798Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset9.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:26:30.8354668Z copying build\lib.win-amd64-cpython-39\torch\onnx\utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:26:30.8366482Z copying build\lib.win-amd64-cpython-39\torch\onnx\verification.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:26:30.8373215Z copying build\lib.win-amd64-cpython-39\torch\onnx\_constants.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:26:30.8378915Z copying build\lib.win-amd64-cpython-39\torch\onnx\_experimental.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:26:30.8384330Z copying build\lib.win-amd64-cpython-39\torch\onnx\_flags.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:26:30.8389976Z copying build\lib.win-amd64-cpython-39\torch\onnx\_globals.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:26:30.8396326Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal 2025-06-01T21:26:30.8400318Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\exporter 2025-06-01T21:26:30.8403876Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_analysis.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:26:30.8409867Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_building.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:26:30.8416716Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_capture_strategies.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:26:30.8422223Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_compat.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:26:30.8432598Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_constants.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:26:30.8437869Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_core.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:26:30.8444135Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_decomp.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:26:30.8449361Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_dispatching.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:26:30.8459500Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_dynamic_shapes.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:26:30.8464874Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_errors.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:26:30.8470154Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_flags.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:26:30.8475268Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_fx_passes.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:26:30.8480536Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_ir_passes.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:26:30.8485853Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_isolated.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:26:30.8491131Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_onnx_program.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:26:30.8496875Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_registration.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:26:30.8502730Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_reporting.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:26:30.8507979Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_schemas.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:26:30.8513649Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_tensors.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:26:30.8519146Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_testing.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:26:30.8524872Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\exporter\_torchlib 2025-06-01T21:26:30.8528403Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\exporter\_torchlib\ops 2025-06-01T21:26:30.8531647Z 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-06-01T21:26:30.8537582Z 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-06-01T21:26:30.8542697Z 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-06-01T21:26:30.8547908Z 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-06-01T21:26:30.8553027Z 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-06-01T21:26:30.8558404Z 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-06-01T21:26:30.8563595Z 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-06-01T21:26:30.8608009Z 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-06-01T21:26:30.8613766Z 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-06-01T21:26:30.8623091Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_type_casting.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:26:30.8628668Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_verification.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:26:30.8638603Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-06-01T21:26:30.8643542Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\fx 2025-06-01T21:26:30.8646948Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\decomposition_table.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-06-01T21:26:30.8652527Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\dynamo_graph_extractor.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-06-01T21:26:30.8658032Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\fx_onnx_interpreter.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-06-01T21:26:30.8668516Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\onnxfunction_dispatcher.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-06-01T21:26:30.8676057Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\fx\passes 2025-06-01T21:26:30.8679546Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes\decomp.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx\passes 2025-06-01T21:26:30.8684977Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes\functionalization.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx\passes 2025-06-01T21:26:30.8690440Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes\modularization.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx\passes 2025-06-01T21:26:30.8696356Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes\readability.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx\passes 2025-06-01T21:26:30.8706240Z 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-06-01T21:26:30.8712704Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes\virtualization.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx\passes 2025-06-01T21:26:30.8718184Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes\_utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx\passes 2025-06-01T21:26:30.8723561Z 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-06-01T21:26:30.8728613Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\patcher.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-06-01T21:26:30.8734268Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\registration.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-06-01T21:26:30.8739856Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\serialization.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-06-01T21:26:30.8745324Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\type_utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-06-01T21:26:30.8750639Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\_pass.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-06-01T21:26:30.8755885Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-06-01T21:26:30.8760919Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\io_adapter.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-06-01T21:26:30.8766785Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\jit_utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-06-01T21:26:30.8776847Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\onnxruntime.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-06-01T21:26:30.8783140Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\onnx_proto_utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-06-01T21:26:30.8788845Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\registration.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-06-01T21:26:30.8794609Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\_exporter_legacy.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-06-01T21:26:30.8800404Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\_lazy_import.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-06-01T21:26:30.8806014Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-06-01T21:26:30.8810623Z copying build\lib.win-amd64-cpython-39\torch\onnx\_onnx_supported_ops.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:26:30.8816449Z copying build\lib.win-amd64-cpython-39\torch\onnx\_type_utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:26:30.8822307Z copying build\lib.win-amd64-cpython-39\torch\onnx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-06-01T21:26:30.8829287Z creating build\bdist.win-amd64\wheel\torch\optim 2025-06-01T21:26:30.8832731Z copying build\lib.win-amd64-cpython-39\torch\optim\adadelta.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-06-01T21:26:30.8839034Z copying build\lib.win-amd64-cpython-39\torch\optim\adagrad.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-06-01T21:26:30.8850347Z copying build\lib.win-amd64-cpython-39\torch\optim\adam.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-06-01T21:26:30.8856234Z copying build\lib.win-amd64-cpython-39\torch\optim\adamax.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-06-01T21:26:30.8867190Z copying build\lib.win-amd64-cpython-39\torch\optim\adamw.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-06-01T21:26:30.8872674Z copying build\lib.win-amd64-cpython-39\torch\optim\asgd.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-06-01T21:26:30.8878443Z copying build\lib.win-amd64-cpython-39\torch\optim\lbfgs.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-06-01T21:26:30.8889200Z copying build\lib.win-amd64-cpython-39\torch\optim\lr_scheduler.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-06-01T21:26:30.8896405Z copying build\lib.win-amd64-cpython-39\torch\optim\nadam.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-06-01T21:26:30.8902064Z copying build\lib.win-amd64-cpython-39\torch\optim\optimizer.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-06-01T21:26:30.8908298Z copying build\lib.win-amd64-cpython-39\torch\optim\radam.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-06-01T21:26:30.8914349Z copying build\lib.win-amd64-cpython-39\torch\optim\rmsprop.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-06-01T21:26:30.8919994Z copying build\lib.win-amd64-cpython-39\torch\optim\rprop.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-06-01T21:26:30.8925787Z copying build\lib.win-amd64-cpython-39\torch\optim\sgd.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-06-01T21:26:30.8931461Z copying build\lib.win-amd64-cpython-39\torch\optim\sparse_adam.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-06-01T21:26:30.8936820Z copying build\lib.win-amd64-cpython-39\torch\optim\swa_utils.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-06-01T21:26:30.8942651Z copying build\lib.win-amd64-cpython-39\torch\optim\_adafactor.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-06-01T21:26:30.8948556Z copying build\lib.win-amd64-cpython-39\torch\optim\_functional.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-06-01T21:26:30.8954418Z creating build\bdist.win-amd64\wheel\torch\optim\_multi_tensor 2025-06-01T21:26:30.8957782Z copying build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\optim\_multi_tensor 2025-06-01T21:26:30.8962964Z copying build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor\__init__.pyi -> build\bdist.win-amd64\wheel\.\torch\optim\_multi_tensor 2025-06-01T21:26:30.8968172Z copying build\lib.win-amd64-cpython-39\torch\optim\__init__.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-06-01T21:26:30.8973584Z copying build\lib.win-amd64-cpython-39\torch\overrides.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:30.8981090Z creating build\bdist.win-amd64\wheel\torch\package 2025-06-01T21:26:30.8984397Z creating build\bdist.win-amd64\wheel\torch\package\analyze 2025-06-01T21:26:30.8987778Z 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-06-01T21:26:30.8993418Z copying build\lib.win-amd64-cpython-39\torch\package\analyze\is_from_package.py -> build\bdist.win-amd64\wheel\.\torch\package\analyze 2025-06-01T21:26:30.8998423Z copying build\lib.win-amd64-cpython-39\torch\package\analyze\trace_dependencies.py -> build\bdist.win-amd64\wheel\.\torch\package\analyze 2025-06-01T21:26:30.9008692Z copying build\lib.win-amd64-cpython-39\torch\package\analyze\__init__.py -> build\bdist.win-amd64\wheel\.\torch\package\analyze 2025-06-01T21:26:30.9013753Z copying build\lib.win-amd64-cpython-39\torch\package\file_structure_representation.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-06-01T21:26:30.9019269Z copying build\lib.win-amd64-cpython-39\torch\package\find_file_dependencies.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-06-01T21:26:30.9024858Z copying build\lib.win-amd64-cpython-39\torch\package\glob_group.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-06-01T21:26:30.9034621Z copying build\lib.win-amd64-cpython-39\torch\package\importer.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-06-01T21:26:30.9039851Z copying build\lib.win-amd64-cpython-39\torch\package\package_exporter.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-06-01T21:26:30.9045993Z copying build\lib.win-amd64-cpython-39\torch\package\package_importer.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-06-01T21:26:30.9051869Z copying build\lib.win-amd64-cpython-39\torch\package\_digraph.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-06-01T21:26:30.9057197Z copying build\lib.win-amd64-cpython-39\torch\package\_directory_reader.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-06-01T21:26:30.9062585Z copying build\lib.win-amd64-cpython-39\torch\package\_importlib.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-06-01T21:26:30.9067779Z copying build\lib.win-amd64-cpython-39\torch\package\_mangling.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-06-01T21:26:30.9073398Z copying build\lib.win-amd64-cpython-39\torch\package\_mock.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-06-01T21:26:30.9078627Z copying build\lib.win-amd64-cpython-39\torch\package\_package_pickler.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-06-01T21:26:30.9084411Z copying build\lib.win-amd64-cpython-39\torch\package\_package_unpickler.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-06-01T21:26:30.9089603Z copying build\lib.win-amd64-cpython-39\torch\package\_stdlib.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-06-01T21:26:30.9094887Z copying build\lib.win-amd64-cpython-39\torch\package\__init__.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-06-01T21:26:30.9100853Z creating build\bdist.win-amd64\wheel\torch\profiler 2025-06-01T21:26:30.9108771Z copying build\lib.win-amd64-cpython-39\torch\profiler\itt.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-06-01T21:26:30.9114136Z copying build\lib.win-amd64-cpython-39\torch\profiler\profiler.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-06-01T21:26:30.9120144Z copying build\lib.win-amd64-cpython-39\torch\profiler\python_tracer.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-06-01T21:26:30.9125253Z copying build\lib.win-amd64-cpython-39\torch\profiler\_memory_profiler.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-06-01T21:26:30.9131776Z copying build\lib.win-amd64-cpython-39\torch\profiler\_pattern_matcher.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-06-01T21:26:30.9142294Z copying build\lib.win-amd64-cpython-39\torch\profiler\_utils.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-06-01T21:26:30.9147575Z copying build\lib.win-amd64-cpython-39\torch\profiler\__init__.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-06-01T21:26:30.9158622Z copying build\lib.win-amd64-cpython-39\torch\py.typed -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:30.9163834Z creating build\bdist.win-amd64\wheel\torch\quantization 2025-06-01T21:26:30.9167198Z copying build\lib.win-amd64-cpython-39\torch\quantization\fake_quantize.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-06-01T21:26:30.9172635Z copying build\lib.win-amd64-cpython-39\torch\quantization\fuser_method_mappings.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-06-01T21:26:30.9177884Z copying build\lib.win-amd64-cpython-39\torch\quantization\fuse_modules.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-06-01T21:26:30.9188654Z creating build\bdist.win-amd64\wheel\torch\quantization\fx 2025-06-01T21:26:30.9192056Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\convert.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-06-01T21:26:30.9197203Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\fuse.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-06-01T21:26:30.9202337Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\fusion_patterns.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-06-01T21:26:30.9207564Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\graph_module.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-06-01T21:26:30.9212734Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\match_utils.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-06-01T21:26:30.9223229Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\pattern_utils.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-06-01T21:26:30.9229153Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\prepare.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-06-01T21:26:30.9233806Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\quantization_patterns.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-06-01T21:26:30.9239079Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\quantization_types.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-06-01T21:26:30.9244253Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\utils.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-06-01T21:26:30.9249717Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\_equalize.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-06-01T21:26:30.9255070Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-06-01T21:26:30.9260259Z copying build\lib.win-amd64-cpython-39\torch\quantization\observer.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-06-01T21:26:30.9265489Z copying build\lib.win-amd64-cpython-39\torch\quantization\qconfig.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-06-01T21:26:30.9270899Z copying build\lib.win-amd64-cpython-39\torch\quantization\quantization_mappings.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-06-01T21:26:30.9276133Z copying build\lib.win-amd64-cpython-39\torch\quantization\quantize.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-06-01T21:26:30.9281277Z copying build\lib.win-amd64-cpython-39\torch\quantization\quantize_fx.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-06-01T21:26:30.9294563Z copying build\lib.win-amd64-cpython-39\torch\quantization\quantize_jit.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-06-01T21:26:30.9300094Z copying build\lib.win-amd64-cpython-39\torch\quantization\quant_type.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-06-01T21:26:30.9305839Z copying build\lib.win-amd64-cpython-39\torch\quantization\stubs.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-06-01T21:26:30.9310894Z copying build\lib.win-amd64-cpython-39\torch\quantization\utils.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-06-01T21:26:30.9316546Z copying build\lib.win-amd64-cpython-39\torch\quantization\_numeric_suite.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-06-01T21:26:30.9322428Z copying build\lib.win-amd64-cpython-39\torch\quantization\_numeric_suite_fx.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-06-01T21:26:30.9328510Z copying build\lib.win-amd64-cpython-39\torch\quantization\_quantized_conversions.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-06-01T21:26:30.9333956Z copying build\lib.win-amd64-cpython-39\torch\quantization\__init__.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-06-01T21:26:30.9339546Z copying build\lib.win-amd64-cpython-39\torch\quasirandom.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:30.9345424Z copying build\lib.win-amd64-cpython-39\torch\random.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:30.9350927Z copying build\lib.win-amd64-cpython-39\torch\return_types.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:30.9356661Z copying build\lib.win-amd64-cpython-39\torch\return_types.pyi -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:30.9362723Z copying build\lib.win-amd64-cpython-39\torch\serialization.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:30.9369858Z creating build\bdist.win-amd64\wheel\torch\share 2025-06-01T21:26:30.9395588Z creating build\bdist.win-amd64\wheel\torch\share\cmake 2025-06-01T21:26:30.9398840Z creating build\bdist.win-amd64\wheel\torch\share\cmake\ATen 2025-06-01T21:26:30.9402087Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\ATen\ATenConfig.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\ATen 2025-06-01T21:26:30.9407532Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2 2025-06-01T21:26:30.9411152Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Caffe2Config.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-06-01T21:26:30.9416633Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Caffe2Targets-release.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-06-01T21:26:30.9422032Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Caffe2Targets.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-06-01T21:26:30.9431770Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\FindCUDAToolkit.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-06-01T21:26:30.9438009Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\FindCUDSS.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-06-01T21:26:30.9443421Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\FindCUSPARSELT.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-06-01T21:26:30.9448783Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\FindSYCLToolkit.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-06-01T21:26:30.9454450Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2\Modules_CUDA_fix 2025-06-01T21:26:30.9457962Z 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-06-01T21:26:30.9463057Z 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-06-01T21:26:30.9470063Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream 2025-06-01T21:26:30.9479741Z 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-06-01T21:26:30.9485208Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA 2025-06-01T21:26:30.9488694Z 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-06-01T21:26:30.9494316Z 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-06-01T21:26:30.9499694Z 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-06-01T21:26:30.9509984Z 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-06-01T21:26:30.9515351Z 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-06-01T21:26:30.9522247Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindPackageHandleStandardArgs.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream 2025-06-01T21:26:30.9532517Z 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-06-01T21:26:30.9538106Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2\public 2025-06-01T21:26:30.9541437Z 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-06-01T21:26:30.9547263Z 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-06-01T21:26:30.9552477Z 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-06-01T21:26:30.9557729Z 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-06-01T21:26:30.9567752Z 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-06-01T21:26:30.9573502Z 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-06-01T21:26:30.9578816Z 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-06-01T21:26:30.9584085Z 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-06-01T21:26:30.9589838Z 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-06-01T21:26:30.9595454Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Torch 2025-06-01T21:26:30.9598623Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Torch\TorchConfig.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Torch 2025-06-01T21:26:30.9604224Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Torch\TorchConfigVersion.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Torch 2025-06-01T21:26:30.9609387Z creating build\bdist.win-amd64\wheel\torch\signal 2025-06-01T21:26:30.9612612Z creating build\bdist.win-amd64\wheel\torch\signal\windows 2025-06-01T21:26:30.9615719Z copying build\lib.win-amd64-cpython-39\torch\signal\windows\windows.py -> build\bdist.win-amd64\wheel\.\torch\signal\windows 2025-06-01T21:26:30.9626438Z copying build\lib.win-amd64-cpython-39\torch\signal\windows\__init__.py -> build\bdist.win-amd64\wheel\.\torch\signal\windows 2025-06-01T21:26:30.9631668Z copying build\lib.win-amd64-cpython-39\torch\signal\__init__.py -> build\bdist.win-amd64\wheel\.\torch\signal 2025-06-01T21:26:30.9637065Z creating build\bdist.win-amd64\wheel\torch\sparse 2025-06-01T21:26:30.9640216Z copying build\lib.win-amd64-cpython-39\torch\sparse\semi_structured.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-06-01T21:26:30.9646165Z copying build\lib.win-amd64-cpython-39\torch\sparse\_semi_structured_conversions.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-06-01T21:26:30.9651498Z copying build\lib.win-amd64-cpython-39\torch\sparse\_semi_structured_ops.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-06-01T21:26:30.9661192Z copying build\lib.win-amd64-cpython-39\torch\sparse\_triton_ops.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-06-01T21:26:30.9667919Z copying build\lib.win-amd64-cpython-39\torch\sparse\_triton_ops_meta.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-06-01T21:26:30.9678260Z copying build\lib.win-amd64-cpython-39\torch\sparse\__init__.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-06-01T21:26:30.9684100Z creating build\bdist.win-amd64\wheel\torch\special 2025-06-01T21:26:30.9687256Z copying build\lib.win-amd64-cpython-39\torch\special\__init__.py -> build\bdist.win-amd64\wheel\.\torch\special 2025-06-01T21:26:30.9693074Z copying build\lib.win-amd64-cpython-39\torch\storage.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:30.9701245Z creating build\bdist.win-amd64\wheel\torch\test 2025-06-01T21:26:30.9710045Z copying build\lib.win-amd64-cpython-39\torch\test\apply_utils_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:30.9719063Z copying build\lib.win-amd64-cpython-39\torch\test\atest.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:30.9728428Z copying build\lib.win-amd64-cpython-39\torch\test\backend_fallback_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:30.9737396Z copying build\lib.win-amd64-cpython-39\torch\test\basic.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:30.9751339Z copying build\lib.win-amd64-cpython-39\torch\test\broadcast_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:30.9760187Z copying build\lib.win-amd64-cpython-39\torch\test\c10_accumulate_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:30.9768566Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ArrayRef_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:30.9776837Z copying build\lib.win-amd64-cpython-39\torch\test\c10_bfloat16_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:30.9785797Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Bitset_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:30.9794829Z copying build\lib.win-amd64-cpython-39\torch\test\c10_bit_cast_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:30.9803670Z copying build\lib.win-amd64-cpython-39\torch\test\c10_CompileTimeFunctionPointer_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:30.9818546Z copying build\lib.win-amd64-cpython-39\torch\test\c10_complex_math_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:30.9827965Z copying build\lib.win-amd64-cpython-39\torch\test\c10_complex_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:30.9837446Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ConstexprCrc_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:30.9846807Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cow_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:30.9857354Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cuda_CUDAAssertionsTest_1_var_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:30.9866689Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cuda_CUDAAssertionsTest_catches_stream.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:30.9910981Z 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-06-01T21:26:30.9925259Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cuda_CUDAAssertionsTest_from_2_processes.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:30.9934056Z 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-06-01T21:26:30.9943076Z 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-06-01T21:26:30.9952374Z 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-06-01T21:26:30.9961065Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cuda_CUDATest.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:30.9969614Z copying build\lib.win-amd64-cpython-39\torch\test\c10_DeadlockDetection_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:30.9984010Z copying build\lib.win-amd64-cpython-39\torch\test\c10_DeviceGuard_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:30.9992637Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Device_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0001310Z copying build\lib.win-amd64-cpython-39\torch\test\c10_DispatchKeySet_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0010247Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Enumerate_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0019264Z copying build\lib.win-amd64-cpython-39\torch\test\c10_error_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0028419Z copying build\lib.win-amd64-cpython-39\torch\test\c10_exception_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0037044Z copying build\lib.win-amd64-cpython-39\torch\test\c10_flags_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0045507Z copying build\lib.win-amd64-cpython-39\torch\test\c10_generic_math_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0053949Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Half_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0062900Z copying build\lib.win-amd64-cpython-39\torch\test\c10_InlineDeviceGuard_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0076872Z copying build\lib.win-amd64-cpython-39\torch\test\c10_InlineStreamGuard_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0085749Z copying build\lib.win-amd64-cpython-39\torch\test\c10_IntrusiveList_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0094585Z copying build\lib.win-amd64-cpython-39\torch\test\c10_intrusive_ptr_benchmark.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0103624Z copying build\lib.win-amd64-cpython-39\torch\test\c10_intrusive_ptr_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0119730Z copying build\lib.win-amd64-cpython-39\torch\test\c10_irange_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0128731Z copying build\lib.win-amd64-cpython-39\torch\test\c10_lazy_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0137748Z copying build\lib.win-amd64-cpython-39\torch\test\c10_LeftRight_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0147178Z copying build\lib.win-amd64-cpython-39\torch\test\c10_logging_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0166148Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Metaprogramming_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0175185Z copying build\lib.win-amd64-cpython-39\torch\test\c10_NetworkFlow_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0188818Z copying build\lib.win-amd64-cpython-39\torch\test\c10_optional_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0199744Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ordered_preserving_dict_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0209426Z copying build\lib.win-amd64-cpython-39\torch\test\c10_registry_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0218605Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Scalar_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0228138Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Semaphore_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0237254Z copying build\lib.win-amd64-cpython-39\torch\test\c10_SizesAndStrides_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0250908Z copying build\lib.win-amd64-cpython-39\torch\test\c10_small_vector_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0266043Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ssize_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0274648Z copying build\lib.win-amd64-cpython-39\torch\test\c10_StreamGuard_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0283643Z copying build\lib.win-amd64-cpython-39\torch\test\c10_string_util_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0292944Z copying build\lib.win-amd64-cpython-39\torch\test\c10_string_view_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0302006Z copying build\lib.win-amd64-cpython-39\torch\test\c10_SymInt_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0311219Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Synchronized_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0320541Z copying build\lib.win-amd64-cpython-39\torch\test\c10_tempfile_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0329237Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ThreadLocal_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0343868Z copying build\lib.win-amd64-cpython-39\torch\test\c10_typeid_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0353009Z copying build\lib.win-amd64-cpython-39\torch\test\c10_TypeIndex_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0361697Z copying build\lib.win-amd64-cpython-39\torch\test\c10_TypeList_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0370152Z copying build\lib.win-amd64-cpython-39\torch\test\c10_TypeTraits_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0378917Z copying build\lib.win-amd64-cpython-39\torch\test\CppSignature_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0387354Z copying build\lib.win-amd64-cpython-39\torch\test\cpu_allocator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0396435Z copying build\lib.win-amd64-cpython-39\torch\test\cpu_generator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0406091Z copying build\lib.win-amd64-cpython-39\torch\test\cpu_profiling_allocator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0419624Z copying build\lib.win-amd64-cpython-39\torch\test\cpu_rng_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0431029Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_allocatorTraceTracker_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0439398Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_allocator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0448335Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_apply_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0456902Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_atomic_ops_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0467062Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_caching_host_allocator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0476541Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_complex_math_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0486128Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_complex_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0495146Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_cub_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0504659Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_cudnn_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0513651Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_device_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0522207Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_distributions_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0532495Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_dlconvertor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0541743Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_exchange_device_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0550386Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_generator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0559905Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_half_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0569812Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_integer_divider_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0583626Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_optional_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0593038Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_packedtensoraccessor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0602695Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_reportMemoryUsage_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.0612198Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_stream_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.1916750Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_vectorized_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.1928260Z copying build\lib.win-amd64-cpython-39\torch\test\Dict_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.1940924Z copying build\lib.win-amd64-cpython-39\torch\test\Dimname_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.1951597Z copying build\lib.win-amd64-cpython-39\torch\test\dlconvertor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.1968148Z copying build\lib.win-amd64-cpython-39\torch\test\extension_backend_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.1978980Z copying build\lib.win-amd64-cpython-39\torch\test\half_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.1988711Z copying build\lib.win-amd64-cpython-39\torch\test\IListRef_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.1998678Z copying build\lib.win-amd64-cpython-39\torch\test\inline_container_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.2008966Z copying build\lib.win-amd64-cpython-39\torch\test\ivalue_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.2021472Z copying build\lib.win-amd64-cpython-39\torch\test\KernelFunction_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.2031580Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_function_legacy_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.2044317Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_function_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.2056301Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_lambda_legacy_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.2070111Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_lambda_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.7201701Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_stackbased_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.7211740Z copying build\lib.win-amd64-cpython-39\torch\test\lazy_tensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.7221301Z copying build\lib.win-amd64-cpython-39\torch\test\legacy_vmap_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.7231809Z copying build\lib.win-amd64-cpython-39\torch\test\List_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.7243814Z copying build\lib.win-amd64-cpython-39\torch\test\make_boxed_from_unboxed_functor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.7255414Z copying build\lib.win-amd64-cpython-39\torch\test\math_kernel_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.7265854Z copying build\lib.win-amd64-cpython-39\torch\test\MaybeOwned_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.7276356Z copying build\lib.win-amd64-cpython-39\torch\test\memory_format_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.7286068Z copying build\lib.win-amd64-cpython-39\torch\test\memory_overlapping_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.7295889Z copying build\lib.win-amd64-cpython-39\torch\test\mobile_memory_cleanup.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.7305409Z copying build\lib.win-amd64-cpython-39\torch\test\NamedTensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.7315095Z copying build\lib.win-amd64-cpython-39\torch\test\native_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.7324664Z copying build\lib.win-amd64-cpython-39\torch\test\operators_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.7334396Z copying build\lib.win-amd64-cpython-39\torch\test\operator_name_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.7343608Z copying build\lib.win-amd64-cpython-39\torch\test\op_allowlist_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.7352804Z copying build\lib.win-amd64-cpython-39\torch\test\op_registration_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.7378785Z copying build\lib.win-amd64-cpython-39\torch\test\packedtensoraccessor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.7388048Z copying build\lib.win-amd64-cpython-39\torch\test\pow_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.7399117Z copying build\lib.win-amd64-cpython-39\torch\test\quantized_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.7408911Z copying build\lib.win-amd64-cpython-39\torch\test\reduce_ops_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.7418374Z copying build\lib.win-amd64-cpython-39\torch\test\reportMemoryUsage_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.7427932Z copying build\lib.win-amd64-cpython-39\torch\test\scalar_tensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.7475098Z copying build\lib.win-amd64-cpython-39\torch\test\scalar_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.7485315Z copying build\lib.win-amd64-cpython-39\torch\test\StorageUtils_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.7494987Z copying build\lib.win-amd64-cpython-39\torch\test\stride_properties_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.7504395Z copying build\lib.win-amd64-cpython-39\torch\test\tensor_iterator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.7515955Z copying build\lib.win-amd64-cpython-39\torch\test\test_parallel.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.7525361Z copying build\lib.win-amd64-cpython-39\torch\test\thread_init_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.7532157Z copying build\lib.win-amd64-cpython-39\torch\test\type_ptr_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.7540929Z copying build\lib.win-amd64-cpython-39\torch\test\type_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.7550732Z copying build\lib.win-amd64-cpython-39\torch\test\undefined_tensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.7560026Z copying build\lib.win-amd64-cpython-39\torch\test\verify_api_visibility.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.7566975Z copying build\lib.win-amd64-cpython-39\torch\test\weakref_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:31.7576525Z copying build\lib.win-amd64-cpython-39\torch\test\wrapdim_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:32.2712346Z copying build\lib.win-amd64-cpython-39\torch\test\xla_tensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-06-01T21:26:32.2722549Z creating build\bdist.win-amd64\wheel\torch\testing 2025-06-01T21:26:32.2726061Z copying build\lib.win-amd64-cpython-39\torch\testing\_comparison.py -> build\bdist.win-amd64\wheel\.\torch\testing 2025-06-01T21:26:32.2733030Z copying build\lib.win-amd64-cpython-39\torch\testing\_creation.py -> build\bdist.win-amd64\wheel\.\torch\testing 2025-06-01T21:26:32.2739849Z creating build\bdist.win-amd64\wheel\torch\testing\_internal 2025-06-01T21:26:32.2743502Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\autocast_test_lists.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:26:32.2749695Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\autograd_function_db.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:26:32.2755816Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\check_kernel_launches.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:26:32.2910528Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\codegen 2025-06-01T21:26:32.2914076Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\codegen\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\codegen 2025-06-01T21:26:32.2919522Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_cuda.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:26:32.2925122Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_device_type.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:26:32.2931824Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_distributed.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:26:32.2938470Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_dist_composable.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:26:32.2944189Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_dtype.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:26:32.2950483Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_fsdp.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:26:32.2957331Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_jit.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:26:32.2963410Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_methods_invocations.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:26:32.2980397Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_mkldnn.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:26:32.2986054Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_modules.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:26:32.2993958Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_mps.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:26:32.3000041Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_nn.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:26:32.3007729Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_optimizers.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:26:32.3014720Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_pruning.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:26:32.3020762Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_quantization.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:26:32.8170269Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_quantized.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:26:32.8178553Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_subclass.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:26:32.8184656Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:26:32.8192835Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\composite_compliance.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:26:32.8198958Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\custom_op_db.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:26:32.8205020Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\custom_tensor.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:26:32.8211609Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\data 2025-06-01T21:26:32.8215916Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\data\network1.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\data 2025-06-01T21:26:32.8221991Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\data\network2.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\data 2025-06-01T21:26:32.8227752Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\data\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\data 2025-06-01T21:26:32.8233446Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed 2025-06-01T21:26:32.8237185Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\checkpoint_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-06-01T21:26:32.8242709Z 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-06-01T21:26:32.8248342Z 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-06-01T21:26:32.8366174Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\distributed_test.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-06-01T21:26:32.8376596Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\distributed_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-06-01T21:26:32.8382222Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\fake_pg.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-06-01T21:26:32.8388578Z 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-06-01T21:26:32.8395517Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\nn 2025-06-01T21:26:32.8399328Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\nn\api 2025-06-01T21:26:32.8402556Z 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-06-01T21:26:32.8408595Z 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-06-01T21:26:32.8413196Z 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-06-01T21:26:32.8417941Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\rpc 2025-06-01T21:26:32.8421607Z 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-06-01T21:26:32.8428922Z 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-06-01T21:26:32.8434657Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\rpc\examples 2025-06-01T21:26:32.8438977Z 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-06-01T21:26:32.8445472Z 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-06-01T21:26:32.8451072Z 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-06-01T21:26:32.8455829Z 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-06-01T21:26:32.8564247Z 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-06-01T21:26:32.8570334Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\rpc\jit 2025-06-01T21:26:32.8573895Z 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-06-01T21:26:32.8579473Z 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-06-01T21:26:32.8585469Z 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-06-01T21:26:32.8591164Z 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-06-01T21:26:32.8596223Z 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-06-01T21:26:32.8611195Z 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-06-01T21:26:32.8620126Z 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-06-01T21:26:32.8626834Z 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-06-01T21:26:32.9368085Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-06-01T21:26:32.9374516Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\_shard 2025-06-01T21:26:32.9378366Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\_shard\sharded_tensor 2025-06-01T21:26:32.9382037Z 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-06-01T21:26:32.9389072Z 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-06-01T21:26:32.9394881Z 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-06-01T21:26:32.9400854Z 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-06-01T21:26:32.9406507Z 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-06-01T21:26:32.9412130Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\_tensor 2025-06-01T21:26:32.9415512Z 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-06-01T21:26:32.9421999Z 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-06-01T21:26:32.9426680Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-06-01T21:26:32.9431240Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\dist_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:26:32.9437393Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\dynamo_test_failures.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:26:32.9443496Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\fake_config_module.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:26:32.9449739Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\fake_config_module2.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:26:33.4944911Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\fake_config_module3.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:26:33.4950891Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\generated 2025-06-01T21:26:33.4954630Z 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-06-01T21:26:33.4965798Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\generated\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\generated 2025-06-01T21:26:33.4969969Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\hop_db.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:26:33.4975543Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\hypothesis_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:26:33.4981369Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\inductor_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:26:33.4986963Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\jit_metaprogramming_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:26:33.4993192Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\jit_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:26:33.4999562Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\logging_tensor.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:26:33.5005049Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\logging_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:26:33.8976750Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\opinfo 2025-06-01T21:26:33.8980084Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\core.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo 2025-06-01T21:26:33.8987978Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\opinfo\definitions 2025-06-01T21:26:33.8991886Z 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-06-01T21:26:33.9053143Z 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-06-01T21:26:33.9060065Z 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-06-01T21:26:33.9066538Z 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-06-01T21:26:33.9072372Z 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-06-01T21:26:33.9077904Z 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-06-01T21:26:33.9136053Z 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-06-01T21:26:33.9141891Z 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-06-01T21:26:33.9146903Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\refs.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo 2025-06-01T21:26:33.9152289Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo 2025-06-01T21:26:33.9157603Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo 2025-06-01T21:26:33.9163298Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\optests 2025-06-01T21:26:33.9166784Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\aot_autograd.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-06-01T21:26:33.9172326Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\autograd_registration.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-06-01T21:26:33.9177651Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\fake_tensor.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-06-01T21:26:33.9183098Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\generate_tests.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-06-01T21:26:33.9298063Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\make_fx.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-06-01T21:26:33.9303476Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-06-01T21:26:33.9308874Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\quantization_torch_package_models.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:26:33.9314406Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\static_module.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:26:33.9320032Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\subclasses.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:26:33.9326267Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\test_module 2025-06-01T21:26:33.9329901Z 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-06-01T21:26:33.9335289Z 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-06-01T21:26:33.9341058Z 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-06-01T21:26:33.9345662Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\torchbind_impls.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:26:33.9351228Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\triton_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:26:33.9357189Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\two_tensor.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:26:33.9362785Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-06-01T21:26:33.9367540Z copying build\lib.win-amd64-cpython-39\torch\testing\_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing 2025-06-01T21:26:34.1870644Z copying build\lib.win-amd64-cpython-39\torch\testing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing 2025-06-01T21:26:34.1876584Z copying build\lib.win-amd64-cpython-39\torch\torch_version.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:34.1882335Z copying build\lib.win-amd64-cpython-39\torch\types.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:34.1888960Z creating build\bdist.win-amd64\wheel\torch\utils 2025-06-01T21:26:34.1892497Z creating build\bdist.win-amd64\wheel\torch\utils\backcompat 2025-06-01T21:26:34.1896501Z copying build\lib.win-amd64-cpython-39\torch\utils\backcompat\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\backcompat 2025-06-01T21:26:34.1901837Z copying build\lib.win-amd64-cpython-39\torch\utils\backend_registration.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.1908251Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark 2025-06-01T21:26:34.1911680Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark\examples 2025-06-01T21:26:34.1914939Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\compare.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-06-01T21:26:34.1920358Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\fuzzer.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-06-01T21:26:34.1925653Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\op_benchmark.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-06-01T21:26:34.1931187Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\simple_timeit.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-06-01T21:26:34.1936490Z 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-06-01T21:26:34.1947502Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-06-01T21:26:34.1952574Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark\op_fuzzers 2025-06-01T21:26:34.1955888Z 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-06-01T21:26:34.1961435Z 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-06-01T21:26:34.1972841Z 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-06-01T21:26:34.1974078Z 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-06-01T21:26:34.1983629Z 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-06-01T21:26:34.1990414Z 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-06-01T21:26:34.1995537Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark\utils 2025-06-01T21:26:34.1999354Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\common.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-06-01T21:26:34.2004676Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\compare.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-06-01T21:26:34.2009936Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\compile.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-06-01T21:26:34.2021033Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\cpp_jit.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-06-01T21:26:34.2026288Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\fuzzer.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-06-01T21:26:34.2033519Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\sparse_fuzzer.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-06-01T21:26:34.2044136Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\timeit_template.cpp -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-06-01T21:26:34.2049443Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\timer.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-06-01T21:26:34.2055639Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark\utils\valgrind_wrapper 2025-06-01T21:26:34.2059346Z 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-06-01T21:26:34.2064871Z 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-06-01T21:26:34.2070391Z 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-06-01T21:26:34.2080746Z 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-06-01T21:26:34.2087117Z 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-06-01T21:26:34.2096685Z 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-06-01T21:26:34.2102981Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\_stubs.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-06-01T21:26:34.2108877Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-06-01T21:26:34.2113776Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark 2025-06-01T21:26:34.2119040Z creating build\bdist.win-amd64\wheel\torch\utils\bottleneck 2025-06-01T21:26:34.2127020Z copying build\lib.win-amd64-cpython-39\torch\utils\bottleneck\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\bottleneck 2025-06-01T21:26:34.2131310Z copying build\lib.win-amd64-cpython-39\torch\utils\bottleneck\__main__.py -> build\bdist.win-amd64\wheel\.\torch\utils\bottleneck 2025-06-01T21:26:34.2136797Z copying build\lib.win-amd64-cpython-39\torch\utils\bundled_inputs.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.2142817Z copying build\lib.win-amd64-cpython-39\torch\utils\checkpoint.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.2149506Z copying build\lib.win-amd64-cpython-39\torch\utils\collect_env.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.2155382Z copying build\lib.win-amd64-cpython-39\torch\utils\cpp_backtrace.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.2160927Z copying build\lib.win-amd64-cpython-39\torch\utils\cpp_extension.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.2168391Z creating build\bdist.win-amd64\wheel\torch\utils\data 2025-06-01T21:26:34.2171603Z copying build\lib.win-amd64-cpython-39\torch\utils\data\backward_compatibility.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-06-01T21:26:34.2176728Z copying build\lib.win-amd64-cpython-39\torch\utils\data\dataloader.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-06-01T21:26:34.2183882Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes 2025-06-01T21:26:34.2187206Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes\dataframe 2025-06-01T21:26:34.2190533Z 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-06-01T21:26:34.2201067Z 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-06-01T21:26:34.2206565Z 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-06-01T21:26:34.2216373Z 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-06-01T21:26:34.2221770Z 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-06-01T21:26:34.2226714Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\datapipe.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-06-01T21:26:34.2232346Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\datapipe.pyi -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-06-01T21:26:34.2238675Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\gen_pyi.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-06-01T21:26:34.2248976Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes\iter 2025-06-01T21:26:34.2257511Z 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-06-01T21:26:34.2263715Z 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-06-01T21:26:34.2269723Z 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-06-01T21:26:34.2276774Z 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-06-01T21:26:34.2287404Z 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-06-01T21:26:34.2293277Z 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-06-01T21:26:34.2298813Z 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-06-01T21:26:34.2304247Z 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-06-01T21:26:34.2310111Z 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-06-01T21:26:34.2314979Z 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-06-01T21:26:34.2320144Z 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-06-01T21:26:34.2325608Z 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-06-01T21:26:34.2331710Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes\map 2025-06-01T21:26:34.2335038Z 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-06-01T21:26:34.2340854Z 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-06-01T21:26:34.2347811Z 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-06-01T21:26:34.2353913Z 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-06-01T21:26:34.2359233Z 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-06-01T21:26:34.2369624Z 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-06-01T21:26:34.2375193Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes\utils 2025-06-01T21:26:34.2378721Z 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-06-01T21:26:34.2384304Z 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-06-01T21:26:34.2390007Z 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-06-01T21:26:34.2395454Z 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-06-01T21:26:34.2399815Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\_decorator.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-06-01T21:26:34.2405280Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\_hook_iterator.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-06-01T21:26:34.2410755Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\_typing.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-06-01T21:26:34.2416608Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-06-01T21:26:34.2422838Z copying build\lib.win-amd64-cpython-39\torch\utils\data\dataset.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-06-01T21:26:34.2433363Z copying build\lib.win-amd64-cpython-39\torch\utils\data\distributed.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-06-01T21:26:34.2438829Z copying build\lib.win-amd64-cpython-39\torch\utils\data\graph.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-06-01T21:26:34.2444496Z copying build\lib.win-amd64-cpython-39\torch\utils\data\graph_settings.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-06-01T21:26:34.2450103Z copying build\lib.win-amd64-cpython-39\torch\utils\data\sampler.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-06-01T21:26:34.2455840Z creating build\bdist.win-amd64\wheel\torch\utils\data\_utils 2025-06-01T21:26:34.2459474Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\collate.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-06-01T21:26:34.2464808Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\fetch.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-06-01T21:26:34.2470057Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\pin_memory.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-06-01T21:26:34.2476001Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\signal_handling.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-06-01T21:26:34.2481299Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\worker.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-06-01T21:26:34.2492691Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-06-01T21:26:34.2498134Z copying build\lib.win-amd64-cpython-39\torch\utils\data\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-06-01T21:26:34.2503716Z copying build\lib.win-amd64-cpython-39\torch\utils\deterministic.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.2509401Z copying build\lib.win-amd64-cpython-39\torch\utils\dlpack.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.2514765Z copying build\lib.win-amd64-cpython-39\torch\utils\file_baton.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.2520296Z copying build\lib.win-amd64-cpython-39\torch\utils\flop_counter.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.2526815Z creating build\bdist.win-amd64\wheel\torch\utils\hipify 2025-06-01T21:26:34.2530454Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\constants.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-06-01T21:26:34.2541781Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\cuda_to_hip_mappings.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-06-01T21:26:34.2551024Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\hipify_python.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-06-01T21:26:34.2557230Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\version.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-06-01T21:26:34.2567796Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-06-01T21:26:34.2573133Z copying build\lib.win-amd64-cpython-39\torch\utils\hooks.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.2579403Z creating build\bdist.win-amd64\wheel\torch\utils\jit 2025-06-01T21:26:34.2582738Z copying build\lib.win-amd64-cpython-39\torch\utils\jit\log_extract.py -> build\bdist.win-amd64\wheel\.\torch\utils\jit 2025-06-01T21:26:34.2588252Z copying build\lib.win-amd64-cpython-39\torch\utils\jit\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\jit 2025-06-01T21:26:34.2592803Z copying build\lib.win-amd64-cpython-39\torch\utils\mkldnn.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.2598168Z copying build\lib.win-amd64-cpython-39\torch\utils\mobile_optimizer.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.2603758Z creating build\bdist.win-amd64\wheel\torch\utils\model_dump 2025-06-01T21:26:34.2607047Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\code.js -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-06-01T21:26:34.2613249Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\htm.mjs -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-06-01T21:26:34.2618524Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\preact.mjs -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-06-01T21:26:34.2623849Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\skeleton.html -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-06-01T21:26:34.2629132Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-06-01T21:26:34.2641453Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\__main__.py -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-06-01T21:26:34.2646429Z copying build\lib.win-amd64-cpython-39\torch\utils\model_zoo.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.2651570Z copying build\lib.win-amd64-cpython-39\torch\utils\module_tracker.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.2661925Z creating build\bdist.win-amd64\wheel\torch\utils\serialization 2025-06-01T21:26:34.2665216Z copying build\lib.win-amd64-cpython-39\torch\utils\serialization\config.py -> build\bdist.win-amd64\wheel\.\torch\utils\serialization 2025-06-01T21:26:34.2670367Z copying build\lib.win-amd64-cpython-39\torch\utils\serialization\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\serialization 2025-06-01T21:26:34.2675348Z copying build\lib.win-amd64-cpython-39\torch\utils\show_pickle.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.2681174Z creating build\bdist.win-amd64\wheel\torch\utils\tensorboard 2025-06-01T21:26:34.2684462Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\summary.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-06-01T21:26:34.2690597Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\writer.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-06-01T21:26:34.2697058Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_convert_np.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-06-01T21:26:34.2702294Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_embedding.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-06-01T21:26:34.2713300Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_onnx_graph.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-06-01T21:26:34.2718681Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_proto_graph.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-06-01T21:26:34.2730981Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_pytorch_graph.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-06-01T21:26:34.2736305Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-06-01T21:26:34.2741682Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-06-01T21:26:34.2746768Z copying build\lib.win-amd64-cpython-39\torch\utils\throughput_benchmark.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.2752559Z creating build\bdist.win-amd64\wheel\torch\utils\viz 2025-06-01T21:26:34.2756111Z copying build\lib.win-amd64-cpython-39\torch\utils\viz\_cycles.py -> build\bdist.win-amd64\wheel\.\torch\utils\viz 2025-06-01T21:26:34.2762156Z copying build\lib.win-amd64-cpython-39\torch\utils\viz\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\viz 2025-06-01T21:26:34.2766581Z copying build\lib.win-amd64-cpython-39\torch\utils\weak.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.2772228Z copying build\lib.win-amd64-cpython-39\torch\utils\_appending_byte_serializer.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.2777716Z copying build\lib.win-amd64-cpython-39\torch\utils\_backport_slots.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.2783443Z copying build\lib.win-amd64-cpython-39\torch\utils\_config_module.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.2789522Z copying build\lib.win-amd64-cpython-39\torch\utils\_config_typing.pyi -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.2795060Z copying build\lib.win-amd64-cpython-39\torch\utils\_content_store.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.2805803Z copying build\lib.win-amd64-cpython-39\torch\utils\_contextlib.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.2811673Z copying build\lib.win-amd64-cpython-39\torch\utils\_cpp_embed_headers.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.2817262Z copying build\lib.win-amd64-cpython-39\torch\utils\_cpp_extension_versioner.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.2823259Z copying build\lib.win-amd64-cpython-39\torch\utils\_cxx_pytree.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.2829422Z copying build\lib.win-amd64-cpython-39\torch\utils\_device.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.2834880Z copying build\lib.win-amd64-cpython-39\torch\utils\_dtype_abbrs.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.2840557Z copying build\lib.win-amd64-cpython-39\torch\utils\_exposed_in.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.2846186Z copying build\lib.win-amd64-cpython-39\torch\utils\_filelock.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.2851652Z copying build\lib.win-amd64-cpython-39\torch\utils\_foreach_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.2868928Z copying build\lib.win-amd64-cpython-39\torch\utils\_freeze.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.2874649Z copying build\lib.win-amd64-cpython-39\torch\utils\_functools.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.2880121Z copying build\lib.win-amd64-cpython-39\torch\utils\_get_clean_triton.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.2885652Z copying build\lib.win-amd64-cpython-39\torch\utils\_import_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.2891191Z copying build\lib.win-amd64-cpython-39\torch\utils\_mode_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.2896400Z copying build\lib.win-amd64-cpython-39\torch\utils\_ordered_set.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.2902243Z copying build\lib.win-amd64-cpython-39\torch\utils\_python_dispatch.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.2908175Z copying build\lib.win-amd64-cpython-39\torch\utils\_pytree.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.2914646Z copying build\lib.win-amd64-cpython-39\torch\utils\_stats.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.2920710Z creating build\bdist.win-amd64\wheel\torch\utils\_strobelight 2025-06-01T21:26:34.2924226Z copying build\lib.win-amd64-cpython-39\torch\utils\_strobelight\cli_function_profiler.py -> build\bdist.win-amd64\wheel\.\torch\utils\_strobelight 2025-06-01T21:26:34.2930080Z copying build\lib.win-amd64-cpython-39\torch\utils\_strobelight\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\_strobelight 2025-06-01T21:26:34.2934810Z creating build\bdist.win-amd64\wheel\torch\utils\_sympy 2025-06-01T21:26:34.2938221Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\functions.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-06-01T21:26:34.2946048Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\interp.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-06-01T21:26:34.2951708Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\numbers.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-06-01T21:26:34.2957090Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\printers.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-06-01T21:26:34.2962912Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\reference.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-06-01T21:26:34.2974157Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\singleton_int.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-06-01T21:26:34.2979618Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\solve.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-06-01T21:26:34.2985037Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\symbol.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-06-01T21:26:34.2990715Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\value_ranges.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-06-01T21:26:34.2996853Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-06-01T21:26:34.3001230Z copying build\lib.win-amd64-cpython-39\torch\utils\_thunk.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.3010920Z copying build\lib.win-amd64-cpython-39\torch\utils\_traceback.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.3016973Z copying build\lib.win-amd64-cpython-39\torch\utils\_triton.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.3022409Z copying build\lib.win-amd64-cpython-39\torch\utils\_typing_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.3032831Z copying build\lib.win-amd64-cpython-39\torch\utils\_zip.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.3038279Z copying build\lib.win-amd64-cpython-39\torch\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-06-01T21:26:34.3043780Z copying build\lib.win-amd64-cpython-39\torch\version.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:34.3049506Z creating build\bdist.win-amd64\wheel\torch\xpu 2025-06-01T21:26:34.3052882Z copying build\lib.win-amd64-cpython-39\torch\xpu\memory.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-06-01T21:26:34.3058169Z copying build\lib.win-amd64-cpython-39\torch\xpu\random.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-06-01T21:26:34.3083245Z copying build\lib.win-amd64-cpython-39\torch\xpu\streams.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-06-01T21:26:34.3088400Z copying build\lib.win-amd64-cpython-39\torch\xpu\_gpu_trace.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-06-01T21:26:34.3093547Z copying build\lib.win-amd64-cpython-39\torch\xpu\_utils.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-06-01T21:26:34.3098968Z copying build\lib.win-amd64-cpython-39\torch\xpu\__init__.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-06-01T21:26:34.3109329Z copying build\lib.win-amd64-cpython-39\torch\_appdirs.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:34.3115412Z creating build\bdist.win-amd64\wheel\torch\_awaits 2025-06-01T21:26:34.3118609Z copying build\lib.win-amd64-cpython-39\torch\_awaits\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_awaits 2025-06-01T21:26:34.3124270Z creating build\bdist.win-amd64\wheel\torch\_C 2025-06-01T21:26:34.3127452Z copying build\lib.win-amd64-cpython-39\torch\_C\_aoti.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:26:34.3132964Z copying build\lib.win-amd64-cpython-39\torch\_C\_autograd.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:26:34.3138253Z copying build\lib.win-amd64-cpython-39\torch\_C\_cpu.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:26:34.3143170Z copying build\lib.win-amd64-cpython-39\torch\_C\_cudnn.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:26:34.3148074Z copying build\lib.win-amd64-cpython-39\torch\_C\_cusparselt.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:26:34.3157359Z copying build\lib.win-amd64-cpython-39\torch\_C\_distributed_autograd.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:26:34.3162672Z copying build\lib.win-amd64-cpython-39\torch\_C\_distributed_c10d.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:26:34.3168486Z copying build\lib.win-amd64-cpython-39\torch\_C\_distributed_rpc.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:26:34.3173941Z copying build\lib.win-amd64-cpython-39\torch\_C\_distributed_rpc_testing.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:26:34.3179868Z creating build\bdist.win-amd64\wheel\torch\_C\_dynamo 2025-06-01T21:26:34.3183448Z copying build\lib.win-amd64-cpython-39\torch\_C\_dynamo\compiled_autograd.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_dynamo 2025-06-01T21:26:34.3188615Z copying build\lib.win-amd64-cpython-39\torch\_C\_dynamo\eval_frame.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_dynamo 2025-06-01T21:26:34.3193874Z copying build\lib.win-amd64-cpython-39\torch\_C\_dynamo\guards.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_dynamo 2025-06-01T21:26:34.3198954Z copying build\lib.win-amd64-cpython-39\torch\_C\_dynamo\__init__.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_dynamo 2025-06-01T21:26:34.3204162Z creating build\bdist.win-amd64\wheel\torch\_C\_export 2025-06-01T21:26:34.3207432Z copying build\lib.win-amd64-cpython-39\torch\_C\_export\pt2_archive_constants.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_export 2025-06-01T21:26:34.3213264Z copying build\lib.win-amd64-cpython-39\torch\_C\_export\__init__.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_export 2025-06-01T21:26:34.3218309Z copying build\lib.win-amd64-cpython-39\torch\_C\_functions.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:26:34.3223654Z copying build\lib.win-amd64-cpython-39\torch\_C\_functorch.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:26:34.3229286Z copying build\lib.win-amd64-cpython-39\torch\_C\_instruction_counter.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:26:34.3234267Z copying build\lib.win-amd64-cpython-39\torch\_C\_itt.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:26:34.3239259Z copying build\lib.win-amd64-cpython-39\torch\_C\_lazy.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:26:34.3244498Z copying build\lib.win-amd64-cpython-39\torch\_C\_lazy_ts_backend.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:26:34.3249580Z copying build\lib.win-amd64-cpython-39\torch\_C\_monitor.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:26:34.3254734Z copying build\lib.win-amd64-cpython-39\torch\_C\_nn.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:26:34.3259926Z copying build\lib.win-amd64-cpython-39\torch\_C\_nvtx.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:26:34.3264720Z copying build\lib.win-amd64-cpython-39\torch\_C\_onnx.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:26:34.3269873Z copying build\lib.win-amd64-cpython-39\torch\_C\_profiler.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:26:34.3275484Z copying build\lib.win-amd64-cpython-39\torch\_C\_VariableFunctions.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:26:34.3292040Z copying build\lib.win-amd64-cpython-39\torch\_C\_verbose.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:26:34.3301902Z copying build\lib.win-amd64-cpython-39\torch\_C\__init__.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-06-01T21:26:34.3311479Z copying build\lib.win-amd64-cpython-39\torch\_C.cp39-win_amd64.pyd -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:34.3316901Z copying build\lib.win-amd64-cpython-39\torch\_classes.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:34.3322129Z copying build\lib.win-amd64-cpython-39\torch\_compile.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:34.3327789Z creating build\bdist.win-amd64\wheel\torch\_custom_op 2025-06-01T21:26:34.3331072Z copying build\lib.win-amd64-cpython-39\torch\_custom_op\autograd.py -> build\bdist.win-amd64\wheel\.\torch\_custom_op 2025-06-01T21:26:34.3336464Z copying build\lib.win-amd64-cpython-39\torch\_custom_op\impl.py -> build\bdist.win-amd64\wheel\.\torch\_custom_op 2025-06-01T21:26:34.3342347Z copying build\lib.win-amd64-cpython-39\torch\_custom_op\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_custom_op 2025-06-01T21:26:34.3346958Z copying build\lib.win-amd64-cpython-39\torch\_custom_ops.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:34.3357601Z creating build\bdist.win-amd64\wheel\torch\_C_flatbuffer 2025-06-01T21:26:34.3364686Z copying build\lib.win-amd64-cpython-39\torch\_C_flatbuffer\__init__.pyi -> build\bdist.win-amd64\wheel\.\torch\_C_flatbuffer 2025-06-01T21:26:34.3370139Z creating build\bdist.win-amd64\wheel\torch\_decomp 2025-06-01T21:26:34.3373449Z copying build\lib.win-amd64-cpython-39\torch\_decomp\decompositions.py -> build\bdist.win-amd64\wheel\.\torch\_decomp 2025-06-01T21:26:34.3381187Z copying build\lib.win-amd64-cpython-39\torch\_decomp\decompositions_for_jvp.py -> build\bdist.win-amd64\wheel\.\torch\_decomp 2025-06-01T21:26:34.3386552Z copying build\lib.win-amd64-cpython-39\torch\_decomp\decompositions_for_rng.py -> build\bdist.win-amd64\wheel\.\torch\_decomp 2025-06-01T21:26:34.3396468Z copying build\lib.win-amd64-cpython-39\torch\_decomp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_decomp 2025-06-01T21:26:34.3402365Z copying build\lib.win-amd64-cpython-39\torch\_deploy.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:34.3408002Z creating build\bdist.win-amd64\wheel\torch\_dispatch 2025-06-01T21:26:34.3411467Z copying build\lib.win-amd64-cpython-39\torch\_dispatch\python.py -> build\bdist.win-amd64\wheel\.\torch\_dispatch 2025-06-01T21:26:34.3417341Z copying build\lib.win-amd64-cpython-39\torch\_dispatch\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dispatch 2025-06-01T21:26:34.3422704Z creating build\bdist.win-amd64\wheel\torch\_dynamo 2025-06-01T21:26:34.3425965Z creating build\bdist.win-amd64\wheel\torch\_dynamo\backends 2025-06-01T21:26:34.3429300Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\common.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-06-01T21:26:34.3434840Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\cudagraphs.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-06-01T21:26:34.3440440Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\debugging.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-06-01T21:26:34.3445970Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\distributed.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-06-01T21:26:34.3456881Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\inductor.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-06-01T21:26:34.3462334Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\onnxrt.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-06-01T21:26:34.3467645Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\registry.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-06-01T21:26:34.3473080Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\tensorrt.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-06-01T21:26:34.3478518Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\torchxla.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-06-01T21:26:34.3483737Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\tvm.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-06-01T21:26:34.3489452Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-06-01T21:26:34.3493990Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\bytecode_analysis.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3499722Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\bytecode_transformation.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3506149Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\cache_size.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3516564Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\callback.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3526746Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\codegen.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3532775Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\code_context.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3539237Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\compiled_autograd.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3546094Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\comptime.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3551909Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\config.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3557950Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\convert_frame.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3565106Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\create_parameter_op.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3570586Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\current_scope_id.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3576069Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\debug_utils.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3582169Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\decorators.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3588322Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\device_interface.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3594340Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\distributed.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3599974Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\eval_frame.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3606531Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\exc.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3612368Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\external_utils.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3617881Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\funcname_cache.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3623478Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\graph_break_hints.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3633861Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\graph_deduplication.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3639674Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\graph_region_tracker.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3645812Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\graph_utils.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3651233Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\guards.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3658365Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\hooks.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3663770Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\logging.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3669098Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\metrics_context.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3674605Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\mutation_guard.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3680381Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\output_graph.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3687735Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\pgo.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3694768Z creating build\bdist.win-amd64\wheel\torch\_dynamo\polyfills 2025-06-01T21:26:34.3704002Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\builtins.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-06-01T21:26:34.3709601Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\functools.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-06-01T21:26:34.3715460Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\fx.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-06-01T21:26:34.3720803Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\itertools.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-06-01T21:26:34.3730574Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\loader.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-06-01T21:26:34.3735809Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\operator.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-06-01T21:26:34.3741121Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\os.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-06-01T21:26:34.3746307Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\pytree.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-06-01T21:26:34.3751544Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\sys.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-06-01T21:26:34.3756533Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\tensor.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-06-01T21:26:34.3761832Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-06-01T21:26:34.3768053Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\profiler.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3773632Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\replay_record.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3784792Z creating build\bdist.win-amd64\wheel\torch\_dynamo\repro 2025-06-01T21:26:34.3788093Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\repro\after_aot.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\repro 2025-06-01T21:26:34.3795407Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\repro\after_dynamo.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\repro 2025-06-01T21:26:34.3801341Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\repro\aoti.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\repro 2025-06-01T21:26:34.3807627Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\repro\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\repro 2025-06-01T21:26:34.3812786Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\resume_execution.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3818982Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\side_effects.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3825205Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\source.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3831631Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\symbolic_convert.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3845136Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\tensor_version_op.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3850718Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\testing.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3856784Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\test_case.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3862782Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\test_dont_skip_tracing_functions.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3873156Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\test_minifier_common.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3878583Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\trace_rules.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3885932Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\types.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3891514Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\utils.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.3900285Z creating build\bdist.win-amd64\wheel\torch\_dynamo\variables 2025-06-01T21:26:34.3903576Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\base.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:26:34.3909447Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\builder.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:26:34.3916741Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\builtin.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:26:34.3923324Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\constant.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:26:34.3928756Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\ctx_manager.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:26:34.3941838Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\dicts.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:26:34.3949796Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\distributed.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:26:34.3961410Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\functions.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:26:34.3968296Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\higher_order_ops.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:26:34.3975669Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\iter.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:26:34.3981707Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\lazy.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:26:34.3987067Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\lists.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:26:34.3993143Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\misc.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:26:34.3999665Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\nn_module.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:26:34.4006159Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\optimizer.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:26:34.4012223Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\script_object.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:26:34.4017801Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\sdpa.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:26:34.4024179Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\tensor.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:26:34.4030712Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\torch.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:26:34.4037373Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\torch_function.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:26:34.4043749Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\user_defined.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:26:34.4050819Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-06-01T21:26:34.4056849Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\_trace_wrapped_higher_order_op.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.4062660Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-06-01T21:26:34.4068397Z copying build\lib.win-amd64-cpython-39\torch\_environment.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:34.4074504Z creating build\bdist.win-amd64\wheel\torch\_export 2025-06-01T21:26:34.4077845Z copying build\lib.win-amd64-cpython-39\torch\_export\converter.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-06-01T21:26:34.4084942Z creating build\bdist.win-amd64\wheel\torch\_export\db 2025-06-01T21:26:34.4088121Z copying build\lib.win-amd64-cpython-39\torch\_export\db\case.py -> build\bdist.win-amd64\wheel\.\torch\_export\db 2025-06-01T21:26:34.4094333Z creating build\bdist.win-amd64\wheel\torch\_export\db\examples 2025-06-01T21:26:34.4097703Z 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-06-01T21:26:34.4102986Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\autograd_function.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-06-01T21:26:34.4108522Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\class_method.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-06-01T21:26:34.4118732Z 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-06-01T21:26:34.4124244Z 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-06-01T21:26:34.4129638Z 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-06-01T21:26:34.4135293Z 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-06-01T21:26:34.4140642Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\cond_operands.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-06-01T21:26:34.4146084Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\cond_predicate.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-06-01T21:26:34.4151771Z 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-06-01T21:26:34.4157215Z 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-06-01T21:26:34.4162651Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\decorator.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-06-01T21:26:34.4167876Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\dictionary.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-06-01T21:26:34.4173146Z 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-06-01T21:26:34.4178778Z 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-06-01T21:26:34.4184098Z 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-06-01T21:26:34.4189400Z 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-06-01T21:26:34.4194888Z 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-06-01T21:26:34.4205288Z 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-06-01T21:26:34.4210716Z 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-06-01T21:26:34.4216246Z 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-06-01T21:26:34.4222069Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\list_contains.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-06-01T21:26:34.4227197Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\list_unpack.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-06-01T21:26:34.4232568Z 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-06-01T21:26:34.4245112Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\nested_function.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-06-01T21:26:34.4250495Z 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-06-01T21:26:34.4260210Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\optional_input.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-06-01T21:26:34.4265439Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\pytree_flatten.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-06-01T21:26:34.4270661Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\scalar_output.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-06-01T21:26:34.4276167Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\specialized_attribute.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-06-01T21:26:34.4281441Z 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-06-01T21:26:34.4286615Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\static_if.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-06-01T21:26:34.4292054Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\tensor_setattr.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-06-01T21:26:34.4297365Z 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-06-01T21:26:34.4302809Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\unsupported_operator.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-06-01T21:26:34.4313620Z 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-06-01T21:26:34.4319057Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-06-01T21:26:34.4324826Z copying build\lib.win-amd64-cpython-39\torch\_export\db\gen_example.py -> build\bdist.win-amd64\wheel\.\torch\_export\db 2025-06-01T21:26:34.4330004Z copying build\lib.win-amd64-cpython-39\torch\_export\db\logging.py -> build\bdist.win-amd64\wheel\.\torch\_export\db 2025-06-01T21:26:34.4335324Z copying build\lib.win-amd64-cpython-39\torch\_export\db\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export\db 2025-06-01T21:26:34.4340595Z copying build\lib.win-amd64-cpython-39\torch\_export\error.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-06-01T21:26:34.4345927Z copying build\lib.win-amd64-cpython-39\torch\_export\non_strict_utils.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-06-01T21:26:34.4352680Z creating build\bdist.win-amd64\wheel\torch\_export\passes 2025-06-01T21:26:34.4361792Z 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-06-01T21:26:34.4367454Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\collect_tracepoints_pass.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-06-01T21:26:34.4373207Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\constant_folding.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-06-01T21:26:34.4383863Z 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-06-01T21:26:34.4389466Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\insert_custom_op_guards.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-06-01T21:26:34.4395065Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\lift_constants_pass.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-06-01T21:26:34.4401129Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\remove_runtime_assertions.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-06-01T21:26:34.4406894Z 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-06-01T21:26:34.4412775Z 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-06-01T21:26:34.4419422Z 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-06-01T21:26:34.4425060Z 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-06-01T21:26:34.4430554Z 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-06-01T21:26:34.4436198Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\_node_metadata_hook.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-06-01T21:26:34.4441747Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-06-01T21:26:34.4446839Z copying build\lib.win-amd64-cpython-39\torch\_export\pass_base.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-06-01T21:26:34.4454095Z creating build\bdist.win-amd64\wheel\torch\_export\pass_infra 2025-06-01T21:26:34.4457585Z copying build\lib.win-amd64-cpython-39\torch\_export\pass_infra\node_metadata.py -> build\bdist.win-amd64\wheel\.\torch\_export\pass_infra 2025-06-01T21:26:34.4463573Z copying build\lib.win-amd64-cpython-39\torch\_export\pass_infra\proxy_value.py -> build\bdist.win-amd64\wheel\.\torch\_export\pass_infra 2025-06-01T21:26:34.4469376Z copying build\lib.win-amd64-cpython-39\torch\_export\pass_infra\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export\pass_infra 2025-06-01T21:26:34.4474311Z creating build\bdist.win-amd64\wheel\torch\_export\serde 2025-06-01T21:26:34.4477645Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\aoti_schema.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-06-01T21:26:34.4483047Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\dynamic_shapes.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-06-01T21:26:34.4488652Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\export_schema.thrift -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-06-01T21:26:34.4494127Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\schema.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-06-01T21:26:34.4504189Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\schema.yaml -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-06-01T21:26:34.4509845Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\schema_check.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-06-01T21:26:34.4515892Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\serialize.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-06-01T21:26:34.4523665Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\union.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-06-01T21:26:34.4529263Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-06-01T21:26:34.4533693Z copying build\lib.win-amd64-cpython-39\torch\_export\tools.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-06-01T21:26:34.4539303Z copying build\lib.win-amd64-cpython-39\torch\_export\utils.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-06-01T21:26:34.4545627Z copying build\lib.win-amd64-cpython-39\torch\_export\verifier.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-06-01T21:26:34.4557710Z copying build\lib.win-amd64-cpython-39\torch\_export\wrappers.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-06-01T21:26:34.4563101Z copying build\lib.win-amd64-cpython-39\torch\_export\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-06-01T21:26:34.4569639Z creating build\bdist.win-amd64\wheel\torch\_functorch 2025-06-01T21:26:34.4573207Z copying build\lib.win-amd64-cpython-39\torch\_functorch\aot_autograd.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-06-01T21:26:34.4580112Z copying build\lib.win-amd64-cpython-39\torch\_functorch\apis.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-06-01T21:26:34.4586299Z copying build\lib.win-amd64-cpython-39\torch\_functorch\autograd_function.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-06-01T21:26:34.4592420Z copying build\lib.win-amd64-cpython-39\torch\_functorch\batch_norm_replacement.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-06-01T21:26:34.4602603Z copying build\lib.win-amd64-cpython-39\torch\_functorch\benchmark_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-06-01T21:26:34.4608083Z copying build\lib.win-amd64-cpython-39\torch\_functorch\compilers.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-06-01T21:26:34.4613571Z copying build\lib.win-amd64-cpython-39\torch\_functorch\compile_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-06-01T21:26:34.4619731Z copying build\lib.win-amd64-cpython-39\torch\_functorch\config.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-06-01T21:26:34.4625366Z copying build\lib.win-amd64-cpython-39\torch\_functorch\deprecated.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-06-01T21:26:34.4630857Z copying build\lib.win-amd64-cpython-39\torch\_functorch\eager_transforms.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-06-01T21:26:34.4637347Z copying build\lib.win-amd64-cpython-39\torch\_functorch\functional_call.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-06-01T21:26:34.4643044Z copying build\lib.win-amd64-cpython-39\torch\_functorch\fx_minifier.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-06-01T21:26:34.4648959Z copying build\lib.win-amd64-cpython-39\torch\_functorch\make_functional.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-06-01T21:26:34.4654998Z copying build\lib.win-amd64-cpython-39\torch\_functorch\partitioners.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-06-01T21:26:34.4678648Z copying build\lib.win-amd64-cpython-39\torch\_functorch\pyfunctorch.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-06-01T21:26:34.4684207Z copying build\lib.win-amd64-cpython-39\torch\_functorch\python_key.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-06-01T21:26:34.4689371Z copying build\lib.win-amd64-cpython-39\torch\_functorch\pytree_hacks.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-06-01T21:26:34.4695465Z copying build\lib.win-amd64-cpython-39\torch\_functorch\top_operators_github_usage.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-06-01T21:26:34.4708407Z copying build\lib.win-amd64-cpython-39\torch\_functorch\utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-06-01T21:26:34.4714456Z copying build\lib.win-amd64-cpython-39\torch\_functorch\vmap.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-06-01T21:26:34.4727201Z creating build\bdist.win-amd64\wheel\torch\_functorch\_activation_checkpointing 2025-06-01T21:26:34.4735710Z 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-06-01T21:26:34.4741033Z 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-06-01T21:26:34.4746422Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing\knapsack.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_activation_checkpointing 2025-06-01T21:26:34.4757725Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing\knapsack_evaluator.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_activation_checkpointing 2025-06-01T21:26:34.4763235Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_activation_checkpointing 2025-06-01T21:26:34.4768733Z creating build\bdist.win-amd64\wheel\torch\_functorch\_aot_autograd 2025-06-01T21:26:34.4772136Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\autograd_cache.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-06-01T21:26:34.4778765Z 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-06-01T21:26:34.4785115Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\dispatch_and_compile_graph.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-06-01T21:26:34.4797034Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\functional_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-06-01T21:26:34.4803007Z 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-06-01T21:26:34.4809098Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\jit_compile_runtime_wrappers.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-06-01T21:26:34.4815621Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\logging_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-06-01T21:26:34.4821457Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\runtime_wrappers.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-06-01T21:26:34.4828194Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\schemas.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-06-01T21:26:34.4839944Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\subclass_parametrization.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-06-01T21:26:34.4846640Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\subclass_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-06-01T21:26:34.4852861Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\traced_function_transforms.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-06-01T21:26:34.4859126Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-06-01T21:26:34.4865105Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-06-01T21:26:34.4870538Z copying build\lib.win-amd64-cpython-39\torch\_functorch\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-06-01T21:26:34.4875821Z copying build\lib.win-amd64-cpython-39\torch\_guards.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:34.4882837Z creating build\bdist.win-amd64\wheel\torch\_higher_order_ops 2025-06-01T21:26:34.4886645Z 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-06-01T21:26:34.4897916Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\associative_scan.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-06-01T21:26:34.4904431Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\auto_functionalize.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-06-01T21:26:34.4915851Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\base_hop.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-06-01T21:26:34.4921371Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\cond.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-06-01T21:26:34.4927310Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\effects.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-06-01T21:26:34.4932942Z 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-06-01T21:26:34.4938531Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\flat_apply.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-06-01T21:26:34.4944183Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\flex_attention.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-06-01T21:26:34.4950399Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\foreach_map.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-06-01T21:26:34.4956148Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\hints_wrap.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-06-01T21:26:34.4962237Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\invoke_subgraph.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-06-01T21:26:34.4968290Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\map.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-06-01T21:26:34.4973928Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\out_dtype.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-06-01T21:26:34.4979834Z 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-06-01T21:26:34.4985452Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\scan.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-06-01T21:26:34.4991474Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\schema.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-06-01T21:26:34.5002354Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\strict_mode.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-06-01T21:26:34.5007889Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\torchbind.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-06-01T21:26:34.5013912Z 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-06-01T21:26:34.5021048Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\utils.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-06-01T21:26:34.5031797Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\while_loop.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-06-01T21:26:34.5043250Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\wrap.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-06-01T21:26:34.5048953Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\_invoke_quant.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-06-01T21:26:34.5055134Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-06-01T21:26:34.5061671Z creating build\bdist.win-amd64\wheel\torch\_inductor 2025-06-01T21:26:34.5065488Z copying build\lib.win-amd64-cpython-39\torch\_inductor\analyze_preserves_zero_mask.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.5070849Z copying build\lib.win-amd64-cpython-39\torch\_inductor\aoti_eager.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.5076649Z copying build\lib.win-amd64-cpython-39\torch\_inductor\async_compile.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.5088472Z creating build\bdist.win-amd64\wheel\torch\_inductor\autoheuristic 2025-06-01T21:26:34.5092327Z creating build\bdist.win-amd64\wheel\torch\_inductor\autoheuristic\artifacts 2025-06-01T21:26:34.5095986Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\_MixedMMA100.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-06-01T21:26:34.5102293Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\_MixedMMH100.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-06-01T21:26:34.5107745Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\_MMRankingA100.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-06-01T21:26:34.5119398Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\_MMRankingH100.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-06-01T21:26:34.5125696Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\_PadMMA100.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-06-01T21:26:34.5131542Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-06-01T21:26:34.5135990Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\autoheuristic.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-06-01T21:26:34.5141761Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\autoheuristic_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-06-01T21:26:34.5153834Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\learnedheuristic_interface.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-06-01T21:26:34.5159455Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\learned_heuristic_controller.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-06-01T21:26:34.5165081Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-06-01T21:26:34.5169513Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autotune_process.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.5175513Z copying build\lib.win-amd64-cpython-39\torch\_inductor\bounds.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.5181011Z copying build\lib.win-amd64-cpython-39\torch\_inductor\choices.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.5186851Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codecache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.5195395Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen 2025-06-01T21:26:34.5198770Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\aoti_hipify_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:26:34.5205633Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\aoti_runtime 2025-06-01T21:26:34.5209022Z 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-06-01T21:26:34.5215013Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\block_analysis.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:26:34.5221033Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\common.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:26:34.5233825Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:26:34.5241747Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_bmm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:26:34.5247462Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_flex_attention_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:26:34.5253799Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_gemm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:26:34.5260734Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_grouped_gemm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:26:34.5267035Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_micro_gemm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:26:34.5273808Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:26:34.5279531Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_template_kernel.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:26:34.5285865Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:26:34.5292045Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_wrapper_cpu.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:26:34.5299280Z 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-06-01T21:26:34.5305705Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_wrapper_gpu.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:26:34.5311861Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_wrapper_mps.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:26:34.5318024Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpu_device_op_overrides.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:26:34.5324235Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\cuda 2025-06-01T21:26:34.5327805Z 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-06-01T21:26:34.5333447Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cuda_env.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-06-01T21:26:34.5338887Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cuda_kernel.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-06-01T21:26:34.5344899Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cuda_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-06-01T21:26:34.5356247Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_cache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-06-01T21:26:34.5361834Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_presets.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-06-01T21:26:34.5367993Z 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-06-01T21:26:34.5374125Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-06-01T21:26:34.5380413Z 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-06-01T21:26:34.5386138Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\gemm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-06-01T21:26:34.5392976Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\serialization.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-06-01T21:26:34.5399153Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-06-01T21:26:34.5403889Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda_combined_scheduling.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:26:34.5415085Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\debug_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:26:34.5420868Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\halide.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:26:34.5427435Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\memory_planning.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:26:34.5433698Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\mps.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:26:34.5439917Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\mps_device_op_overrides.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:26:34.5445417Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\multi_kernel.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:26:34.5451683Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\rocm 2025-06-01T21:26:34.5455252Z 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-06-01T21:26:34.5461703Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\ck_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-06-01T21:26:34.5467710Z 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-06-01T21:26:34.5473450Z 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-06-01T21:26:34.5484610Z 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-06-01T21:26:34.5490864Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\compile_command.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-06-01T21:26:34.5496569Z 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-06-01T21:26:34.5502268Z 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-06-01T21:26:34.5507914Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\rocm_kernel.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-06-01T21:26:34.5513515Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\rocm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-06-01T21:26:34.5519295Z 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-06-01T21:26:34.5525119Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\rocm_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-06-01T21:26:34.5530907Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-06-01T21:26:34.5535592Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\simd.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:26:34.5542437Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\simd_kernel_features.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:26:34.5548561Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\subgraph.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:26:34.5554002Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\triton.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:26:34.5561820Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\triton_combo_kernel.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:26:34.5573012Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\triton_split_scan.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:26:34.5578736Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\triton_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:26:34.5584228Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\wrapper.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:26:34.5591907Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\wrapper_fxir.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:26:34.5598475Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\xpu 2025-06-01T21:26:34.5602039Z 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-06-01T21:26:34.5607659Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\xpu\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\xpu 2025-06-01T21:26:34.5612261Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-06-01T21:26:34.5616735Z copying build\lib.win-amd64-cpython-39\torch\_inductor\comms.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.5623166Z copying build\lib.win-amd64-cpython-39\torch\_inductor\comm_analysis.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.5628667Z copying build\lib.win-amd64-cpython-39\torch\_inductor\comm_lowering.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.5634171Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compiler_bisector.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.5640106Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_fx.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.5647696Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_fx_async.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.5653229Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_fx_ext.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.5659422Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_fx_subproc.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.5665476Z creating build\bdist.win-amd64\wheel\torch\_inductor\compile_worker 2025-06-01T21:26:34.5669002Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker\subproc_pool.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\compile_worker 2025-06-01T21:26:34.5674574Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker\utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\compile_worker 2025-06-01T21:26:34.5679975Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\compile_worker 2025-06-01T21:26:34.5684083Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker\__main__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\compile_worker 2025-06-01T21:26:34.5689244Z copying build\lib.win-amd64-cpython-39\torch\_inductor\config.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.5695768Z copying build\lib.win-amd64-cpython-39\torch\_inductor\constant_folding.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.5702284Z copying build\lib.win-amd64-cpython-39\torch\_inductor\cpp_builder.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.5713437Z copying build\lib.win-amd64-cpython-39\torch\_inductor\cpu_vec_isa.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.5719051Z copying build\lib.win-amd64-cpython-39\torch\_inductor\cudagraph_trees.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.5725844Z copying build\lib.win-amd64-cpython-39\torch\_inductor\cudagraph_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.5731334Z copying build\lib.win-amd64-cpython-39\torch\_inductor\custom_graph_pass.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.5736763Z copying build\lib.win-amd64-cpython-39\torch\_inductor\debug.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.5742879Z copying build\lib.win-amd64-cpython-39\torch\_inductor\decomposition.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.5749215Z copying build\lib.win-amd64-cpython-39\torch\_inductor\dependencies.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.5755518Z copying build\lib.win-amd64-cpython-39\torch\_inductor\dtype_propagation.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.5761022Z copying build\lib.win-amd64-cpython-39\torch\_inductor\exc.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.5766630Z copying build\lib.win-amd64-cpython-39\torch\_inductor\extern_node_serializer.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.5772020Z copying build\lib.win-amd64-cpython-39\torch\_inductor\freezing.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.5783132Z copying build\lib.win-amd64-cpython-39\torch\_inductor\freezing_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.5788622Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fuzzer.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.5795440Z creating build\bdist.win-amd64\wheel\torch\_inductor\fx_passes 2025-06-01T21:26:34.5798879Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\b2b_gemm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-06-01T21:26:34.5811992Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\binary_folding.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-06-01T21:26:34.5817936Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\ddp_fusion.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-06-01T21:26:34.5824310Z 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-06-01T21:26:34.5834635Z 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-06-01T21:26:34.5840336Z 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-06-01T21:26:34.5846021Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\freezing_patterns.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-06-01T21:26:34.5851677Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\fuse_attention.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-06-01T21:26:34.5857762Z 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-06-01T21:26:34.5864384Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\joint_graph.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-06-01T21:26:34.5870713Z 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-06-01T21:26:34.5877237Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\misc_patterns.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-06-01T21:26:34.5882886Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\mkldnn_fusion.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-06-01T21:26:34.5889450Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\numeric_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-06-01T21:26:34.5895101Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\pad_mm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-06-01T21:26:34.5901366Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\post_grad.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-06-01T21:26:34.5908428Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\pre_grad.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-06-01T21:26:34.5914542Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\quantization.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-06-01T21:26:34.5921902Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\reinplace.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-06-01T21:26:34.5928408Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\replace_random.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-06-01T21:26:34.5940717Z creating build\bdist.win-amd64\wheel\torch\_inductor\fx_passes\serialized_patterns 2025-06-01T21:26:34.5944323Z 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-06-01T21:26:34.5950055Z 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-06-01T21:26:34.5955583Z 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-06-01T21:26:34.5965430Z 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-06-01T21:26:34.5971021Z 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-06-01T21:26:34.5976679Z 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-06-01T21:26:34.5982503Z 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-06-01T21:26:34.5988592Z 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-06-01T21:26:34.5994291Z 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-06-01T21:26:34.6000115Z 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-06-01T21:26:34.6006245Z 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-06-01T21:26:34.6012822Z 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-06-01T21:26:34.6019023Z 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-06-01T21:26:34.6025559Z 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-06-01T21:26:34.6031498Z 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-06-01T21:26:34.6037540Z 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-06-01T21:26:34.6043729Z 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-06-01T21:26:34.6049669Z 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-06-01T21:26:34.6055863Z 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-06-01T21:26:34.6067774Z 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-06-01T21:26:34.6073619Z 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-06-01T21:26:34.6079470Z 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-06-01T21:26:34.6085402Z 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-06-01T21:26:34.6091308Z 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-06-01T21:26:34.6095974Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\split_cat.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-06-01T21:26:34.6110337Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-06-01T21:26:34.6115234Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.6120644Z copying build\lib.win-amd64-cpython-39\torch\_inductor\graph.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.6127403Z copying build\lib.win-amd64-cpython-39\torch\_inductor\hooks.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.6132637Z copying build\lib.win-amd64-cpython-39\torch\_inductor\index_propagation.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.6138189Z copying build\lib.win-amd64-cpython-39\torch\_inductor\inductor_prims.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.6143775Z copying build\lib.win-amd64-cpython-39\torch\_inductor\ir.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.6152370Z copying build\lib.win-amd64-cpython-39\torch\_inductor\jagged_lowerings.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.6158723Z creating build\bdist.win-amd64\wheel\torch\_inductor\kernel 2025-06-01T21:26:34.6162102Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\bmm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-06-01T21:26:34.6167452Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\conv.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-06-01T21:26:34.6173361Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex_attention.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-06-01T21:26:34.6180671Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex_decoding.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-06-01T21:26:34.6186426Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\mm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-06-01T21:26:34.6198050Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\mm_common.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-06-01T21:26:34.6203580Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\mm_plus_mm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-06-01T21:26:34.6209011Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\mm_scaled_grouped.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-06-01T21:26:34.6214435Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-06-01T21:26:34.6219782Z copying build\lib.win-amd64-cpython-39\torch\_inductor\loop_body.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.6230615Z copying build\lib.win-amd64-cpython-39\torch\_inductor\lowering.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.6238277Z copying build\lib.win-amd64-cpython-39\torch\_inductor\memory.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.6243958Z copying build\lib.win-amd64-cpython-39\torch\_inductor\metrics.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.6249252Z copying build\lib.win-amd64-cpython-39\torch\_inductor\mkldnn_ir.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.6255514Z copying build\lib.win-amd64-cpython-39\torch\_inductor\mkldnn_lowerings.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.6261919Z copying build\lib.win-amd64-cpython-39\torch\_inductor\mock_cache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.6267486Z copying build\lib.win-amd64-cpython-39\torch\_inductor\ops_handler.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.6273628Z copying build\lib.win-amd64-cpython-39\torch\_inductor\optimize_indexing.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.6279266Z copying build\lib.win-amd64-cpython-39\torch\_inductor\output_code.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.6285904Z creating build\bdist.win-amd64\wheel\torch\_inductor\package 2025-06-01T21:26:34.6289364Z copying build\lib.win-amd64-cpython-39\torch\_inductor\package\build_package.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\package 2025-06-01T21:26:34.6294443Z copying build\lib.win-amd64-cpython-39\torch\_inductor\package\package.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\package 2025-06-01T21:26:34.6299909Z copying build\lib.win-amd64-cpython-39\torch\_inductor\package\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\package 2025-06-01T21:26:34.6305139Z copying build\lib.win-amd64-cpython-39\torch\_inductor\pattern_matcher.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.6311870Z copying build\lib.win-amd64-cpython-39\torch\_inductor\quantized_lowerings.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.6327006Z copying build\lib.win-amd64-cpython-39\torch\_inductor\remote_cache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.6333024Z creating build\bdist.win-amd64\wheel\torch\_inductor\runtime 2025-06-01T21:26:34.6336426Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\autotune_cache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-06-01T21:26:34.6363679Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\benchmarking.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-06-01T21:26:34.6369166Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\cache_dir_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-06-01T21:26:34.6374609Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\compile_tasks.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-06-01T21:26:34.6386495Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\coordinate_descent_tuner.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-06-01T21:26:34.6392285Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\halide_helpers.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-06-01T21:26:34.6397527Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\hints.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-06-01T21:26:34.6402954Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\runtime_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-06-01T21:26:34.6408574Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\static_cuda_launcher.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-06-01T21:26:34.6414394Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\triton_compat.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-06-01T21:26:34.6420103Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\triton_helpers.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-06-01T21:26:34.6426665Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\triton_heuristics.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-06-01T21:26:34.6433775Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-06-01T21:26:34.6438407Z copying build\lib.win-amd64-cpython-39\torch\_inductor\scheduler.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.6446577Z copying build\lib.win-amd64-cpython-39\torch\_inductor\script.ld -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.6451825Z copying build\lib.win-amd64-cpython-39\torch\_inductor\select_algorithm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.6466139Z copying build\lib.win-amd64-cpython-39\torch\_inductor\sizevars.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.6472395Z copying build\lib.win-amd64-cpython-39\torch\_inductor\standalone_compile.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.6478327Z copying build\lib.win-amd64-cpython-39\torch\_inductor\subgraph_lowering.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.6483995Z copying build\lib.win-amd64-cpython-39\torch\_inductor\template_heuristics.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.6490020Z copying build\lib.win-amd64-cpython-39\torch\_inductor\test_case.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.6500231Z copying build\lib.win-amd64-cpython-39\torch\_inductor\test_operators.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.6505758Z copying build\lib.win-amd64-cpython-39\torch\_inductor\triton_bundler.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.6511596Z copying build\lib.win-amd64-cpython-39\torch\_inductor\utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.6518602Z copying build\lib.win-amd64-cpython-39\torch\_inductor\virtualized.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.6524329Z copying build\lib.win-amd64-cpython-39\torch\_inductor\wrapper_benchmark.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.6530070Z copying build\lib.win-amd64-cpython-39\torch\_inductor\__autotune_main__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.6535854Z copying build\lib.win-amd64-cpython-39\torch\_inductor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-06-01T21:26:34.6542072Z copying build\lib.win-amd64-cpython-39\torch\_jit_internal.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:34.6554368Z creating build\bdist.win-amd64\wheel\torch\_lazy 2025-06-01T21:26:34.6555017Z copying build\lib.win-amd64-cpython-39\torch\_lazy\closure.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-06-01T21:26:34.6561025Z copying build\lib.win-amd64-cpython-39\torch\_lazy\computation.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-06-01T21:26:34.6565850Z copying build\lib.win-amd64-cpython-39\torch\_lazy\config.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-06-01T21:26:34.6572361Z copying build\lib.win-amd64-cpython-39\torch\_lazy\debug.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-06-01T21:26:34.6578251Z copying build\lib.win-amd64-cpython-39\torch\_lazy\device_context.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-06-01T21:26:34.6589776Z copying build\lib.win-amd64-cpython-39\torch\_lazy\extract_compiled_graph.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-06-01T21:26:34.6595915Z copying build\lib.win-amd64-cpython-39\torch\_lazy\ir_cache.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-06-01T21:26:34.6601055Z copying build\lib.win-amd64-cpython-39\torch\_lazy\metrics.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-06-01T21:26:34.6606276Z copying build\lib.win-amd64-cpython-39\torch\_lazy\tensor_factory_functions.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-06-01T21:26:34.6611657Z copying build\lib.win-amd64-cpython-39\torch\_lazy\ts_backend.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-06-01T21:26:34.6616945Z copying build\lib.win-amd64-cpython-39\torch\_lazy\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-06-01T21:26:34.6628395Z creating build\bdist.win-amd64\wheel\torch\_library 2025-06-01T21:26:34.6636733Z copying build\lib.win-amd64-cpython-39\torch\_library\autograd.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-06-01T21:26:34.6642326Z copying build\lib.win-amd64-cpython-39\torch\_library\custom_ops.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-06-01T21:26:34.6648304Z copying build\lib.win-amd64-cpython-39\torch\_library\fake_class_registry.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-06-01T21:26:34.6653895Z copying build\lib.win-amd64-cpython-39\torch\_library\fake_impl.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-06-01T21:26:34.6668716Z copying build\lib.win-amd64-cpython-39\torch\_library\fake_profile.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-06-01T21:26:34.6674089Z copying build\lib.win-amd64-cpython-39\torch\_library\infer_schema.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-06-01T21:26:34.6680141Z copying build\lib.win-amd64-cpython-39\torch\_library\simple_registry.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-06-01T21:26:34.6685517Z copying build\lib.win-amd64-cpython-39\torch\_library\triton.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-06-01T21:26:34.6690925Z copying build\lib.win-amd64-cpython-39\torch\_library\utils.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-06-01T21:26:34.6696556Z copying build\lib.win-amd64-cpython-39\torch\_library\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-06-01T21:26:34.6701603Z copying build\lib.win-amd64-cpython-39\torch\_linalg_utils.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:34.6707104Z copying build\lib.win-amd64-cpython-39\torch\_lobpcg.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:34.6719311Z creating build\bdist.win-amd64\wheel\torch\_logging 2025-06-01T21:26:34.6722503Z copying build\lib.win-amd64-cpython-39\torch\_logging\scribe.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-06-01T21:26:34.6727793Z copying build\lib.win-amd64-cpython-39\torch\_logging\structured.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-06-01T21:26:34.6734312Z copying build\lib.win-amd64-cpython-39\torch\_logging\_internal.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-06-01T21:26:34.6741149Z copying build\lib.win-amd64-cpython-39\torch\_logging\_registrations.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-06-01T21:26:34.6982268Z copying build\lib.win-amd64-cpython-39\torch\_logging\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-06-01T21:26:34.6988052Z copying build\lib.win-amd64-cpython-39\torch\_lowrank.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:34.7102339Z copying build\lib.win-amd64-cpython-39\torch\_meta_registrations.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:34.7111194Z copying build\lib.win-amd64-cpython-39\torch\_namedtensor_internals.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:34.7117491Z creating build\bdist.win-amd64\wheel\torch\_numpy 2025-06-01T21:26:34.7121202Z copying build\lib.win-amd64-cpython-39\torch\_numpy\fft.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-06-01T21:26:34.7126579Z copying build\lib.win-amd64-cpython-39\torch\_numpy\linalg.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-06-01T21:26:34.7197342Z copying build\lib.win-amd64-cpython-39\torch\_numpy\random.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-06-01T21:26:34.7203133Z creating build\bdist.win-amd64\wheel\torch\_numpy\testing 2025-06-01T21:26:34.7206491Z copying build\lib.win-amd64-cpython-39\torch\_numpy\testing\utils.py -> build\bdist.win-amd64\wheel\.\torch\_numpy\testing 2025-06-01T21:26:34.7213232Z copying build\lib.win-amd64-cpython-39\torch\_numpy\testing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_numpy\testing 2025-06-01T21:26:34.7218752Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_binary_ufuncs_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-06-01T21:26:34.7224214Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_casting_dicts.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-06-01T21:26:34.7377358Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_dtypes.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-06-01T21:26:34.7383390Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_dtypes_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-06-01T21:26:34.7389146Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_funcs.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-06-01T21:26:34.7394939Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_funcs_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-06-01T21:26:34.7401481Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_getlimits.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-06-01T21:26:34.7406855Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_ndarray.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-06-01T21:26:34.7412852Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_normalizations.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-06-01T21:26:34.7474230Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_reductions_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-06-01T21:26:34.7480123Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_ufuncs.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-06-01T21:26:34.7485856Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_unary_ufuncs_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-06-01T21:26:34.7491434Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_util.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-06-01T21:26:34.7497362Z copying build\lib.win-amd64-cpython-39\torch\_numpy\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-06-01T21:26:34.7502677Z copying build\lib.win-amd64-cpython-39\torch\_ops.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:34.7509915Z creating build\bdist.win-amd64\wheel\torch\_prims 2025-06-01T21:26:34.7513369Z copying build\lib.win-amd64-cpython-39\torch\_prims\context.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-06-01T21:26:34.7518951Z copying build\lib.win-amd64-cpython-39\torch\_prims\debug_prims.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-06-01T21:26:34.7524456Z copying build\lib.win-amd64-cpython-39\torch\_prims\executor.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-06-01T21:26:34.7529642Z copying build\lib.win-amd64-cpython-39\torch\_prims\rng_prims.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-06-01T21:26:34.7571989Z copying build\lib.win-amd64-cpython-39\torch\_prims\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-06-01T21:26:34.7678028Z creating build\bdist.win-amd64\wheel\torch\_prims_common 2025-06-01T21:26:34.7681301Z copying build\lib.win-amd64-cpython-39\torch\_prims_common\wrappers.py -> build\bdist.win-amd64\wheel\.\torch\_prims_common 2025-06-01T21:26:34.7728821Z copying build\lib.win-amd64-cpython-39\torch\_prims_common\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_prims_common 2025-06-01T21:26:34.7735561Z copying build\lib.win-amd64-cpython-39\torch\_python_dispatcher.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:34.7742192Z creating build\bdist.win-amd64\wheel\torch\_refs 2025-06-01T21:26:34.7745409Z copying build\lib.win-amd64-cpython-39\torch\_refs\fft.py -> build\bdist.win-amd64\wheel\.\torch\_refs 2025-06-01T21:26:34.7752253Z creating build\bdist.win-amd64\wheel\torch\_refs\linalg 2025-06-01T21:26:34.7755266Z copying build\lib.win-amd64-cpython-39\torch\_refs\linalg\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs\linalg 2025-06-01T21:26:34.7760718Z creating build\bdist.win-amd64\wheel\torch\_refs\nn 2025-06-01T21:26:34.7764389Z creating build\bdist.win-amd64\wheel\torch\_refs\nn\functional 2025-06-01T21:26:34.7767916Z copying build\lib.win-amd64-cpython-39\torch\_refs\nn\functional\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs\nn\functional 2025-06-01T21:26:34.7774670Z copying build\lib.win-amd64-cpython-39\torch\_refs\nn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs\nn 2025-06-01T21:26:34.7780493Z creating build\bdist.win-amd64\wheel\torch\_refs\special 2025-06-01T21:26:34.7783918Z copying build\lib.win-amd64-cpython-39\torch\_refs\special\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs\special 2025-06-01T21:26:34.7789622Z copying build\lib.win-amd64-cpython-39\torch\_refs\_conversions.py -> build\bdist.win-amd64\wheel\.\torch\_refs 2025-06-01T21:26:34.7795612Z copying build\lib.win-amd64-cpython-39\torch\_refs\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs 2025-06-01T21:26:34.7912324Z copying build\lib.win-amd64-cpython-39\torch\_size_docs.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:35.5090297Z copying build\lib.win-amd64-cpython-39\torch\_sources.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:35.5096246Z copying build\lib.win-amd64-cpython-39\torch\_storage_docs.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:35.5102593Z copying build\lib.win-amd64-cpython-39\torch\_streambase.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:35.5116185Z creating build\bdist.win-amd64\wheel\torch\_strobelight 2025-06-01T21:26:35.5117215Z copying build\lib.win-amd64-cpython-39\torch\_strobelight\cli_function_profiler.py -> build\bdist.win-amd64\wheel\.\torch\_strobelight 2025-06-01T21:26:35.5118872Z copying build\lib.win-amd64-cpython-39\torch\_strobelight\compile_time_profiler.py -> build\bdist.win-amd64\wheel\.\torch\_strobelight 2025-06-01T21:26:35.5124142Z copying build\lib.win-amd64-cpython-39\torch\_strobelight\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_strobelight 2025-06-01T21:26:35.5133410Z creating build\bdist.win-amd64\wheel\torch\_subclasses 2025-06-01T21:26:35.5136796Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\fake_impls.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-06-01T21:26:35.5142976Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\fake_tensor.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-06-01T21:26:35.5150260Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\fake_utils.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-06-01T21:26:35.5162100Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\functional_tensor.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-06-01T21:26:35.5167987Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\meta_utils.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-06-01T21:26:35.5174648Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\schema_check_mode.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-06-01T21:26:35.5180388Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\_fake_tensor_utils.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-06-01T21:26:35.5185637Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-06-01T21:26:35.5190896Z copying build\lib.win-amd64-cpython-39\torch\_tensor.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:35.5197552Z copying build\lib.win-amd64-cpython-39\torch\_tensor_docs.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:35.5204887Z copying build\lib.win-amd64-cpython-39\torch\_tensor_str.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:35.5211800Z copying build\lib.win-amd64-cpython-39\torch\_thread_safe_fork.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:35.5216047Z copying build\lib.win-amd64-cpython-39\torch\_torch_docs.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:35.5226192Z copying build\lib.win-amd64-cpython-39\torch\_utils.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:35.5232320Z copying build\lib.win-amd64-cpython-39\torch\_utils_internal.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:35.5247053Z creating build\bdist.win-amd64\wheel\torch\_vendor 2025-06-01T21:26:35.5250432Z creating build\bdist.win-amd64\wheel\torch\_vendor\packaging 2025-06-01T21:26:35.5253665Z copying build\lib.win-amd64-cpython-39\torch\_vendor\packaging\version.py -> build\bdist.win-amd64\wheel\.\torch\_vendor\packaging 2025-06-01T21:26:35.5259650Z copying build\lib.win-amd64-cpython-39\torch\_vendor\packaging\_structures.py -> build\bdist.win-amd64\wheel\.\torch\_vendor\packaging 2025-06-01T21:26:35.5265193Z copying build\lib.win-amd64-cpython-39\torch\_vendor\packaging\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_vendor\packaging 2025-06-01T21:26:35.5270247Z copying build\lib.win-amd64-cpython-39\torch\_vendor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_vendor 2025-06-01T21:26:35.5274518Z copying build\lib.win-amd64-cpython-39\torch\_VF.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:35.5279560Z copying build\lib.win-amd64-cpython-39\torch\_VF.pyi -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:35.5295663Z copying build\lib.win-amd64-cpython-39\torch\_vmap_internals.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:35.5301382Z copying build\lib.win-amd64-cpython-39\torch\_weights_only_unpickler.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:35.5307995Z copying build\lib.win-amd64-cpython-39\torch\__config__.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:35.5312902Z copying build\lib.win-amd64-cpython-39\torch\__future__.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:35.5318327Z copying build\lib.win-amd64-cpython-39\torch\__init__.py -> build\bdist.win-amd64\wheel\.\torch 2025-06-01T21:26:35.5336768Z creating build\bdist.win-amd64\wheel\torchgen 2025-06-01T21:26:35.5340245Z creating build\bdist.win-amd64\wheel\torchgen\aoti 2025-06-01T21:26:35.5343592Z copying build\lib.win-amd64-cpython-39\torchgen\aoti\fallback_ops.py -> build\bdist.win-amd64\wheel\.\torchgen\aoti 2025-06-01T21:26:35.5349029Z copying build\lib.win-amd64-cpython-39\torchgen\aoti\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\aoti 2025-06-01T21:26:35.5353629Z creating build\bdist.win-amd64\wheel\torchgen\api 2025-06-01T21:26:35.5356730Z copying build\lib.win-amd64-cpython-39\torchgen\api\autograd.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-06-01T21:26:35.5362576Z copying build\lib.win-amd64-cpython-39\torchgen\api\cpp.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-06-01T21:26:35.5368320Z copying build\lib.win-amd64-cpython-39\torchgen\api\dispatcher.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-06-01T21:26:35.5373714Z copying build\lib.win-amd64-cpython-39\torchgen\api\functionalization.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-06-01T21:26:35.5379079Z copying build\lib.win-amd64-cpython-39\torchgen\api\lazy.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-06-01T21:26:35.5389329Z copying build\lib.win-amd64-cpython-39\torchgen\api\meta.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-06-01T21:26:35.5394486Z copying build\lib.win-amd64-cpython-39\torchgen\api\native.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-06-01T21:26:35.5399934Z copying build\lib.win-amd64-cpython-39\torchgen\api\python.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-06-01T21:26:35.5406000Z copying build\lib.win-amd64-cpython-39\torchgen\api\structured.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-06-01T21:26:35.5411695Z copying build\lib.win-amd64-cpython-39\torchgen\api\translate.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-06-01T21:26:35.5418523Z creating build\bdist.win-amd64\wheel\torchgen\api\types 2025-06-01T21:26:35.5422088Z copying build\lib.win-amd64-cpython-39\torchgen\api\types\signatures.py -> build\bdist.win-amd64\wheel\.\torchgen\api\types 2025-06-01T21:26:35.5427625Z copying build\lib.win-amd64-cpython-39\torchgen\api\types\types.py -> build\bdist.win-amd64\wheel\.\torchgen\api\types 2025-06-01T21:26:35.5433020Z copying build\lib.win-amd64-cpython-39\torchgen\api\types\types_base.py -> build\bdist.win-amd64\wheel\.\torchgen\api\types 2025-06-01T21:26:35.5438473Z copying build\lib.win-amd64-cpython-39\torchgen\api\types\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\api\types 2025-06-01T21:26:35.5443922Z copying build\lib.win-amd64-cpython-39\torchgen\api\ufunc.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-06-01T21:26:35.5449704Z copying build\lib.win-amd64-cpython-39\torchgen\api\unboxing.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-06-01T21:26:35.5455510Z copying build\lib.win-amd64-cpython-39\torchgen\api\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-06-01T21:26:35.5459719Z copying build\lib.win-amd64-cpython-39\torchgen\code_template.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-06-01T21:26:35.5465200Z copying build\lib.win-amd64-cpython-39\torchgen\context.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-06-01T21:26:35.5470782Z creating build\bdist.win-amd64\wheel\torchgen\dest 2025-06-01T21:26:35.5474157Z copying build\lib.win-amd64-cpython-39\torchgen\dest\lazy_ir.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-06-01T21:26:35.5480228Z copying build\lib.win-amd64-cpython-39\torchgen\dest\lazy_ts_lowering.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-06-01T21:26:35.5485650Z copying build\lib.win-amd64-cpython-39\torchgen\dest\native_functions.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-06-01T21:26:35.5491447Z copying build\lib.win-amd64-cpython-39\torchgen\dest\register_dispatch_key.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-06-01T21:26:35.5503238Z copying build\lib.win-amd64-cpython-39\torchgen\dest\ufunc.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-06-01T21:26:35.5508551Z copying build\lib.win-amd64-cpython-39\torchgen\dest\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-06-01T21:26:35.5514596Z creating build\bdist.win-amd64\wheel\torchgen\executorch 2025-06-01T21:26:35.5522394Z creating build\bdist.win-amd64\wheel\torchgen\executorch\api 2025-06-01T21:26:35.5525768Z copying build\lib.win-amd64-cpython-39\torchgen\executorch\api\custom_ops.py -> build\bdist.win-amd64\wheel\.\torchgen\executorch\api 2025-06-01T21:26:35.5531355Z copying build\lib.win-amd64-cpython-39\torchgen\executorch\api\et_cpp.py -> build\bdist.win-amd64\wheel\.\torchgen\executorch\api 2025-06-01T21:26:35.5537098Z creating build\bdist.win-amd64\wheel\torchgen\executorch\api\types 2025-06-01T21:26:35.5541524Z copying build\lib.win-amd64-cpython-39\torchgen\executorch\api\types\signatures.py -> build\bdist.win-amd64\wheel\.\torchgen\executorch\api\types 2025-06-01T21:26:35.5546117Z copying build\lib.win-amd64-cpython-39\torchgen\executorch\api\types\types.py -> build\bdist.win-amd64\wheel\.\torchgen\executorch\api\types 2025-06-01T21:26:35.5551449Z copying build\lib.win-amd64-cpython-39\torchgen\executorch\api\types\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\executorch\api\types 2025-06-01T21:26:35.5556511Z copying build\lib.win-amd64-cpython-39\torchgen\executorch\api\unboxing.py -> build\bdist.win-amd64\wheel\.\torchgen\executorch\api 2025-06-01T21:26:35.5562113Z copying build\lib.win-amd64-cpython-39\torchgen\executorch\api\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\executorch\api 2025-06-01T21:26:35.5566520Z copying build\lib.win-amd64-cpython-39\torchgen\executorch\model.py -> build\bdist.win-amd64\wheel\.\torchgen\executorch 2025-06-01T21:26:35.5572036Z copying build\lib.win-amd64-cpython-39\torchgen\executorch\parse.py -> build\bdist.win-amd64\wheel\.\torchgen\executorch 2025-06-01T21:26:35.5577697Z copying build\lib.win-amd64-cpython-39\torchgen\executorch\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\executorch 2025-06-01T21:26:35.5582563Z copying build\lib.win-amd64-cpython-39\torchgen\gen.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-06-01T21:26:35.5590113Z copying build\lib.win-amd64-cpython-39\torchgen\gen_aoti_c_shim.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-06-01T21:26:35.5595753Z copying build\lib.win-amd64-cpython-39\torchgen\gen_backend_stubs.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-06-01T21:26:35.5601737Z copying build\lib.win-amd64-cpython-39\torchgen\gen_executorch.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-06-01T21:26:35.5608340Z copying build\lib.win-amd64-cpython-39\torchgen\gen_functionalization_type.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-06-01T21:26:35.5614998Z copying build\lib.win-amd64-cpython-39\torchgen\gen_lazy_tensor.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-06-01T21:26:35.5621414Z copying build\lib.win-amd64-cpython-39\torchgen\gen_schema_utils.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-06-01T21:26:35.5627190Z copying build\lib.win-amd64-cpython-39\torchgen\gen_vmap_plumbing.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-06-01T21:26:35.5632938Z copying build\lib.win-amd64-cpython-39\torchgen\local.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-06-01T21:26:35.5638385Z copying build\lib.win-amd64-cpython-39\torchgen\model.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-06-01T21:26:35.5646014Z copying build\lib.win-amd64-cpython-39\torchgen\native_function_generation.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-06-01T21:26:35.5652749Z creating build\bdist.win-amd64\wheel\torchgen\operator_versions 2025-06-01T21:26:35.5656204Z copying build\lib.win-amd64-cpython-39\torchgen\operator_versions\gen_mobile_upgraders.py -> build\bdist.win-amd64\wheel\.\torchgen\operator_versions 2025-06-01T21:26:35.5662375Z copying build\lib.win-amd64-cpython-39\torchgen\operator_versions\gen_mobile_upgraders_constant.py -> build\bdist.win-amd64\wheel\.\torchgen\operator_versions 2025-06-01T21:26:35.5667512Z copying build\lib.win-amd64-cpython-39\torchgen\operator_versions\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\operator_versions 2025-06-01T21:26:35.5677278Z creating build\bdist.win-amd64\wheel\torchgen\packaged 2025-06-01T21:26:35.5680536Z creating build\bdist.win-amd64\wheel\torchgen\packaged\ATen 2025-06-01T21:26:35.5684520Z creating build\bdist.win-amd64\wheel\torchgen\packaged\ATen\native 2025-06-01T21:26:35.5687620Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\native\native_functions.yaml -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\native 2025-06-01T21:26:35.5698939Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\native\tags.yaml -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\native 2025-06-01T21:26:35.5705268Z creating build\bdist.win-amd64\wheel\torchgen\packaged\ATen\templates 2025-06-01T21:26:35.5708829Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\ATenOpList.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:26:35.5714383Z 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-06-01T21:26:35.5719807Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\CompositeViewCopyKernels.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:26:35.5730099Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\DispatchKeyFunction.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:26:35.5735483Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\DispatchKeyFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:26:35.5740937Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\DispatchKeyFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:26:35.5746786Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\DispatchKeyNativeFunctions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:26:35.5752041Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\DispatchKeyNativeFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:26:35.5757172Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\enum_tag.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:26:35.5762155Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Function.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:26:35.5767243Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\FunctionalInverses.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:26:35.5772720Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:26:35.5778279Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Functions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:26:35.5783701Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\LazyIr.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:26:35.5789136Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\LazyNonNativeIr.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:26:35.5794370Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\MethodOperators.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:26:35.5800575Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\NativeFunction.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:26:35.5805462Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\NativeFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:26:35.5810796Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\NativeMetaFunction.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:26:35.5821823Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\NativeMetaFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:26:35.5827051Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Operator.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:26:35.5832088Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Operators.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:26:35.5845377Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Operators.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:26:35.5850999Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RedispatchFunctions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:26:35.5856357Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RedispatchFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:26:35.5861901Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterBackendSelect.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:26:35.5867500Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterCodegenUnboxedKernels.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:26:35.5872976Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterDispatchDefinitions.ini -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:26:35.5878263Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterDispatchKey.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:26:35.5888856Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterFunctionalization.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:26:35.5895241Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterSchema.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:26:35.5900796Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegistrationDeclarations.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:26:35.5906197Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\TensorBody.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:26:35.5912360Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\TensorMethods.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:26:35.5917995Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\UfuncCPU.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:26:35.5923180Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\UfuncCPUKernel.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:26:35.5928420Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\UfuncCUDA.cu -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:26:35.5933704Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\UnboxingFunctions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:26:35.5944821Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\UnboxingFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-06-01T21:26:35.5950898Z creating build\bdist.win-amd64\wheel\torchgen\packaged\autograd 2025-06-01T21:26:35.5954263Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\BUILD.bazel -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-06-01T21:26:35.5959389Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\build.bzl -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-06-01T21:26:35.5964324Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\context.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-06-01T21:26:35.5969570Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\deprecated.yaml -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-06-01T21:26:35.5974890Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\derivatives.yaml -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-06-01T21:26:35.5987669Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_annotated_fn_args.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-06-01T21:26:35.5993146Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_autograd.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-06-01T21:26:35.5998883Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_autograd_functions.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-06-01T21:26:35.6026141Z 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-06-01T21:26:35.6032204Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_python_functions.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-06-01T21:26:35.6038914Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_trace_type.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-06-01T21:26:35.6045133Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_variable_factories.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-06-01T21:26:35.6050854Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_variable_type.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-06-01T21:26:35.6057516Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_view_funcs.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-06-01T21:26:35.6064008Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\load_derivatives.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-06-01T21:26:35.6070487Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\README.md -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-06-01T21:26:35.6076872Z creating build\bdist.win-amd64\wheel\torchgen\packaged\autograd\templates 2025-06-01T21:26:35.6080877Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\ADInplaceOrViewType.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-06-01T21:26:35.6086392Z 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-06-01T21:26:35.6091694Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\Functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-06-01T21:26:35.6104156Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\Functions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-06-01T21:26:35.6110094Z 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-06-01T21:26:35.6116161Z 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-06-01T21:26:35.6122639Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-06-01T21:26:35.6128779Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_functions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-06-01T21:26:35.6134638Z 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-06-01T21:26:35.6140969Z 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-06-01T21:26:35.6147151Z 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-06-01T21:26:35.6152920Z 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-06-01T21:26:35.6159101Z 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-06-01T21:26:35.6164652Z 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-06-01T21:26:35.6170827Z 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-06-01T21:26:35.6176913Z 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-06-01T21:26:35.6182793Z 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-06-01T21:26:35.6196079Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\TraceType.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-06-01T21:26:35.6201848Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\VariableType.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-06-01T21:26:35.6207532Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\VariableType.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-06-01T21:26:35.6213047Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\variable_factories.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-06-01T21:26:35.6219135Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\ViewFuncs.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-06-01T21:26:35.6224414Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\ViewFuncs.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-06-01T21:26:35.6229989Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-06-01T21:26:35.6237100Z creating build\bdist.win-amd64\wheel\torchgen\selective_build 2025-06-01T21:26:35.6240810Z copying build\lib.win-amd64-cpython-39\torchgen\selective_build\operator.py -> build\bdist.win-amd64\wheel\.\torchgen\selective_build 2025-06-01T21:26:35.6246499Z copying build\lib.win-amd64-cpython-39\torchgen\selective_build\selector.py -> build\bdist.win-amd64\wheel\.\torchgen\selective_build 2025-06-01T21:26:35.6252100Z copying build\lib.win-amd64-cpython-39\torchgen\selective_build\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\selective_build 2025-06-01T21:26:35.6256876Z creating build\bdist.win-amd64\wheel\torchgen\static_runtime 2025-06-01T21:26:35.6260474Z copying build\lib.win-amd64-cpython-39\torchgen\static_runtime\config.py -> build\bdist.win-amd64\wheel\.\torchgen\static_runtime 2025-06-01T21:26:35.6265986Z copying build\lib.win-amd64-cpython-39\torchgen\static_runtime\generator.py -> build\bdist.win-amd64\wheel\.\torchgen\static_runtime 2025-06-01T21:26:35.6272269Z copying build\lib.win-amd64-cpython-39\torchgen\static_runtime\gen_static_runtime_ops.py -> build\bdist.win-amd64\wheel\.\torchgen\static_runtime 2025-06-01T21:26:35.6285168Z copying build\lib.win-amd64-cpython-39\torchgen\static_runtime\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\static_runtime 2025-06-01T21:26:35.6289735Z copying build\lib.win-amd64-cpython-39\torchgen\utils.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-06-01T21:26:35.6295656Z copying build\lib.win-amd64-cpython-39\torchgen\yaml_utils.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-06-01T21:26:35.6306231Z copying build\lib.win-amd64-cpython-39\torchgen\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-06-01T21:26:35.6319285Z running install_egg_info 2025-06-01T21:26:35.6410070Z running egg_info 2025-06-01T21:26:35.6488975Z creating torch.egg-info 2025-06-01T21:26:35.6492585Z writing torch.egg-info\PKG-INFO 2025-06-01T21:26:35.6631671Z writing dependency_links to torch.egg-info\dependency_links.txt 2025-06-01T21:26:35.6636697Z writing entry points to torch.egg-info\entry_points.txt 2025-06-01T21:26:35.6651852Z writing requirements to torch.egg-info\requires.txt 2025-06-01T21:26:35.6656050Z writing top-level names to torch.egg-info\top_level.txt 2025-06-01T21:26:35.6659523Z writing manifest file 'torch.egg-info\SOURCES.txt' 2025-06-01T21:26:36.8521805Z reading manifest file 'torch.egg-info\SOURCES.txt' 2025-06-01T21:26:36.8528012Z reading manifest template 'MANIFEST.in' 2025-06-01T21:26:39.7473113Z warning: no files found matching '*.*' under directory 'ios' 2025-06-01T21:27:25.5823805Z warning: no files found matching '*.*' under directory 'modules' 2025-06-01T21:27:25.8418316Z warning: no previously-included files matching '*.o' found anywhere in distribution 2025-06-01T21:27:26.0443514Z warning: no previously-included files matching '*.so' found anywhere in distribution 2025-06-01T21:27:26.2475692Z warning: no previously-included files matching '*.dylib' found anywhere in distribution 2025-06-01T21:27:26.4501469Z warning: no previously-included files matching '*.a' found anywhere in distribution 2025-06-01T21:27:27.0143867Z warning: no previously-included files matching '*.swp' found anywhere in distribution 2025-06-01T21:27:27.0144409Z adding license file 'LICENSE' 2025-06-01T21:27:27.0144698Z adding license file 'NOTICE' 2025-06-01T21:27:37.5611025Z writing manifest file 'torch.egg-info\SOURCES.txt' 2025-06-01T21:27:37.6439434Z Copying torch.egg-info to build\bdist.win-amd64\wheel\.\torch-2.8.0a0+gitf7c09f8-py3.9.egg-info 2025-06-01T21:27:37.6588798Z running install_scripts 2025-06-01T21:27:37.6607346Z C:\Jenkins\Miniconda3\lib\site-packages\wheel\bdist_wheel.py:108: RuntimeWarning: Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect 2025-06-01T21:27:37.6608188Z if get_flag("Py_DEBUG", hasattr(sys, "gettotalrefcount"), warn=(impl == "cp")): 2025-06-01T21:27:37.7251732Z creating build\bdist.win-amd64\wheel\torch-2.8.0a0+gitf7c09f8.dist-info\WHEEL 2025-06-01T21:27:37.7268018Z creating 'dist\torch-2.8.0a0+gitf7c09f8-cp39-cp39-win_amd64.whl' and adding 'build\bdist.win-amd64\wheel' to it 2025-06-01T21:27:37.7508253Z adding 'functorch/_C.cp39-win_amd64.pyd' 2025-06-01T21:27:37.7530852Z adding 'functorch/__init__.py' 2025-06-01T21:27:37.7535308Z adding 'functorch/_src/__init__.py' 2025-06-01T21:27:37.7539333Z adding 'functorch/_src/aot_autograd/__init__.py' 2025-06-01T21:27:37.7543496Z adding 'functorch/_src/eager_transforms/__init__.py' 2025-06-01T21:27:37.7547345Z adding 'functorch/_src/make_functional/__init__.py' 2025-06-01T21:27:37.7551094Z adding 'functorch/_src/vmap/__init__.py' 2025-06-01T21:27:37.7554880Z adding 'functorch/compile/__init__.py' 2025-06-01T21:27:37.7560015Z adding 'functorch/dim/__init__.py' 2025-06-01T21:27:37.7563150Z adding 'functorch/dim/batch_tensor.py' 2025-06-01T21:27:37.7566553Z adding 'functorch/dim/delayed_mul_tensor.py' 2025-06-01T21:27:37.7570555Z adding 'functorch/dim/dim.py' 2025-06-01T21:27:37.7573833Z adding 'functorch/dim/magic_trace.py' 2025-06-01T21:27:37.7578109Z adding 'functorch/dim/op_properties.py' 2025-06-01T21:27:37.7587964Z adding 'functorch/dim/reference.py' 2025-06-01T21:27:37.7591645Z adding 'functorch/dim/tree_map.py' 2025-06-01T21:27:37.7595136Z adding 'functorch/dim/wrap_type.py' 2025-06-01T21:27:37.7598853Z adding 'functorch/einops/__init__.py' 2025-06-01T21:27:37.7604740Z adding 'functorch/einops/_parsing.py' 2025-06-01T21:27:37.7609885Z adding 'functorch/einops/rearrange.py' 2025-06-01T21:27:37.7613883Z adding 'functorch/experimental/__init__.py' 2025-06-01T21:27:37.7617151Z adding 'functorch/experimental/control_flow.py' 2025-06-01T21:27:37.7619896Z adding 'functorch/experimental/ops.py' 2025-06-01T21:27:37.7628638Z adding 'torch/_C.cp39-win_amd64.pyd' 2025-06-01T21:27:37.7632231Z adding 'torch/_VF.py' 2025-06-01T21:27:37.7857253Z adding 'torch/_VF.pyi' 2025-06-01T21:27:37.7889138Z adding 'torch/__config__.py' 2025-06-01T21:27:37.7892860Z adding 'torch/__future__.py' 2025-06-01T21:27:37.7931305Z adding 'torch/__init__.py' 2025-06-01T21:27:37.7942264Z adding 'torch/_appdirs.py' 2025-06-01T21:27:37.7946514Z adding 'torch/_classes.py' 2025-06-01T21:27:37.7950045Z adding 'torch/_compile.py' 2025-06-01T21:27:37.7956139Z adding 'torch/_custom_ops.py' 2025-06-01T21:27:37.7960216Z adding 'torch/_deploy.py' 2025-06-01T21:27:37.7963265Z adding 'torch/_environment.py' 2025-06-01T21:27:37.7978148Z adding 'torch/_guards.py' 2025-06-01T21:27:37.8001532Z adding 'torch/_jit_internal.py' 2025-06-01T21:27:37.8007359Z adding 'torch/_linalg_utils.py' 2025-06-01T21:27:37.8023510Z adding 'torch/_lobpcg.py' 2025-06-01T21:27:37.8030799Z adding 'torch/_lowrank.py' 2025-06-01T21:27:37.8108879Z adding 'torch/_meta_registrations.py' 2025-06-01T21:27:37.8119168Z adding 'torch/_namedtensor_internals.py' 2025-06-01T21:27:37.8141200Z adding 'torch/_ops.py' 2025-06-01T21:27:37.8147415Z adding 'torch/_python_dispatcher.py' 2025-06-01T21:27:37.8150933Z adding 'torch/_size_docs.py' 2025-06-01T21:27:37.8155041Z adding 'torch/_sources.py' 2025-06-01T21:27:37.8158441Z adding 'torch/_storage_docs.py' 2025-06-01T21:27:37.8161405Z adding 'torch/_streambase.py' 2025-06-01T21:27:37.8185993Z adding 'torch/_tensor.py' 2025-06-01T21:27:37.8230991Z adding 'torch/_tensor_docs.py' 2025-06-01T21:27:37.8244589Z adding 'torch/_tensor_str.py' 2025-06-01T21:27:37.8248371Z adding 'torch/_thread_safe_fork.py' 2025-06-01T21:27:37.8385396Z adding 'torch/_torch_docs.py' 2025-06-01T21:27:37.8412140Z adding 'torch/_utils.py' 2025-06-01T21:27:37.8418837Z adding 'torch/_utils_internal.py' 2025-06-01T21:27:37.8424457Z adding 'torch/_vmap_internals.py' 2025-06-01T21:27:37.8432905Z adding 'torch/_weights_only_unpickler.py' 2025-06-01T21:27:37.8464995Z adding 'torch/functional.py' 2025-06-01T21:27:37.8480076Z adding 'torch/hub.py' 2025-06-01T21:27:37.8502895Z adding 'torch/library.py' 2025-06-01T21:27:37.8531542Z adding 'torch/overrides.py' 2025-06-01T21:27:37.8537174Z adding 'torch/py.typed' 2025-06-01T21:27:37.8542026Z adding 'torch/quasirandom.py' 2025-06-01T21:27:37.8546992Z adding 'torch/random.py' 2025-06-01T21:27:37.8550606Z adding 'torch/return_types.py' 2025-06-01T21:27:37.8555350Z adding 'torch/return_types.pyi' 2025-06-01T21:27:37.8587324Z adding 'torch/serialization.py' 2025-06-01T21:27:37.8604610Z adding 'torch/storage.py' 2025-06-01T21:27:37.8609709Z adding 'torch/torch_version.py' 2025-06-01T21:27:37.8613607Z adding 'torch/types.py' 2025-06-01T21:27:37.8616768Z adding 'torch/version.py' 2025-06-01T21:27:37.8850725Z adding 'torch/_C/_VariableFunctions.pyi' 2025-06-01T21:27:37.8969714Z adding 'torch/_C/__init__.pyi' 2025-06-01T21:27:37.8983014Z adding 'torch/_C/_aoti.pyi' 2025-06-01T21:27:37.8987126Z adding 'torch/_C/_autograd.pyi' 2025-06-01T21:27:37.8990406Z adding 'torch/_C/_cpu.pyi' 2025-06-01T21:27:37.8993623Z adding 'torch/_C/_cudnn.pyi' 2025-06-01T21:27:37.8996490Z adding 'torch/_C/_cusparselt.pyi' 2025-06-01T21:27:37.8999778Z adding 'torch/_C/_distributed_autograd.pyi' 2025-06-01T21:27:37.9007383Z adding 'torch/_C/_distributed_c10d.pyi' 2025-06-01T21:27:37.9012268Z adding 'torch/_C/_distributed_rpc.pyi' 2025-06-01T21:27:37.9015794Z adding 'torch/_C/_distributed_rpc_testing.pyi' 2025-06-01T21:27:37.9018903Z adding 'torch/_C/_functions.pyi' 2025-06-01T21:27:37.9022554Z adding 'torch/_C/_functorch.pyi' 2025-06-01T21:27:37.9025606Z adding 'torch/_C/_instruction_counter.pyi' 2025-06-01T21:27:37.9028622Z adding 'torch/_C/_itt.pyi' 2025-06-01T21:27:37.9031788Z adding 'torch/_C/_lazy.pyi' 2025-06-01T21:27:37.9034882Z adding 'torch/_C/_lazy_ts_backend.pyi' 2025-06-01T21:27:37.9038140Z adding 'torch/_C/_monitor.pyi' 2025-06-01T21:27:37.9041896Z adding 'torch/_C/_nn.pyi' 2025-06-01T21:27:37.9045108Z adding 'torch/_C/_nvtx.pyi' 2025-06-01T21:27:37.9048797Z adding 'torch/_C/_onnx.pyi' 2025-06-01T21:27:37.9052899Z adding 'torch/_C/_profiler.pyi' 2025-06-01T21:27:37.9056101Z adding 'torch/_C/_verbose.pyi' 2025-06-01T21:27:37.9060001Z adding 'torch/_C/_dynamo/__init__.pyi' 2025-06-01T21:27:37.9063250Z adding 'torch/_C/_dynamo/compiled_autograd.pyi' 2025-06-01T21:27:37.9066748Z adding 'torch/_C/_dynamo/eval_frame.pyi' 2025-06-01T21:27:37.9070706Z adding 'torch/_C/_dynamo/guards.pyi' 2025-06-01T21:27:37.9074872Z adding 'torch/_C/_export/__init__.pyi' 2025-06-01T21:27:37.9078529Z adding 'torch/_C/_export/pt2_archive_constants.pyi' 2025-06-01T21:27:37.9082673Z adding 'torch/_C_flatbuffer/__init__.pyi' 2025-06-01T21:27:37.9087264Z adding 'torch/_awaits/__init__.py' 2025-06-01T21:27:37.9091576Z adding 'torch/_custom_op/__init__.py' 2025-06-01T21:27:37.9098116Z adding 'torch/_custom_op/autograd.py' 2025-06-01T21:27:37.9108447Z adding 'torch/_custom_op/impl.py' 2025-06-01T21:27:37.9117518Z adding 'torch/_decomp/__init__.py' 2025-06-01T21:27:37.9176898Z adding 'torch/_decomp/decompositions.py' 2025-06-01T21:27:37.9186833Z adding 'torch/_decomp/decompositions_for_jvp.py' 2025-06-01T21:27:37.9192667Z adding 'torch/_decomp/decompositions_for_rng.py' 2025-06-01T21:27:37.9196284Z adding 'torch/_dispatch/__init__.py' 2025-06-01T21:27:37.9200778Z adding 'torch/_dispatch/python.py' 2025-06-01T21:27:37.9206727Z adding 'torch/_dynamo/__init__.py' 2025-06-01T21:27:37.9212303Z adding 'torch/_dynamo/_trace_wrapped_higher_order_op.py' 2025-06-01T21:27:37.9217453Z adding 'torch/_dynamo/bytecode_analysis.py' 2025-06-01T21:27:37.9239389Z adding 'torch/_dynamo/bytecode_transformation.py' 2025-06-01T21:27:37.9245983Z adding 'torch/_dynamo/cache_size.py' 2025-06-01T21:27:37.9249929Z adding 'torch/_dynamo/callback.py' 2025-06-01T21:27:37.9253361Z adding 'torch/_dynamo/code_context.py' 2025-06-01T21:27:37.9263057Z adding 'torch/_dynamo/codegen.py' 2025-06-01T21:27:37.9284176Z adding 'torch/_dynamo/compiled_autograd.py' 2025-06-01T21:27:37.9291972Z adding 'torch/_dynamo/comptime.py' 2025-06-01T21:27:37.9304998Z adding 'torch/_dynamo/config.py' 2025-06-01T21:27:37.9326250Z adding 'torch/_dynamo/convert_frame.py' 2025-06-01T21:27:37.9331356Z adding 'torch/_dynamo/create_parameter_op.py' 2025-06-01T21:27:37.9334502Z adding 'torch/_dynamo/current_scope_id.py' 2025-06-01T21:27:37.9346762Z adding 'torch/_dynamo/debug_utils.py' 2025-06-01T21:27:37.9360431Z adding 'torch/_dynamo/decorators.py' 2025-06-01T21:27:37.9367394Z adding 'torch/_dynamo/device_interface.py' 2025-06-01T21:27:37.9371137Z adding 'torch/_dynamo/distributed.py' 2025-06-01T21:27:37.9400454Z adding 'torch/_dynamo/eval_frame.py' 2025-06-01T21:27:37.9411391Z adding 'torch/_dynamo/exc.py' 2025-06-01T21:27:37.9416751Z adding 'torch/_dynamo/external_utils.py' 2025-06-01T21:27:37.9420508Z adding 'torch/_dynamo/funcname_cache.py' 2025-06-01T21:27:37.9423843Z adding 'torch/_dynamo/graph_break_hints.py' 2025-06-01T21:27:37.9431585Z adding 'torch/_dynamo/graph_deduplication.py' 2025-06-01T21:27:37.9439456Z adding 'torch/_dynamo/graph_region_tracker.py' 2025-06-01T21:27:37.9443445Z adding 'torch/_dynamo/graph_utils.py' 2025-06-01T21:27:37.9492456Z adding 'torch/_dynamo/guards.py' 2025-06-01T21:27:37.9499445Z adding 'torch/_dynamo/hooks.py' 2025-06-01T21:27:37.9503009Z adding 'torch/_dynamo/logging.py' 2025-06-01T21:27:37.9507694Z adding 'torch/_dynamo/metrics_context.py' 2025-06-01T21:27:37.9512294Z adding 'torch/_dynamo/mutation_guard.py' 2025-06-01T21:27:37.9562479Z adding 'torch/_dynamo/output_graph.py' 2025-06-01T21:27:37.9577653Z adding 'torch/_dynamo/pgo.py' 2025-06-01T21:27:37.9583262Z adding 'torch/_dynamo/profiler.py' 2025-06-01T21:27:37.9587881Z adding 'torch/_dynamo/replay_record.py' 2025-06-01T21:27:37.9597934Z adding 'torch/_dynamo/resume_execution.py' 2025-06-01T21:27:37.9615165Z adding 'torch/_dynamo/side_effects.py' 2025-06-01T21:27:37.9625038Z adding 'torch/_dynamo/source.py' 2025-06-01T21:27:37.9681930Z adding 'torch/_dynamo/symbolic_convert.py' 2025-06-01T21:27:37.9689208Z adding 'torch/_dynamo/tensor_version_op.py' 2025-06-01T21:27:37.9694209Z adding 'torch/_dynamo/test_case.py' 2025-06-01T21:27:37.9697611Z adding 'torch/_dynamo/test_dont_skip_tracing_functions.py' 2025-06-01T21:27:37.9703345Z adding 'torch/_dynamo/test_minifier_common.py' 2025-06-01T21:27:37.9711492Z adding 'torch/_dynamo/testing.py' 2025-06-01T21:27:37.9749205Z adding 'torch/_dynamo/trace_rules.py' 2025-06-01T21:27:37.9756780Z adding 'torch/_dynamo/types.py' 2025-06-01T21:27:37.9816513Z adding 'torch/_dynamo/utils.py' 2025-06-01T21:27:37.9824089Z adding 'torch/_dynamo/backends/__init__.py' 2025-06-01T21:27:37.9828253Z adding 'torch/_dynamo/backends/common.py' 2025-06-01T21:27:37.9833678Z adding 'torch/_dynamo/backends/cudagraphs.py' 2025-06-01T21:27:37.9840694Z adding 'torch/_dynamo/backends/debugging.py' 2025-06-01T21:27:37.9851732Z adding 'torch/_dynamo/backends/distributed.py' 2025-06-01T21:27:37.9855651Z adding 'torch/_dynamo/backends/inductor.py' 2025-06-01T21:27:37.9859127Z adding 'torch/_dynamo/backends/onnxrt.py' 2025-06-01T21:27:37.9863512Z adding 'torch/_dynamo/backends/registry.py' 2025-06-01T21:27:37.9866772Z adding 'torch/_dynamo/backends/tensorrt.py' 2025-06-01T21:27:37.9870179Z adding 'torch/_dynamo/backends/torchxla.py' 2025-06-01T21:27:37.9875080Z adding 'torch/_dynamo/backends/tvm.py' 2025-06-01T21:27:37.9881796Z adding 'torch/_dynamo/polyfills/__init__.py' 2025-06-01T21:27:37.9885428Z adding 'torch/_dynamo/polyfills/builtins.py' 2025-06-01T21:27:37.9888968Z adding 'torch/_dynamo/polyfills/functools.py' 2025-06-01T21:27:37.9892286Z adding 'torch/_dynamo/polyfills/fx.py' 2025-06-01T21:27:37.9896713Z adding 'torch/_dynamo/polyfills/itertools.py' 2025-06-01T21:27:37.9900355Z adding 'torch/_dynamo/polyfills/loader.py' 2025-06-01T21:27:37.9904013Z adding 'torch/_dynamo/polyfills/operator.py' 2025-06-01T21:27:37.9907291Z adding 'torch/_dynamo/polyfills/os.py' 2025-06-01T21:27:37.9913793Z adding 'torch/_dynamo/polyfills/pytree.py' 2025-06-01T21:27:37.9917351Z adding 'torch/_dynamo/polyfills/sys.py' 2025-06-01T21:27:37.9920764Z adding 'torch/_dynamo/polyfills/tensor.py' 2025-06-01T21:27:37.9924662Z adding 'torch/_dynamo/repro/__init__.py' 2025-06-01T21:27:37.9938186Z adding 'torch/_dynamo/repro/after_aot.py' 2025-06-01T21:27:37.9947153Z adding 'torch/_dynamo/repro/after_dynamo.py' 2025-06-01T21:27:37.9956556Z adding 'torch/_dynamo/repro/aoti.py' 2025-06-01T21:27:37.9962607Z adding 'torch/_dynamo/variables/__init__.py' 2025-06-01T21:27:37.9972000Z adding 'torch/_dynamo/variables/base.py' 2025-06-01T21:27:38.0024018Z adding 'torch/_dynamo/variables/builder.py' 2025-06-01T21:27:38.0057128Z adding 'torch/_dynamo/variables/builtin.py' 2025-06-01T21:27:38.0065113Z adding 'torch/_dynamo/variables/constant.py' 2025-06-01T21:27:38.0079373Z adding 'torch/_dynamo/variables/ctx_manager.py' 2025-06-01T21:27:38.0094168Z adding 'torch/_dynamo/variables/dicts.py' 2025-06-01T21:27:38.0101954Z adding 'torch/_dynamo/variables/distributed.py' 2025-06-01T21:27:38.0131010Z adding 'torch/_dynamo/variables/functions.py' 2025-06-01T21:27:38.0171779Z adding 'torch/_dynamo/variables/higher_order_ops.py' 2025-06-01T21:27:38.0182347Z adding 'torch/_dynamo/variables/iter.py' 2025-06-01T21:27:38.0187545Z adding 'torch/_dynamo/variables/lazy.py' 2025-06-01T21:27:38.0199917Z adding 'torch/_dynamo/variables/lists.py' 2025-06-01T21:27:38.0224230Z adding 'torch/_dynamo/variables/misc.py' 2025-06-01T21:27:38.0243042Z adding 'torch/_dynamo/variables/nn_module.py' 2025-06-01T21:27:38.0251354Z adding 'torch/_dynamo/variables/optimizer.py' 2025-06-01T21:27:38.0255698Z adding 'torch/_dynamo/variables/script_object.py' 2025-06-01T21:27:38.0259371Z adding 'torch/_dynamo/variables/sdpa.py' 2025-06-01T21:27:38.0279839Z adding 'torch/_dynamo/variables/tensor.py' 2025-06-01T21:27:38.0303426Z adding 'torch/_dynamo/variables/torch.py' 2025-06-01T21:27:38.0315738Z adding 'torch/_dynamo/variables/torch_function.py' 2025-06-01T21:27:38.0339924Z adding 'torch/_dynamo/variables/user_defined.py' 2025-06-01T21:27:38.0347505Z adding 'torch/_export/__init__.py' 2025-06-01T21:27:38.0370588Z adding 'torch/_export/converter.py' 2025-06-01T21:27:38.0375688Z adding 'torch/_export/error.py' 2025-06-01T21:27:38.0390473Z adding 'torch/_export/non_strict_utils.py' 2025-06-01T21:27:38.0398462Z adding 'torch/_export/pass_base.py' 2025-06-01T21:27:38.0403173Z adding 'torch/_export/tools.py' 2025-06-01T21:27:38.0425144Z adding 'torch/_export/utils.py' 2025-06-01T21:27:38.0433661Z adding 'torch/_export/verifier.py' 2025-06-01T21:27:38.0439498Z adding 'torch/_export/wrappers.py' 2025-06-01T21:27:38.0443831Z adding 'torch/_export/db/__init__.py' 2025-06-01T21:27:38.0448127Z adding 'torch/_export/db/case.py' 2025-06-01T21:27:38.0451474Z adding 'torch/_export/db/gen_example.py' 2025-06-01T21:27:38.0454932Z adding 'torch/_export/db/logging.py' 2025-06-01T21:27:38.0460246Z adding 'torch/_export/db/examples/__init__.py' 2025-06-01T21:27:38.0463614Z adding 'torch/_export/db/examples/assume_constant_result.py' 2025-06-01T21:27:38.0466736Z adding 'torch/_export/db/examples/autograd_function.py' 2025-06-01T21:27:38.0469960Z adding 'torch/_export/db/examples/class_method.py' 2025-06-01T21:27:38.0473410Z adding 'torch/_export/db/examples/cond_branch_class_method.py' 2025-06-01T21:27:38.0476847Z adding 'torch/_export/db/examples/cond_branch_nested_function.py' 2025-06-01T21:27:38.0480440Z adding 'torch/_export/db/examples/cond_branch_nonlocal_variables.py' 2025-06-01T21:27:38.0516827Z adding 'torch/_export/db/examples/cond_closed_over_variable.py' 2025-06-01T21:27:38.0519901Z adding 'torch/_export/db/examples/cond_operands.py' 2025-06-01T21:27:38.0523276Z adding 'torch/_export/db/examples/cond_predicate.py' 2025-06-01T21:27:38.0526567Z adding 'torch/_export/db/examples/constrain_as_size_example.py' 2025-06-01T21:27:38.0529768Z adding 'torch/_export/db/examples/constrain_as_value_example.py' 2025-06-01T21:27:38.0532929Z adding 'torch/_export/db/examples/decorator.py' 2025-06-01T21:27:38.0535998Z adding 'torch/_export/db/examples/dictionary.py' 2025-06-01T21:27:38.0539200Z adding 'torch/_export/db/examples/dynamic_shape_assert.py' 2025-06-01T21:27:38.0542233Z adding 'torch/_export/db/examples/dynamic_shape_constructor.py' 2025-06-01T21:27:38.0545454Z adding 'torch/_export/db/examples/dynamic_shape_if_guard.py' 2025-06-01T21:27:38.0548463Z adding 'torch/_export/db/examples/dynamic_shape_map.py' 2025-06-01T21:27:38.0551870Z adding 'torch/_export/db/examples/dynamic_shape_round.py' 2025-06-01T21:27:38.0554943Z adding 'torch/_export/db/examples/dynamic_shape_slicing.py' 2025-06-01T21:27:38.0558188Z adding 'torch/_export/db/examples/dynamic_shape_view.py' 2025-06-01T21:27:38.0561307Z adding 'torch/_export/db/examples/fn_with_kwargs.py' 2025-06-01T21:27:38.0564447Z adding 'torch/_export/db/examples/list_contains.py' 2025-06-01T21:27:38.0567542Z adding 'torch/_export/db/examples/list_unpack.py' 2025-06-01T21:27:38.0570663Z adding 'torch/_export/db/examples/model_attr_mutation.py' 2025-06-01T21:27:38.0573856Z adding 'torch/_export/db/examples/nested_function.py' 2025-06-01T21:27:38.0576917Z adding 'torch/_export/db/examples/null_context_manager.py' 2025-06-01T21:27:38.0580133Z adding 'torch/_export/db/examples/optional_input.py' 2025-06-01T21:27:38.0583139Z adding 'torch/_export/db/examples/pytree_flatten.py' 2025-06-01T21:27:38.0586730Z adding 'torch/_export/db/examples/scalar_output.py' 2025-06-01T21:27:38.0590358Z adding 'torch/_export/db/examples/specialized_attribute.py' 2025-06-01T21:27:38.0593413Z adding 'torch/_export/db/examples/static_for_loop.py' 2025-06-01T21:27:38.0596615Z adding 'torch/_export/db/examples/static_if.py' 2025-06-01T21:27:38.0600058Z adding 'torch/_export/db/examples/tensor_setattr.py' 2025-06-01T21:27:38.0603145Z adding 'torch/_export/db/examples/type_reflection_method.py' 2025-06-01T21:27:38.0606000Z adding 'torch/_export/db/examples/unsupported_operator.py' 2025-06-01T21:27:38.0609245Z adding 'torch/_export/db/examples/user_input_mutation.py' 2025-06-01T21:27:38.0613184Z adding 'torch/_export/pass_infra/__init__.py' 2025-06-01T21:27:38.0616437Z adding 'torch/_export/pass_infra/node_metadata.py' 2025-06-01T21:27:38.0619623Z adding 'torch/_export/pass_infra/proxy_value.py' 2025-06-01T21:27:38.0623451Z adding 'torch/_export/passes/__init__.py' 2025-06-01T21:27:38.0627289Z adding 'torch/_export/passes/_node_metadata_hook.py' 2025-06-01T21:27:38.0632729Z adding 'torch/_export/passes/add_runtime_assertions_for_constraints_pass.py' 2025-06-01T21:27:38.0637384Z adding 'torch/_export/passes/collect_tracepoints_pass.py' 2025-06-01T21:27:38.0643794Z adding 'torch/_export/passes/constant_folding.py' 2025-06-01T21:27:38.0647936Z adding 'torch/_export/passes/functionalize_side_effectful_ops_pass.py' 2025-06-01T21:27:38.0651528Z adding 'torch/_export/passes/insert_custom_op_guards.py' 2025-06-01T21:27:38.0658594Z adding 'torch/_export/passes/lift_constants_pass.py' 2025-06-01T21:27:38.0662473Z adding 'torch/_export/passes/remove_runtime_assertions.py' 2025-06-01T21:27:38.0667102Z adding 'torch/_export/passes/replace_autocast_with_hop_pass.py' 2025-06-01T21:27:38.0677049Z adding 'torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py' 2025-06-01T21:27:38.0681513Z adding 'torch/_export/passes/replace_set_grad_with_hop_pass.py' 2025-06-01T21:27:38.0685180Z adding 'torch/_export/passes/replace_view_ops_with_view_copy_ops_pass.py' 2025-06-01T21:27:38.0689771Z adding 'torch/_export/passes/replace_with_hop_pass_util.py' 2025-06-01T21:27:38.0693939Z adding 'torch/_export/serde/__init__.py' 2025-06-01T21:27:38.0696822Z adding 'torch/_export/serde/aoti_schema.py' 2025-06-01T21:27:38.0702365Z adding 'torch/_export/serde/dynamic_shapes.py' 2025-06-01T21:27:38.0707359Z adding 'torch/_export/serde/export_schema.thrift' 2025-06-01T21:27:38.0714138Z adding 'torch/_export/serde/schema.py' 2025-06-01T21:27:38.0719321Z adding 'torch/_export/serde/schema.yaml' 2025-06-01T21:27:38.0728625Z adding 'torch/_export/serde/schema_check.py' 2025-06-01T21:27:38.0775432Z adding 'torch/_export/serde/serialize.py' 2025-06-01T21:27:38.0782314Z adding 'torch/_export/serde/union.py' 2025-06-01T21:27:38.0786746Z adding 'torch/_functorch/__init__.py' 2025-06-01T21:27:38.0814808Z adding 'torch/_functorch/aot_autograd.py' 2025-06-01T21:27:38.0824130Z adding 'torch/_functorch/apis.py' 2025-06-01T21:27:38.0835843Z adding 'torch/_functorch/autograd_function.py' 2025-06-01T21:27:38.0839835Z adding 'torch/_functorch/batch_norm_replacement.py' 2025-06-01T21:27:38.0844400Z adding 'torch/_functorch/benchmark_utils.py' 2025-06-01T21:27:38.0849442Z adding 'torch/_functorch/compile_utils.py' 2025-06-01T21:27:38.0856332Z adding 'torch/_functorch/compilers.py' 2025-06-01T21:27:38.0864168Z adding 'torch/_functorch/config.py' 2025-06-01T21:27:38.0868678Z adding 'torch/_functorch/deprecated.py' 2025-06-01T21:27:38.0893700Z adding 'torch/_functorch/eager_transforms.py' 2025-06-01T21:27:38.0901489Z adding 'torch/_functorch/functional_call.py' 2025-06-01T21:27:38.0909158Z adding 'torch/_functorch/fx_minifier.py' 2025-06-01T21:27:38.0918036Z adding 'torch/_functorch/make_functional.py' 2025-06-01T21:27:38.0956510Z adding 'torch/_functorch/partitioners.py' 2025-06-01T21:27:38.0964871Z adding 'torch/_functorch/pyfunctorch.py' 2025-06-01T21:27:38.0968020Z adding 'torch/_functorch/python_key.py' 2025-06-01T21:27:38.0971308Z adding 'torch/_functorch/pytree_hacks.py' 2025-06-01T21:27:38.0979693Z adding 'torch/_functorch/top_operators_github_usage.py' 2025-06-01T21:27:38.0983575Z adding 'torch/_functorch/utils.py' 2025-06-01T21:27:38.0991997Z adding 'torch/_functorch/vmap.py' 2025-06-01T21:27:38.0996556Z adding 'torch/_functorch/_activation_checkpointing/__init__.py' 2025-06-01T21:27:38.1000701Z adding 'torch/_functorch/_activation_checkpointing/ac_logging_utils.py' 2025-06-01T21:27:38.1006396Z adding 'torch/_functorch/_activation_checkpointing/graph_info_provider.py' 2025-06-01T21:27:38.1010802Z adding 'torch/_functorch/_activation_checkpointing/knapsack.py' 2025-06-01T21:27:38.1016497Z adding 'torch/_functorch/_activation_checkpointing/knapsack_evaluator.py' 2025-06-01T21:27:38.1020940Z adding 'torch/_functorch/_aot_autograd/__init__.py' 2025-06-01T21:27:38.1040481Z adding 'torch/_functorch/_aot_autograd/autograd_cache.py' 2025-06-01T21:27:38.1058249Z adding 'torch/_functorch/_aot_autograd/collect_metadata_analysis.py' 2025-06-01T21:27:38.1065042Z adding 'torch/_functorch/_aot_autograd/dispatch_and_compile_graph.py' 2025-06-01T21:27:38.1074371Z adding 'torch/_functorch/_aot_autograd/functional_utils.py' 2025-06-01T21:27:38.1082295Z adding 'torch/_functorch/_aot_autograd/input_output_analysis.py' 2025-06-01T21:27:38.1112739Z adding 'torch/_functorch/_aot_autograd/jit_compile_runtime_wrappers.py' 2025-06-01T21:27:38.1118728Z adding 'torch/_functorch/_aot_autograd/logging_utils.py' 2025-06-01T21:27:38.1159356Z adding 'torch/_functorch/_aot_autograd/runtime_wrappers.py' 2025-06-01T21:27:38.1179715Z adding 'torch/_functorch/_aot_autograd/schemas.py' 2025-06-01T21:27:38.1184872Z adding 'torch/_functorch/_aot_autograd/subclass_parametrization.py' 2025-06-01T21:27:38.1193068Z adding 'torch/_functorch/_aot_autograd/subclass_utils.py' 2025-06-01T21:27:38.1212665Z adding 'torch/_functorch/_aot_autograd/traced_function_transforms.py' 2025-06-01T21:27:38.1222611Z adding 'torch/_functorch/_aot_autograd/utils.py' 2025-06-01T21:27:38.1227526Z adding 'torch/_higher_order_ops/__init__.py' 2025-06-01T21:27:38.1231112Z adding 'torch/_higher_order_ops/_invoke_quant.py' 2025-06-01T21:27:38.1235289Z adding 'torch/_higher_order_ops/aoti_call_delegate.py' 2025-06-01T21:27:38.1242952Z adding 'torch/_higher_order_ops/associative_scan.py' 2025-06-01T21:27:38.1256332Z adding 'torch/_higher_order_ops/auto_functionalize.py' 2025-06-01T21:27:38.1262723Z adding 'torch/_higher_order_ops/base_hop.py' 2025-06-01T21:27:38.1274124Z adding 'torch/_higher_order_ops/cond.py' 2025-06-01T21:27:38.1280654Z adding 'torch/_higher_order_ops/effects.py' 2025-06-01T21:27:38.1285364Z adding 'torch/_higher_order_ops/executorch_call_delegate.py' 2025-06-01T21:27:38.1289489Z adding 'torch/_higher_order_ops/flat_apply.py' 2025-06-01T21:27:38.1301599Z adding 'torch/_higher_order_ops/flex_attention.py' 2025-06-01T21:27:38.1305663Z adding 'torch/_higher_order_ops/foreach_map.py' 2025-06-01T21:27:38.1309719Z adding 'torch/_higher_order_ops/hints_wrap.py' 2025-06-01T21:27:38.1318540Z adding 'torch/_higher_order_ops/invoke_subgraph.py' 2025-06-01T21:27:38.1324839Z adding 'torch/_higher_order_ops/map.py' 2025-06-01T21:27:38.1329047Z adding 'torch/_higher_order_ops/out_dtype.py' 2025-06-01T21:27:38.1332635Z adding 'torch/_higher_order_ops/run_const_graph.py' 2025-06-01T21:27:38.1347116Z adding 'torch/_higher_order_ops/scan.py' 2025-06-01T21:27:38.1353133Z adding 'torch/_higher_order_ops/schema.py' 2025-06-01T21:27:38.1357127Z adding 'torch/_higher_order_ops/strict_mode.py' 2025-06-01T21:27:38.1361798Z adding 'torch/_higher_order_ops/torchbind.py' 2025-06-01T21:27:38.1386843Z adding 'torch/_higher_order_ops/triton_kernel_wrap.py' 2025-06-01T21:27:38.1404421Z adding 'torch/_higher_order_ops/utils.py' 2025-06-01T21:27:38.1412948Z adding 'torch/_higher_order_ops/while_loop.py' 2025-06-01T21:27:38.1419103Z adding 'torch/_higher_order_ops/wrap.py' 2025-06-01T21:27:38.1424809Z adding 'torch/_inductor/__autotune_main__.py' 2025-06-01T21:27:38.1431339Z adding 'torch/_inductor/__init__.py' 2025-06-01T21:27:38.1436086Z adding 'torch/_inductor/analyze_preserves_zero_mask.py' 2025-06-01T21:27:38.1441402Z adding 'torch/_inductor/aoti_eager.py' 2025-06-01T21:27:38.1449881Z adding 'torch/_inductor/async_compile.py' 2025-06-01T21:27:38.1460532Z adding 'torch/_inductor/autotune_process.py' 2025-06-01T21:27:38.1466556Z adding 'torch/_inductor/bounds.py' 2025-06-01T21:27:38.1473286Z adding 'torch/_inductor/choices.py' 2025-06-01T21:27:38.1525858Z adding 'torch/_inductor/codecache.py' 2025-06-01T21:27:38.1534474Z adding 'torch/_inductor/comm_analysis.py' 2025-06-01T21:27:38.1540139Z adding 'torch/_inductor/comm_lowering.py' 2025-06-01T21:27:38.1555620Z adding 'torch/_inductor/comms.py' 2025-06-01T21:27:38.1593104Z adding 'torch/_inductor/compile_fx.py' 2025-06-01T21:27:38.1600375Z adding 'torch/_inductor/compile_fx_async.py' 2025-06-01T21:27:38.1609898Z adding 'torch/_inductor/compile_fx_ext.py' 2025-06-01T21:27:38.1614431Z adding 'torch/_inductor/compile_fx_subproc.py' 2025-06-01T21:27:38.1622924Z adding 'torch/_inductor/compiler_bisector.py' 2025-06-01T21:27:38.1652967Z adding 'torch/_inductor/config.py' 2025-06-01T21:27:38.1661022Z adding 'torch/_inductor/constant_folding.py' 2025-06-01T21:27:38.1684289Z adding 'torch/_inductor/cpp_builder.py' 2025-06-01T21:27:38.1692226Z adding 'torch/_inductor/cpu_vec_isa.py' 2025-06-01T21:27:38.1731752Z adding 'torch/_inductor/cudagraph_trees.py' 2025-06-01T21:27:38.1740604Z adding 'torch/_inductor/cudagraph_utils.py' 2025-06-01T21:27:38.1744430Z adding 'torch/_inductor/custom_graph_pass.py' 2025-06-01T21:27:38.1756546Z adding 'torch/_inductor/debug.py' 2025-06-01T21:27:38.1770363Z adding 'torch/_inductor/decomposition.py' 2025-06-01T21:27:38.1782394Z adding 'torch/_inductor/dependencies.py' 2025-06-01T21:27:38.1788315Z adding 'torch/_inductor/dtype_propagation.py' 2025-06-01T21:27:38.1792628Z adding 'torch/_inductor/exc.py' 2025-06-01T21:27:38.1796057Z adding 'torch/_inductor/extern_node_serializer.py' 2025-06-01T21:27:38.1801839Z adding 'torch/_inductor/freezing.py' 2025-06-01T21:27:38.1805357Z adding 'torch/_inductor/freezing_utils.py' 2025-06-01T21:27:38.1818458Z adding 'torch/_inductor/fuzzer.py' 2025-06-01T21:27:38.1824693Z adding 'torch/_inductor/fx_utils.py' 2025-06-01T21:27:38.1862028Z adding 'torch/_inductor/graph.py' 2025-06-01T21:27:38.1867394Z adding 'torch/_inductor/hooks.py' 2025-06-01T21:27:38.1873718Z adding 'torch/_inductor/index_propagation.py' 2025-06-01T21:27:38.1878772Z adding 'torch/_inductor/inductor_prims.py' 2025-06-01T21:27:38.1977107Z adding 'torch/_inductor/ir.py' 2025-06-01T21:27:38.1989945Z adding 'torch/_inductor/jagged_lowerings.py' 2025-06-01T21:27:38.1999835Z adding 'torch/_inductor/loop_body.py' 2025-06-01T21:27:38.2078515Z adding 'torch/_inductor/lowering.py' 2025-06-01T21:27:38.2093557Z adding 'torch/_inductor/memory.py' 2025-06-01T21:27:38.2101311Z adding 'torch/_inductor/metrics.py' 2025-06-01T21:27:38.2112507Z adding 'torch/_inductor/mkldnn_ir.py' 2025-06-01T21:27:38.2125789Z adding 'torch/_inductor/mkldnn_lowerings.py' 2025-06-01T21:27:38.2131705Z adding 'torch/_inductor/mock_cache.py' 2025-06-01T21:27:38.2143010Z adding 'torch/_inductor/ops_handler.py' 2025-06-01T21:27:38.2147897Z adding 'torch/_inductor/optimize_indexing.py' 2025-06-01T21:27:38.2158854Z adding 'torch/_inductor/output_code.py' 2025-06-01T21:27:38.2188455Z adding 'torch/_inductor/pattern_matcher.py' 2025-06-01T21:27:38.2194640Z adding 'torch/_inductor/quantized_lowerings.py' 2025-06-01T21:27:38.2200684Z adding 'torch/_inductor/remote_cache.py' 2025-06-01T21:27:38.2267868Z adding 'torch/_inductor/scheduler.py' 2025-06-01T21:27:38.2275460Z adding 'torch/_inductor/script.ld' 2025-06-01T21:27:38.2313357Z adding 'torch/_inductor/select_algorithm.py' 2025-06-01T21:27:38.2329845Z adding 'torch/_inductor/sizevars.py' 2025-06-01T21:27:38.2335818Z adding 'torch/_inductor/standalone_compile.py' 2025-06-01T21:27:38.2340871Z adding 'torch/_inductor/subgraph_lowering.py' 2025-06-01T21:27:38.2349069Z adding 'torch/_inductor/template_heuristics.py' 2025-06-01T21:27:38.2353084Z adding 'torch/_inductor/test_case.py' 2025-06-01T21:27:38.2356483Z adding 'torch/_inductor/test_operators.py' 2025-06-01T21:27:38.2362994Z adding 'torch/_inductor/triton_bundler.py' 2025-06-01T21:27:38.2401897Z adding 'torch/_inductor/utils.py' 2025-06-01T21:27:38.2410675Z adding 'torch/_inductor/virtualized.py' 2025-06-01T21:27:38.2418627Z adding 'torch/_inductor/wrapper_benchmark.py' 2025-06-01T21:27:38.2423093Z adding 'torch/_inductor/autoheuristic/__init__.py' 2025-06-01T21:27:38.2428840Z adding 'torch/_inductor/autoheuristic/autoheuristic.py' 2025-06-01T21:27:38.2434711Z adding 'torch/_inductor/autoheuristic/autoheuristic_utils.py' 2025-06-01T21:27:38.2439129Z adding 'torch/_inductor/autoheuristic/learned_heuristic_controller.py' 2025-06-01T21:27:38.2442874Z adding 'torch/_inductor/autoheuristic/learnedheuristic_interface.py' 2025-06-01T21:27:38.2451094Z adding 'torch/_inductor/autoheuristic/artifacts/_MMRankingA100.py' 2025-06-01T21:27:38.2460206Z adding 'torch/_inductor/autoheuristic/artifacts/_MMRankingH100.py' 2025-06-01T21:27:38.2465209Z adding 'torch/_inductor/autoheuristic/artifacts/_MixedMMA100.py' 2025-06-01T21:27:38.2469561Z adding 'torch/_inductor/autoheuristic/artifacts/_MixedMMH100.py' 2025-06-01T21:27:38.2473800Z adding 'torch/_inductor/autoheuristic/artifacts/_PadMMA100.py' 2025-06-01T21:27:38.2476956Z adding 'torch/_inductor/autoheuristic/artifacts/__init__.py' 2025-06-01T21:27:38.2481104Z adding 'torch/_inductor/codegen/__init__.py' 2025-06-01T21:27:38.2484537Z adding 'torch/_inductor/codegen/aoti_hipify_utils.py' 2025-06-01T21:27:38.2489309Z adding 'torch/_inductor/codegen/block_analysis.py' 2025-06-01T21:27:38.2520282Z adding 'torch/_inductor/codegen/common.py' 2025-06-01T21:27:38.2591961Z adding 'torch/_inductor/codegen/cpp.py' 2025-06-01T21:27:38.2602545Z adding 'torch/_inductor/codegen/cpp_bmm_template.py' 2025-06-01T21:27:38.2617301Z adding 'torch/_inductor/codegen/cpp_flex_attention_template.py' 2025-06-01T21:27:38.2641060Z adding 'torch/_inductor/codegen/cpp_gemm_template.py' 2025-06-01T21:27:38.2650538Z adding 'torch/_inductor/codegen/cpp_grouped_gemm_template.py' 2025-06-01T21:27:38.2671582Z adding 'torch/_inductor/codegen/cpp_micro_gemm.py' 2025-06-01T21:27:38.2677387Z adding 'torch/_inductor/codegen/cpp_template.py' 2025-06-01T21:27:38.2686193Z adding 'torch/_inductor/codegen/cpp_template_kernel.py' 2025-06-01T21:27:38.2697013Z adding 'torch/_inductor/codegen/cpp_utils.py' 2025-06-01T21:27:38.2732402Z adding 'torch/_inductor/codegen/cpp_wrapper_cpu.py' 2025-06-01T21:27:38.2747541Z adding 'torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py' 2025-06-01T21:27:38.2757723Z adding 'torch/_inductor/codegen/cpp_wrapper_gpu.py' 2025-06-01T21:27:38.2762139Z adding 'torch/_inductor/codegen/cpp_wrapper_mps.py' 2025-06-01T21:27:38.2765426Z adding 'torch/_inductor/codegen/cpu_device_op_overrides.py' 2025-06-01T21:27:38.2769429Z adding 'torch/_inductor/codegen/cuda_combined_scheduling.py' 2025-06-01T21:27:38.2774857Z adding 'torch/_inductor/codegen/debug_utils.py' 2025-06-01T21:27:38.2796310Z adding 'torch/_inductor/codegen/halide.py' 2025-06-01T21:27:38.2807271Z adding 'torch/_inductor/codegen/memory_planning.py' 2025-06-01T21:27:38.2820116Z adding 'torch/_inductor/codegen/mps.py' 2025-06-01T21:27:38.2824146Z adding 'torch/_inductor/codegen/mps_device_op_overrides.py' 2025-06-01T21:27:38.2831776Z adding 'torch/_inductor/codegen/multi_kernel.py' 2025-06-01T21:27:38.2862548Z adding 'torch/_inductor/codegen/simd.py' 2025-06-01T21:27:38.2873165Z adding 'torch/_inductor/codegen/simd_kernel_features.py' 2025-06-01T21:27:38.2878403Z adding 'torch/_inductor/codegen/subgraph.py' 2025-06-01T21:27:38.2937629Z adding 'torch/_inductor/codegen/triton.py' 2025-06-01T21:27:38.2955311Z adding 'torch/_inductor/codegen/triton_combo_kernel.py' 2025-06-01T21:27:38.2961087Z adding 'torch/_inductor/codegen/triton_split_scan.py' 2025-06-01T21:27:38.2966072Z adding 'torch/_inductor/codegen/triton_utils.py' 2025-06-01T21:27:38.3011129Z adding 'torch/_inductor/codegen/wrapper.py' 2025-06-01T21:27:38.3022990Z adding 'torch/_inductor/codegen/wrapper_fxir.py' 2025-06-01T21:27:38.3031092Z adding 'torch/_inductor/codegen/aoti_runtime/interface.cpp' 2025-06-01T21:27:38.3035560Z adding 'torch/_inductor/codegen/cuda/__init__.py' 2025-06-01T21:27:38.3041474Z adding 'torch/_inductor/codegen/cuda/cuda_cpp_scheduling.py' 2025-06-01T21:27:38.3045123Z adding 'torch/_inductor/codegen/cuda/cuda_env.py' 2025-06-01T21:27:38.3054105Z adding 'torch/_inductor/codegen/cuda/cuda_kernel.py' 2025-06-01T21:27:38.3060267Z adding 'torch/_inductor/codegen/cuda/cuda_template.py' 2025-06-01T21:27:38.3064337Z adding 'torch/_inductor/codegen/cuda/cutlass_cache.py' 2025-06-01T21:27:38.3069831Z adding 'torch/_inductor/codegen/cuda/cutlass_presets.py' 2025-06-01T21:27:38.3076201Z adding 'torch/_inductor/codegen/cuda/cutlass_python_evt.py' 2025-06-01T21:27:38.3083707Z adding 'torch/_inductor/codegen/cuda/cutlass_utils.py' 2025-06-01T21:27:38.3088803Z adding 'torch/_inductor/codegen/cuda/device_op_overrides.py' 2025-06-01T21:27:38.3111327Z adding 'torch/_inductor/codegen/cuda/gemm_template.py' 2025-06-01T21:27:38.3119049Z adding 'torch/_inductor/codegen/cuda/serialization.py' 2025-06-01T21:27:38.3123447Z adding 'torch/_inductor/codegen/rocm/__init__.py' 2025-06-01T21:27:38.3131651Z adding 'torch/_inductor/codegen/rocm/ck_conv_template.py' 2025-06-01T21:27:38.3135931Z adding 'torch/_inductor/codegen/rocm/ck_template.py' 2025-06-01T21:27:38.3139401Z adding 'torch/_inductor/codegen/rocm/ck_tile_template.py' 2025-06-01T21:27:38.3149434Z adding 'torch/_inductor/codegen/rocm/ck_tile_universal_gemm_template.py' 2025-06-01T21:27:38.3163408Z adding 'torch/_inductor/codegen/rocm/ck_universal_gemm_template.py' 2025-06-01T21:27:38.3168305Z adding 'torch/_inductor/codegen/rocm/compile_command.py' 2025-06-01T21:27:38.3172595Z adding 'torch/_inductor/codegen/rocm/rocm_benchmark_request.py' 2025-06-01T21:27:38.3176555Z adding 'torch/_inductor/codegen/rocm/rocm_cpp_scheduling.py' 2025-06-01T21:27:38.3182176Z adding 'torch/_inductor/codegen/rocm/rocm_kernel.py' 2025-06-01T21:27:38.3187592Z adding 'torch/_inductor/codegen/rocm/rocm_template.py' 2025-06-01T21:27:38.3191352Z adding 'torch/_inductor/codegen/rocm/rocm_template_buffer.py' 2025-06-01T21:27:38.3194317Z adding 'torch/_inductor/codegen/rocm/rocm_utils.py' 2025-06-01T21:27:38.3198454Z adding 'torch/_inductor/codegen/xpu/__init__.py' 2025-06-01T21:27:38.3201793Z adding 'torch/_inductor/codegen/xpu/device_op_overrides.py' 2025-06-01T21:27:38.3205727Z adding 'torch/_inductor/compile_worker/__init__.py' 2025-06-01T21:27:38.3209408Z adding 'torch/_inductor/compile_worker/__main__.py' 2025-06-01T21:27:38.3216081Z adding 'torch/_inductor/compile_worker/subproc_pool.py' 2025-06-01T21:27:38.3219942Z adding 'torch/_inductor/compile_worker/utils.py' 2025-06-01T21:27:38.3224287Z adding 'torch/_inductor/fx_passes/__init__.py' 2025-06-01T21:27:38.3234259Z adding 'torch/_inductor/fx_passes/b2b_gemm.py' 2025-06-01T21:27:38.3244067Z adding 'torch/_inductor/fx_passes/binary_folding.py' 2025-06-01T21:27:38.3252003Z adding 'torch/_inductor/fx_passes/ddp_fusion.py' 2025-06-01T21:27:38.3255881Z adding 'torch/_inductor/fx_passes/decompose_mem_bound_mm.py' 2025-06-01T21:27:38.3259895Z adding 'torch/_inductor/fx_passes/dedupe_symint_uses.py' 2025-06-01T21:27:38.3265534Z adding 'torch/_inductor/fx_passes/efficient_conv_bn_eval.py' 2025-06-01T21:27:38.3270427Z adding 'torch/_inductor/fx_passes/freezing_patterns.py' 2025-06-01T21:27:38.3280567Z adding 'torch/_inductor/fx_passes/fuse_attention.py' 2025-06-01T21:27:38.3296078Z adding 'torch/_inductor/fx_passes/group_batch_fusion.py' 2025-06-01T21:27:38.3309486Z adding 'torch/_inductor/fx_passes/joint_graph.py' 2025-06-01T21:27:38.3323685Z adding 'torch/_inductor/fx_passes/micro_pipeline_tp.py' 2025-06-01T21:27:38.3328762Z adding 'torch/_inductor/fx_passes/misc_patterns.py' 2025-06-01T21:27:38.3344330Z adding 'torch/_inductor/fx_passes/mkldnn_fusion.py' 2025-06-01T21:27:38.3350285Z adding 'torch/_inductor/fx_passes/numeric_utils.py' 2025-06-01T21:27:38.3360552Z adding 'torch/_inductor/fx_passes/pad_mm.py' 2025-06-01T21:27:38.3382121Z adding 'torch/_inductor/fx_passes/post_grad.py' 2025-06-01T21:27:38.3393697Z adding 'torch/_inductor/fx_passes/pre_grad.py' 2025-06-01T21:27:38.3426749Z adding 'torch/_inductor/fx_passes/quantization.py' 2025-06-01T21:27:38.3441372Z adding 'torch/_inductor/fx_passes/reinplace.py' 2025-06-01T21:27:38.3445608Z adding 'torch/_inductor/fx_passes/replace_random.py' 2025-06-01T21:27:38.3480606Z adding 'torch/_inductor/fx_passes/split_cat.py' 2025-06-01T21:27:38.3488064Z adding 'torch/_inductor/fx_passes/serialized_patterns/__init__.py' 2025-06-01T21:27:38.3492148Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_1.py' 2025-06-01T21:27:38.3496622Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py' 2025-06-01T21:27:38.3501193Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py' 2025-06-01T21:27:38.3506079Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py' 2025-06-01T21:27:38.3510414Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_13.py' 2025-06-01T21:27:38.3514905Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py' 2025-06-01T21:27:38.3519716Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py' 2025-06-01T21:27:38.3526175Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py' 2025-06-01T21:27:38.3531752Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py' 2025-06-01T21:27:38.3537571Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py' 2025-06-01T21:27:38.3542702Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_19.py' 2025-06-01T21:27:38.3547087Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_2.py' 2025-06-01T21:27:38.3552100Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py' 2025-06-01T21:27:38.3556844Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_3.py' 2025-06-01T21:27:38.3561275Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_4.py' 2025-06-01T21:27:38.3565837Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_5.py' 2025-06-01T21:27:38.3570339Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_6.py' 2025-06-01T21:27:38.3575170Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py' 2025-06-01T21:27:38.3579925Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py' 2025-06-01T21:27:38.3584788Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py' 2025-06-01T21:27:38.3589005Z adding 'torch/_inductor/fx_passes/serialized_patterns/addmm_pattern.py' 2025-06-01T21:27:38.3592155Z adding 'torch/_inductor/fx_passes/serialized_patterns/bmm_pattern.py' 2025-06-01T21:27:38.3595353Z adding 'torch/_inductor/fx_passes/serialized_patterns/mm_pattern.py' 2025-06-01T21:27:38.3599176Z adding 'torch/_inductor/kernel/__init__.py' 2025-06-01T21:27:38.3604819Z adding 'torch/_inductor/kernel/bmm.py' 2025-06-01T21:27:38.3613316Z adding 'torch/_inductor/kernel/conv.py' 2025-06-01T21:27:38.3649894Z adding 'torch/_inductor/kernel/flex_attention.py' 2025-06-01T21:27:38.3662131Z adding 'torch/_inductor/kernel/flex_decoding.py' 2025-06-01T21:27:38.3676911Z adding 'torch/_inductor/kernel/mm.py' 2025-06-01T21:27:38.3682590Z adding 'torch/_inductor/kernel/mm_common.py' 2025-06-01T21:27:38.3687293Z adding 'torch/_inductor/kernel/mm_plus_mm.py' 2025-06-01T21:27:38.3693962Z adding 'torch/_inductor/kernel/mm_scaled_grouped.py' 2025-06-01T21:27:38.3698257Z adding 'torch/_inductor/package/__init__.py' 2025-06-01T21:27:38.3701282Z adding 'torch/_inductor/package/build_package.py' 2025-06-01T21:27:38.3706374Z adding 'torch/_inductor/package/package.py' 2025-06-01T21:27:38.3710916Z adding 'torch/_inductor/runtime/__init__.py' 2025-06-01T21:27:38.3719738Z adding 'torch/_inductor/runtime/autotune_cache.py' 2025-06-01T21:27:38.3725737Z adding 'torch/_inductor/runtime/benchmarking.py' 2025-06-01T21:27:38.3729382Z adding 'torch/_inductor/runtime/cache_dir_utils.py' 2025-06-01T21:27:38.3732913Z adding 'torch/_inductor/runtime/compile_tasks.py' 2025-06-01T21:27:38.3738166Z adding 'torch/_inductor/runtime/coordinate_descent_tuner.py' 2025-06-01T21:27:38.3742260Z adding 'torch/_inductor/runtime/halide_helpers.py' 2025-06-01T21:27:38.3746987Z adding 'torch/_inductor/runtime/hints.py' 2025-06-01T21:27:38.3751538Z adding 'torch/_inductor/runtime/runtime_utils.py' 2025-06-01T21:27:38.3756994Z adding 'torch/_inductor/runtime/static_cuda_launcher.py' 2025-06-01T21:27:38.3761005Z adding 'torch/_inductor/runtime/triton_compat.py' 2025-06-01T21:27:38.3770137Z adding 'torch/_inductor/runtime/triton_helpers.py' 2025-06-01T21:27:38.3807881Z adding 'torch/_inductor/runtime/triton_heuristics.py' 2025-06-01T21:27:38.3815287Z adding 'torch/_lazy/__init__.py' 2025-06-01T21:27:38.3822385Z adding 'torch/_lazy/closure.py' 2025-06-01T21:27:38.3825596Z adding 'torch/_lazy/computation.py' 2025-06-01T21:27:38.3828565Z adding 'torch/_lazy/config.py' 2025-06-01T21:27:38.3831651Z adding 'torch/_lazy/debug.py' 2025-06-01T21:27:38.3834693Z adding 'torch/_lazy/device_context.py' 2025-06-01T21:27:38.3839887Z adding 'torch/_lazy/extract_compiled_graph.py' 2025-06-01T21:27:38.3843089Z adding 'torch/_lazy/ir_cache.py' 2025-06-01T21:27:38.3846053Z adding 'torch/_lazy/metrics.py' 2025-06-01T21:27:38.3849659Z adding 'torch/_lazy/tensor_factory_functions.py' 2025-06-01T21:27:38.3852529Z adding 'torch/_lazy/ts_backend.py' 2025-06-01T21:27:38.3857701Z adding 'torch/_library/__init__.py' 2025-06-01T21:27:38.3862685Z adding 'torch/_library/autograd.py' 2025-06-01T21:27:38.3876546Z adding 'torch/_library/custom_ops.py' 2025-06-01T21:27:38.3883566Z adding 'torch/_library/fake_class_registry.py' 2025-06-01T21:27:38.3888961Z adding 'torch/_library/fake_impl.py' 2025-06-01T21:27:38.3894958Z adding 'torch/_library/fake_profile.py' 2025-06-01T21:27:38.3901224Z adding 'torch/_library/infer_schema.py' 2025-06-01T21:27:38.3905166Z adding 'torch/_library/simple_registry.py' 2025-06-01T21:27:38.3911206Z adding 'torch/_library/triton.py' 2025-06-01T21:27:38.3919681Z adding 'torch/_library/utils.py' 2025-06-01T21:27:38.3924233Z adding 'torch/_logging/__init__.py' 2025-06-01T21:27:38.3942651Z adding 'torch/_logging/_internal.py' 2025-06-01T21:27:38.3948216Z adding 'torch/_logging/_registrations.py' 2025-06-01T21:27:38.3952093Z adding 'torch/_logging/scribe.py' 2025-06-01T21:27:38.3955848Z adding 'torch/_logging/structured.py' 2025-06-01T21:27:38.3959996Z adding 'torch/_numpy/__init__.py' 2025-06-01T21:27:38.3963456Z adding 'torch/_numpy/_binary_ufuncs_impl.py' 2025-06-01T21:27:38.3969436Z adding 'torch/_numpy/_casting_dicts.py' 2025-06-01T21:27:38.3976077Z adding 'torch/_numpy/_dtypes.py' 2025-06-01T21:27:38.3980853Z adding 'torch/_numpy/_dtypes_impl.py' 2025-06-01T21:27:38.3984456Z adding 'torch/_numpy/_funcs.py' 2025-06-01T21:27:38.4006077Z adding 'torch/_numpy/_funcs_impl.py' 2025-06-01T21:27:38.4010412Z adding 'torch/_numpy/_getlimits.py' 2025-06-01T21:27:38.4017500Z adding 'torch/_numpy/_ndarray.py' 2025-06-01T21:27:38.4023221Z adding 'torch/_numpy/_normalizations.py' 2025-06-01T21:27:38.4028761Z adding 'torch/_numpy/_reductions_impl.py' 2025-06-01T21:27:38.4034025Z adding 'torch/_numpy/_ufuncs.py' 2025-06-01T21:27:38.4037607Z adding 'torch/_numpy/_unary_ufuncs_impl.py' 2025-06-01T21:27:38.4042899Z adding 'torch/_numpy/_util.py' 2025-06-01T21:27:38.4046292Z adding 'torch/_numpy/fft.py' 2025-06-01T21:27:38.4050586Z adding 'torch/_numpy/linalg.py' 2025-06-01T21:27:38.4054956Z adding 'torch/_numpy/random.py' 2025-06-01T21:27:38.4058935Z adding 'torch/_numpy/testing/__init__.py' 2025-06-01T21:27:38.4098624Z adding 'torch/_numpy/testing/utils.py' 2025-06-01T21:27:38.4138050Z adding 'torch/_prims/__init__.py' 2025-06-01T21:27:38.4138379Z adding 'torch/_prims/context.py' 2025-06-01T21:27:38.4138647Z adding 'torch/_prims/debug_prims.py' 2025-06-01T21:27:38.4138933Z adding 'torch/_prims/executor.py' 2025-06-01T21:27:38.4139198Z adding 'torch/_prims/rng_prims.py' 2025-06-01T21:27:38.4166271Z adding 'torch/_prims_common/__init__.py' 2025-06-01T21:27:38.4175904Z adding 'torch/_prims_common/wrappers.py' 2025-06-01T21:27:38.4252006Z adding 'torch/_refs/__init__.py' 2025-06-01T21:27:38.4261270Z adding 'torch/_refs/_conversions.py' 2025-06-01T21:27:38.4268007Z adding 'torch/_refs/fft.py' 2025-06-01T21:27:38.4276160Z adding 'torch/_refs/linalg/__init__.py' 2025-06-01T21:27:38.4279446Z adding 'torch/_refs/nn/__init__.py' 2025-06-01T21:27:38.4294038Z adding 'torch/_refs/nn/functional/__init__.py' 2025-06-01T21:27:38.4300079Z adding 'torch/_refs/special/__init__.py' 2025-06-01T21:27:38.4304674Z adding 'torch/_strobelight/__init__.py' 2025-06-01T21:27:38.4310484Z adding 'torch/_strobelight/cli_function_profiler.py' 2025-06-01T21:27:38.4314845Z adding 'torch/_strobelight/compile_time_profiler.py' 2025-06-01T21:27:38.4319069Z adding 'torch/_subclasses/__init__.py' 2025-06-01T21:27:38.4324180Z adding 'torch/_subclasses/_fake_tensor_utils.py' 2025-06-01T21:27:38.4337470Z adding 'torch/_subclasses/fake_impls.py' 2025-06-01T21:27:38.4388043Z adding 'torch/_subclasses/fake_tensor.py' 2025-06-01T21:27:38.4396761Z adding 'torch/_subclasses/fake_utils.py' 2025-06-01T21:27:38.4409278Z adding 'torch/_subclasses/functional_tensor.py' 2025-06-01T21:27:38.4439949Z adding 'torch/_subclasses/meta_utils.py' 2025-06-01T21:27:38.4447823Z adding 'torch/_subclasses/schema_check_mode.py' 2025-06-01T21:27:38.4451371Z adding 'torch/_vendor/__init__.py' 2025-06-01T21:27:38.4455222Z adding 'torch/_vendor/packaging/__init__.py' 2025-06-01T21:27:38.4458146Z adding 'torch/_vendor/packaging/_structures.py' 2025-06-01T21:27:38.4465143Z adding 'torch/_vendor/packaging/version.py' 2025-06-01T21:27:38.4471329Z adding 'torch/accelerator/__init__.py' 2025-06-01T21:27:38.4474830Z adding 'torch/accelerator/_utils.py' 2025-06-01T21:27:38.4478752Z adding 'torch/amp/__init__.py' 2025-06-01T21:27:38.4487476Z adding 'torch/amp/autocast_mode.py' 2025-06-01T21:27:38.4499637Z adding 'torch/amp/grad_scaler.py' 2025-06-01T21:27:38.4504639Z adding 'torch/ao/__init__.py' 2025-06-01T21:27:38.4508435Z adding 'torch/ao/nn/__init__.py' 2025-06-01T21:27:38.4512660Z adding 'torch/ao/nn/intrinsic/__init__.py' 2025-06-01T21:27:38.4516641Z adding 'torch/ao/nn/intrinsic/modules/__init__.py' 2025-06-01T21:27:38.4520556Z adding 'torch/ao/nn/intrinsic/modules/fused.py' 2025-06-01T21:27:38.4524528Z adding 'torch/ao/nn/intrinsic/qat/__init__.py' 2025-06-01T21:27:38.4528513Z adding 'torch/ao/nn/intrinsic/qat/modules/__init__.py' 2025-06-01T21:27:38.4537151Z adding 'torch/ao/nn/intrinsic/qat/modules/conv_fused.py' 2025-06-01T21:27:38.4542610Z adding 'torch/ao/nn/intrinsic/qat/modules/linear_fused.py' 2025-06-01T21:27:38.4546375Z adding 'torch/ao/nn/intrinsic/qat/modules/linear_relu.py' 2025-06-01T21:27:38.4550448Z adding 'torch/ao/nn/intrinsic/quantized/__init__.py' 2025-06-01T21:27:38.4554038Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/__init__.py' 2025-06-01T21:27:38.4557844Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/modules/__init__.py' 2025-06-01T21:27:38.4562099Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py' 2025-06-01T21:27:38.4565397Z adding 'torch/ao/nn/intrinsic/quantized/modules/__init__.py' 2025-06-01T21:27:38.4568878Z adding 'torch/ao/nn/intrinsic/quantized/modules/bn_relu.py' 2025-06-01T21:27:38.4572698Z adding 'torch/ao/nn/intrinsic/quantized/modules/conv_add.py' 2025-06-01T21:27:38.4576917Z adding 'torch/ao/nn/intrinsic/quantized/modules/conv_relu.py' 2025-06-01T21:27:38.4581323Z adding 'torch/ao/nn/intrinsic/quantized/modules/linear_relu.py' 2025-06-01T21:27:38.4585242Z adding 'torch/ao/nn/qat/__init__.py' 2025-06-01T21:27:38.4588783Z adding 'torch/ao/nn/qat/dynamic/__init__.py' 2025-06-01T21:27:38.4592589Z adding 'torch/ao/nn/qat/dynamic/modules/__init__.py' 2025-06-01T21:27:38.4595933Z adding 'torch/ao/nn/qat/dynamic/modules/linear.py' 2025-06-01T21:27:38.4599683Z adding 'torch/ao/nn/qat/modules/__init__.py' 2025-06-01T21:27:38.4604159Z adding 'torch/ao/nn/qat/modules/conv.py' 2025-06-01T21:27:38.4608698Z adding 'torch/ao/nn/qat/modules/embedding_ops.py' 2025-06-01T21:27:38.4612667Z adding 'torch/ao/nn/qat/modules/linear.py' 2025-06-01T21:27:38.4616271Z adding 'torch/ao/nn/quantizable/__init__.py' 2025-06-01T21:27:38.4619842Z adding 'torch/ao/nn/quantizable/modules/__init__.py' 2025-06-01T21:27:38.4627966Z adding 'torch/ao/nn/quantizable/modules/activation.py' 2025-06-01T21:27:38.4636542Z adding 'torch/ao/nn/quantizable/modules/rnn.py' 2025-06-01T21:27:38.4641041Z adding 'torch/ao/nn/quantized/__init__.py' 2025-06-01T21:27:38.4649447Z adding 'torch/ao/nn/quantized/functional.py' 2025-06-01T21:27:38.4653921Z adding 'torch/ao/nn/quantized/dynamic/__init__.py' 2025-06-01T21:27:38.4657732Z adding 'torch/ao/nn/quantized/dynamic/modules/__init__.py' 2025-06-01T21:27:38.4662729Z adding 'torch/ao/nn/quantized/dynamic/modules/conv.py' 2025-06-01T21:27:38.4667608Z adding 'torch/ao/nn/quantized/dynamic/modules/linear.py' 2025-06-01T21:27:38.4681889Z adding 'torch/ao/nn/quantized/dynamic/modules/rnn.py' 2025-06-01T21:27:38.4687987Z adding 'torch/ao/nn/quantized/modules/__init__.py' 2025-06-01T21:27:38.4693192Z adding 'torch/ao/nn/quantized/modules/activation.py' 2025-06-01T21:27:38.4697218Z adding 'torch/ao/nn/quantized/modules/batchnorm.py' 2025-06-01T21:27:38.4707504Z adding 'torch/ao/nn/quantized/modules/conv.py' 2025-06-01T21:27:38.4712073Z adding 'torch/ao/nn/quantized/modules/dropout.py' 2025-06-01T21:27:38.4718024Z adding 'torch/ao/nn/quantized/modules/embedding_ops.py' 2025-06-01T21:27:38.4722737Z adding 'torch/ao/nn/quantized/modules/functional_modules.py' 2025-06-01T21:27:38.4728892Z adding 'torch/ao/nn/quantized/modules/linear.py' 2025-06-01T21:27:38.4733241Z adding 'torch/ao/nn/quantized/modules/normalization.py' 2025-06-01T21:27:38.4736865Z adding 'torch/ao/nn/quantized/modules/rnn.py' 2025-06-01T21:27:38.4740886Z adding 'torch/ao/nn/quantized/modules/utils.py' 2025-06-01T21:27:38.4745325Z adding 'torch/ao/nn/quantized/reference/__init__.py' 2025-06-01T21:27:38.4749274Z adding 'torch/ao/nn/quantized/reference/modules/__init__.py' 2025-06-01T21:27:38.4753981Z adding 'torch/ao/nn/quantized/reference/modules/conv.py' 2025-06-01T21:27:38.4757935Z adding 'torch/ao/nn/quantized/reference/modules/linear.py' 2025-06-01T21:27:38.4765785Z adding 'torch/ao/nn/quantized/reference/modules/rnn.py' 2025-06-01T21:27:38.4770289Z adding 'torch/ao/nn/quantized/reference/modules/sparse.py' 2025-06-01T21:27:38.4775760Z adding 'torch/ao/nn/quantized/reference/modules/utils.py' 2025-06-01T21:27:38.4779810Z adding 'torch/ao/nn/sparse/__init__.py' 2025-06-01T21:27:38.4783488Z adding 'torch/ao/nn/sparse/quantized/__init__.py' 2025-06-01T21:27:38.4788172Z adding 'torch/ao/nn/sparse/quantized/linear.py' 2025-06-01T21:27:38.4791864Z adding 'torch/ao/nn/sparse/quantized/utils.py' 2025-06-01T21:27:38.4795594Z adding 'torch/ao/nn/sparse/quantized/dynamic/__init__.py' 2025-06-01T21:27:38.4800014Z adding 'torch/ao/nn/sparse/quantized/dynamic/linear.py' 2025-06-01T21:27:38.4804042Z adding 'torch/ao/ns/__init__.py' 2025-06-01T21:27:38.4811122Z adding 'torch/ao/ns/_numeric_suite.py' 2025-06-01T21:27:38.4824990Z adding 'torch/ao/ns/_numeric_suite_fx.py' 2025-06-01T21:27:38.4829955Z adding 'torch/ao/ns/fx/__init__.py' 2025-06-01T21:27:38.4837902Z adding 'torch/ao/ns/fx/graph_matcher.py' 2025-06-01T21:27:38.4852405Z adding 'torch/ao/ns/fx/graph_passes.py' 2025-06-01T21:27:38.4859511Z adding 'torch/ao/ns/fx/mappings.py' 2025-06-01T21:27:38.4877791Z adding 'torch/ao/ns/fx/n_shadows_utils.py' 2025-06-01T21:27:38.4882626Z adding 'torch/ao/ns/fx/ns_types.py' 2025-06-01T21:27:38.4887330Z adding 'torch/ao/ns/fx/pattern_utils.py' 2025-06-01T21:27:38.4892769Z adding 'torch/ao/ns/fx/qconfig_multi_mapping.py' 2025-06-01T21:27:38.4900625Z adding 'torch/ao/ns/fx/utils.py' 2025-06-01T21:27:38.4906113Z adding 'torch/ao/ns/fx/weight_utils.py' 2025-06-01T21:27:38.4910572Z adding 'torch/ao/pruning/__init__.py' 2025-06-01T21:27:38.4913652Z adding 'torch/ao/pruning/_mappings.py' 2025-06-01T21:27:38.4917652Z adding 'torch/ao/pruning/_experimental/__init__.py' 2025-06-01T21:27:38.4921407Z adding 'torch/ao/pruning/_experimental/activation_sparsifier/__init__.py' 2025-06-01T21:27:38.4929490Z adding 'torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py' 2025-06-01T21:27:38.4933569Z adding 'torch/ao/pruning/_experimental/data_scheduler/__init__.py' 2025-06-01T21:27:38.4938340Z adding 'torch/ao/pruning/_experimental/data_scheduler/base_data_scheduler.py' 2025-06-01T21:27:38.4942225Z adding 'torch/ao/pruning/_experimental/data_sparsifier/__init__.py' 2025-06-01T21:27:38.4948659Z adding 'torch/ao/pruning/_experimental/data_sparsifier/base_data_sparsifier.py' 2025-06-01T21:27:38.4953921Z adding 'torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py' 2025-06-01T21:27:38.4958303Z adding 'torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py' 2025-06-01T21:27:38.4962200Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/__init__.py' 2025-06-01T21:27:38.4965935Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/__init__.py' 2025-06-01T21:27:38.4969356Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/_data_sparstity_utils.py' 2025-06-01T21:27:38.4973495Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/data_sparsity.py' 2025-06-01T21:27:38.4978341Z adding 'torch/ao/pruning/_experimental/pruner/FPGM_pruner.py' 2025-06-01T21:27:38.4981444Z adding 'torch/ao/pruning/_experimental/pruner/__init__.py' 2025-06-01T21:27:38.4986715Z adding 'torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py' 2025-06-01T21:27:38.4990623Z adding 'torch/ao/pruning/_experimental/pruner/lstm_saliency_pruner.py' 2025-06-01T21:27:38.4994128Z adding 'torch/ao/pruning/_experimental/pruner/match_utils.py' 2025-06-01T21:27:38.4997621Z adding 'torch/ao/pruning/_experimental/pruner/parametrization.py' 2025-06-01T21:27:38.5004554Z adding 'torch/ao/pruning/_experimental/pruner/prune_functions.py' 2025-06-01T21:27:38.5008431Z adding 'torch/ao/pruning/_experimental/pruner/saliency_pruner.py' 2025-06-01T21:27:38.5012193Z adding 'torch/ao/pruning/scheduler/__init__.py' 2025-06-01T21:27:38.5016660Z adding 'torch/ao/pruning/scheduler/base_scheduler.py' 2025-06-01T21:27:38.5020756Z adding 'torch/ao/pruning/scheduler/cubic_scheduler.py' 2025-06-01T21:27:38.5024339Z adding 'torch/ao/pruning/scheduler/lambda_scheduler.py' 2025-06-01T21:27:38.5028275Z adding 'torch/ao/pruning/sparsifier/__init__.py' 2025-06-01T21:27:38.5034617Z adding 'torch/ao/pruning/sparsifier/base_sparsifier.py' 2025-06-01T21:27:38.5038709Z adding 'torch/ao/pruning/sparsifier/nearly_diagonal_sparsifier.py' 2025-06-01T21:27:38.5042918Z adding 'torch/ao/pruning/sparsifier/utils.py' 2025-06-01T21:27:38.5048154Z adding 'torch/ao/pruning/sparsifier/weight_norm_sparsifier.py' 2025-06-01T21:27:38.5053906Z adding 'torch/ao/quantization/__init__.py' 2025-06-01T21:27:38.5058406Z adding 'torch/ao/quantization/_correct_bias.py' 2025-06-01T21:27:38.5063966Z adding 'torch/ao/quantization/_equalize.py' 2025-06-01T21:27:38.5068714Z adding 'torch/ao/quantization/_learnable_fake_quantize.py' 2025-06-01T21:27:38.5076890Z adding 'torch/ao/quantization/fake_quantize.py' 2025-06-01T21:27:38.5081972Z adding 'torch/ao/quantization/fuse_modules.py' 2025-06-01T21:27:38.5087086Z adding 'torch/ao/quantization/fuser_method_mappings.py' 2025-06-01T21:27:38.5112575Z adding 'torch/ao/quantization/observer.py' 2025-06-01T21:27:38.5123256Z adding 'torch/ao/quantization/qconfig.py' 2025-06-01T21:27:38.5130027Z adding 'torch/ao/quantization/qconfig_mapping.py' 2025-06-01T21:27:38.5133614Z adding 'torch/ao/quantization/quant_type.py' 2025-06-01T21:27:38.5139155Z adding 'torch/ao/quantization/quantization_mappings.py' 2025-06-01T21:27:38.5150347Z adding 'torch/ao/quantization/quantize.py' 2025-06-01T21:27:38.5160878Z adding 'torch/ao/quantization/quantize_fx.py' 2025-06-01T21:27:38.5167770Z adding 'torch/ao/quantization/quantize_jit.py' 2025-06-01T21:27:38.5173115Z adding 'torch/ao/quantization/quantize_pt2e.py' 2025-06-01T21:27:38.5176815Z adding 'torch/ao/quantization/stubs.py' 2025-06-01T21:27:38.5188033Z adding 'torch/ao/quantization/utils.py' 2025-06-01T21:27:38.5193102Z adding 'torch/ao/quantization/backend_config/__init__.py' 2025-06-01T21:27:38.5201044Z adding 'torch/ao/quantization/backend_config/_common_operator_config_utils.py' 2025-06-01T21:27:38.5205813Z adding 'torch/ao/quantization/backend_config/_qnnpack_pt2e.py' 2025-06-01T21:27:38.5216038Z adding 'torch/ao/quantization/backend_config/backend_config.py' 2025-06-01T21:27:38.5222315Z adding 'torch/ao/quantization/backend_config/executorch.py' 2025-06-01T21:27:38.5226366Z adding 'torch/ao/quantization/backend_config/fbgemm.py' 2025-06-01T21:27:38.5230720Z adding 'torch/ao/quantization/backend_config/native.py' 2025-06-01T21:27:38.5234080Z adding 'torch/ao/quantization/backend_config/observation_type.py' 2025-06-01T21:27:38.5239915Z adding 'torch/ao/quantization/backend_config/onednn.py' 2025-06-01T21:27:38.5244244Z adding 'torch/ao/quantization/backend_config/qnnpack.py' 2025-06-01T21:27:38.5247958Z adding 'torch/ao/quantization/backend_config/tensorrt.py' 2025-06-01T21:27:38.5253790Z adding 'torch/ao/quantization/backend_config/utils.py' 2025-06-01T21:27:38.5257664Z adding 'torch/ao/quantization/backend_config/x86.py' 2025-06-01T21:27:38.5261862Z adding 'torch/ao/quantization/fx/__init__.py' 2025-06-01T21:27:38.5272506Z adding 'torch/ao/quantization/fx/_decomposed.py' 2025-06-01T21:27:38.5287084Z adding 'torch/ao/quantization/fx/_equalize.py' 2025-06-01T21:27:38.5304472Z adding 'torch/ao/quantization/fx/_lower_to_native_backend.py' 2025-06-01T21:27:38.5326338Z adding 'torch/ao/quantization/fx/convert.py' 2025-06-01T21:27:38.5334298Z adding 'torch/ao/quantization/fx/custom_config.py' 2025-06-01T21:27:38.5339421Z adding 'torch/ao/quantization/fx/fuse.py' 2025-06-01T21:27:38.5343640Z adding 'torch/ao/quantization/fx/fuse_handler.py' 2025-06-01T21:27:38.5347944Z adding 'torch/ao/quantization/fx/graph_module.py' 2025-06-01T21:27:38.5351320Z adding 'torch/ao/quantization/fx/lower_to_fbgemm.py' 2025-06-01T21:27:38.5354375Z adding 'torch/ao/quantization/fx/lower_to_qnnpack.py' 2025-06-01T21:27:38.5359406Z adding 'torch/ao/quantization/fx/lstm_utils.py' 2025-06-01T21:27:38.5364655Z adding 'torch/ao/quantization/fx/match_utils.py' 2025-06-01T21:27:38.5368720Z adding 'torch/ao/quantization/fx/pattern_utils.py' 2025-06-01T21:27:38.5399495Z adding 'torch/ao/quantization/fx/prepare.py' 2025-06-01T21:27:38.5408126Z adding 'torch/ao/quantization/fx/qconfig_mapping_utils.py' 2025-06-01T21:27:38.5413024Z adding 'torch/ao/quantization/fx/quantize_handler.py' 2025-06-01T21:27:38.5416546Z adding 'torch/ao/quantization/fx/tracer.py' 2025-06-01T21:27:38.5430309Z adding 'torch/ao/quantization/fx/utils.py' 2025-06-01T21:27:38.5435473Z adding 'torch/ao/quantization/fx/_model_report/__init__.py' 2025-06-01T21:27:38.5458524Z adding 'torch/ao/quantization/fx/_model_report/detector.py' 2025-06-01T21:27:38.5471286Z adding 'torch/ao/quantization/fx/_model_report/model_report.py' 2025-06-01T21:27:38.5477647Z adding 'torch/ao/quantization/fx/_model_report/model_report_observer.py' 2025-06-01T21:27:38.5489389Z adding 'torch/ao/quantization/fx/_model_report/model_report_visualizer.py' 2025-06-01T21:27:38.5494166Z adding 'torch/ao/quantization/pt2e/__init__.py' 2025-06-01T21:27:38.5504679Z adding 'torch/ao/quantization/pt2e/_affine_quantization.py' 2025-06-01T21:27:38.5511624Z adding 'torch/ao/quantization/pt2e/_numeric_debugger.py' 2025-06-01T21:27:38.5515611Z adding 'torch/ao/quantization/pt2e/duplicate_dq_pass.py' 2025-06-01T21:27:38.5520267Z adding 'torch/ao/quantization/pt2e/export_utils.py' 2025-06-01T21:27:38.5524879Z adding 'torch/ao/quantization/pt2e/graph_utils.py' 2025-06-01T21:27:38.5528499Z adding 'torch/ao/quantization/pt2e/lowering.py' 2025-06-01T21:27:38.5534061Z adding 'torch/ao/quantization/pt2e/port_metadata_pass.py' 2025-06-01T21:27:38.5544460Z adding 'torch/ao/quantization/pt2e/prepare.py' 2025-06-01T21:27:38.5557539Z adding 'torch/ao/quantization/pt2e/qat_utils.py' 2025-06-01T21:27:38.5567474Z adding 'torch/ao/quantization/pt2e/utils.py' 2025-06-01T21:27:38.5572064Z adding 'torch/ao/quantization/pt2e/representation/__init__.py' 2025-06-01T21:27:38.5580521Z adding 'torch/ao/quantization/pt2e/representation/rewrite.py' 2025-06-01T21:27:38.5585283Z adding 'torch/ao/quantization/quantizer/__init__.py' 2025-06-01T21:27:38.5589559Z adding 'torch/ao/quantization/quantizer/composable_quantizer.py' 2025-06-01T21:27:38.5593595Z adding 'torch/ao/quantization/quantizer/embedding_quantizer.py' 2025-06-01T21:27:38.5598785Z adding 'torch/ao/quantization/quantizer/quantizer.py' 2025-06-01T21:27:38.5602563Z adding 'torch/ao/quantization/quantizer/utils.py' 2025-06-01T21:27:38.5619723Z adding 'torch/ao/quantization/quantizer/x86_inductor_quantizer.py' 2025-06-01T21:27:38.5628176Z adding 'torch/ao/quantization/quantizer/xnnpack_quantizer.py' 2025-06-01T21:27:38.5641094Z adding 'torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py' 2025-06-01T21:27:38.5646506Z adding 'torch/ao/quantization/quantizer/xpu_inductor_quantizer.py' 2025-06-01T21:27:38.5658368Z adding 'torch/autograd/__init__.py' 2025-06-01T21:27:38.5663360Z adding 'torch/autograd/anomaly_mode.py' 2025-06-01T21:27:38.5668388Z adding 'torch/autograd/forward_ad.py' 2025-06-01T21:27:38.5680764Z adding 'torch/autograd/function.py' 2025-06-01T21:27:38.5697149Z adding 'torch/autograd/functional.py' 2025-06-01T21:27:38.5703861Z adding 'torch/autograd/grad_mode.py' 2025-06-01T21:27:38.5737299Z adding 'torch/autograd/gradcheck.py' 2025-06-01T21:27:38.5751170Z adding 'torch/autograd/graph.py' 2025-06-01T21:27:38.5769067Z adding 'torch/autograd/profiler.py' 2025-06-01T21:27:38.5775386Z adding 'torch/autograd/profiler_legacy.py' 2025-06-01T21:27:38.5790302Z adding 'torch/autograd/profiler_util.py' 2025-06-01T21:27:38.5794512Z adding 'torch/autograd/variable.py' 2025-06-01T21:27:38.5798330Z adding 'torch/autograd/_functions/__init__.py' 2025-06-01T21:27:38.5801873Z adding 'torch/autograd/_functions/tensor.py' 2025-06-01T21:27:38.5805450Z adding 'torch/autograd/_functions/utils.py' 2025-06-01T21:27:38.5809949Z adding 'torch/backends/__init__.py' 2025-06-01T21:27:38.5813809Z adding 'torch/backends/_coreml/__init__.py' 2025-06-01T21:27:38.5818185Z adding 'torch/backends/_coreml/preprocess.py' 2025-06-01T21:27:38.5821705Z adding 'torch/backends/_nnapi/__init__.py' 2025-06-01T21:27:38.5826225Z adding 'torch/backends/_nnapi/prepare.py' 2025-06-01T21:27:38.5850570Z adding 'torch/backends/_nnapi/serializer.py' 2025-06-01T21:27:38.5856306Z adding 'torch/backends/cpu/__init__.py' 2025-06-01T21:27:38.5863855Z adding 'torch/backends/cuda/__init__.py' 2025-06-01T21:27:38.5869718Z adding 'torch/backends/cudnn/__init__.py' 2025-06-01T21:27:38.5873553Z adding 'torch/backends/cudnn/rnn.py' 2025-06-01T21:27:38.5877697Z adding 'torch/backends/cusparselt/__init__.py' 2025-06-01T21:27:38.5881510Z adding 'torch/backends/kleidiai/__init__.py' 2025-06-01T21:27:38.5885542Z adding 'torch/backends/mha/__init__.py' 2025-06-01T21:27:38.5889530Z adding 'torch/backends/mkl/__init__.py' 2025-06-01T21:27:38.5894255Z adding 'torch/backends/mkldnn/__init__.py' 2025-06-01T21:27:38.5898408Z adding 'torch/backends/mps/__init__.py' 2025-06-01T21:27:38.5902412Z adding 'torch/backends/nnpack/__init__.py' 2025-06-01T21:27:38.5906063Z adding 'torch/backends/openmp/__init__.py' 2025-06-01T21:27:38.5910707Z adding 'torch/backends/opt_einsum/__init__.py' 2025-06-01T21:27:38.5915055Z adding 'torch/backends/quantized/__init__.py' 2025-06-01T21:27:38.5918649Z adding 'torch/backends/xeon/__init__.py' 2025-06-01T21:27:38.5930990Z adding 'torch/backends/xeon/run_cpu.py' 2025-06-01T21:27:38.5935851Z adding 'torch/backends/xnnpack/__init__.py' 2025-06-01T21:27:38.6147937Z adding 'torch/bin/FileStoreTest.exe' 2025-06-01T21:27:38.6346046Z adding 'torch/bin/ProcessGroupGlooAsyncTest.exe' 2025-06-01T21:27:38.6596981Z adding 'torch/bin/ProcessGroupGlooTest.exe' 2025-06-01T21:27:38.6833167Z adding 'torch/bin/TCPStoreTest.exe' 2025-06-01T21:27:38.7062112Z adding 'torch/bin/asmjit.dll' 2025-06-01T21:27:38.8725451Z adding 'torch/bin/fbgemm.dll' 2025-06-01T21:27:39.0284825Z adding 'torch/bin/protoc.exe' 2025-06-01T21:27:39.4662437Z adding 'torch/bin/test_api.exe' 2025-06-01T21:27:39.5063429Z adding 'torch/bin/test_edge_op_registration.exe' 2025-06-01T21:27:39.7576961Z adding 'torch/bin/test_jit.exe' 2025-06-01T21:27:39.8692840Z adding 'torch/bin/test_lazy.exe' 2025-06-01T21:27:39.9045245Z adding 'torch/bin/test_nativert.exe' 2025-06-01T21:27:40.2256644Z adding 'torch/bin/test_tensorexpr.exe' 2025-06-01T21:27:40.2469351Z adding 'torch/bin/tutorial_tensorexpr.exe' 2025-06-01T21:27:40.2482161Z adding 'torch/compiler/__init__.py' 2025-06-01T21:27:40.2488368Z adding 'torch/compiler/_cache.py' 2025-06-01T21:27:40.2492678Z adding 'torch/compiler/config.py' 2025-06-01T21:27:40.2496854Z adding 'torch/contrib/__init__.py' 2025-06-01T21:27:40.2501201Z adding 'torch/contrib/_tensorboard_vis.py' 2025-06-01T21:27:40.2506078Z adding 'torch/cpu/__init__.py' 2025-06-01T21:27:40.2509828Z adding 'torch/cpu/amp/__init__.py' 2025-06-01T21:27:40.2513316Z adding 'torch/cpu/amp/autocast_mode.py' 2025-06-01T21:27:40.2516524Z adding 'torch/cpu/amp/grad_scaler.py' 2025-06-01T21:27:40.2539134Z adding 'torch/cuda/__init__.py' 2025-06-01T21:27:40.2544279Z adding 'torch/cuda/_gpu_trace.py' 2025-06-01T21:27:40.2556799Z adding 'torch/cuda/_memory_viz.py' 2025-06-01T21:27:40.2565895Z adding 'torch/cuda/_sanitizer.py' 2025-06-01T21:27:40.2573085Z adding 'torch/cuda/_utils.py' 2025-06-01T21:27:40.2576466Z adding 'torch/cuda/comm.py' 2025-06-01T21:27:40.2579605Z adding 'torch/cuda/error.py' 2025-06-01T21:27:40.2583576Z adding 'torch/cuda/gds.py' 2025-06-01T21:27:40.2592582Z adding 'torch/cuda/graphs.py' 2025-06-01T21:27:40.2597652Z adding 'torch/cuda/jiterator.py' 2025-06-01T21:27:40.2613576Z adding 'torch/cuda/memory.py' 2025-06-01T21:27:40.2618595Z adding 'torch/cuda/nccl.py' 2025-06-01T21:27:40.2622461Z adding 'torch/cuda/nvtx.py' 2025-06-01T21:27:40.2626165Z adding 'torch/cuda/profiler.py' 2025-06-01T21:27:40.2630103Z adding 'torch/cuda/random.py' 2025-06-01T21:27:40.2633252Z adding 'torch/cuda/sparse.py' 2025-06-01T21:27:40.2638069Z adding 'torch/cuda/streams.py' 2025-06-01T21:27:40.2649918Z adding 'torch/cuda/tunable.py' 2025-06-01T21:27:40.2654619Z adding 'torch/cuda/amp/__init__.py' 2025-06-01T21:27:40.2658099Z adding 'torch/cuda/amp/autocast_mode.py' 2025-06-01T21:27:40.2661082Z adding 'torch/cuda/amp/common.py' 2025-06-01T21:27:40.2664273Z adding 'torch/cuda/amp/grad_scaler.py' 2025-06-01T21:27:40.2670017Z adding 'torch/distributed/__init__.py' 2025-06-01T21:27:40.2673536Z adding 'torch/distributed/_checkpointable.py' 2025-06-01T21:27:40.2676814Z adding 'torch/distributed/_composable_state.py' 2025-06-01T21:27:40.2693536Z adding 'torch/distributed/_functional_collectives.py' 2025-06-01T21:27:40.2698022Z adding 'torch/distributed/_functional_collectives_impl.py' 2025-06-01T21:27:40.2702124Z adding 'torch/distributed/_serialization.py' 2025-06-01T21:27:40.2712619Z adding 'torch/distributed/_state_dict_utils.py' 2025-06-01T21:27:40.2717054Z adding 'torch/distributed/argparse_util.py' 2025-06-01T21:27:40.2720765Z adding 'torch/distributed/c10d_logger.py' 2025-06-01T21:27:40.2725648Z adding 'torch/distributed/collective_utils.py' 2025-06-01T21:27:40.2729177Z adding 'torch/distributed/constants.py' 2025-06-01T21:27:40.2746727Z adding 'torch/distributed/device_mesh.py' 2025-06-01T21:27:40.2823287Z adding 'torch/distributed/distributed_c10d.py' 2025-06-01T21:27:40.2834011Z adding 'torch/distributed/launch.py' 2025-06-01T21:27:40.2837533Z adding 'torch/distributed/logging_handlers.py' 2025-06-01T21:27:40.2841499Z adding 'torch/distributed/remote_device.py' 2025-06-01T21:27:40.2846914Z adding 'torch/distributed/rendezvous.py' 2025-06-01T21:27:40.2860143Z adding 'torch/distributed/run.py' 2025-06-01T21:27:40.2867124Z adding 'torch/distributed/utils.py' 2025-06-01T21:27:40.2871816Z adding 'torch/distributed/_composable/__init__.py' 2025-06-01T21:27:40.2876226Z adding 'torch/distributed/_composable/checkpoint_activation.py' 2025-06-01T21:27:40.2881474Z adding 'torch/distributed/_composable/contract.py' 2025-06-01T21:27:40.2887059Z adding 'torch/distributed/_composable/replicate.py' 2025-06-01T21:27:40.2891358Z adding 'torch/distributed/_composable/fsdp/__init__.py' 2025-06-01T21:27:40.2894363Z adding 'torch/distributed/_composable/fsdp/fully_shard.py' 2025-06-01T21:27:40.2898280Z adding 'torch/distributed/_shard/__init__.py' 2025-06-01T21:27:40.2901435Z adding 'torch/distributed/_shard/_utils.py' 2025-06-01T21:27:40.2907158Z adding 'torch/distributed/_shard/api.py' 2025-06-01T21:27:40.2911141Z adding 'torch/distributed/_shard/common_op_utils.py' 2025-06-01T21:27:40.2914705Z adding 'torch/distributed/_shard/metadata.py' 2025-06-01T21:27:40.2918045Z adding 'torch/distributed/_shard/op_registry_utils.py' 2025-06-01T21:27:40.2921106Z adding 'torch/distributed/_shard/sharder.py' 2025-06-01T21:27:40.2924965Z adding 'torch/distributed/_shard/checkpoint/__init__.py' 2025-06-01T21:27:40.2929234Z adding 'torch/distributed/_shard/sharded_optim/__init__.py' 2025-06-01T21:27:40.2933202Z adding 'torch/distributed/_shard/sharded_optim/api.py' 2025-06-01T21:27:40.2940288Z adding 'torch/distributed/_shard/sharded_tensor/__init__.py' 2025-06-01T21:27:40.2958738Z adding 'torch/distributed/_shard/sharded_tensor/api.py' 2025-06-01T21:27:40.2963193Z adding 'torch/distributed/_shard/sharded_tensor/logger.py' 2025-06-01T21:27:40.2966374Z adding 'torch/distributed/_shard/sharded_tensor/logging_handlers.py' 2025-06-01T21:27:40.2969845Z adding 'torch/distributed/_shard/sharded_tensor/metadata.py' 2025-06-01T21:27:40.2974918Z adding 'torch/distributed/_shard/sharded_tensor/reshard.py' 2025-06-01T21:27:40.2978765Z adding 'torch/distributed/_shard/sharded_tensor/shard.py' 2025-06-01T21:27:40.2984316Z adding 'torch/distributed/_shard/sharded_tensor/utils.py' 2025-06-01T21:27:40.2988479Z adding 'torch/distributed/_shard/sharded_tensor/_ops/__init__.py' 2025-06-01T21:27:40.2992504Z adding 'torch/distributed/_shard/sharded_tensor/_ops/_common.py' 2025-06-01T21:27:40.2996179Z adding 'torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py' 2025-06-01T21:27:40.3000319Z adding 'torch/distributed/_shard/sharded_tensor/_ops/init.py' 2025-06-01T21:27:40.3003552Z adding 'torch/distributed/_shard/sharded_tensor/_ops/misc_ops.py' 2025-06-01T21:27:40.3008186Z adding 'torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py' 2025-06-01T21:27:40.3012101Z adding 'torch/distributed/_shard/sharding_plan/__init__.py' 2025-06-01T21:27:40.3015889Z adding 'torch/distributed/_shard/sharding_plan/api.py' 2025-06-01T21:27:40.3019726Z adding 'torch/distributed/_shard/sharding_spec/__init__.py' 2025-06-01T21:27:40.3024834Z adding 'torch/distributed/_shard/sharding_spec/_internals.py' 2025-06-01T21:27:40.3030434Z adding 'torch/distributed/_shard/sharding_spec/api.py' 2025-06-01T21:27:40.3036099Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py' 2025-06-01T21:27:40.3040096Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/__init__.py' 2025-06-01T21:27:40.3046238Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py' 2025-06-01T21:27:40.3052329Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py' 2025-06-01T21:27:40.3060126Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py' 2025-06-01T21:27:40.3064462Z adding 'torch/distributed/_sharded_tensor/__init__.py' 2025-06-01T21:27:40.3068268Z adding 'torch/distributed/_sharding_spec/__init__.py' 2025-06-01T21:27:40.3089512Z adding 'torch/distributed/_symmetric_memory/__init__.py' 2025-06-01T21:27:40.3094688Z adding 'torch/distributed/_tensor/__init__.py' 2025-06-01T21:27:40.3097688Z adding 'torch/distributed/_tensor/api.py' 2025-06-01T21:27:40.3101143Z adding 'torch/distributed/_tensor/placement_types.py' 2025-06-01T21:27:40.3104924Z adding 'torch/distributed/_tools/__init__.py' 2025-06-01T21:27:40.3108064Z adding 'torch/distributed/_tools/common_utils.py' 2025-06-01T21:27:40.3113250Z adding 'torch/distributed/_tools/fake_collectives.py' 2025-06-01T21:27:40.3122221Z adding 'torch/distributed/_tools/fsdp2_mem_tracker.py' 2025-06-01T21:27:40.3128114Z adding 'torch/distributed/_tools/ilp_utils.py' 2025-06-01T21:27:40.3143294Z adding 'torch/distributed/_tools/mem_tracker.py' 2025-06-01T21:27:40.3150095Z adding 'torch/distributed/_tools/memory_tracker.py' 2025-06-01T21:27:40.3155724Z adding 'torch/distributed/_tools/mod_tracker.py' 2025-06-01T21:27:40.3163967Z adding 'torch/distributed/_tools/runtime_estimator.py' 2025-06-01T21:27:40.3179260Z adding 'torch/distributed/_tools/sac_estimator.py' 2025-06-01T21:27:40.3186103Z adding 'torch/distributed/_tools/sac_ilp.py' 2025-06-01T21:27:40.3190421Z adding 'torch/distributed/algorithms/__init__.py' 2025-06-01T21:27:40.3196903Z adding 'torch/distributed/algorithms/join.py' 2025-06-01T21:27:40.3201224Z adding 'torch/distributed/algorithms/_checkpoint/__init__.py' 2025-06-01T21:27:40.3207326Z adding 'torch/distributed/algorithms/_checkpoint/checkpoint_wrapper.py' 2025-06-01T21:27:40.3211452Z adding 'torch/distributed/algorithms/_comm_hooks/__init__.py' 2025-06-01T21:27:40.3215968Z adding 'torch/distributed/algorithms/_comm_hooks/default_hooks.py' 2025-06-01T21:27:40.3219955Z adding 'torch/distributed/algorithms/_optimizer_overlap/__init__.py' 2025-06-01T21:27:40.3223784Z adding 'torch/distributed/algorithms/_optimizer_overlap/optimizer_overlap.py' 2025-06-01T21:27:40.3227630Z adding 'torch/distributed/algorithms/_quantization/__init__.py' 2025-06-01T21:27:40.3231871Z adding 'torch/distributed/algorithms/_quantization/quantization.py' 2025-06-01T21:27:40.3236931Z adding 'torch/distributed/algorithms/ddp_comm_hooks/__init__.py' 2025-06-01T21:27:40.3245150Z adding 'torch/distributed/algorithms/ddp_comm_hooks/ddp_zero_hook.py' 2025-06-01T21:27:40.3249430Z adding 'torch/distributed/algorithms/ddp_comm_hooks/debugging_hooks.py' 2025-06-01T21:27:40.3254316Z adding 'torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py' 2025-06-01T21:27:40.3258613Z adding 'torch/distributed/algorithms/ddp_comm_hooks/mixed_precision_hooks.py' 2025-06-01T21:27:40.3262970Z adding 'torch/distributed/algorithms/ddp_comm_hooks/optimizer_overlap_hooks.py' 2025-06-01T21:27:40.3267615Z adding 'torch/distributed/algorithms/ddp_comm_hooks/post_localSGD_hook.py' 2025-06-01T21:27:40.3281905Z adding 'torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py' 2025-06-01T21:27:40.3287380Z adding 'torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py' 2025-06-01T21:27:40.3291425Z adding 'torch/distributed/algorithms/model_averaging/__init__.py' 2025-06-01T21:27:40.3295833Z adding 'torch/distributed/algorithms/model_averaging/averagers.py' 2025-06-01T21:27:40.3301203Z adding 'torch/distributed/algorithms/model_averaging/hierarchical_model_averager.py' 2025-06-01T21:27:40.3305477Z adding 'torch/distributed/algorithms/model_averaging/utils.py' 2025-06-01T21:27:40.3309548Z adding 'torch/distributed/autograd/__init__.py' 2025-06-01T21:27:40.3314578Z adding 'torch/distributed/checkpoint/__init__.py' 2025-06-01T21:27:40.3317500Z adding 'torch/distributed/checkpoint/_async_executor.py' 2025-06-01T21:27:40.3323003Z adding 'torch/distributed/checkpoint/_async_process_executor.py' 2025-06-01T21:27:40.3326563Z adding 'torch/distributed/checkpoint/_async_thread_executor.py' 2025-06-01T21:27:40.3330219Z adding 'torch/distributed/checkpoint/_checkpointer.py' 2025-06-01T21:27:40.3334546Z adding 'torch/distributed/checkpoint/_dedup_save_plans.py' 2025-06-01T21:27:40.3337852Z adding 'torch/distributed/checkpoint/_dedup_tensors.py' 2025-06-01T21:27:40.3342535Z adding 'torch/distributed/checkpoint/_extension.py' 2025-06-01T21:27:40.3346997Z adding 'torch/distributed/checkpoint/_fsspec_filesystem.py' 2025-06-01T21:27:40.3350448Z adding 'torch/distributed/checkpoint/_hf_planner.py' 2025-06-01T21:27:40.3355752Z adding 'torch/distributed/checkpoint/_hf_storage.py' 2025-06-01T21:27:40.3359572Z adding 'torch/distributed/checkpoint/_nested_dict.py' 2025-06-01T21:27:40.3363491Z adding 'torch/distributed/checkpoint/_sharded_tensor_utils.py' 2025-06-01T21:27:40.3366816Z adding 'torch/distributed/checkpoint/_storage_utils.py' 2025-06-01T21:27:40.3371156Z adding 'torch/distributed/checkpoint/_traverse.py' 2025-06-01T21:27:40.3374242Z adding 'torch/distributed/checkpoint/_version.py' 2025-06-01T21:27:40.3377617Z adding 'torch/distributed/checkpoint/api.py' 2025-06-01T21:27:40.3387308Z adding 'torch/distributed/checkpoint/default_planner.py' 2025-06-01T21:27:40.3399557Z adding 'torch/distributed/checkpoint/filesystem.py' 2025-06-01T21:27:40.3405606Z adding 'torch/distributed/checkpoint/format_utils.py' 2025-06-01T21:27:40.3409565Z adding 'torch/distributed/checkpoint/logger.py' 2025-06-01T21:27:40.3412615Z adding 'torch/distributed/checkpoint/logging_handlers.py' 2025-06-01T21:27:40.3416661Z adding 'torch/distributed/checkpoint/metadata.py' 2025-06-01T21:27:40.3422738Z adding 'torch/distributed/checkpoint/optimizer.py' 2025-06-01T21:27:40.3429987Z adding 'torch/distributed/checkpoint/planner.py' 2025-06-01T21:27:40.3437185Z adding 'torch/distributed/checkpoint/planner_helpers.py' 2025-06-01T21:27:40.3440927Z adding 'torch/distributed/checkpoint/resharding.py' 2025-06-01T21:27:40.3445075Z adding 'torch/distributed/checkpoint/staging.py' 2025-06-01T21:27:40.3463471Z adding 'torch/distributed/checkpoint/state_dict.py' 2025-06-01T21:27:40.3470910Z adding 'torch/distributed/checkpoint/state_dict_loader.py' 2025-06-01T21:27:40.3477066Z adding 'torch/distributed/checkpoint/state_dict_saver.py' 2025-06-01T21:27:40.3480557Z adding 'torch/distributed/checkpoint/stateful.py' 2025-06-01T21:27:40.3485294Z adding 'torch/distributed/checkpoint/storage.py' 2025-06-01T21:27:40.3492064Z adding 'torch/distributed/checkpoint/utils.py' 2025-06-01T21:27:40.3497494Z adding 'torch/distributed/elastic/__init__.py' 2025-06-01T21:27:40.3500860Z adding 'torch/distributed/elastic/control_plane.py' 2025-06-01T21:27:40.3504639Z adding 'torch/distributed/elastic/agent/__init__.py' 2025-06-01T21:27:40.3509605Z adding 'torch/distributed/elastic/agent/server/__init__.py' 2025-06-01T21:27:40.3524212Z adding 'torch/distributed/elastic/agent/server/api.py' 2025-06-01T21:27:40.3528567Z adding 'torch/distributed/elastic/agent/server/health_check_server.py' 2025-06-01T21:27:40.3535597Z adding 'torch/distributed/elastic/agent/server/local_elastic_agent.py' 2025-06-01T21:27:40.3542371Z adding 'torch/distributed/elastic/events/__init__.py' 2025-06-01T21:27:40.3546372Z adding 'torch/distributed/elastic/events/api.py' 2025-06-01T21:27:40.3549744Z adding 'torch/distributed/elastic/events/handlers.py' 2025-06-01T21:27:40.3555098Z adding 'torch/distributed/elastic/metrics/__init__.py' 2025-06-01T21:27:40.3559698Z adding 'torch/distributed/elastic/metrics/api.py' 2025-06-01T21:27:40.3565865Z adding 'torch/distributed/elastic/multiprocessing/__init__.py' 2025-06-01T21:27:40.3578553Z adding 'torch/distributed/elastic/multiprocessing/api.py' 2025-06-01T21:27:40.3583432Z adding 'torch/distributed/elastic/multiprocessing/redirects.py' 2025-06-01T21:27:40.3587800Z adding 'torch/distributed/elastic/multiprocessing/tail_log.py' 2025-06-01T21:27:40.3595828Z adding 'torch/distributed/elastic/multiprocessing/errors/__init__.py' 2025-06-01T21:27:40.3600916Z adding 'torch/distributed/elastic/multiprocessing/errors/error_handler.py' 2025-06-01T21:27:40.3604335Z adding 'torch/distributed/elastic/multiprocessing/errors/handlers.py' 2025-06-01T21:27:40.3608355Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/__init__.py' 2025-06-01T21:27:40.3611597Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/handlers.py' 2025-06-01T21:27:40.3615281Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/subprocess_handler.py' 2025-06-01T21:27:40.3620795Z adding 'torch/distributed/elastic/rendezvous/__init__.py' 2025-06-01T21:27:40.3624412Z adding 'torch/distributed/elastic/rendezvous/_etcd_stub.py' 2025-06-01T21:27:40.3630686Z adding 'torch/distributed/elastic/rendezvous/api.py' 2025-06-01T21:27:40.3636861Z adding 'torch/distributed/elastic/rendezvous/c10d_rendezvous_backend.py' 2025-06-01T21:27:40.3652861Z adding 'torch/distributed/elastic/rendezvous/dynamic_rendezvous.py' 2025-06-01T21:27:40.3669229Z adding 'torch/distributed/elastic/rendezvous/etcd_rendezvous.py' 2025-06-01T21:27:40.3675087Z adding 'torch/distributed/elastic/rendezvous/etcd_rendezvous_backend.py' 2025-06-01T21:27:40.3680482Z adding 'torch/distributed/elastic/rendezvous/etcd_server.py' 2025-06-01T21:27:40.3685642Z adding 'torch/distributed/elastic/rendezvous/etcd_store.py' 2025-06-01T21:27:40.3689427Z adding 'torch/distributed/elastic/rendezvous/registry.py' 2025-06-01T21:27:40.3693630Z adding 'torch/distributed/elastic/rendezvous/static_tcp_rendezvous.py' 2025-06-01T21:27:40.3698754Z adding 'torch/distributed/elastic/rendezvous/utils.py' 2025-06-01T21:27:40.3703504Z adding 'torch/distributed/elastic/timer/__init__.py' 2025-06-01T21:27:40.3709001Z adding 'torch/distributed/elastic/timer/api.py' 2025-06-01T21:27:40.3712659Z adding 'torch/distributed/elastic/timer/debug_info_logging.py' 2025-06-01T21:27:40.3719911Z adding 'torch/distributed/elastic/timer/file_based_local_timer.py' 2025-06-01T21:27:40.3724328Z adding 'torch/distributed/elastic/timer/local_timer.py' 2025-06-01T21:27:40.3728499Z adding 'torch/distributed/elastic/utils/__init__.py' 2025-06-01T21:27:40.3732025Z adding 'torch/distributed/elastic/utils/api.py' 2025-06-01T21:27:40.3736661Z adding 'torch/distributed/elastic/utils/distributed.py' 2025-06-01T21:27:40.3739923Z adding 'torch/distributed/elastic/utils/log_level.py' 2025-06-01T21:27:40.3743868Z adding 'torch/distributed/elastic/utils/logging.py' 2025-06-01T21:27:40.3748924Z adding 'torch/distributed/elastic/utils/store.py' 2025-06-01T21:27:40.3753355Z adding 'torch/distributed/elastic/utils/data/__init__.py' 2025-06-01T21:27:40.3756837Z adding 'torch/distributed/elastic/utils/data/cycling_iterator.py' 2025-06-01T21:27:40.3760953Z adding 'torch/distributed/elastic/utils/data/elastic_distributed_sampler.py' 2025-06-01T21:27:40.3765354Z adding 'torch/distributed/fsdp/__init__.py' 2025-06-01T21:27:40.3774997Z adding 'torch/distributed/fsdp/_common_utils.py' 2025-06-01T21:27:40.3780770Z adding 'torch/distributed/fsdp/_debug_utils.py' 2025-06-01T21:27:40.3784565Z adding 'torch/distributed/fsdp/_dynamo_utils.py' 2025-06-01T21:27:40.3791348Z adding 'torch/distributed/fsdp/_exec_order_utils.py' 2025-06-01T21:27:40.3834294Z adding 'torch/distributed/fsdp/_flat_param.py' 2025-06-01T21:27:40.3841109Z adding 'torch/distributed/fsdp/_fsdp_extensions.py' 2025-06-01T21:27:40.3858136Z adding 'torch/distributed/fsdp/_init_utils.py' 2025-06-01T21:27:40.3862425Z adding 'torch/distributed/fsdp/_limiter_utils.py' 2025-06-01T21:27:40.3894212Z adding 'torch/distributed/fsdp/_optim_utils.py' 2025-06-01T21:27:40.3922774Z adding 'torch/distributed/fsdp/_runtime_utils.py' 2025-06-01T21:27:40.3928093Z adding 'torch/distributed/fsdp/_shard_utils.py' 2025-06-01T21:27:40.3939472Z adding 'torch/distributed/fsdp/_state_dict_utils.py' 2025-06-01T21:27:40.3945847Z adding 'torch/distributed/fsdp/_trace_utils.py' 2025-06-01T21:27:40.3950198Z adding 'torch/distributed/fsdp/_traversal_utils.py' 2025-06-01T21:27:40.3955914Z adding 'torch/distributed/fsdp/_unshard_param_utils.py' 2025-06-01T21:27:40.3961688Z adding 'torch/distributed/fsdp/_wrap_utils.py' 2025-06-01T21:27:40.3970056Z adding 'torch/distributed/fsdp/api.py' 2025-06-01T21:27:40.4003138Z adding 'torch/distributed/fsdp/fully_sharded_data_parallel.py' 2025-06-01T21:27:40.4012616Z adding 'torch/distributed/fsdp/sharded_grad_scaler.py' 2025-06-01T21:27:40.4021693Z adding 'torch/distributed/fsdp/wrap.py' 2025-06-01T21:27:40.4026872Z adding 'torch/distributed/fsdp/_fully_shard/__init__.py' 2025-06-01T21:27:40.4030759Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_api.py' 2025-06-01T21:27:40.4039972Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py' 2025-06-01T21:27:40.4044797Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_common.py' 2025-06-01T21:27:40.4050136Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_init.py' 2025-06-01T21:27:40.4064973Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_param.py' 2025-06-01T21:27:40.4078513Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py' 2025-06-01T21:27:40.4086014Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_state.py' 2025-06-01T21:27:40.4096981Z adding 'torch/distributed/fsdp/_fully_shard/_fully_shard.py' 2025-06-01T21:27:40.4101319Z adding 'torch/distributed/launcher/__init__.py' 2025-06-01T21:27:40.4107062Z adding 'torch/distributed/launcher/api.py' 2025-06-01T21:27:40.4111215Z adding 'torch/distributed/nn/__init__.py' 2025-06-01T21:27:40.4117286Z adding 'torch/distributed/nn/functional.py' 2025-06-01T21:27:40.4122650Z adding 'torch/distributed/nn/api/__init__.py' 2025-06-01T21:27:40.4132935Z adding 'torch/distributed/nn/api/remote_module.py' 2025-06-01T21:27:40.4137676Z adding 'torch/distributed/nn/jit/__init__.py' 2025-06-01T21:27:40.4142206Z adding 'torch/distributed/nn/jit/instantiator.py' 2025-06-01T21:27:40.4145896Z adding 'torch/distributed/nn/jit/templates/__init__.py' 2025-06-01T21:27:40.4149708Z adding 'torch/distributed/nn/jit/templates/remote_module_template.py' 2025-06-01T21:27:40.4154342Z adding 'torch/distributed/optim/__init__.py' 2025-06-01T21:27:40.4157541Z adding 'torch/distributed/optim/_deprecation_warning.py' 2025-06-01T21:27:40.4161861Z adding 'torch/distributed/optim/apply_optimizer_in_backward.py' 2025-06-01T21:27:40.4165923Z adding 'torch/distributed/optim/functional_adadelta.py' 2025-06-01T21:27:40.4170029Z adding 'torch/distributed/optim/functional_adagrad.py' 2025-06-01T21:27:40.4174539Z adding 'torch/distributed/optim/functional_adam.py' 2025-06-01T21:27:40.4178757Z adding 'torch/distributed/optim/functional_adamax.py' 2025-06-01T21:27:40.4183307Z adding 'torch/distributed/optim/functional_adamw.py' 2025-06-01T21:27:40.4187501Z adding 'torch/distributed/optim/functional_rmsprop.py' 2025-06-01T21:27:40.4191637Z adding 'torch/distributed/optim/functional_rprop.py' 2025-06-01T21:27:40.4196151Z adding 'torch/distributed/optim/functional_sgd.py' 2025-06-01T21:27:40.4202825Z adding 'torch/distributed/optim/named_optimizer.py' 2025-06-01T21:27:40.4208733Z adding 'torch/distributed/optim/optimizer.py' 2025-06-01T21:27:40.4213496Z adding 'torch/distributed/optim/post_localSGD_optimizer.py' 2025-06-01T21:27:40.4216862Z adding 'torch/distributed/optim/utils.py' 2025-06-01T21:27:40.4242611Z adding 'torch/distributed/optim/zero_redundancy_optimizer.py' 2025-06-01T21:27:40.4248068Z adding 'torch/distributed/optim/zero_redundancy_optimizer.pyi' 2025-06-01T21:27:40.4270108Z adding 'torch/distributed/pipelining/_IR.py' 2025-06-01T21:27:40.4284592Z adding 'torch/distributed/pipelining/__init__.py' 2025-06-01T21:27:40.4285199Z adding 'torch/distributed/pipelining/_backward.py' 2025-06-01T21:27:40.4286989Z adding 'torch/distributed/pipelining/_debug.py' 2025-06-01T21:27:40.4291875Z adding 'torch/distributed/pipelining/_schedule_visualizer.py' 2025-06-01T21:27:40.4295166Z adding 'torch/distributed/pipelining/_unflatten.py' 2025-06-01T21:27:40.4299139Z adding 'torch/distributed/pipelining/_utils.py' 2025-06-01T21:27:40.4306724Z adding 'torch/distributed/pipelining/microbatch.py' 2025-06-01T21:27:40.4338774Z adding 'torch/distributed/pipelining/schedules.py' 2025-06-01T21:27:40.4363768Z adding 'torch/distributed/pipelining/stage.py' 2025-06-01T21:27:40.4371941Z adding 'torch/distributed/rpc/__init__.py' 2025-06-01T21:27:40.4375630Z adding 'torch/distributed/rpc/_utils.py' 2025-06-01T21:27:40.4387940Z adding 'torch/distributed/rpc/api.py' 2025-06-01T21:27:40.4395948Z adding 'torch/distributed/rpc/backend_registry.py' 2025-06-01T21:27:40.4399396Z adding 'torch/distributed/rpc/constants.py' 2025-06-01T21:27:40.4403801Z adding 'torch/distributed/rpc/functions.py' 2025-06-01T21:27:40.4409617Z adding 'torch/distributed/rpc/internal.py' 2025-06-01T21:27:40.4414585Z adding 'torch/distributed/rpc/options.py' 2025-06-01T21:27:40.4418396Z adding 'torch/distributed/rpc/rref_proxy.py' 2025-06-01T21:27:40.4423533Z adding 'torch/distributed/rpc/server_process_global_profiler.py' 2025-06-01T21:27:40.4427778Z adding 'torch/distributed/rpc/_testing/__init__.py' 2025-06-01T21:27:40.4431285Z adding 'torch/distributed/rpc/_testing/faulty_agent_backend_registry.py' 2025-06-01T21:27:40.4435720Z adding 'torch/distributed/tensor/__init__.py' 2025-06-01T21:27:40.4453744Z adding 'torch/distributed/tensor/_api.py' 2025-06-01T21:27:40.4461530Z adding 'torch/distributed/tensor/_collective_utils.py' 2025-06-01T21:27:40.4469753Z adding 'torch/distributed/tensor/_dispatch.py' 2025-06-01T21:27:40.4475753Z adding 'torch/distributed/tensor/_dtensor_spec.py' 2025-06-01T21:27:40.4484267Z adding 'torch/distributed/tensor/_op_schema.py' 2025-06-01T21:27:40.4491804Z adding 'torch/distributed/tensor/_random.py' 2025-06-01T21:27:40.4498789Z adding 'torch/distributed/tensor/_redistribute.py' 2025-06-01T21:27:40.4507500Z adding 'torch/distributed/tensor/_sharding_prop.py' 2025-06-01T21:27:40.4514016Z adding 'torch/distributed/tensor/_shards_wrapper.py' 2025-06-01T21:27:40.4519093Z adding 'torch/distributed/tensor/_tp_conv.py' 2025-06-01T21:27:40.4526811Z adding 'torch/distributed/tensor/_utils.py' 2025-06-01T21:27:40.4530416Z adding 'torch/distributed/tensor/device_mesh.py' 2025-06-01T21:27:40.4541118Z adding 'torch/distributed/tensor/placement_types.py' 2025-06-01T21:27:40.4546762Z adding 'torch/distributed/tensor/_ops/__init__.py' 2025-06-01T21:27:40.4552536Z adding 'torch/distributed/tensor/_ops/_common_rules.py' 2025-06-01T21:27:40.4556619Z adding 'torch/distributed/tensor/_ops/_conv_ops.py' 2025-06-01T21:27:40.4561753Z adding 'torch/distributed/tensor/_ops/_einsum_strategy.py' 2025-06-01T21:27:40.4567290Z adding 'torch/distributed/tensor/_ops/_embedding_ops.py' 2025-06-01T21:27:40.4579552Z adding 'torch/distributed/tensor/_ops/_math_ops.py' 2025-06-01T21:27:40.4589811Z adding 'torch/distributed/tensor/_ops/_matrix_ops.py' 2025-06-01T21:27:40.4598265Z adding 'torch/distributed/tensor/_ops/_pointwise_ops.py' 2025-06-01T21:27:40.4602053Z adding 'torch/distributed/tensor/_ops/_random_ops.py' 2025-06-01T21:27:40.4615646Z adding 'torch/distributed/tensor/_ops/_tensor_ops.py' 2025-06-01T21:27:40.4626987Z adding 'torch/distributed/tensor/_ops/_view_ops.py' 2025-06-01T21:27:40.4632986Z adding 'torch/distributed/tensor/_ops/utils.py' 2025-06-01T21:27:40.4638405Z adding 'torch/distributed/tensor/debug/__init__.py' 2025-06-01T21:27:40.4646920Z adding 'torch/distributed/tensor/debug/_comm_mode.py' 2025-06-01T21:27:40.4651589Z adding 'torch/distributed/tensor/debug/_op_coverage.py' 2025-06-01T21:27:40.4656694Z adding 'torch/distributed/tensor/debug/_visualize_sharding.py' 2025-06-01T21:27:40.4661381Z adding 'torch/distributed/tensor/experimental/__init__.py' 2025-06-01T21:27:40.4678718Z adding 'torch/distributed/tensor/experimental/_attention.py' 2025-06-01T21:27:40.4685230Z adding 'torch/distributed/tensor/experimental/_func_map.py' 2025-06-01T21:27:40.4690101Z adding 'torch/distributed/tensor/experimental/_register_sharding.py' 2025-06-01T21:27:40.4698073Z adding 'torch/distributed/tensor/experimental/_tp_transform.py' 2025-06-01T21:27:40.4702778Z adding 'torch/distributed/tensor/parallel/__init__.py' 2025-06-01T21:27:40.4707193Z adding 'torch/distributed/tensor/parallel/_data_parallel_utils.py' 2025-06-01T21:27:40.4709919Z adding 'torch/distributed/tensor/parallel/_utils.py' 2025-06-01T21:27:40.4714730Z adding 'torch/distributed/tensor/parallel/api.py' 2025-06-01T21:27:40.4718868Z adding 'torch/distributed/tensor/parallel/ddp.py' 2025-06-01T21:27:40.4725721Z adding 'torch/distributed/tensor/parallel/fsdp.py' 2025-06-01T21:27:40.4730463Z adding 'torch/distributed/tensor/parallel/input_reshard.py' 2025-06-01T21:27:40.4737211Z adding 'torch/distributed/tensor/parallel/loss.py' 2025-06-01T21:27:40.4747598Z adding 'torch/distributed/tensor/parallel/style.py' 2025-06-01T21:27:40.4755056Z adding 'torch/distributions/__init__.py' 2025-06-01T21:27:40.4759393Z adding 'torch/distributions/bernoulli.py' 2025-06-01T21:27:40.4763512Z adding 'torch/distributions/beta.py' 2025-06-01T21:27:40.4768177Z adding 'torch/distributions/binomial.py' 2025-06-01T21:27:40.4772712Z adding 'torch/distributions/categorical.py' 2025-06-01T21:27:40.4779359Z adding 'torch/distributions/cauchy.py' 2025-06-01T21:27:40.4780766Z adding 'torch/distributions/chi2.py' 2025-06-01T21:27:40.4791328Z adding 'torch/distributions/constraint_registry.py' 2025-06-01T21:27:40.4794457Z adding 'torch/distributions/constraints.py' 2025-06-01T21:27:40.4800291Z adding 'torch/distributions/continuous_bernoulli.py' 2025-06-01T21:27:40.4804696Z adding 'torch/distributions/dirichlet.py' 2025-06-01T21:27:40.4810769Z adding 'torch/distributions/distribution.py' 2025-06-01T21:27:40.4815459Z adding 'torch/distributions/exp_family.py' 2025-06-01T21:27:40.4818515Z adding 'torch/distributions/exponential.py' 2025-06-01T21:27:40.4822528Z adding 'torch/distributions/fishersnedecor.py' 2025-06-01T21:27:40.4826644Z adding 'torch/distributions/gamma.py' 2025-06-01T21:27:40.4831072Z adding 'torch/distributions/generalized_pareto.py' 2025-06-01T21:27:40.4835448Z adding 'torch/distributions/geometric.py' 2025-06-01T21:27:40.4839198Z adding 'torch/distributions/gumbel.py' 2025-06-01T21:27:40.4843084Z adding 'torch/distributions/half_cauchy.py' 2025-06-01T21:27:40.4846617Z adding 'torch/distributions/half_normal.py' 2025-06-01T21:27:40.4850607Z adding 'torch/distributions/independent.py' 2025-06-01T21:27:40.4854308Z adding 'torch/distributions/inverse_gamma.py' 2025-06-01T21:27:40.4864675Z adding 'torch/distributions/kl.py' 2025-06-01T21:27:40.4869144Z adding 'torch/distributions/kumaraswamy.py' 2025-06-01T21:27:40.4873386Z adding 'torch/distributions/laplace.py' 2025-06-01T21:27:40.4878099Z adding 'torch/distributions/lkj_cholesky.py' 2025-06-01T21:27:40.4881797Z adding 'torch/distributions/log_normal.py' 2025-06-01T21:27:40.4885334Z adding 'torch/distributions/logistic_normal.py' 2025-06-01T21:27:40.4890602Z adding 'torch/distributions/lowrank_multivariate_normal.py' 2025-06-01T21:27:40.4895674Z adding 'torch/distributions/mixture_same_family.py' 2025-06-01T21:27:40.4900229Z adding 'torch/distributions/multinomial.py' 2025-06-01T21:27:40.4905747Z adding 'torch/distributions/multivariate_normal.py' 2025-06-01T21:27:40.4910279Z adding 'torch/distributions/negative_binomial.py' 2025-06-01T21:27:40.4914353Z adding 'torch/distributions/normal.py' 2025-06-01T21:27:40.4918522Z adding 'torch/distributions/one_hot_categorical.py' 2025-06-01T21:27:40.4922160Z adding 'torch/distributions/pareto.py' 2025-06-01T21:27:40.4925768Z adding 'torch/distributions/poisson.py' 2025-06-01T21:27:40.4930045Z adding 'torch/distributions/relaxed_bernoulli.py' 2025-06-01T21:27:40.4934500Z adding 'torch/distributions/relaxed_categorical.py' 2025-06-01T21:27:40.4938403Z adding 'torch/distributions/studentT.py' 2025-06-01T21:27:40.4943454Z adding 'torch/distributions/transformed_distribution.py' 2025-06-01T21:27:40.4958199Z adding 'torch/distributions/transforms.py' 2025-06-01T21:27:40.4962940Z adding 'torch/distributions/uniform.py' 2025-06-01T21:27:40.4968080Z adding 'torch/distributions/utils.py' 2025-06-01T21:27:40.4972895Z adding 'torch/distributions/von_mises.py' 2025-06-01T21:27:40.4976663Z adding 'torch/distributions/weibull.py' 2025-06-01T21:27:40.4982695Z adding 'torch/distributions/wishart.py' 2025-06-01T21:27:40.4993081Z adding 'torch/export/__init__.py' 2025-06-01T21:27:40.5001186Z adding 'torch/export/_draft_export.py' 2025-06-01T21:27:40.5005211Z adding 'torch/export/_remove_auto_functionalized_pass.py' 2025-06-01T21:27:40.5009897Z adding 'torch/export/_remove_effect_tokens_pass.py' 2025-06-01T21:27:40.5013573Z adding 'torch/export/_safeguard.py' 2025-06-01T21:27:40.5020790Z adding 'torch/export/_swap.py' 2025-06-01T21:27:40.5053493Z adding 'torch/export/_trace.py' 2025-06-01T21:27:40.5059074Z adding 'torch/export/_tree_utils.py' 2025-06-01T21:27:40.5066479Z adding 'torch/export/_unlift.py' 2025-06-01T21:27:40.5069936Z adding 'torch/export/_wrapper_utils.py' 2025-06-01T21:27:40.5073242Z adding 'torch/export/custom_obj.py' 2025-06-01T21:27:40.5076372Z adding 'torch/export/custom_ops.py' 2025-06-01T21:27:40.5080730Z adding 'torch/export/decomp_utils.py' 2025-06-01T21:27:40.5100554Z adding 'torch/export/dynamic_shapes.py' 2025-06-01T21:27:40.5123720Z adding 'torch/export/exported_program.py' 2025-06-01T21:27:40.5133072Z adding 'torch/export/graph_signature.py' 2025-06-01T21:27:40.5159563Z adding 'torch/export/unflatten.py' 2025-06-01T21:27:40.5169381Z adding 'torch/export/experimental/__init__.py' 2025-06-01T21:27:40.5173315Z adding 'torch/export/passes/__init__.py' 2025-06-01T21:27:40.5177338Z adding 'torch/export/pt2_archive/__init__.py' 2025-06-01T21:27:40.5181709Z adding 'torch/export/pt2_archive/_package.py' 2025-06-01T21:27:40.5185149Z adding 'torch/export/pt2_archive/constants.py' 2025-06-01T21:27:40.5198732Z adding 'torch/fft/__init__.py' 2025-06-01T21:27:40.5203999Z adding 'torch/func/__init__.py' 2025-06-01T21:27:40.5211899Z adding 'torch/futures/__init__.py' 2025-06-01T21:27:40.5217163Z adding 'torch/fx/__init__.py' 2025-06-01T21:27:40.5220569Z adding 'torch/fx/_compatibility.py' 2025-06-01T21:27:40.5228994Z adding 'torch/fx/_graph_pickler.py' 2025-06-01T21:27:40.5234406Z adding 'torch/fx/_lazy_graph_module.py' 2025-06-01T21:27:40.5238346Z adding 'torch/fx/_pytree.py' 2025-06-01T21:27:40.5258261Z adding 'torch/fx/_symbolic_trace.py' 2025-06-01T21:27:40.5263538Z adding 'torch/fx/_utils.py' 2025-06-01T21:27:40.5267433Z adding 'torch/fx/annotate.py' 2025-06-01T21:27:40.5271001Z adding 'torch/fx/config.py' 2025-06-01T21:27:40.5300318Z adding 'torch/fx/graph.py' 2025-06-01T21:27:40.5318390Z adding 'torch/fx/graph_module.py' 2025-06-01T21:27:40.5323181Z adding 'torch/fx/immutable_collections.py' 2025-06-01T21:27:40.5331527Z adding 'torch/fx/interpreter.py' 2025-06-01T21:27:40.5345541Z adding 'torch/fx/node.py' 2025-06-01T21:27:40.5355375Z adding 'torch/fx/operator_schemas.py' 2025-06-01T21:27:40.5367457Z adding 'torch/fx/proxy.py' 2025-06-01T21:27:40.5375450Z adding 'torch/fx/subgraph_rewriter.py' 2025-06-01T21:27:40.5379402Z adding 'torch/fx/tensor_type.py' 2025-06-01T21:27:40.5384047Z adding 'torch/fx/traceback.py' 2025-06-01T21:27:40.5388536Z adding 'torch/fx/experimental/__init__.py' 2025-06-01T21:27:40.5391882Z adding 'torch/fx/experimental/_backward_state.py' 2025-06-01T21:27:40.5396030Z adding 'torch/fx/experimental/_config.py' 2025-06-01T21:27:40.5399373Z adding 'torch/fx/experimental/_constant_symnode.py' 2025-06-01T21:27:40.5403396Z adding 'torch/fx/experimental/_dynamism.py' 2025-06-01T21:27:40.5419689Z adding 'torch/fx/experimental/accelerator_partitioner.py' 2025-06-01T21:27:40.5427029Z adding 'torch/fx/experimental/const_fold.py' 2025-06-01T21:27:40.5430741Z adding 'torch/fx/experimental/debug.py' 2025-06-01T21:27:40.5442301Z adding 'torch/fx/experimental/graph_gradual_typechecker.py' 2025-06-01T21:27:40.5447874Z adding 'torch/fx/experimental/merge_matmul.py' 2025-06-01T21:27:40.5453522Z adding 'torch/fx/experimental/meta_tracer.py' 2025-06-01T21:27:40.5458045Z adding 'torch/fx/experimental/normalize.py' 2025-06-01T21:27:40.5465980Z adding 'torch/fx/experimental/optimization.py' 2025-06-01T21:27:40.5472441Z adding 'torch/fx/experimental/partitioner_utils.py' 2025-06-01T21:27:40.5507442Z adding 'torch/fx/experimental/proxy_tensor.py' 2025-06-01T21:27:40.5518249Z adding 'torch/fx/experimental/recording.py' 2025-06-01T21:27:40.5521675Z adding 'torch/fx/experimental/refinement_types.py' 2025-06-01T21:27:40.5525948Z adding 'torch/fx/experimental/rewriter.py' 2025-06-01T21:27:40.5530574Z adding 'torch/fx/experimental/schema_type_annotation.py' 2025-06-01T21:27:40.5551569Z adding 'torch/fx/experimental/sym_node.py' 2025-06-01T21:27:40.5683443Z adding 'torch/fx/experimental/symbolic_shapes.py' 2025-06-01T21:27:40.5695733Z adding 'torch/fx/experimental/unify_refinements.py' 2025-06-01T21:27:40.5708838Z adding 'torch/fx/experimental/validator.py' 2025-06-01T21:27:40.5714041Z adding 'torch/fx/experimental/migrate_gradual_types/__init__.py' 2025-06-01T21:27:40.5720293Z adding 'torch/fx/experimental/migrate_gradual_types/constraint.py' 2025-06-01T21:27:40.5735978Z adding 'torch/fx/experimental/migrate_gradual_types/constraint_generator.py' 2025-06-01T21:27:40.5751310Z adding 'torch/fx/experimental/migrate_gradual_types/constraint_transformation.py' 2025-06-01T21:27:40.5755371Z adding 'torch/fx/experimental/migrate_gradual_types/operation.py' 2025-06-01T21:27:40.5761900Z adding 'torch/fx/experimental/migrate_gradual_types/transform_to_z3.py' 2025-06-01T21:27:40.5765746Z adding 'torch/fx/experimental/migrate_gradual_types/util.py' 2025-06-01T21:27:40.5768960Z adding 'torch/fx/experimental/migrate_gradual_types/z3_types.py' 2025-06-01T21:27:40.5773222Z adding 'torch/fx/experimental/unification/__init__.py' 2025-06-01T21:27:40.5777119Z adding 'torch/fx/experimental/unification/core.py' 2025-06-01T21:27:40.5780311Z adding 'torch/fx/experimental/unification/dispatch.py' 2025-06-01T21:27:40.5784369Z adding 'torch/fx/experimental/unification/match.py' 2025-06-01T21:27:40.5788566Z adding 'torch/fx/experimental/unification/more.py' 2025-06-01T21:27:40.5794653Z adding 'torch/fx/experimental/unification/unification_tools.py' 2025-06-01T21:27:40.5798890Z adding 'torch/fx/experimental/unification/utils.py' 2025-06-01T21:27:40.5802621Z adding 'torch/fx/experimental/unification/variable.py' 2025-06-01T21:27:40.5806685Z adding 'torch/fx/experimental/unification/multipledispatch/__init__.py' 2025-06-01T21:27:40.5810806Z adding 'torch/fx/experimental/unification/multipledispatch/conflict.py' 2025-06-01T21:27:40.5814869Z adding 'torch/fx/experimental/unification/multipledispatch/core.py' 2025-06-01T21:27:40.5826250Z adding 'torch/fx/experimental/unification/multipledispatch/dispatcher.py' 2025-06-01T21:27:40.5827360Z adding 'torch/fx/experimental/unification/multipledispatch/utils.py' 2025-06-01T21:27:40.5832245Z adding 'torch/fx/experimental/unification/multipledispatch/variadic.py' 2025-06-01T21:27:40.5835713Z adding 'torch/fx/passes/__init__.py' 2025-06-01T21:27:40.5844291Z adding 'torch/fx/passes/_tensorify_python_scalars.py' 2025-06-01T21:27:40.5847068Z adding 'torch/fx/passes/annotate_getitem_nodes.py' 2025-06-01T21:27:40.5851347Z adding 'torch/fx/passes/fake_tensor_prop.py' 2025-06-01T21:27:40.5858585Z adding 'torch/fx/passes/graph_drawer.py' 2025-06-01T21:27:40.5863261Z adding 'torch/fx/passes/graph_manipulation.py' 2025-06-01T21:27:40.5867923Z adding 'torch/fx/passes/graph_transform_observer.py' 2025-06-01T21:27:40.5880572Z adding 'torch/fx/passes/net_min_base.py' 2025-06-01T21:27:40.5886204Z adding 'torch/fx/passes/operator_support.py' 2025-06-01T21:27:40.5890204Z adding 'torch/fx/passes/param_fetch.py' 2025-06-01T21:27:40.5895125Z adding 'torch/fx/passes/pass_manager.py' 2025-06-01T21:27:40.5909053Z adding 'torch/fx/passes/reinplace.py' 2025-06-01T21:27:40.5920923Z adding 'torch/fx/passes/runtime_assert.py' 2025-06-01T21:27:40.5926152Z adding 'torch/fx/passes/shape_prop.py' 2025-06-01T21:27:40.5936150Z adding 'torch/fx/passes/split_module.py' 2025-06-01T21:27:40.5942716Z adding 'torch/fx/passes/split_utils.py' 2025-06-01T21:27:40.5956033Z adding 'torch/fx/passes/splitter_base.py' 2025-06-01T21:27:40.5962700Z adding 'torch/fx/passes/tools_common.py' 2025-06-01T21:27:40.5966920Z adding 'torch/fx/passes/backends/__init__.py' 2025-06-01T21:27:40.5970400Z adding 'torch/fx/passes/backends/cudagraphs.py' 2025-06-01T21:27:40.5974310Z adding 'torch/fx/passes/dialect/__init__.py' 2025-06-01T21:27:40.5977900Z adding 'torch/fx/passes/dialect/common/__init__.py' 2025-06-01T21:27:40.5982079Z adding 'torch/fx/passes/dialect/common/cse_pass.py' 2025-06-01T21:27:40.5985980Z adding 'torch/fx/passes/infra/__init__.py' 2025-06-01T21:27:40.5992954Z adding 'torch/fx/passes/infra/partitioner.py' 2025-06-01T21:27:40.5996919Z adding 'torch/fx/passes/infra/pass_base.py' 2025-06-01T21:27:40.6002625Z adding 'torch/fx/passes/infra/pass_manager.py' 2025-06-01T21:27:40.6006590Z adding 'torch/fx/passes/tests/__init__.py' 2025-06-01T21:27:40.6009898Z adding 'torch/fx/passes/tests/test_pass_manager.py' 2025-06-01T21:27:40.6013666Z adding 'torch/fx/passes/utils/__init__.py' 2025-06-01T21:27:40.6017421Z adding 'torch/fx/passes/utils/common.py' 2025-06-01T21:27:40.6023023Z adding 'torch/fx/passes/utils/fuser_utils.py' 2025-06-01T21:27:40.6030752Z adding 'torch/fx/passes/utils/matcher_utils.py' 2025-06-01T21:27:40.6035376Z adding 'torch/fx/passes/utils/matcher_with_name_node_map_utils.py' 2025-06-01T21:27:40.6039976Z adding 'torch/fx/passes/utils/source_matcher_utils.py' 2025-06-01T21:27:40.6049690Z adding 'torch/include/advisor-annotate.h' 2025-06-01T21:27:40.6063189Z adding 'torch/include/cpuinfo.h' 2025-06-01T21:27:40.6067680Z adding 'torch/include/dnnl.h' 2025-06-01T21:27:40.6071056Z adding 'torch/include/dnnl.hpp' 2025-06-01T21:27:40.6074255Z adding 'torch/include/dnnl_config.h' 2025-06-01T21:27:40.6077501Z adding 'torch/include/dnnl_debug.h' 2025-06-01T21:27:40.6080630Z adding 'torch/include/dnnl_ocl.h' 2025-06-01T21:27:40.6083858Z adding 'torch/include/dnnl_ocl.hpp' 2025-06-01T21:27:40.6087054Z adding 'torch/include/dnnl_sycl.h' 2025-06-01T21:27:40.6090357Z adding 'torch/include/dnnl_sycl.hpp' 2025-06-01T21:27:40.6093519Z adding 'torch/include/dnnl_sycl_types.h' 2025-06-01T21:27:40.6096724Z adding 'torch/include/dnnl_threadpool.h' 2025-06-01T21:27:40.6099964Z adding 'torch/include/dnnl_threadpool.hpp' 2025-06-01T21:27:40.6103158Z adding 'torch/include/dnnl_threadpool_iface.hpp' 2025-06-01T21:27:40.6106377Z adding 'torch/include/dnnl_types.h' 2025-06-01T21:27:40.6109542Z adding 'torch/include/dnnl_version.h' 2025-06-01T21:27:40.6112834Z adding 'torch/include/experiments-config.h' 2025-06-01T21:27:40.6115737Z adding 'torch/include/fp16.h' 2025-06-01T21:27:40.6121169Z adding 'torch/include/fxdiv.h' 2025-06-01T21:27:40.6125444Z adding 'torch/include/ittnotify-zca.h' 2025-06-01T21:27:40.6171579Z adding 'torch/include/ittnotify.h' 2025-06-01T21:27:40.6186203Z adding 'torch/include/jitprofiling.h' 2025-06-01T21:27:40.6190072Z adding 'torch/include/libittnotify.h' 2025-06-01T21:27:40.6193492Z adding 'torch/include/libshm.h' 2025-06-01T21:27:40.6203784Z adding 'torch/include/psimd.h' 2025-06-01T21:27:40.6218575Z adding 'torch/include/pthreadpool.h' 2025-06-01T21:27:40.6258497Z adding 'torch/include/sleef.h' 2025-06-01T21:27:40.6302045Z adding 'torch/include/xnnpack.h' 2025-06-01T21:27:40.6313687Z adding 'torch/include/ATen/ATen.h' 2025-06-01T21:27:40.6317967Z adding 'torch/include/ATen/AccumulateType.h' 2025-06-01T21:27:40.6321037Z adding 'torch/include/ATen/ArrayRef.h' 2025-06-01T21:27:40.6323899Z adding 'torch/include/ATen/Backend.h' 2025-06-01T21:27:40.6327206Z adding 'torch/include/ATen/Backtrace.h' 2025-06-01T21:27:40.6330112Z adding 'torch/include/ATen/BlasBackend.h' 2025-06-01T21:27:40.6335336Z adding 'torch/include/ATen/CPUApplyUtils.h' 2025-06-01T21:27:40.6338988Z adding 'torch/include/ATen/CPUFixedAllocator.h' 2025-06-01T21:27:40.6342306Z adding 'torch/include/ATen/CPUFunctions.h' 2025-06-01T21:27:40.6348589Z adding 'torch/include/ATen/CPUFunctions_inl.h' 2025-06-01T21:27:40.6352683Z adding 'torch/include/ATen/CPUGeneratorImpl.h' 2025-06-01T21:27:40.6356727Z adding 'torch/include/ATen/CUDAFunctions.h' 2025-06-01T21:27:40.6363286Z adding 'torch/include/ATen/CUDAFunctions_inl.h' 2025-06-01T21:27:40.6367341Z adding 'torch/include/ATen/CachedTensorUtils.h' 2025-06-01T21:27:40.6370970Z adding 'torch/include/ATen/CollapseDims.h' 2025-06-01T21:27:40.6374606Z adding 'torch/include/ATen/CompositeExplicitAutogradFunctions.h' 2025-06-01T21:27:40.6381875Z adding 'torch/include/ATen/CompositeExplicitAutogradFunctions_inl.h' 2025-06-01T21:27:40.6386440Z adding 'torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions.h' 2025-06-01T21:27:40.6391960Z adding 'torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions_inl.h' 2025-06-01T21:27:40.6396031Z adding 'torch/include/ATen/CompositeImplicitAutogradFunctions.h' 2025-06-01T21:27:40.6402484Z adding 'torch/include/ATen/CompositeImplicitAutogradFunctions_inl.h' 2025-06-01T21:27:40.6406883Z adding 'torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions.h' 2025-06-01T21:27:40.6410193Z adding 'torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions_inl.h' 2025-06-01T21:27:40.6413319Z adding 'torch/include/ATen/Config.h' 2025-06-01T21:27:40.6421608Z adding 'torch/include/ATen/Context.h' 2025-06-01T21:27:40.6425379Z adding 'torch/include/ATen/DLConvertor.h' 2025-06-01T21:27:40.6428271Z adding 'torch/include/ATen/Device.h' 2025-06-01T21:27:40.6432056Z adding 'torch/include/ATen/DeviceAccelerator.h' 2025-06-01T21:27:40.6435350Z adding 'torch/include/ATen/DeviceGuard.h' 2025-06-01T21:27:40.6438250Z adding 'torch/include/ATen/DimVector.h' 2025-06-01T21:27:40.6441059Z adding 'torch/include/ATen/Dimname.h' 2025-06-01T21:27:40.6455113Z adding 'torch/include/ATen/Dispatch.h' 2025-06-01T21:27:40.6465371Z adding 'torch/include/ATen/Dispatch_v2.h' 2025-06-01T21:27:40.6466721Z adding 'torch/include/ATen/DynamicLibrary.h' 2025-06-01T21:27:40.6471045Z adding 'torch/include/ATen/EmptyTensor.h' 2025-06-01T21:27:40.6474283Z adding 'torch/include/ATen/ExpandBase.h' 2025-06-01T21:27:40.6480041Z adding 'torch/include/ATen/ExpandUtils.h' 2025-06-01T21:27:40.6483403Z adding 'torch/include/ATen/Formatting.h' 2025-06-01T21:27:40.6486730Z adding 'torch/include/ATen/FuncTorchTLS.h' 2025-06-01T21:27:40.6491786Z adding 'torch/include/ATen/FunctionalStorageImpl.h' 2025-06-01T21:27:40.6499387Z adding 'torch/include/ATen/FunctionalTensorWrapper.h' 2025-06-01T21:27:40.6511196Z adding 'torch/include/ATen/Functions.h' 2025-06-01T21:27:40.6515422Z adding 'torch/include/ATen/Generator.h' 2025-06-01T21:27:40.6519083Z adding 'torch/include/ATen/InferSize.h' 2025-06-01T21:27:40.6522207Z adding 'torch/include/ATen/InitialTensorOptions.h' 2025-06-01T21:27:40.6524855Z adding 'torch/include/ATen/Layout.h' 2025-06-01T21:27:40.6528089Z adding 'torch/include/ATen/LegacyBatchedFallback.h' 2025-06-01T21:27:40.6532512Z adding 'torch/include/ATen/LegacyBatchedTensorImpl.h' 2025-06-01T21:27:40.6535834Z adding 'torch/include/ATen/LegacyVmapMode.h' 2025-06-01T21:27:40.6540827Z adding 'torch/include/ATen/LegacyVmapTransforms.h' 2025-06-01T21:27:40.6544143Z adding 'torch/include/ATen/LinalgBackend.h' 2025-06-01T21:27:40.6547786Z adding 'torch/include/ATen/MapAllocator.h' 2025-06-01T21:27:40.6551676Z adding 'torch/include/ATen/MatrixRef.h' 2025-06-01T21:27:40.6554907Z adding 'torch/include/ATen/MemoryOverlap.h' 2025-06-01T21:27:40.6558302Z adding 'torch/include/ATen/MetaFunctions.h' 2025-06-01T21:27:40.6562899Z adding 'torch/include/ATen/MetaFunctions_inl.h' 2025-06-01T21:27:40.6568146Z adding 'torch/include/ATen/MethodOperators.h' 2025-06-01T21:27:40.6572008Z adding 'torch/include/ATen/NamedTensor.h' 2025-06-01T21:27:40.6575907Z adding 'torch/include/ATen/NamedTensorUtils.h' 2025-06-01T21:27:40.6586915Z adding 'torch/include/ATen/NativeFunctions.h' 2025-06-01T21:27:40.6598762Z adding 'torch/include/ATen/NativeMetaFunctions.h' 2025-06-01T21:27:40.6605497Z adding 'torch/include/ATen/NestedTensorImpl.h' 2025-06-01T21:27:40.6609393Z adding 'torch/include/ATen/NumericUtils.h' 2025-06-01T21:27:40.6612777Z adding 'torch/include/ATen/OpMathType.h' 2025-06-01T21:27:40.6617047Z adding 'torch/include/ATen/OpaqueTensorImpl.h' 2025-06-01T21:27:40.6628308Z adding 'torch/include/ATen/Operators.h' 2025-06-01T21:27:40.6632964Z adding 'torch/include/ATen/PTThreadPool.h' 2025-06-01T21:27:40.6635733Z adding 'torch/include/ATen/PadNd.h' 2025-06-01T21:27:40.6639061Z adding 'torch/include/ATen/Parallel-inl.h' 2025-06-01T21:27:40.6643092Z adding 'torch/include/ATen/Parallel.h' 2025-06-01T21:27:40.6646191Z adding 'torch/include/ATen/ParallelFuture.h' 2025-06-01T21:27:40.6649086Z adding 'torch/include/ATen/ParallelNative.h' 2025-06-01T21:27:40.6652206Z adding 'torch/include/ATen/ParallelOpenMP.h' 2025-06-01T21:27:40.6655362Z adding 'torch/include/ATen/PythonTorchFunctionTLS.h' 2025-06-01T21:27:40.6658347Z adding 'torch/include/ATen/ROCmFABackend.h' 2025-06-01T21:27:40.6926366Z adding 'torch/include/ATen/RedispatchFunctions.h' 2025-06-01T21:27:40.7116522Z adding 'torch/include/ATen/RegistrationDeclarations.h' 2025-06-01T21:27:40.7141760Z adding 'torch/include/ATen/SDPBackend.h' 2025-06-01T21:27:40.7145542Z adding 'torch/include/ATen/SavedTensorHooks.h' 2025-06-01T21:27:40.7148502Z adding 'torch/include/ATen/Scalar.h' 2025-06-01T21:27:40.7151989Z adding 'torch/include/ATen/ScalarOps.h' 2025-06-01T21:27:40.7154963Z adding 'torch/include/ATen/ScalarType.h' 2025-06-01T21:27:40.7157951Z adding 'torch/include/ATen/SequenceNumber.h' 2025-06-01T21:27:40.7160782Z adding 'torch/include/ATen/SmallVector.h' 2025-06-01T21:27:40.7165256Z adding 'torch/include/ATen/SparseCsrTensorImpl.h' 2025-06-01T21:27:40.7171587Z adding 'torch/include/ATen/SparseCsrTensorUtils.h' 2025-06-01T21:27:40.7178444Z adding 'torch/include/ATen/SparseTensorImpl.h' 2025-06-01T21:27:40.7181694Z adding 'torch/include/ATen/Storage.h' 2025-06-01T21:27:40.7185040Z adding 'torch/include/ATen/StorageUtils.h' 2025-06-01T21:27:40.7187870Z adding 'torch/include/ATen/Tensor.h' 2025-06-01T21:27:40.7190762Z adding 'torch/include/ATen/TensorAccessor.h' 2025-06-01T21:27:40.7194571Z adding 'torch/include/ATen/TensorGeometry.h' 2025-06-01T21:27:40.7204276Z adding 'torch/include/ATen/TensorIndexing.h' 2025-06-01T21:27:40.7219878Z adding 'torch/include/ATen/TensorIterator.h' 2025-06-01T21:27:40.7224431Z adding 'torch/include/ATen/TensorIteratorInternal.h' 2025-06-01T21:27:40.7228578Z adding 'torch/include/ATen/TensorMeta.h' 2025-06-01T21:27:40.7232520Z adding 'torch/include/ATen/TensorNames.h' 2025-06-01T21:27:40.7236102Z adding 'torch/include/ATen/TensorOperators.h' 2025-06-01T21:27:40.7238962Z adding 'torch/include/ATen/TensorOptions.h' 2025-06-01T21:27:40.7242856Z adding 'torch/include/ATen/TensorSubclassLikeUtils.h' 2025-06-01T21:27:40.7247017Z adding 'torch/include/ATen/TensorUtils.h' 2025-06-01T21:27:40.7250207Z adding 'torch/include/ATen/ThreadLocalPythonObjects.h' 2025-06-01T21:27:40.7254262Z adding 'torch/include/ATen/ThreadLocalState.h' 2025-06-01T21:27:40.7258757Z adding 'torch/include/ATen/TracerMode.h' 2025-06-01T21:27:40.7261891Z adding 'torch/include/ATen/TypeDefault.h' 2025-06-01T21:27:40.7265659Z adding 'torch/include/ATen/Utils.h' 2025-06-01T21:27:40.7268841Z adding 'torch/include/ATen/Version.h' 2025-06-01T21:27:40.7444759Z adding 'torch/include/ATen/VmapGeneratedPlumbing.h' 2025-06-01T21:27:40.7490128Z adding 'torch/include/ATen/WrapDimUtils.h' 2025-06-01T21:27:40.7493698Z adding 'torch/include/ATen/WrapDimUtilsMulti.h' 2025-06-01T21:27:40.7504858Z adding 'torch/include/ATen/autocast_mode.h' 2025-06-01T21:27:40.7509073Z adding 'torch/include/ATen/ceil_div.h' 2025-06-01T21:27:40.7513951Z adding 'torch/include/ATen/code_template.h' 2025-06-01T21:27:40.7517936Z adding 'torch/include/ATen/cpp_custom_type_hack.h' 2025-06-01T21:27:40.7521081Z adding 'torch/include/ATen/div_rtn.h' 2025-06-01T21:27:40.7525998Z adding 'torch/include/ATen/dlpack.h' 2025-06-01T21:27:40.7529326Z adding 'torch/include/ATen/jit_macros.h' 2025-06-01T21:27:40.7532678Z adding 'torch/include/ATen/jiterator_macros.h' 2025-06-01T21:27:40.7542084Z adding 'torch/include/ATen/record_function.h' 2025-06-01T21:27:40.7547890Z adding 'torch/include/ATen/core/ATenGeneral.h' 2025-06-01T21:27:40.7551006Z adding 'torch/include/ATen/core/ATenOpList.h' 2025-06-01T21:27:40.7554101Z adding 'torch/include/ATen/core/ATen_fwd.h' 2025-06-01T21:27:40.7558158Z adding 'torch/include/ATen/core/ATen_pch.h' 2025-06-01T21:27:40.7561500Z adding 'torch/include/ATen/core/Array.h' 2025-06-01T21:27:40.7564470Z adding 'torch/include/ATen/core/Backtrace.h' 2025-06-01T21:27:40.7575505Z adding 'torch/include/ATen/core/CachingHostAllocator.h' 2025-06-01T21:27:40.7579491Z adding 'torch/include/ATen/core/CheckMemoryFormat.h' 2025-06-01T21:27:40.7583358Z adding 'torch/include/ATen/core/DeprecatedTypeProperties.h' 2025-06-01T21:27:40.7586749Z adding 'torch/include/ATen/core/DeprecatedTypePropertiesRegistry.h' 2025-06-01T21:27:40.7593334Z adding 'torch/include/ATen/core/Dict.h' 2025-06-01T21:27:40.7598117Z adding 'torch/include/ATen/core/Dict_inl.h' 2025-06-01T21:27:40.7601613Z adding 'torch/include/ATen/core/DimVector.h' 2025-06-01T21:27:40.7604991Z adding 'torch/include/ATen/core/Dimname.h' 2025-06-01T21:27:40.7610171Z adding 'torch/include/ATen/core/DistributionsHelper.h' 2025-06-01T21:27:40.7613694Z adding 'torch/include/ATen/core/Formatting.h' 2025-06-01T21:27:40.7618285Z adding 'torch/include/ATen/core/Generator.h' 2025-06-01T21:27:40.7621947Z adding 'torch/include/ATen/core/GeneratorForPrivateuseone.h' 2025-06-01T21:27:40.7630196Z adding 'torch/include/ATen/core/IListRef.h' 2025-06-01T21:27:40.7634904Z adding 'torch/include/ATen/core/IListRef_inl.h' 2025-06-01T21:27:40.7639349Z adding 'torch/include/ATen/core/LegacyTypeDispatch.h' 2025-06-01T21:27:40.7646106Z adding 'torch/include/ATen/core/List.h' 2025-06-01T21:27:40.7651712Z adding 'torch/include/ATen/core/List_inl.h' 2025-06-01T21:27:40.7656825Z adding 'torch/include/ATen/core/MT19937RNGEngine.h' 2025-06-01T21:27:40.7661340Z adding 'torch/include/ATen/core/NamedTensor.h' 2025-06-01T21:27:40.7666102Z adding 'torch/include/ATen/core/NestedIntSymNodeImpl.h' 2025-06-01T21:27:40.7671208Z adding 'torch/include/ATen/core/PhiloxRNGEngine.h' 2025-06-01T21:27:40.7674629Z adding 'torch/include/ATen/core/PythonFallbackKernel.h' 2025-06-01T21:27:40.7677928Z adding 'torch/include/ATen/core/PythonOpRegistrationTrampoline.h' 2025-06-01T21:27:40.7681422Z adding 'torch/include/ATen/core/QuantizerBase.h' 2025-06-01T21:27:40.7684623Z adding 'torch/include/ATen/core/Range.h' 2025-06-01T21:27:40.7687628Z adding 'torch/include/ATen/core/Reduction.h' 2025-06-01T21:27:40.7690744Z adding 'torch/include/ATen/core/Scalar.h' 2025-06-01T21:27:40.7693874Z adding 'torch/include/ATen/core/ScalarType.h' 2025-06-01T21:27:40.7697750Z adding 'torch/include/ATen/core/Tensor.h' 2025-06-01T21:27:40.7703077Z adding 'torch/include/ATen/core/TensorAccessor.h' 2025-06-01T21:27:40.7719277Z adding 'torch/include/ATen/core/TensorBase.h' 2025-06-01T21:27:40.7775590Z adding 'torch/include/ATen/core/TensorBody.h' 2025-06-01T21:27:40.7785559Z adding 'torch/include/ATen/core/TorchDispatchUtils.h' 2025-06-01T21:27:40.7789881Z adding 'torch/include/ATen/core/TransformationHelper.h' 2025-06-01T21:27:40.7793118Z adding 'torch/include/ATen/core/UndefinedTensorImpl.h' 2025-06-01T21:27:40.7796150Z adding 'torch/include/ATen/core/UnsafeFromTH.h' 2025-06-01T21:27:40.7800107Z adding 'torch/include/ATen/core/VariableHooksInterface.h' 2025-06-01T21:27:40.7803712Z adding 'torch/include/ATen/core/Variadic.h' 2025-06-01T21:27:40.7807256Z adding 'torch/include/ATen/core/Vitals.h' 2025-06-01T21:27:40.7811334Z adding 'torch/include/ATen/core/alias_info.h' 2025-06-01T21:27:40.7826795Z adding 'torch/include/ATen/core/aten_interned_strings.h' 2025-06-01T21:27:40.7832532Z adding 'torch/include/ATen/core/blob.h' 2025-06-01T21:27:40.7836012Z adding 'torch/include/ATen/core/builtin_function.h' 2025-06-01T21:27:40.7842380Z adding 'torch/include/ATen/core/class_type.h' 2025-06-01T21:27:40.7846029Z adding 'torch/include/ATen/core/custom_class.h' 2025-06-01T21:27:40.7851619Z adding 'torch/include/ATen/core/dynamic_type.h' 2025-06-01T21:27:40.7855112Z adding 'torch/include/ATen/core/enum_tag.h' 2025-06-01T21:27:40.7858754Z adding 'torch/include/ATen/core/enum_type.h' 2025-06-01T21:27:40.7862918Z adding 'torch/include/ATen/core/function.h' 2025-06-01T21:27:40.7873050Z adding 'torch/include/ATen/core/function_schema.h' 2025-06-01T21:27:40.7877168Z adding 'torch/include/ATen/core/function_schema_inl.h' 2025-06-01T21:27:40.7880435Z adding 'torch/include/ATen/core/functional.h' 2025-06-01T21:27:40.7883341Z adding 'torch/include/ATen/core/grad_mode.h' 2025-06-01T21:27:40.7888977Z adding 'torch/include/ATen/core/interned_strings.h' 2025-06-01T21:27:40.7892499Z adding 'torch/include/ATen/core/interned_strings_class.h' 2025-06-01T21:27:40.7911794Z adding 'torch/include/ATen/core/ivalue.h' 2025-06-01T21:27:40.7942700Z adding 'torch/include/ATen/core/ivalue_inl.h' 2025-06-01T21:27:40.7947803Z adding 'torch/include/ATen/core/ivalue_to.h' 2025-06-01T21:27:40.7970337Z adding 'torch/include/ATen/core/jit_type.h' 2025-06-01T21:27:40.7981847Z adding 'torch/include/ATen/core/jit_type_base.h' 2025-06-01T21:27:40.7986178Z adding 'torch/include/ATen/core/operator_name.h' 2025-06-01T21:27:40.7990305Z adding 'torch/include/ATen/core/qualified_name.h' 2025-06-01T21:27:40.7993763Z adding 'torch/include/ATen/core/rref_interface.h' 2025-06-01T21:27:40.7998198Z adding 'torch/include/ATen/core/stack.h' 2025-06-01T21:27:40.8002688Z adding 'torch/include/ATen/core/symbol.h' 2025-06-01T21:27:40.8006392Z adding 'torch/include/ATen/core/type_factory.h' 2025-06-01T21:27:40.8009711Z adding 'torch/include/ATen/core/type_ptr.h' 2025-06-01T21:27:40.8012474Z adding 'torch/include/ATen/core/typeid.h' 2025-06-01T21:27:40.8018467Z adding 'torch/include/ATen/core/boxing/BoxedKernel.h' 2025-06-01T21:27:40.8022329Z adding 'torch/include/ATen/core/boxing/BoxedKernel_impl.h' 2025-06-01T21:27:40.8027075Z adding 'torch/include/ATen/core/boxing/KernelFunction.h' 2025-06-01T21:27:40.8032642Z adding 'torch/include/ATen/core/boxing/KernelFunction_impl.h' 2025-06-01T21:27:40.8036058Z adding 'torch/include/ATen/core/boxing/OperatorKernel.h' 2025-06-01T21:27:40.8040330Z adding 'torch/include/ATen/core/boxing/impl/WrapFunctionIntoFunctor.h' 2025-06-01T21:27:40.8043689Z adding 'torch/include/ATen/core/boxing/impl/WrapFunctionIntoRuntimeFunctor.h' 2025-06-01T21:27:40.8049492Z adding 'torch/include/ATen/core/boxing/impl/boxing.h' 2025-06-01T21:27:40.8059679Z adding 'torch/include/ATen/core/boxing/impl/make_boxed_from_unboxed_functor.h' 2025-06-01T21:27:40.8064234Z adding 'torch/include/ATen/core/boxing/impl/test_helpers.h' 2025-06-01T21:27:40.8068807Z adding 'torch/include/ATen/core/dispatch/CppSignature.h' 2025-06-01T21:27:40.8074669Z adding 'torch/include/ATen/core/dispatch/DispatchKeyExtractor.h' 2025-06-01T21:27:40.8087887Z adding 'torch/include/ATen/core/dispatch/Dispatcher.h' 2025-06-01T21:27:40.8091797Z adding 'torch/include/ATen/core/dispatch/ObservedOperators.h' 2025-06-01T21:27:40.8098925Z adding 'torch/include/ATen/core/dispatch/OperatorEntry.h' 2025-06-01T21:27:40.8102976Z adding 'torch/include/ATen/core/dispatch/OperatorOptions.h' 2025-06-01T21:27:40.8107143Z adding 'torch/include/ATen/core/dispatch/RegistrationHandleRAII.h' 2025-06-01T21:27:40.8112352Z adding 'torch/include/ATen/core/op_registration/adaption.h' 2025-06-01T21:27:40.8117351Z adding 'torch/include/ATen/core/op_registration/infer_schema.h' 2025-06-01T21:27:40.8122579Z adding 'torch/include/ATen/core/op_registration/op_allowlist.h' 2025-06-01T21:27:40.8131936Z adding 'torch/include/ATen/core/op_registration/op_registration.h' 2025-06-01T21:27:40.8136798Z adding 'torch/include/ATen/cpu/FlushDenormal.h' 2025-06-01T21:27:40.8140016Z adding 'torch/include/ATen/cpu/Utils.h' 2025-06-01T21:27:40.8144383Z adding 'torch/include/ATen/cpu/vml.h' 2025-06-01T21:27:40.8148562Z adding 'torch/include/ATen/cpu/vec/functional.h' 2025-06-01T21:27:40.8153989Z adding 'torch/include/ATen/cpu/vec/functional_base.h' 2025-06-01T21:27:40.8160539Z adding 'torch/include/ATen/cpu/vec/functional_bfloat16.h' 2025-06-01T21:27:40.8164724Z adding 'torch/include/ATen/cpu/vec/intrinsics.h' 2025-06-01T21:27:40.8168021Z adding 'torch/include/ATen/cpu/vec/vec.h' 2025-06-01T21:27:40.8181500Z adding 'torch/include/ATen/cpu/vec/vec_base.h' 2025-06-01T21:27:40.8186068Z adding 'torch/include/ATen/cpu/vec/vec_convert.h' 2025-06-01T21:27:40.8189960Z adding 'torch/include/ATen/cpu/vec/vec_half.h' 2025-06-01T21:27:40.8195105Z adding 'torch/include/ATen/cpu/vec/vec_mask.h' 2025-06-01T21:27:40.8200453Z adding 'torch/include/ATen/cpu/vec/vec_n.h' 2025-06-01T21:27:40.8206066Z adding 'torch/include/ATen/cpu/vec/sve/sve_helper.h' 2025-06-01T21:27:40.8212671Z adding 'torch/include/ATen/cpu/vec/sve/vec_bfloat16.h' 2025-06-01T21:27:40.8217735Z adding 'torch/include/ATen/cpu/vec/sve/vec_common_sve.h' 2025-06-01T21:27:40.8223728Z adding 'torch/include/ATen/cpu/vec/sve/vec_double.h' 2025-06-01T21:27:40.8232138Z adding 'torch/include/ATen/cpu/vec/sve/vec_float.h' 2025-06-01T21:27:40.8239139Z adding 'torch/include/ATen/cpu/vec/sve/vec_int.h' 2025-06-01T21:27:40.8245799Z adding 'torch/include/ATen/cpu/vec/sve/vec_qint.h' 2025-06-01T21:27:40.8250322Z adding 'torch/include/ATen/cpu/vec/vec128/vec128.h' 2025-06-01T21:27:40.8257145Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_bfloat16_neon.h' 2025-06-01T21:27:40.8261047Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_convert.h' 2025-06-01T21:27:40.8267822Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_float_neon.h' 2025-06-01T21:27:40.8274886Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_half_neon.h' 2025-06-01T21:27:40.8279947Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_reduced_precision_common_neon.h' 2025-06-01T21:27:40.8285246Z adding 'torch/include/ATen/cpu/vec/vec256/missing_vld1_neon.h' 2025-06-01T21:27:40.8288600Z adding 'torch/include/ATen/cpu/vec/vec256/missing_vst1_neon.h' 2025-06-01T21:27:40.8293797Z adding 'torch/include/ATen/cpu/vec/vec256/vec256.h' 2025-06-01T21:27:40.8302293Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_16bit_float.h' 2025-06-01T21:27:40.8307362Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_bfloat16.h' 2025-06-01T21:27:40.8314727Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_complex_double.h' 2025-06-01T21:27:40.8322702Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_complex_float.h' 2025-06-01T21:27:40.8328030Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_convert.h' 2025-06-01T21:27:40.8333664Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_double.h' 2025-06-01T21:27:40.8341610Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_float.h' 2025-06-01T21:27:40.8346613Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_half.h' 2025-06-01T21:27:40.8361187Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_int.h' 2025-06-01T21:27:40.8367396Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_mask.h' 2025-06-01T21:27:40.8379258Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_qint.h' 2025-06-01T21:27:40.8385722Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_bfloat16_vsx.h' 2025-06-01T21:27:40.8390953Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_common_vsx.h' 2025-06-01T21:27:40.8399816Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_double_vsx.h' 2025-06-01T21:27:40.8409663Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_float_vsx.h' 2025-06-01T21:27:40.8416117Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_double_vsx.h' 2025-06-01T21:27:40.8422520Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_float_vsx.h' 2025-06-01T21:27:40.8428418Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int16_vsx.h' 2025-06-01T21:27:40.8433774Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int32_vsx.h' 2025-06-01T21:27:40.8439117Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int64_vsx.h' 2025-06-01T21:27:40.8444305Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint32_vsx.h' 2025-06-01T21:27:40.8450674Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint8_vsx.h' 2025-06-01T21:27:40.8457379Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_quint8_vsx.h' 2025-06-01T21:27:40.8464642Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vsx_helpers.h' 2025-06-01T21:27:40.8489714Z adding 'torch/include/ATen/cpu/vec/vec256/zarch/vec256_zarch.h' 2025-06-01T21:27:40.8498084Z adding 'torch/include/ATen/cpu/vec/vec512/vec512.h' 2025-06-01T21:27:40.8514607Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_bfloat16.h' 2025-06-01T21:27:40.8524046Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_complex_double.h' 2025-06-01T21:27:40.8534443Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_complex_float.h' 2025-06-01T21:27:40.8539977Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_convert.h' 2025-06-01T21:27:40.8545749Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_double.h' 2025-06-01T21:27:40.8555028Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_float.h' 2025-06-01T21:27:40.8562969Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_float8.h' 2025-06-01T21:27:40.8575804Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_int.h' 2025-06-01T21:27:40.8582353Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_mask.h' 2025-06-01T21:27:40.8593517Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_qint.h' 2025-06-01T21:27:40.8599285Z adding 'torch/include/ATen/cuda/ATenCUDAGeneral.h' 2025-06-01T21:27:40.8602527Z adding 'torch/include/ATen/cuda/ApplyGridUtils.cuh' 2025-06-01T21:27:40.8606012Z adding 'torch/include/ATen/cuda/AsmUtils.cuh' 2025-06-01T21:27:40.8613043Z adding 'torch/include/ATen/cuda/Atomic.cuh' 2025-06-01T21:27:40.8621510Z adding 'torch/include/ATen/cuda/CUDAApplyUtils.cuh' 2025-06-01T21:27:40.8627235Z adding 'torch/include/ATen/cuda/CUDABlas.h' 2025-06-01T21:27:40.8630897Z adding 'torch/include/ATen/cuda/CUDAConfig.h' 2025-06-01T21:27:40.8633837Z adding 'torch/include/ATen/cuda/CUDAContext.h' 2025-06-01T21:27:40.8637504Z adding 'torch/include/ATen/cuda/CUDAContextLight.h' 2025-06-01T21:27:40.8640889Z adding 'torch/include/ATen/cuda/CUDADataType.h' 2025-06-01T21:27:40.8643984Z adding 'torch/include/ATen/cuda/CUDADevice.h' 2025-06-01T21:27:40.8648604Z adding 'torch/include/ATen/cuda/CUDAEvent.h' 2025-06-01T21:27:40.8653215Z adding 'torch/include/ATen/cuda/CUDAGeneratorImpl.h' 2025-06-01T21:27:40.8657302Z adding 'torch/include/ATen/cuda/CUDAGraph.h' 2025-06-01T21:27:40.8660887Z adding 'torch/include/ATen/cuda/CUDAGraphsUtils.cuh' 2025-06-01T21:27:40.8664225Z adding 'torch/include/ATen/cuda/CUDASparse.h' 2025-06-01T21:27:40.8668897Z adding 'torch/include/ATen/cuda/CUDASparseBlas.h' 2025-06-01T21:27:40.8673787Z adding 'torch/include/ATen/cuda/CUDASparseDescriptors.h' 2025-06-01T21:27:40.8677131Z adding 'torch/include/ATen/cuda/CUDATensorMethods.cuh' 2025-06-01T21:27:40.8680115Z adding 'torch/include/ATen/cuda/CUDAUtils.h' 2025-06-01T21:27:40.8683744Z adding 'torch/include/ATen/cuda/CachingHostAllocator.h' 2025-06-01T21:27:40.8687253Z adding 'torch/include/ATen/cuda/DeviceUtils.cuh' 2025-06-01T21:27:40.8690594Z adding 'torch/include/ATen/cuda/EmptyTensor.h' 2025-06-01T21:27:40.8695481Z adding 'torch/include/ATen/cuda/Exceptions.h' 2025-06-01T21:27:40.8699621Z adding 'torch/include/ATen/cuda/NumericLimits.cuh' 2025-06-01T21:27:40.8702887Z adding 'torch/include/ATen/cuda/PeerToPeerAccess.h' 2025-06-01T21:27:40.8705746Z adding 'torch/include/ATen/cuda/PhiloxCudaState.h' 2025-06-01T21:27:40.8708530Z adding 'torch/include/ATen/cuda/PhiloxUtils.cuh' 2025-06-01T21:27:40.8711732Z adding 'torch/include/ATen/cuda/PinnedMemoryAllocator.h' 2025-06-01T21:27:40.8715069Z adding 'torch/include/ATen/cuda/ScanUtils.cuh' 2025-06-01T21:27:40.8718268Z adding 'torch/include/ATen/cuda/Sleep.h' 2025-06-01T21:27:40.8721346Z adding 'torch/include/ATen/cuda/ThrustAllocator.h' 2025-06-01T21:27:40.8724896Z adding 'torch/include/ATen/cuda/cub-RadixSortPairs.cuh' 2025-06-01T21:27:40.8732688Z adding 'torch/include/ATen/cuda/cub.cuh' 2025-06-01T21:27:40.8737080Z adding 'torch/include/ATen/cuda/cub.h' 2025-06-01T21:27:40.8740537Z adding 'torch/include/ATen/cuda/cub_definitions.cuh' 2025-06-01T21:27:40.8743685Z adding 'torch/include/ATen/cuda/jiterator.h' 2025-06-01T21:27:40.8748058Z adding 'torch/include/ATen/cuda/jiterator_impl.h' 2025-06-01T21:27:40.8751332Z adding 'torch/include/ATen/cuda/llvm_jit_strings.h' 2025-06-01T21:27:40.8755955Z adding 'torch/include/ATen/cuda/detail/CUDAHooks.h' 2025-06-01T21:27:40.8761205Z adding 'torch/include/ATen/cuda/detail/DeviceThreadHandles.h' 2025-06-01T21:27:40.8764745Z adding 'torch/include/ATen/cuda/detail/IndexUtils.cuh' 2025-06-01T21:27:40.8768936Z adding 'torch/include/ATen/cuda/detail/IntegerDivider.cuh' 2025-06-01T21:27:40.8772389Z adding 'torch/include/ATen/cuda/detail/KernelUtils.h' 2025-06-01T21:27:40.8775459Z adding 'torch/include/ATen/cuda/detail/LazyNVRTC.h' 2025-06-01T21:27:40.8779384Z adding 'torch/include/ATen/cuda/detail/OffsetCalculator.cuh' 2025-06-01T21:27:40.8783386Z adding 'torch/include/ATen/cuda/detail/PhiloxCudaStateRaw.cuh' 2025-06-01T21:27:40.8787196Z adding 'torch/include/ATen/cuda/detail/TensorInfo.cuh' 2025-06-01T21:27:40.8790777Z adding 'torch/include/ATen/cuda/detail/UnpackRaw.cuh' 2025-06-01T21:27:40.8798358Z adding 'torch/include/ATen/cuda/tunable/GemmCommon.h' 2025-06-01T21:27:40.8806166Z adding 'torch/include/ATen/cuda/tunable/GemmHipblaslt.h' 2025-06-01T21:27:40.8811713Z adding 'torch/include/ATen/cuda/tunable/GemmRocblas.h' 2025-06-01T21:27:40.8815150Z adding 'torch/include/ATen/cuda/tunable/StreamTimer.h' 2025-06-01T21:27:40.8820307Z adding 'torch/include/ATen/cuda/tunable/Tunable.h' 2025-06-01T21:27:40.8825261Z adding 'torch/include/ATen/cuda/tunable/TunableGemm.h' 2025-06-01T21:27:40.8831976Z adding 'torch/include/ATen/cuda/tunable/TunableOp.h' 2025-06-01T21:27:40.8839922Z adding 'torch/include/ATen/cudnn/Descriptors.h' 2025-06-01T21:27:40.8845444Z adding 'torch/include/ATen/cudnn/Handle.h' 2025-06-01T21:27:40.8846758Z adding 'torch/include/ATen/cudnn/Handles.h' 2025-06-01T21:27:40.8849559Z adding 'torch/include/ATen/cudnn/Types.h' 2025-06-01T21:27:40.8852781Z adding 'torch/include/ATen/cudnn/Utils.h' 2025-06-01T21:27:40.8855839Z adding 'torch/include/ATen/cudnn/cudnn-wrapper.h' 2025-06-01T21:27:40.8860695Z adding 'torch/include/ATen/detail/AcceleratorHooksInterface.h' 2025-06-01T21:27:40.8865615Z adding 'torch/include/ATen/detail/CUDAHooksInterface.h' 2025-06-01T21:27:40.8874233Z adding 'torch/include/ATen/detail/FunctionTraits.h' 2025-06-01T21:27:40.8875057Z adding 'torch/include/ATen/detail/HIPHooksInterface.h' 2025-06-01T21:27:40.8878396Z adding 'torch/include/ATen/detail/HPUHooksInterface.h' 2025-06-01T21:27:40.8881998Z adding 'torch/include/ATen/detail/IPUHooksInterface.h' 2025-06-01T21:27:40.8885014Z adding 'torch/include/ATen/detail/MAIAHooksInterface.h' 2025-06-01T21:27:40.8888559Z adding 'torch/include/ATen/detail/MPSHooksInterface.h' 2025-06-01T21:27:40.8892351Z adding 'torch/include/ATen/detail/MTIAHooksInterface.h' 2025-06-01T21:27:40.8896007Z adding 'torch/include/ATen/detail/PrivateUse1HooksInterface.h' 2025-06-01T21:27:40.8899411Z adding 'torch/include/ATen/detail/XPUHooksInterface.h' 2025-06-01T21:27:40.8903897Z adding 'torch/include/ATen/functorch/ADInterpreters.h' 2025-06-01T21:27:40.8910619Z adding 'torch/include/ATen/functorch/BatchRulesHelper.h' 2025-06-01T21:27:40.8914805Z adding 'torch/include/ATen/functorch/BatchedFallback.h' 2025-06-01T21:27:40.8919544Z adding 'torch/include/ATen/functorch/BatchedTensorImpl.h' 2025-06-01T21:27:40.8923634Z adding 'torch/include/ATen/functorch/BatchingMetaprogramming.h' 2025-06-01T21:27:40.8927983Z adding 'torch/include/ATen/functorch/DynamicLayer.h' 2025-06-01T21:27:40.8931558Z adding 'torch/include/ATen/functorch/FunctionalizeInterpreter.h' 2025-06-01T21:27:40.8937608Z adding 'torch/include/ATen/functorch/Interpreter.h' 2025-06-01T21:27:40.8943314Z adding 'torch/include/ATen/functorch/LegacyVmapTransforms.h' 2025-06-01T21:27:40.8946263Z adding 'torch/include/ATen/functorch/Macros.h' 2025-06-01T21:27:40.8949935Z adding 'torch/include/ATen/functorch/PlumbingHelper.h' 2025-06-01T21:27:40.8954087Z adding 'torch/include/ATen/functorch/TensorWrapper.h' 2025-06-01T21:27:40.8957380Z adding 'torch/include/ATen/functorch/VmapInterpreter.h' 2025-06-01T21:27:40.8962253Z adding 'torch/include/ATen/hip/impl/HIPAllocatorMasqueradingAsCUDA.h' 2025-06-01T21:27:40.8965407Z adding 'torch/include/ATen/hip/impl/HIPCachingAllocatorMasqueradingAsCUDA.h' 2025-06-01T21:27:40.8971372Z adding 'torch/include/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h' 2025-06-01T21:27:40.8975659Z adding 'torch/include/ATen/hip/impl/HIPStreamMasqueradingAsCUDA.h' 2025-06-01T21:27:40.8979530Z adding 'torch/include/ATen/metal/Context.h' 2025-06-01T21:27:40.8984642Z adding 'torch/include/ATen/miopen/Descriptors.h' 2025-06-01T21:27:40.8988179Z adding 'torch/include/ATen/miopen/Exceptions.h' 2025-06-01T21:27:40.8991249Z adding 'torch/include/ATen/miopen/Handle.h' 2025-06-01T21:27:40.8994223Z adding 'torch/include/ATen/miopen/Types.h' 2025-06-01T21:27:40.8997115Z adding 'torch/include/ATen/miopen/Utils.h' 2025-06-01T21:27:40.9000163Z adding 'torch/include/ATen/miopen/miopen-wrapper.h' 2025-06-01T21:27:40.9004102Z adding 'torch/include/ATen/mps/EmptyTensor.h' 2025-06-01T21:27:40.9007979Z adding 'torch/include/ATen/mps/IndexKernels.h' 2025-06-01T21:27:40.9016635Z adding 'torch/include/ATen/mps/MPSAllocator.h' 2025-06-01T21:27:40.9020682Z adding 'torch/include/ATen/mps/MPSAllocatorInterface.h' 2025-06-01T21:27:40.9024124Z adding 'torch/include/ATen/mps/MPSDevice.h' 2025-06-01T21:27:40.9027831Z adding 'torch/include/ATen/mps/MPSEvent.h' 2025-06-01T21:27:40.9031998Z adding 'torch/include/ATen/mps/MPSGeneratorImpl.h' 2025-06-01T21:27:40.9036201Z adding 'torch/include/ATen/mps/MPSGuardImpl.h' 2025-06-01T21:27:40.9039671Z adding 'torch/include/ATen/mps/MPSHooks.h' 2025-06-01T21:27:40.9046949Z adding 'torch/include/ATen/mps/MPSProfiler.h' 2025-06-01T21:27:40.9051290Z adding 'torch/include/ATen/mps/MPSStream.h' 2025-06-01T21:27:40.9057504Z adding 'torch/include/ATen/native/Activation.h' 2025-06-01T21:27:40.9061073Z adding 'torch/include/ATen/native/AdaptivePooling.h' 2025-06-01T21:27:40.9064176Z adding 'torch/include/ATen/native/AmpKernels.h' 2025-06-01T21:27:40.9068609Z adding 'torch/include/ATen/native/BatchLinearAlgebra.h' 2025-06-01T21:27:40.9072646Z adding 'torch/include/ATen/native/BinaryOps.h' 2025-06-01T21:27:40.9077474Z adding 'torch/include/ATen/native/BucketizationUtils.h' 2025-06-01T21:27:40.9081945Z adding 'torch/include/ATen/native/CPUBlas.h' 2025-06-01T21:27:40.9085570Z adding 'torch/include/ATen/native/CPUFallback.h' 2025-06-01T21:27:40.9089103Z adding 'torch/include/ATen/native/CanUse32BitIndexMath.h' 2025-06-01T21:27:40.9092727Z adding 'torch/include/ATen/native/ComplexHelper.h' 2025-06-01T21:27:40.9095876Z adding 'torch/include/ATen/native/CompositeRandomAccessor.h' 2025-06-01T21:27:40.9100220Z adding 'torch/include/ATen/native/CompositeRandomAccessorCommon.h' 2025-06-01T21:27:40.9106919Z adding 'torch/include/ATen/native/ConvUtils.h' 2025-06-01T21:27:40.9110540Z adding 'torch/include/ATen/native/ConvolutionMM3d.h' 2025-06-01T21:27:40.9113570Z adding 'torch/include/ATen/native/Copy.h' 2025-06-01T21:27:40.9116494Z adding 'torch/include/ATen/native/Cross.h' 2025-06-01T21:27:40.9120784Z adding 'torch/include/ATen/native/DilatedConvolutionUtils.h' 2025-06-01T21:27:40.9126824Z adding 'torch/include/ATen/native/DispatchStub.h' 2025-06-01T21:27:40.9130312Z adding 'torch/include/ATen/native/Distance.h' 2025-06-01T21:27:40.9136867Z adding 'torch/include/ATen/native/DistributionTemplates.h' 2025-06-01T21:27:40.9145924Z adding 'torch/include/ATen/native/Distributions.h' 2025-06-01T21:27:40.9150594Z adding 'torch/include/ATen/native/EmbeddingBag.h' 2025-06-01T21:27:40.9153728Z adding 'torch/include/ATen/native/Fill.h' 2025-06-01T21:27:40.9160217Z adding 'torch/include/ATen/native/ForeachUtils.h' 2025-06-01T21:27:40.9163991Z adding 'torch/include/ATen/native/FractionalMaxPooling.h' 2025-06-01T21:27:40.9167059Z adding 'torch/include/ATen/native/FunctionOfAMatrixUtils.h' 2025-06-01T21:27:40.9170002Z adding 'torch/include/ATen/native/FusedAdagrad.h' 2025-06-01T21:27:40.9173006Z adding 'torch/include/ATen/native/FusedAdam.h' 2025-06-01T21:27:40.9175963Z adding 'torch/include/ATen/native/FusedSGD.h' 2025-06-01T21:27:40.9179000Z adding 'torch/include/ATen/native/Gelu.h' 2025-06-01T21:27:40.9183834Z adding 'torch/include/ATen/native/GridSampler.h' 2025-06-01T21:27:40.9187666Z adding 'torch/include/ATen/native/GridSamplerUtils.h' 2025-06-01T21:27:40.9190984Z adding 'torch/include/ATen/native/Histogram.h' 2025-06-01T21:27:40.9194234Z adding 'torch/include/ATen/native/IndexKernel.h' 2025-06-01T21:27:40.9198597Z adding 'torch/include/ATen/native/IndexingUtils.h' 2025-06-01T21:27:40.9202119Z adding 'torch/include/ATen/native/Lerp.h' 2025-06-01T21:27:40.9205173Z adding 'torch/include/ATen/native/LinearAlgebra.h' 2025-06-01T21:27:40.9216109Z adding 'torch/include/ATen/native/LinearAlgebraUtils.h' 2025-06-01T21:27:40.9220164Z adding 'torch/include/ATen/native/LossMulti.h' 2025-06-01T21:27:40.9267043Z adding 'torch/include/ATen/native/Math.h' 2025-06-01T21:27:40.9273900Z adding 'torch/include/ATen/native/MathBitFallThroughLists.h' 2025-06-01T21:27:40.9278820Z adding 'torch/include/ATen/native/MathBitsFallback.h' 2025-06-01T21:27:40.9282702Z adding 'torch/include/ATen/native/MaxPooling.h' 2025-06-01T21:27:40.9286199Z adding 'torch/include/ATen/native/NonEmptyUtils.h' 2025-06-01T21:27:40.9289715Z adding 'torch/include/ATen/native/NonSymbolicBC.h' 2025-06-01T21:27:40.9292910Z adding 'torch/include/ATen/native/Normalization.h' 2025-06-01T21:27:40.9296319Z adding 'torch/include/ATen/native/Padding.h' 2025-06-01T21:27:40.9299700Z adding 'torch/include/ATen/native/PixelShuffle.h' 2025-06-01T21:27:40.9302786Z adding 'torch/include/ATen/native/PointwiseOps.h' 2025-06-01T21:27:40.9308641Z adding 'torch/include/ATen/native/Pool.h' 2025-06-01T21:27:40.9312796Z adding 'torch/include/ATen/native/Pow.h' 2025-06-01T21:27:40.9316617Z adding 'torch/include/ATen/native/RNN.h' 2025-06-01T21:27:40.9320084Z adding 'torch/include/ATen/native/RangeFactories.h' 2025-06-01T21:27:40.9323825Z adding 'torch/include/ATen/native/RangeUtils.h' 2025-06-01T21:27:40.9327163Z adding 'torch/include/ATen/native/ReduceAllOps.h' 2025-06-01T21:27:40.9330428Z adding 'torch/include/ATen/native/ReduceOps.h' 2025-06-01T21:27:40.9336884Z adding 'torch/include/ATen/native/ReduceOpsUtils.h' 2025-06-01T21:27:40.9340612Z adding 'torch/include/ATen/native/ReductionType.h' 2025-06-01T21:27:40.9343873Z adding 'torch/include/ATen/native/Repeat.h' 2025-06-01T21:27:40.9349069Z adding 'torch/include/ATen/native/Resize.h' 2025-06-01T21:27:40.9353171Z adding 'torch/include/ATen/native/ResizeCommon.h' 2025-06-01T21:27:40.9356946Z adding 'torch/include/ATen/native/ScatterGatherChecks.h' 2025-06-01T21:27:40.9360103Z adding 'torch/include/ATen/native/SegmentReduce.h' 2025-06-01T21:27:40.9365881Z adding 'torch/include/ATen/native/SharedReduceOps.h' 2025-06-01T21:27:40.9369703Z adding 'torch/include/ATen/native/SobolEngineOpsUtils.h' 2025-06-01T21:27:40.9372750Z adding 'torch/include/ATen/native/Sorting.h' 2025-06-01T21:27:40.9376097Z adding 'torch/include/ATen/native/SortingUtils.h' 2025-06-01T21:27:40.9380748Z adding 'torch/include/ATen/native/SparseTensorUtils.h' 2025-06-01T21:27:40.9384798Z adding 'torch/include/ATen/native/SpectralOpsUtils.h' 2025-06-01T21:27:40.9388843Z adding 'torch/include/ATen/native/StridedRandomAccessor.h' 2025-06-01T21:27:40.9392480Z adding 'torch/include/ATen/native/TensorAdvancedIndexing.h' 2025-06-01T21:27:40.9396377Z adding 'torch/include/ATen/native/TensorAdvancedIndexingUtils.h' 2025-06-01T21:27:40.9399637Z adding 'torch/include/ATen/native/TensorCompare.h' 2025-06-01T21:27:40.9402634Z adding 'torch/include/ATen/native/TensorConversions.h' 2025-06-01T21:27:40.9405915Z adding 'torch/include/ATen/native/TensorDimApply.h' 2025-06-01T21:27:40.9410170Z adding 'torch/include/ATen/native/TensorFactories.h' 2025-06-01T21:27:40.9413184Z adding 'torch/include/ATen/native/TensorIterator.h' 2025-06-01T21:27:40.9416540Z adding 'torch/include/ATen/native/TensorIteratorDynamicCasting.h' 2025-06-01T21:27:40.9419419Z adding 'torch/include/ATen/native/TensorProperties.h' 2025-06-01T21:27:40.9423338Z adding 'torch/include/ATen/native/TensorShape.h' 2025-06-01T21:27:40.9426643Z adding 'torch/include/ATen/native/TensorTransformations.h' 2025-06-01T21:27:40.9430062Z adding 'torch/include/ATen/native/TopKImpl.h' 2025-06-01T21:27:40.9433316Z adding 'torch/include/ATen/native/TransposeType.h' 2025-06-01T21:27:40.9436728Z adding 'torch/include/ATen/native/TriangularOpsUtils.h' 2025-06-01T21:27:40.9439736Z adding 'torch/include/ATen/native/TypeProperties.h' 2025-06-01T21:27:40.9443474Z adding 'torch/include/ATen/native/UnaryOps.h' 2025-06-01T21:27:40.9446623Z adding 'torch/include/ATen/native/Unfold2d.h' 2025-06-01T21:27:40.9449588Z adding 'torch/include/ATen/native/Unfold3d.h' 2025-06-01T21:27:40.9453250Z adding 'torch/include/ATen/native/UnfoldBackward.h' 2025-06-01T21:27:40.9460424Z adding 'torch/include/ATen/native/UpSample.h' 2025-06-01T21:27:40.9464134Z adding 'torch/include/ATen/native/batch_norm.h' 2025-06-01T21:27:40.9467347Z adding 'torch/include/ATen/native/group_norm.h' 2025-06-01T21:27:40.9471149Z adding 'torch/include/ATen/native/im2col.h' 2025-06-01T21:27:40.9475426Z adding 'torch/include/ATen/native/im2col_shape_check.h' 2025-06-01T21:27:40.9479416Z adding 'torch/include/ATen/native/layer_norm.h' 2025-06-01T21:27:40.9482453Z adding 'torch/include/ATen/native/verbose_wrapper.h' 2025-06-01T21:27:40.9485821Z adding 'torch/include/ATen/native/vol2col.h' 2025-06-01T21:27:40.9491587Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/fbgemm_utils.h' 2025-06-01T21:27:40.9495253Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/packed_params.h' 2025-06-01T21:27:40.9498962Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/qnnpack_utils.h' 2025-06-01T21:27:40.9503486Z adding 'torch/include/ATen/native/cpu/AtomicAddFloat.h' 2025-06-01T21:27:40.9506442Z adding 'torch/include/ATen/native/cpu/CatKernel.h' 2025-06-01T21:27:40.9509457Z adding 'torch/include/ATen/native/cpu/ChannelShuffleKernel.h' 2025-06-01T21:27:40.9512459Z adding 'torch/include/ATen/native/cpu/CopyKernel.h' 2025-06-01T21:27:40.9515484Z adding 'torch/include/ATen/native/cpu/DepthwiseConvKernel.h' 2025-06-01T21:27:40.9521086Z adding 'torch/include/ATen/native/cpu/DistributionTemplates.h' 2025-06-01T21:27:40.9525027Z adding 'torch/include/ATen/native/cpu/Elu.h' 2025-06-01T21:27:40.9528492Z adding 'torch/include/ATen/native/cpu/Gelu.h' 2025-06-01T21:27:40.9531688Z adding 'torch/include/ATen/native/cpu/GridSamplerKernel.h' 2025-06-01T21:27:40.9535374Z adding 'torch/include/ATen/native/cpu/IndexKernelUtils.h' 2025-06-01T21:27:40.9538597Z adding 'torch/include/ATen/native/cpu/Intrinsics.h' 2025-06-01T21:27:40.9541922Z adding 'torch/include/ATen/native/cpu/IsContiguous.h' 2025-06-01T21:27:40.9545392Z adding 'torch/include/ATen/native/cpu/LogAddExp.h' 2025-06-01T21:27:40.9551464Z adding 'torch/include/ATen/native/cpu/Loops.h' 2025-06-01T21:27:40.9554871Z adding 'torch/include/ATen/native/cpu/MaxUnpoolKernel.h' 2025-06-01T21:27:40.9557815Z adding 'torch/include/ATen/native/cpu/PixelShuffleKernel.h' 2025-06-01T21:27:40.9563537Z adding 'torch/include/ATen/native/cpu/Reduce.h' 2025-06-01T21:27:40.9568775Z adding 'torch/include/ATen/native/cpu/ReduceUtils.h' 2025-06-01T21:27:40.9572368Z adding 'torch/include/ATen/native/cpu/ReducedPrecisionFloatGemvFastPathKernel.h' 2025-06-01T21:27:40.9575366Z adding 'torch/include/ATen/native/cpu/SampledAddmmKernel.h' 2025-06-01T21:27:40.9579646Z adding 'torch/include/ATen/native/cpu/SerialStackImpl.h' 2025-06-01T21:27:40.9583008Z adding 'torch/include/ATen/native/cpu/SoftmaxKernel.h' 2025-06-01T21:27:40.9586505Z adding 'torch/include/ATen/native/cpu/SpmmReduceKernel.h' 2025-06-01T21:27:40.9589583Z adding 'torch/include/ATen/native/cpu/StackKernel.h' 2025-06-01T21:27:40.9605411Z adding 'torch/include/ATen/native/cpu/UpSampleKernelAVXAntialias.h' 2025-06-01T21:27:40.9609881Z adding 'torch/include/ATen/native/cpu/WeightNormKernel.h' 2025-06-01T21:27:40.9616501Z adding 'torch/include/ATen/native/cpu/avx_mathfun.h' 2025-06-01T21:27:40.9620203Z adding 'torch/include/ATen/native/cpu/int_mm_kernel.h' 2025-06-01T21:27:40.9623471Z adding 'torch/include/ATen/native/cpu/mixed_data_type.h' 2025-06-01T21:27:40.9627967Z adding 'torch/include/ATen/native/cpu/moments_utils.h' 2025-06-01T21:27:40.9632774Z adding 'torch/include/ATen/native/cpu/utils.h' 2025-06-01T21:27:40.9636898Z adding 'torch/include/ATen/native/cpu/zmath.h' 2025-06-01T21:27:40.9642354Z adding 'torch/include/ATen/native/cuda/Activation.h' 2025-06-01T21:27:40.9645677Z adding 'torch/include/ATen/native/cuda/BinaryInternal.h' 2025-06-01T21:27:40.9651433Z adding 'torch/include/ATen/native/cuda/CUDAJitLoops.cuh' 2025-06-01T21:27:40.9662233Z adding 'torch/include/ATen/native/cuda/CUDALoops.cuh' 2025-06-01T21:27:40.9666460Z adding 'torch/include/ATen/native/cuda/CompositeRandomAccessor.h' 2025-06-01T21:27:40.9669346Z adding 'torch/include/ATen/native/cuda/Copy.h' 2025-06-01T21:27:40.9677547Z adding 'torch/include/ATen/native/cuda/CuFFTPlanCache.h' 2025-06-01T21:27:40.9681332Z adding 'torch/include/ATen/native/cuda/CuFFTUtils.h' 2025-06-01T21:27:40.9724882Z adding 'torch/include/ATen/native/cuda/DeviceSqrt.cuh' 2025-06-01T21:27:40.9734100Z adding 'torch/include/ATen/native/cuda/DistributionTemplates.h' 2025-06-01T21:27:40.9737989Z adding 'torch/include/ATen/native/cuda/Distributions.h' 2025-06-01T21:27:40.9741218Z adding 'torch/include/ATen/native/cuda/EmbeddingBackwardKernel.cuh' 2025-06-01T21:27:40.9746717Z adding 'torch/include/ATen/native/cuda/ForeachFunctors.cuh' 2025-06-01T21:27:40.9750644Z adding 'torch/include/ATen/native/cuda/ForeachMinMaxFunctors.cuh' 2025-06-01T21:27:40.9755686Z adding 'torch/include/ATen/native/cuda/GridSampler.cuh' 2025-06-01T21:27:40.9759256Z adding 'torch/include/ATen/native/cuda/GridSampler.h' 2025-06-01T21:27:40.9762275Z adding 'torch/include/ATen/native/cuda/GroupMM.h' 2025-06-01T21:27:40.9766330Z adding 'torch/include/ATen/native/cuda/GroupMMCommon.cuh' 2025-06-01T21:27:40.9769452Z adding 'torch/include/ATen/native/cuda/IndexKernel.h' 2025-06-01T21:27:40.9772984Z adding 'torch/include/ATen/native/cuda/IndexKernelUtils.h' 2025-06-01T21:27:40.9777742Z adding 'torch/include/ATen/native/cuda/JitLoops.cuh' 2025-06-01T21:27:40.9783619Z adding 'torch/include/ATen/native/cuda/KernelUtils.cuh' 2025-06-01T21:27:40.9786949Z adding 'torch/include/ATen/native/cuda/LaunchUtils.h' 2025-06-01T21:27:40.9792397Z adding 'torch/include/ATen/native/cuda/Loops.cuh' 2025-06-01T21:27:40.9828003Z adding 'torch/include/ATen/native/cuda/Math.cuh' 2025-06-01T21:27:40.9839026Z adding 'torch/include/ATen/native/cuda/MemoryAccess.cuh' 2025-06-01T21:27:40.9842998Z adding 'torch/include/ATen/native/cuda/MiscUtils.h' 2025-06-01T21:27:40.9848449Z adding 'torch/include/ATen/native/cuda/MultiTensorApply.cuh' 2025-06-01T21:27:40.9867127Z adding 'torch/include/ATen/native/cuda/Normalization.cuh' 2025-06-01T21:27:40.9874958Z adding 'torch/include/ATen/native/cuda/PersistentSoftmax.cuh' 2025-06-01T21:27:40.9878779Z adding 'torch/include/ATen/native/cuda/Pow.cuh' 2025-06-01T21:27:40.9882347Z adding 'torch/include/ATen/native/cuda/Randperm.cuh' 2025-06-01T21:27:40.9899938Z adding 'torch/include/ATen/native/cuda/Reduce.cuh' 2025-06-01T21:27:40.9904327Z adding 'torch/include/ATen/native/cuda/ReduceOps.h' 2025-06-01T21:27:40.9908130Z adding 'torch/include/ATen/native/cuda/Resize.h' 2025-06-01T21:27:40.9911639Z adding 'torch/include/ATen/native/cuda/RowwiseScaledMM.h' 2025-06-01T21:27:40.9914940Z adding 'torch/include/ATen/native/cuda/ScaledGroupMM.h' 2025-06-01T21:27:40.9918320Z adding 'torch/include/ATen/native/cuda/ScanKernels.h' 2025-06-01T21:27:40.9925345Z adding 'torch/include/ATen/native/cuda/ScanUtils.cuh' 2025-06-01T21:27:40.9928783Z adding 'torch/include/ATen/native/cuda/Sort.h' 2025-06-01T21:27:40.9931821Z adding 'torch/include/ATen/native/cuda/SortStable.h' 2025-06-01T21:27:40.9937255Z adding 'torch/include/ATen/native/cuda/SortUtils.cuh' 2025-06-01T21:27:40.9940562Z adding 'torch/include/ATen/native/cuda/Sorting.h' 2025-06-01T21:27:40.9944842Z adding 'torch/include/ATen/native/cuda/SortingCommon.cuh' 2025-06-01T21:27:40.9951029Z adding 'torch/include/ATen/native/cuda/SortingRadixSelect.cuh' 2025-06-01T21:27:40.9958536Z adding 'torch/include/ATen/native/cuda/TensorModeKernel.cuh' 2025-06-01T21:27:40.9961968Z adding 'torch/include/ATen/native/cuda/TensorModeKernel.h' 2025-06-01T21:27:40.9964860Z adding 'torch/include/ATen/native/cuda/TensorTopK.h' 2025-06-01T21:27:40.9967771Z adding 'torch/include/ATen/native/cuda/UniqueCub.cuh' 2025-06-01T21:27:40.9973070Z adding 'torch/include/ATen/native/cuda/UpSample.cuh' 2025-06-01T21:27:40.9977109Z adding 'torch/include/ATen/native/cuda/block_reduce.cuh' 2025-06-01T21:27:40.9980492Z adding 'torch/include/ATen/native/cuda/cutlass_common.cuh' 2025-06-01T21:27:40.9983573Z adding 'torch/include/ATen/native/cuda/fused_adam_amsgrad_impl.cuh' 2025-06-01T21:27:40.9986516Z adding 'torch/include/ATen/native/cuda/fused_adam_impl.cuh' 2025-06-01T21:27:40.9991181Z adding 'torch/include/ATen/native/cuda/fused_adam_utils.cuh' 2025-06-01T21:27:40.9994562Z adding 'torch/include/ATen/native/cuda/fused_adamw_amsgrad_impl.cuh' 2025-06-01T21:27:40.9997528Z adding 'torch/include/ATen/native/cuda/fused_adamw_impl.cuh' 2025-06-01T21:27:41.0002137Z adding 'torch/include/ATen/native/cuda/im2col.cuh' 2025-06-01T21:27:41.0006916Z adding 'torch/include/ATen/native/cuda/jit_utils.h' 2025-06-01T21:27:41.0015074Z adding 'torch/include/ATen/native/cuda/reduction_template.cuh' 2025-06-01T21:27:41.0018715Z adding 'torch/include/ATen/native/cuda/thread_constants.h' 2025-06-01T21:27:41.0023517Z adding 'torch/include/ATen/native/cuda/vol2col.cuh' 2025-06-01T21:27:41.0027803Z adding 'torch/include/ATen/native/hip/ck_bgemm.h' 2025-06-01T21:27:41.0030930Z adding 'torch/include/ATen/native/hip/ck_gemm.h' 2025-06-01T21:27:41.0036188Z adding 'torch/include/ATen/native/hip/ck_gemm_template.h' 2025-06-01T21:27:41.0039923Z adding 'torch/include/ATen/native/hip/ck_types.h' 2025-06-01T21:27:41.0044335Z adding 'torch/include/ATen/native/hip/bgemm_kernels/bgemm_kernel_collection.h' 2025-06-01T21:27:41.0048868Z adding 'torch/include/ATen/native/hip/bgemm_kernels/bgemm_kernel_template.h' 2025-06-01T21:27:41.0053159Z adding 'torch/include/ATen/native/kleidiai/kai_kernels.h' 2025-06-01T21:27:41.0056618Z adding 'torch/include/ATen/native/kleidiai/kai_pack.h' 2025-06-01T21:27:41.0060552Z adding 'torch/include/ATen/native/kleidiai/kai_ukernel_interface.h' 2025-06-01T21:27:41.0065599Z adding 'torch/include/ATen/native/mkldnn/xpu/FusionUtils.h' 2025-06-01T21:27:41.0073640Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/Attr.h' 2025-06-01T21:27:41.0081168Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/DnnlExt.h' 2025-06-01T21:27:41.0085221Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/LRUCache.h' 2025-06-01T21:27:41.0089265Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/Utils.h' 2025-06-01T21:27:41.0093374Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/oneDNN.h' 2025-06-01T21:27:41.0097198Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/oneDNNContext.h' 2025-06-01T21:27:41.0101271Z adding 'torch/include/ATen/native/mps/Copy.h' 2025-06-01T21:27:41.0104760Z adding 'torch/include/ATen/native/mps/MPSGraphSequoiaOps.h' 2025-06-01T21:27:41.0108100Z adding 'torch/include/ATen/native/mps/MPSGraphSonomaOps.h' 2025-06-01T21:27:41.0112628Z adding 'torch/include/ATen/native/mps/MPSGraphVenturaOps.h' 2025-06-01T21:27:41.0117213Z adding 'torch/include/ATen/native/mps/MetalShaderLibrary.h' 2025-06-01T21:27:41.0125970Z adding 'torch/include/ATen/native/mps/OperationUtils.h' 2025-06-01T21:27:41.0129682Z adding 'torch/include/ATen/native/mps/TensorFactory.h' 2025-06-01T21:27:41.0134038Z adding 'torch/include/ATen/native/mps/operations/BinaryKernel.h' 2025-06-01T21:27:41.0137168Z adding 'torch/include/ATen/native/mps/operations/FusedAdamAmsgradKernelImpl.h' 2025-06-01T21:27:41.0140282Z adding 'torch/include/ATen/native/mps/operations/FusedAdamKernelImpl.h' 2025-06-01T21:27:41.0143575Z adding 'torch/include/ATen/native/mps/operations/FusedAdamWAmsgradKernelImpl.h' 2025-06-01T21:27:41.0146656Z adding 'torch/include/ATen/native/mps/operations/FusedAdamWKernelImpl.h' 2025-06-01T21:27:41.0149639Z adding 'torch/include/ATen/native/mps/operations/Indexing.h' 2025-06-01T21:27:41.0155753Z adding 'torch/include/ATen/native/mps/operations/MultiTensorApply.h' 2025-06-01T21:27:41.0160200Z adding 'torch/include/ATen/native/nested/NestedTensorBinaryOps.h' 2025-06-01T21:27:41.0163942Z adding 'torch/include/ATen/native/nested/NestedTensorMath.h' 2025-06-01T21:27:41.0167722Z adding 'torch/include/ATen/native/nested/NestedTensorTransformerFunctions.h' 2025-06-01T21:27:41.0170976Z adding 'torch/include/ATen/native/nested/NestedTensorTransformerUtils.h' 2025-06-01T21:27:41.0177802Z adding 'torch/include/ATen/native/nested/NestedTensorUtils.h' 2025-06-01T21:27:41.0182611Z adding 'torch/include/ATen/native/quantized/AffineQuantizer.h' 2025-06-01T21:27:41.0186195Z adding 'torch/include/ATen/native/quantized/AffineQuantizerBase.h' 2025-06-01T21:27:41.0189552Z adding 'torch/include/ATen/native/quantized/ConvUtils.h' 2025-06-01T21:27:41.0192694Z adding 'torch/include/ATen/native/quantized/Copy.h' 2025-06-01T21:27:41.0195997Z adding 'torch/include/ATen/native/quantized/FakeQuantAffine.h' 2025-06-01T21:27:41.0199317Z adding 'torch/include/ATen/native/quantized/IndexKernel.h' 2025-06-01T21:27:41.0202996Z adding 'torch/include/ATen/native/quantized/PackedParams.h' 2025-06-01T21:27:41.0206083Z adding 'torch/include/ATen/native/quantized/library.h' 2025-06-01T21:27:41.0211848Z adding 'torch/include/ATen/native/quantized/cpu/ACLUtils.h' 2025-06-01T21:27:41.0215192Z adding 'torch/include/ATen/native/quantized/cpu/BinaryOps.h' 2025-06-01T21:27:41.0218341Z adding 'torch/include/ATen/native/quantized/cpu/EmbeddingPackedParams.h' 2025-06-01T21:27:41.0224155Z adding 'torch/include/ATen/native/quantized/cpu/OnednnUtils.h' 2025-06-01T21:27:41.0231723Z adding 'torch/include/ATen/native/quantized/cpu/QnnpackUtils.h' 2025-06-01T21:27:41.0237510Z adding 'torch/include/ATen/native/quantized/cpu/QuantUtils.h' 2025-06-01T21:27:41.0242160Z adding 'torch/include/ATen/native/quantized/cpu/QuantizedOps.h' 2025-06-01T21:27:41.0245509Z adding 'torch/include/ATen/native/quantized/cpu/RuyUtils.h' 2025-06-01T21:27:41.0250999Z adding 'torch/include/ATen/native/quantized/cpu/XnnpackUtils.h' 2025-06-01T21:27:41.0257125Z adding 'torch/include/ATen/native/quantized/cpu/conv_serialization.h' 2025-06-01T21:27:41.0262640Z adding 'torch/include/ATen/native/quantized/cpu/fbgemm_utils.h' 2025-06-01T21:27:41.0265872Z adding 'torch/include/ATen/native/quantized/cpu/init_qnnpack.h' 2025-06-01T21:27:41.0269225Z adding 'torch/include/ATen/native/quantized/cpu/qconv.h' 2025-06-01T21:27:41.0272642Z adding 'torch/include/ATen/native/quantized/cpu/qembeddingbag.h' 2025-06-01T21:27:41.0275689Z adding 'torch/include/ATen/native/quantized/cpu/qembeddingbag_prepack.h' 2025-06-01T21:27:41.0278932Z adding 'torch/include/ATen/native/quantized/cpu/qlinear.h' 2025-06-01T21:27:41.0284843Z adding 'torch/include/ATen/native/quantized/cudnn/utils.h' 2025-06-01T21:27:41.0289416Z adding 'torch/include/ATen/native/transformers/attention.h' 2025-06-01T21:27:41.0296897Z adding 'torch/include/ATen/native/transformers/sdp_utils_cpp.h' 2025-06-01T21:27:41.0301317Z adding 'torch/include/ATen/native/transformers/cuda/sdp_utils.h' 2025-06-01T21:27:41.0306029Z adding 'torch/include/ATen/native/transformers/cuda/flash_attn/flash_api.h' 2025-06-01T21:27:41.0309975Z adding 'torch/include/ATen/native/transformers/cuda/flash_attn/static_switch.h' 2025-06-01T21:27:41.0316291Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/debug_utils.h' 2025-06-01T21:27:41.0321186Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm_kernel_utils.h' 2025-06-01T21:27:41.0350603Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernel_backward.h' 2025-06-01T21:27:41.0370892Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernel_forward.h' 2025-06-01T21:27:41.0375367Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/pytorch_utils.h' 2025-06-01T21:27:41.0384015Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_pipelined.h' 2025-06-01T21:27:41.0389205Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_rescale_output.h' 2025-06-01T21:27:41.0393953Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_thread_apply_logsumexp.h' 2025-06-01T21:27:41.0398523Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma.h' 2025-06-01T21:27:41.0403076Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_base.h' 2025-06-01T21:27:41.0412032Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_multistage.h' 2025-06-01T21:27:41.0418912Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_pipelined.h' 2025-06-01T21:27:41.0423327Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/find_default_mma.h' 2025-06-01T21:27:41.0428741Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/mma_accum_lambda_iterator.h' 2025-06-01T21:27:41.0449042Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/mma_from_smem.h' 2025-06-01T21:27:41.0455889Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/default_warp_iterator_from_smem.h' 2025-06-01T21:27:41.0463338Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/epilogue_predicated_tile_iterator.h' 2025-06-01T21:27:41.0467179Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/make_residual_last.h' 2025-06-01T21:27:41.0479298Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_access_iterator_residual_last.h' 2025-06-01T21:27:41.0490903Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_iterator_residual_last.h' 2025-06-01T21:27:41.0495606Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/transpose_warp_iterator.h' 2025-06-01T21:27:41.0501088Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/warp_iterator_from_smem.h' 2025-06-01T21:27:41.0514890Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels/cutlassB.h' 2025-06-01T21:27:41.0522298Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels/cutlassF.h' 2025-06-01T21:27:41.0527232Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/transform/tile_smem_loader.h' 2025-06-01T21:27:41.0531643Z adding 'torch/include/ATen/native/transformers/hip/aotriton_adapter.h' 2025-06-01T21:27:41.0538115Z adding 'torch/include/ATen/native/transformers/hip/flash_attn/flash_api.h' 2025-06-01T21:27:41.0542732Z adding 'torch/include/ATen/native/transformers/hip/flash_attn/ck/me_ck_api.h' 2025-06-01T21:27:41.0546534Z adding 'torch/include/ATen/native/utils/Factory.h' 2025-06-01T21:27:41.0549778Z adding 'torch/include/ATen/native/utils/ParamUtils.h' 2025-06-01T21:27:41.0553425Z adding 'torch/include/ATen/native/utils/ParamsHash.h' 2025-06-01T21:27:41.0742819Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d.h' 2025-06-01T21:27:41.0746445Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward.h' 2025-06-01T21:27:41.0750015Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.0753346Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cpu_dispatch.h' 2025-06-01T21:27:41.0756466Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cuda_dispatch.h' 2025-06-01T21:27:41.0759983Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_native.h' 2025-06-01T21:27:41.0762981Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_ops.h' 2025-06-01T21:27:41.0766340Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.0769519Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_cpu_dispatch.h' 2025-06-01T21:27:41.0772835Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_cuda_dispatch.h' 2025-06-01T21:27:41.0775740Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_native.h' 2025-06-01T21:27:41.0778939Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_ops.h' 2025-06-01T21:27:41.0782430Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d.h' 2025-06-01T21:27:41.0785731Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward.h' 2025-06-01T21:27:41.0789119Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.0792409Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cpu_dispatch.h' 2025-06-01T21:27:41.0795875Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cuda_dispatch.h' 2025-06-01T21:27:41.0799250Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_native.h' 2025-06-01T21:27:41.0802906Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_ops.h' 2025-06-01T21:27:41.0806525Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.0809540Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_cpu_dispatch.h' 2025-06-01T21:27:41.0812794Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_cuda_dispatch.h' 2025-06-01T21:27:41.0815843Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_native.h' 2025-06-01T21:27:41.0819198Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_ops.h' 2025-06-01T21:27:41.0822273Z adding 'torch/include/ATen/ops/_add_batch_dim.h' 2025-06-01T21:27:41.0825783Z adding 'torch/include/ATen/ops/_add_batch_dim_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.0828682Z adding 'torch/include/ATen/ops/_add_batch_dim_native.h' 2025-06-01T21:27:41.0832074Z adding 'torch/include/ATen/ops/_add_batch_dim_ops.h' 2025-06-01T21:27:41.0835519Z adding 'torch/include/ATen/ops/_add_relu.h' 2025-06-01T21:27:41.0838667Z adding 'torch/include/ATen/ops/_add_relu_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.0841786Z adding 'torch/include/ATen/ops/_add_relu_cpu_dispatch.h' 2025-06-01T21:27:41.0844896Z adding 'torch/include/ATen/ops/_add_relu_meta_dispatch.h' 2025-06-01T21:27:41.0847870Z adding 'torch/include/ATen/ops/_add_relu_native.h' 2025-06-01T21:27:41.0851347Z adding 'torch/include/ATen/ops/_add_relu_ops.h' 2025-06-01T21:27:41.0854643Z adding 'torch/include/ATen/ops/_addmm_activation.h' 2025-06-01T21:27:41.0858216Z adding 'torch/include/ATen/ops/_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.0861184Z adding 'torch/include/ATen/ops/_addmm_activation_cpu_dispatch.h' 2025-06-01T21:27:41.0864275Z adding 'torch/include/ATen/ops/_addmm_activation_cuda_dispatch.h' 2025-06-01T21:27:41.0867294Z adding 'torch/include/ATen/ops/_addmm_activation_meta.h' 2025-06-01T21:27:41.0870408Z adding 'torch/include/ATen/ops/_addmm_activation_meta_dispatch.h' 2025-06-01T21:27:41.0873691Z adding 'torch/include/ATen/ops/_addmm_activation_native.h' 2025-06-01T21:27:41.0876869Z adding 'torch/include/ATen/ops/_addmm_activation_ops.h' 2025-06-01T21:27:41.0880043Z adding 'torch/include/ATen/ops/_aminmax.h' 2025-06-01T21:27:41.0883407Z adding 'torch/include/ATen/ops/_aminmax_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.0886467Z adding 'torch/include/ATen/ops/_aminmax_cpu_dispatch.h' 2025-06-01T21:27:41.0889624Z adding 'torch/include/ATen/ops/_aminmax_cuda_dispatch.h' 2025-06-01T21:27:41.0893159Z adding 'torch/include/ATen/ops/_aminmax_native.h' 2025-06-01T21:27:41.0895878Z adding 'torch/include/ATen/ops/_aminmax_ops.h' 2025-06-01T21:27:41.0899243Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale.h' 2025-06-01T21:27:41.0902581Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.0905564Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cpu_dispatch.h' 2025-06-01T21:27:41.0908656Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cuda_dispatch.h' 2025-06-01T21:27:41.0911825Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_native.h' 2025-06-01T21:27:41.0915204Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_ops.h' 2025-06-01T21:27:41.0918356Z adding 'torch/include/ATen/ops/_amp_update_scale.h' 2025-06-01T21:27:41.0921782Z adding 'torch/include/ATen/ops/_amp_update_scale_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.0924908Z adding 'torch/include/ATen/ops/_amp_update_scale_cpu_dispatch.h' 2025-06-01T21:27:41.0927976Z adding 'torch/include/ATen/ops/_amp_update_scale_cuda_dispatch.h' 2025-06-01T21:27:41.0931063Z adding 'torch/include/ATen/ops/_amp_update_scale_meta_dispatch.h' 2025-06-01T21:27:41.0934148Z adding 'torch/include/ATen/ops/_amp_update_scale_native.h' 2025-06-01T21:27:41.0937562Z adding 'torch/include/ATen/ops/_amp_update_scale_ops.h' 2025-06-01T21:27:41.0940668Z adding 'torch/include/ATen/ops/_assert_async.h' 2025-06-01T21:27:41.0944165Z adding 'torch/include/ATen/ops/_assert_async_cpu_dispatch.h' 2025-06-01T21:27:41.0947563Z adding 'torch/include/ATen/ops/_assert_async_cuda_dispatch.h' 2025-06-01T21:27:41.0950449Z adding 'torch/include/ATen/ops/_assert_async_native.h' 2025-06-01T21:27:41.0953697Z adding 'torch/include/ATen/ops/_assert_async_ops.h' 2025-06-01T21:27:41.0956872Z adding 'torch/include/ATen/ops/_assert_scalar.h' 2025-06-01T21:27:41.0960074Z adding 'torch/include/ATen/ops/_assert_scalar_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.0963110Z adding 'torch/include/ATen/ops/_assert_scalar_native.h' 2025-06-01T21:27:41.0966232Z adding 'torch/include/ATen/ops/_assert_scalar_ops.h' 2025-06-01T21:27:41.0969684Z adding 'torch/include/ATen/ops/_assert_tensor_metadata.h' 2025-06-01T21:27:41.0973229Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.0976334Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_meta_dispatch.h' 2025-06-01T21:27:41.0979548Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_native.h' 2025-06-01T21:27:41.0982815Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_ops.h' 2025-06-01T21:27:41.0986002Z adding 'torch/include/ATen/ops/_autocast_to_full_precision.h' 2025-06-01T21:27:41.0989221Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.0992329Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_native.h' 2025-06-01T21:27:41.0995586Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_ops.h' 2025-06-01T21:27:41.0998657Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision.h' 2025-06-01T21:27:41.1002045Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.1004997Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_native.h' 2025-06-01T21:27:41.1008299Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_ops.h' 2025-06-01T21:27:41.1011189Z adding 'torch/include/ATen/ops/_backward.h' 2025-06-01T21:27:41.1014580Z adding 'torch/include/ATen/ops/_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.1017432Z adding 'torch/include/ATen/ops/_backward_native.h' 2025-06-01T21:27:41.1020867Z adding 'torch/include/ATen/ops/_backward_ops.h' 2025-06-01T21:27:41.1024099Z adding 'torch/include/ATen/ops/_batch_norm_impl_index.h' 2025-06-01T21:27:41.1027428Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward.h' 2025-06-01T21:27:41.1030906Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.1033932Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_native.h' 2025-06-01T21:27:41.1037371Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_ops.h' 2025-06-01T21:27:41.1040792Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.1043775Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_native.h' 2025-06-01T21:27:41.1047154Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_ops.h' 2025-06-01T21:27:41.1050536Z adding 'torch/include/ATen/ops/_batch_norm_no_update.h' 2025-06-01T21:27:41.1054097Z adding 'torch/include/ATen/ops/_batch_norm_no_update_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.1057067Z adding 'torch/include/ATen/ops/_batch_norm_no_update_native.h' 2025-06-01T21:27:41.1062612Z adding 'torch/include/ATen/ops/_batch_norm_no_update_ops.h' 2025-06-01T21:27:41.1066335Z adding 'torch/include/ATen/ops/_batch_norm_with_update.h' 2025-06-01T21:27:41.1069746Z adding 'torch/include/ATen/ops/_batch_norm_with_update_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.1073084Z adding 'torch/include/ATen/ops/_batch_norm_with_update_cpu_dispatch.h' 2025-06-01T21:27:41.1076408Z adding 'torch/include/ATen/ops/_batch_norm_with_update_cuda_dispatch.h' 2025-06-01T21:27:41.1079583Z adding 'torch/include/ATen/ops/_batch_norm_with_update_native.h' 2025-06-01T21:27:41.1083301Z adding 'torch/include/ATen/ops/_batch_norm_with_update_ops.h' 2025-06-01T21:27:41.1086460Z adding 'torch/include/ATen/ops/_cast_Byte.h' 2025-06-01T21:27:41.1090048Z adding 'torch/include/ATen/ops/_cast_Byte_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.1093066Z adding 'torch/include/ATen/ops/_cast_Byte_native.h' 2025-06-01T21:27:41.1096155Z adding 'torch/include/ATen/ops/_cast_Byte_ops.h' 2025-06-01T21:27:41.1099495Z adding 'torch/include/ATen/ops/_cast_Char.h' 2025-06-01T21:27:41.1102731Z adding 'torch/include/ATen/ops/_cast_Char_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.1105719Z adding 'torch/include/ATen/ops/_cast_Char_native.h' 2025-06-01T21:27:41.1108840Z adding 'torch/include/ATen/ops/_cast_Char_ops.h' 2025-06-01T21:27:41.1112102Z adding 'torch/include/ATen/ops/_cast_Double.h' 2025-06-01T21:27:41.1115378Z adding 'torch/include/ATen/ops/_cast_Double_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.1118361Z adding 'torch/include/ATen/ops/_cast_Double_native.h' 2025-06-01T21:27:41.1121546Z adding 'torch/include/ATen/ops/_cast_Double_ops.h' 2025-06-01T21:27:41.1124684Z adding 'torch/include/ATen/ops/_cast_Float.h' 2025-06-01T21:27:41.1128072Z adding 'torch/include/ATen/ops/_cast_Float_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.1130972Z adding 'torch/include/ATen/ops/_cast_Float_native.h' 2025-06-01T21:27:41.1134183Z adding 'torch/include/ATen/ops/_cast_Float_ops.h' 2025-06-01T21:27:41.1137240Z adding 'torch/include/ATen/ops/_cast_Half.h' 2025-06-01T21:27:41.1140621Z adding 'torch/include/ATen/ops/_cast_Half_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.1143440Z adding 'torch/include/ATen/ops/_cast_Half_native.h' 2025-06-01T21:27:41.1146722Z adding 'torch/include/ATen/ops/_cast_Half_ops.h' 2025-06-01T21:27:41.1150277Z adding 'torch/include/ATen/ops/_cast_Int.h' 2025-06-01T21:27:41.1153331Z adding 'torch/include/ATen/ops/_cast_Int_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.1156267Z adding 'torch/include/ATen/ops/_cast_Int_native.h' 2025-06-01T21:27:41.1159371Z adding 'torch/include/ATen/ops/_cast_Int_ops.h' 2025-06-01T21:27:41.1162487Z adding 'torch/include/ATen/ops/_cast_Long.h' 2025-06-01T21:27:41.1165681Z adding 'torch/include/ATen/ops/_cast_Long_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.1169387Z adding 'torch/include/ATen/ops/_cast_Long_native.h' 2025-06-01T21:27:41.1171914Z adding 'torch/include/ATen/ops/_cast_Long_ops.h' 2025-06-01T21:27:41.1175278Z adding 'torch/include/ATen/ops/_cast_Short.h' 2025-06-01T21:27:41.1178294Z adding 'torch/include/ATen/ops/_cast_Short_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.1181288Z adding 'torch/include/ATen/ops/_cast_Short_native.h' 2025-06-01T21:27:41.1184473Z adding 'torch/include/ATen/ops/_cast_Short_ops.h' 2025-06-01T21:27:41.1187629Z adding 'torch/include/ATen/ops/_cdist_backward.h' 2025-06-01T21:27:41.1191108Z adding 'torch/include/ATen/ops/_cdist_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.1194208Z adding 'torch/include/ATen/ops/_cdist_backward_cpu_dispatch.h' 2025-06-01T21:27:41.1197394Z adding 'torch/include/ATen/ops/_cdist_backward_cuda_dispatch.h' 2025-06-01T21:27:41.1200391Z adding 'torch/include/ATen/ops/_cdist_backward_native.h' 2025-06-01T21:27:41.1203827Z adding 'torch/include/ATen/ops/_cdist_backward_ops.h' 2025-06-01T21:27:41.1206914Z adding 'torch/include/ATen/ops/_cdist_forward.h' 2025-06-01T21:27:41.1210337Z adding 'torch/include/ATen/ops/_cdist_forward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.1213402Z adding 'torch/include/ATen/ops/_cdist_forward_cpu_dispatch.h' 2025-06-01T21:27:41.1216485Z adding 'torch/include/ATen/ops/_cdist_forward_cuda_dispatch.h' 2025-06-01T21:27:41.1219576Z adding 'torch/include/ATen/ops/_cdist_forward_native.h' 2025-06-01T21:27:41.1222798Z adding 'torch/include/ATen/ops/_cdist_forward_ops.h' 2025-06-01T21:27:41.1226162Z adding 'torch/include/ATen/ops/_cholesky_solve_helper.h' 2025-06-01T21:27:41.1229479Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.1232709Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_cpu_dispatch.h' 2025-06-01T21:27:41.1235785Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_cuda_dispatch.h' 2025-06-01T21:27:41.1238838Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_native.h' 2025-06-01T21:27:41.1242137Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_ops.h' 2025-06-01T21:27:41.1245190Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor.h' 2025-06-01T21:27:41.1248576Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.1251501Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_native.h' 2025-06-01T21:27:41.1254728Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_ops.h' 2025-06-01T21:27:41.1257791Z adding 'torch/include/ATen/ops/_chunk_cat.h' 2025-06-01T21:27:41.1261175Z adding 'torch/include/ATen/ops/_chunk_cat_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.1264249Z adding 'torch/include/ATen/ops/_chunk_cat_cuda_dispatch.h' 2025-06-01T21:27:41.1267291Z adding 'torch/include/ATen/ops/_chunk_cat_native.h' 2025-06-01T21:27:41.1270571Z adding 'torch/include/ATen/ops/_chunk_cat_ops.h' 2025-06-01T21:27:41.1273688Z adding 'torch/include/ATen/ops/_coalesce.h' 2025-06-01T21:27:41.1276915Z adding 'torch/include/ATen/ops/_coalesce_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.1279881Z adding 'torch/include/ATen/ops/_coalesce_native.h' 2025-06-01T21:27:41.1283108Z adding 'torch/include/ATen/ops/_coalesce_ops.h' 2025-06-01T21:27:41.1286155Z adding 'torch/include/ATen/ops/_coalesced.h' 2025-06-01T21:27:41.1289415Z adding 'torch/include/ATen/ops/_coalesced_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.1292414Z adding 'torch/include/ATen/ops/_coalesced_meta_dispatch.h' 2025-06-01T21:27:41.1295300Z adding 'torch/include/ATen/ops/_coalesced_native.h' 2025-06-01T21:27:41.1298474Z adding 'torch/include/ATen/ops/_coalesced_ops.h' 2025-06-01T21:27:41.1301654Z adding 'torch/include/ATen/ops/_compute_linear_combination.h' 2025-06-01T21:27:41.1304834Z adding 'torch/include/ATen/ops/_compute_linear_combination_cpu_dispatch.h' 2025-06-01T21:27:41.1308050Z adding 'torch/include/ATen/ops/_compute_linear_combination_cuda_dispatch.h' 2025-06-01T21:27:41.1311114Z adding 'torch/include/ATen/ops/_compute_linear_combination_native.h' 2025-06-01T21:27:41.1314571Z adding 'torch/include/ATen/ops/_compute_linear_combination_ops.h' 2025-06-01T21:27:41.1317483Z adding 'torch/include/ATen/ops/_conj.h' 2025-06-01T21:27:41.1320671Z adding 'torch/include/ATen/ops/_conj_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.1323643Z adding 'torch/include/ATen/ops/_conj_copy.h' 2025-06-01T21:27:41.1327341Z adding 'torch/include/ATen/ops/_conj_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.1330544Z adding 'torch/include/ATen/ops/_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.1333341Z adding 'torch/include/ATen/ops/_conj_copy_native.h' 2025-06-01T21:27:41.1336481Z adding 'torch/include/ATen/ops/_conj_copy_ops.h' 2025-06-01T21:27:41.1339487Z adding 'torch/include/ATen/ops/_conj_native.h' 2025-06-01T21:27:41.1342562Z adding 'torch/include/ATen/ops/_conj_ops.h' 2025-06-01T21:27:41.1345629Z adding 'torch/include/ATen/ops/_conj_physical.h' 2025-06-01T21:27:41.1348882Z adding 'torch/include/ATen/ops/_conj_physical_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.1351854Z adding 'torch/include/ATen/ops/_conj_physical_native.h' 2025-06-01T21:27:41.1355078Z adding 'torch/include/ATen/ops/_conj_physical_ops.h' 2025-06-01T21:27:41.1358615Z adding 'torch/include/ATen/ops/_conv_depthwise2d.h' 2025-06-01T21:27:41.1362059Z adding 'torch/include/ATen/ops/_conv_depthwise2d_cuda_dispatch.h' 2025-06-01T21:27:41.1365091Z adding 'torch/include/ATen/ops/_conv_depthwise2d_native.h' 2025-06-01T21:27:41.1368513Z adding 'torch/include/ATen/ops/_conv_depthwise2d_ops.h' 2025-06-01T21:27:41.1371806Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr.h' 2025-06-01T21:27:41.1375235Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.1378233Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cpu_dispatch.h' 2025-06-01T21:27:41.1381355Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cuda_dispatch.h' 2025-06-01T21:27:41.1384307Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta.h' 2025-06-01T21:27:41.1387403Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta_dispatch.h' 2025-06-01T21:27:41.1390391Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_native.h' 2025-06-01T21:27:41.1393700Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_ops.h' 2025-06-01T21:27:41.1396915Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo.h' 2025-06-01T21:27:41.1400273Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.1403272Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cpu_dispatch.h' 2025-06-01T21:27:41.1406380Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cuda_dispatch.h' 2025-06-01T21:27:41.1420408Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta.h' 2025-06-01T21:27:41.1421491Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta_dispatch.h' 2025-06-01T21:27:41.1422050Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_native.h' 2025-06-01T21:27:41.1422572Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_ops.h' 2025-06-01T21:27:41.1423062Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack.h' 2025-06-01T21:27:41.1424962Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_cuda_dispatch.h' 2025-06-01T21:27:41.1427956Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu.h' 2025-06-01T21:27:41.1431304Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_cpu_dispatch.h' 2025-06-01T21:27:41.1434275Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_native.h' 2025-06-01T21:27:41.1437493Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_ops.h' 2025-06-01T21:27:41.1440384Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_native.h' 2025-06-01T21:27:41.1443543Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_ops.h' 2025-06-01T21:27:41.1447316Z adding 'torch/include/ATen/ops/_convolution.h' 2025-06-01T21:27:41.1451100Z adding 'torch/include/ATen/ops/_convolution_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.1454454Z adding 'torch/include/ATen/ops/_convolution_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.1457762Z adding 'torch/include/ATen/ops/_convolution_double_backward.h' 2025-06-01T21:27:41.1461257Z adding 'torch/include/ATen/ops/_convolution_double_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.1464237Z adding 'torch/include/ATen/ops/_convolution_double_backward_native.h' 2025-06-01T21:27:41.1467540Z adding 'torch/include/ATen/ops/_convolution_double_backward_ops.h' 2025-06-01T21:27:41.1470807Z adding 'torch/include/ATen/ops/_convolution_mode.h' 2025-06-01T21:27:41.1474658Z adding 'torch/include/ATen/ops/_convolution_mode_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.1477612Z adding 'torch/include/ATen/ops/_convolution_mode_native.h' 2025-06-01T21:27:41.1480765Z adding 'torch/include/ATen/ops/_convolution_mode_ops.h' 2025-06-01T21:27:41.1483880Z adding 'torch/include/ATen/ops/_convolution_native.h' 2025-06-01T21:27:41.1487402Z adding 'torch/include/ATen/ops/_convolution_ops.h' 2025-06-01T21:27:41.1490686Z adding 'torch/include/ATen/ops/_copy_from.h' 2025-06-01T21:27:41.1493834Z adding 'torch/include/ATen/ops/_copy_from_and_resize.h' 2025-06-01T21:27:41.1497155Z adding 'torch/include/ATen/ops/_copy_from_and_resize_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.1500009Z adding 'torch/include/ATen/ops/_copy_from_and_resize_native.h' 2025-06-01T21:27:41.1503160Z adding 'torch/include/ATen/ops/_copy_from_and_resize_ops.h' 2025-06-01T21:27:41.1506364Z adding 'torch/include/ATen/ops/_copy_from_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.1509197Z adding 'torch/include/ATen/ops/_copy_from_native.h' 2025-06-01T21:27:41.1512578Z adding 'torch/include/ATen/ops/_copy_from_ops.h' 2025-06-01T21:27:41.1515692Z adding 'torch/include/ATen/ops/_cslt_compress.h' 2025-06-01T21:27:41.1518753Z adding 'torch/include/ATen/ops/_cslt_compress_cuda_dispatch.h' 2025-06-01T21:27:41.1521654Z adding 'torch/include/ATen/ops/_cslt_compress_native.h' 2025-06-01T21:27:41.1524712Z adding 'torch/include/ATen/ops/_cslt_compress_ops.h' 2025-06-01T21:27:41.1527866Z adding 'torch/include/ATen/ops/_cslt_sparse_mm.h' 2025-06-01T21:27:41.1530996Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_cuda_dispatch.h' 2025-06-01T21:27:41.1534053Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_native.h' 2025-06-01T21:27:41.1537408Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_ops.h' 2025-06-01T21:27:41.1540613Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search.h' 2025-06-01T21:27:41.1550666Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_cuda_dispatch.h' 2025-06-01T21:27:41.1551191Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_native.h' 2025-06-01T21:27:41.1552828Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_ops.h' 2025-06-01T21:27:41.1555923Z adding 'torch/include/ATen/ops/_ctc_loss.h' 2025-06-01T21:27:41.1559350Z adding 'torch/include/ATen/ops/_ctc_loss_backward.h' 2025-06-01T21:27:41.1562744Z adding 'torch/include/ATen/ops/_ctc_loss_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.1565834Z adding 'torch/include/ATen/ops/_ctc_loss_backward_cpu_dispatch.h' 2025-06-01T21:27:41.1568967Z adding 'torch/include/ATen/ops/_ctc_loss_backward_cuda_dispatch.h' 2025-06-01T21:27:41.1572018Z adding 'torch/include/ATen/ops/_ctc_loss_backward_native.h' 2025-06-01T21:27:41.1575452Z adding 'torch/include/ATen/ops/_ctc_loss_backward_ops.h' 2025-06-01T21:27:41.1578870Z adding 'torch/include/ATen/ops/_ctc_loss_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.1582010Z adding 'torch/include/ATen/ops/_ctc_loss_cpu_dispatch.h' 2025-06-01T21:27:41.1585299Z adding 'torch/include/ATen/ops/_ctc_loss_cuda_dispatch.h' 2025-06-01T21:27:41.1588187Z adding 'torch/include/ATen/ops/_ctc_loss_meta_dispatch.h' 2025-06-01T21:27:41.1591203Z adding 'torch/include/ATen/ops/_ctc_loss_native.h' 2025-06-01T21:27:41.1594671Z adding 'torch/include/ATen/ops/_ctc_loss_ops.h' 2025-06-01T21:27:41.1598208Z adding 'torch/include/ATen/ops/_cudnn_attention_forward.h' 2025-06-01T21:27:41.1601536Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_cuda_dispatch.h' 2025-06-01T21:27:41.1604630Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_native.h' 2025-06-01T21:27:41.1607965Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_ops.h' 2025-06-01T21:27:41.1611368Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss.h' 2025-06-01T21:27:41.1614802Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.1617795Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_cuda_dispatch.h' 2025-06-01T21:27:41.1620804Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_native.h' 2025-06-01T21:27:41.1625168Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_ops.h' 2025-06-01T21:27:41.1628649Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state.h' 2025-06-01T21:27:41.1632149Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.1635215Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_cuda_dispatch.h' 2025-06-01T21:27:41.1638237Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_native.h' 2025-06-01T21:27:41.1641491Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_ops.h' 2025-06-01T21:27:41.1645436Z adding 'torch/include/ATen/ops/_cudnn_rnn.h' 2025-06-01T21:27:41.1649920Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward.h' 2025-06-01T21:27:41.1653808Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.1657037Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_cuda_dispatch.h' 2025-06-01T21:27:41.1660231Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_native.h' 2025-06-01T21:27:41.1664074Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_ops.h' 2025-06-01T21:27:41.1668091Z adding 'torch/include/ATen/ops/_cudnn_rnn_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.1671362Z adding 'torch/include/ATen/ops/_cudnn_rnn_cuda_dispatch.h' 2025-06-01T21:27:41.1675046Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight.h' 2025-06-01T21:27:41.1678528Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.1681608Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_cuda_dispatch.h' 2025-06-01T21:27:41.1684666Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_native.h' 2025-06-01T21:27:41.1687904Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_ops.h' 2025-06-01T21:27:41.1691042Z adding 'torch/include/ATen/ops/_cudnn_rnn_native.h' 2025-06-01T21:27:41.1694607Z adding 'torch/include/ATen/ops/_cudnn_rnn_ops.h' 2025-06-01T21:27:41.1697800Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache.h' 2025-06-01T21:27:41.1701000Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.1703807Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_native.h' 2025-06-01T21:27:41.1706935Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_ops.h' 2025-06-01T21:27:41.1709989Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size.h' 2025-06-01T21:27:41.1713317Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.1716203Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_native.h' 2025-06-01T21:27:41.1719297Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_ops.h' 2025-06-01T21:27:41.1722261Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size.h' 2025-06-01T21:27:41.1725554Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.1728427Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_native.h' 2025-06-01T21:27:41.1731428Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_ops.h' 2025-06-01T21:27:41.1734485Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size.h' 2025-06-01T21:27:41.1737706Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.1740561Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_native.h' 2025-06-01T21:27:41.1743624Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_ops.h' 2025-06-01T21:27:41.1746558Z adding 'torch/include/ATen/ops/_cummax_helper.h' 2025-06-01T21:27:41.1749658Z adding 'torch/include/ATen/ops/_cummax_helper_cpu_dispatch.h' 2025-06-01T21:27:41.1752809Z adding 'torch/include/ATen/ops/_cummax_helper_cuda_dispatch.h' 2025-06-01T21:27:41.1755768Z adding 'torch/include/ATen/ops/_cummax_helper_native.h' 2025-06-01T21:27:41.1758919Z adding 'torch/include/ATen/ops/_cummax_helper_ops.h' 2025-06-01T21:27:41.1761937Z adding 'torch/include/ATen/ops/_cummin_helper.h' 2025-06-01T21:27:41.1765040Z adding 'torch/include/ATen/ops/_cummin_helper_cpu_dispatch.h' 2025-06-01T21:27:41.1768019Z adding 'torch/include/ATen/ops/_cummin_helper_cuda_dispatch.h' 2025-06-01T21:27:41.1770948Z adding 'torch/include/ATen/ops/_cummin_helper_native.h' 2025-06-01T21:27:41.1774069Z adding 'torch/include/ATen/ops/_cummin_helper_ops.h' 2025-06-01T21:27:41.1777153Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap.h' 2025-06-01T21:27:41.1780357Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.1783227Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_native.h' 2025-06-01T21:27:41.1786375Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_ops.h' 2025-06-01T21:27:41.1789263Z adding 'torch/include/ATen/ops/_dimI.h' 2025-06-01T21:27:41.1792381Z adding 'torch/include/ATen/ops/_dimI_native.h' 2025-06-01T21:27:41.1795459Z adding 'torch/include/ATen/ops/_dimI_ops.h' 2025-06-01T21:27:41.1799243Z adding 'torch/include/ATen/ops/_dimV.h' 2025-06-01T21:27:41.1802332Z adding 'torch/include/ATen/ops/_dimV_native.h' 2025-06-01T21:27:41.1805477Z adding 'torch/include/ATen/ops/_dimV_ops.h' 2025-06-01T21:27:41.1808509Z adding 'torch/include/ATen/ops/_dim_arange.h' 2025-06-01T21:27:41.1811780Z adding 'torch/include/ATen/ops/_dim_arange_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.1814611Z adding 'torch/include/ATen/ops/_dim_arange_native.h' 2025-06-01T21:27:41.1818135Z adding 'torch/include/ATen/ops/_dim_arange_ops.h' 2025-06-01T21:27:41.1821754Z adding 'torch/include/ATen/ops/_dirichlet_grad.h' 2025-06-01T21:27:41.1825591Z adding 'torch/include/ATen/ops/_dirichlet_grad_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.1828921Z adding 'torch/include/ATen/ops/_dirichlet_grad_cpu_dispatch.h' 2025-06-01T21:27:41.1832070Z adding 'torch/include/ATen/ops/_dirichlet_grad_cuda_dispatch.h' 2025-06-01T21:27:41.1835431Z adding 'torch/include/ATen/ops/_dirichlet_grad_native.h' 2025-06-01T21:27:41.1838982Z adding 'torch/include/ATen/ops/_dirichlet_grad_ops.h' 2025-06-01T21:27:41.1842528Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit.h' 2025-06-01T21:27:41.1846231Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_cpu_dispatch.h' 2025-06-01T21:27:41.1849674Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_native.h' 2025-06-01T21:27:41.1853261Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_ops.h' 2025-06-01T21:27:41.1856754Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight.h' 2025-06-01T21:27:41.1860404Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_cpu_dispatch.h' 2025-06-01T21:27:41.1863859Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_native.h' 2025-06-01T21:27:41.1867473Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_ops.h' 2025-06-01T21:27:41.1871569Z adding 'torch/include/ATen/ops/_efficient_attention_backward.h' 2025-06-01T21:27:41.1875083Z adding 'torch/include/ATen/ops/_efficient_attention_backward_cuda_dispatch.h' 2025-06-01T21:27:41.1878316Z adding 'torch/include/ATen/ops/_efficient_attention_backward_native.h' 2025-06-01T21:27:41.1881936Z adding 'torch/include/ATen/ops/_efficient_attention_backward_ops.h' 2025-06-01T21:27:41.1885501Z adding 'torch/include/ATen/ops/_efficient_attention_forward.h' 2025-06-01T21:27:41.1889088Z adding 'torch/include/ATen/ops/_efficient_attention_forward_cuda_dispatch.h' 2025-06-01T21:27:41.1892282Z adding 'torch/include/ATen/ops/_efficient_attention_forward_native.h' 2025-06-01T21:27:41.1895795Z adding 'torch/include/ATen/ops/_efficient_attention_forward_ops.h' 2025-06-01T21:27:41.1899363Z adding 'torch/include/ATen/ops/_efficientzerotensor.h' 2025-06-01T21:27:41.1902788Z adding 'torch/include/ATen/ops/_efficientzerotensor_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.1906095Z adding 'torch/include/ATen/ops/_efficientzerotensor_cpu_dispatch.h' 2025-06-01T21:27:41.1909286Z adding 'torch/include/ATen/ops/_efficientzerotensor_cuda_dispatch.h' 2025-06-01T21:27:41.1912555Z adding 'torch/include/ATen/ops/_efficientzerotensor_meta_dispatch.h' 2025-06-01T21:27:41.1915638Z adding 'torch/include/ATen/ops/_efficientzerotensor_native.h' 2025-06-01T21:27:41.1918867Z adding 'torch/include/ATen/ops/_efficientzerotensor_ops.h' 2025-06-01T21:27:41.1922310Z adding 'torch/include/ATen/ops/_embedding_bag.h' 2025-06-01T21:27:41.1925759Z adding 'torch/include/ATen/ops/_embedding_bag_backward.h' 2025-06-01T21:27:41.1929060Z adding 'torch/include/ATen/ops/_embedding_bag_backward_cpu_dispatch.h' 2025-06-01T21:27:41.1932269Z adding 'torch/include/ATen/ops/_embedding_bag_backward_cuda_dispatch.h' 2025-06-01T21:27:41.1935376Z adding 'torch/include/ATen/ops/_embedding_bag_backward_native.h' 2025-06-01T21:27:41.1938619Z adding 'torch/include/ATen/ops/_embedding_bag_backward_ops.h' 2025-06-01T21:27:41.1941970Z adding 'torch/include/ATen/ops/_embedding_bag_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.1944980Z adding 'torch/include/ATen/ops/_embedding_bag_cpu_dispatch.h' 2025-06-01T21:27:41.1948101Z adding 'torch/include/ATen/ops/_embedding_bag_cuda_dispatch.h' 2025-06-01T21:27:41.1952098Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward.h' 2025-06-01T21:27:41.1956114Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.1959144Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_cpu_dispatch.h' 2025-06-01T21:27:41.1962135Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_cuda_dispatch.h' 2025-06-01T21:27:41.1965212Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_native.h' 2025-06-01T21:27:41.1968569Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_ops.h' 2025-06-01T21:27:41.1971968Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only.h' 2025-06-01T21:27:41.1975445Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.1978633Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_cpu_dispatch.h' 2025-06-01T21:27:41.1981611Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_cuda_dispatch.h' 2025-06-01T21:27:41.1984694Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_native.h' 2025-06-01T21:27:41.1988076Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_ops.h' 2025-06-01T21:27:41.1991336Z adding 'torch/include/ATen/ops/_embedding_bag_native.h' 2025-06-01T21:27:41.1994788Z adding 'torch/include/ATen/ops/_embedding_bag_ops.h' 2025-06-01T21:27:41.1998158Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward.h' 2025-06-01T21:27:41.2001538Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2004661Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cpu_dispatch.h' 2025-06-01T21:27:41.2007658Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cuda_dispatch.h' 2025-06-01T21:27:41.2010667Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_native.h' 2025-06-01T21:27:41.2013943Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_ops.h' 2025-06-01T21:27:41.2017166Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward.h' 2025-06-01T21:27:41.2020510Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.2023433Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_native.h' 2025-06-01T21:27:41.2026632Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_ops.h' 2025-06-01T21:27:41.2030285Z adding 'torch/include/ATen/ops/_empty_affine_quantized.h' 2025-06-01T21:27:41.2034036Z adding 'torch/include/ATen/ops/_empty_affine_quantized_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2037178Z adding 'torch/include/ATen/ops/_empty_affine_quantized_cpu_dispatch.h' 2025-06-01T21:27:41.2040255Z adding 'torch/include/ATen/ops/_empty_affine_quantized_native.h' 2025-06-01T21:27:41.2043533Z adding 'torch/include/ATen/ops/_empty_affine_quantized_ops.h' 2025-06-01T21:27:41.2047386Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized.h' 2025-06-01T21:27:41.2051136Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2054275Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_cpu_dispatch.h' 2025-06-01T21:27:41.2057743Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_native.h' 2025-06-01T21:27:41.2060751Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_ops.h' 2025-06-01T21:27:41.2063821Z adding 'torch/include/ATen/ops/_euclidean_dist.h' 2025-06-01T21:27:41.2067064Z adding 'torch/include/ATen/ops/_euclidean_dist_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2069876Z adding 'torch/include/ATen/ops/_euclidean_dist_native.h' 2025-06-01T21:27:41.2073267Z adding 'torch/include/ATen/ops/_euclidean_dist_ops.h' 2025-06-01T21:27:41.2076606Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine.h' 2025-06-01T21:27:41.2079796Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward.h' 2025-06-01T21:27:41.2082998Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cpu_dispatch.h' 2025-06-01T21:27:41.2086123Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cuda_dispatch.h' 2025-06-01T21:27:41.2089164Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_native.h' 2025-06-01T21:27:41.2092418Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_ops.h' 2025-06-01T21:27:41.2095732Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2098816Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cpu_dispatch.h' 2025-06-01T21:27:41.2101952Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cuda_dispatch.h' 2025-06-01T21:27:41.2104917Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_native.h' 2025-06-01T21:27:41.2108220Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_ops.h' 2025-06-01T21:27:41.2111684Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine.h' 2025-06-01T21:27:41.2115042Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward.h' 2025-06-01T21:27:41.2118314Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cpu_dispatch.h' 2025-06-01T21:27:41.2121448Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cuda_dispatch.h' 2025-06-01T21:27:41.2124573Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_native.h' 2025-06-01T21:27:41.2127762Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_ops.h' 2025-06-01T21:27:41.2130974Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2134118Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cpu_dispatch.h' 2025-06-01T21:27:41.2137153Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cuda_dispatch.h' 2025-06-01T21:27:41.2140141Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_native.h' 2025-06-01T21:27:41.2143398Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_ops.h' 2025-06-01T21:27:41.2146686Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams.h' 2025-06-01T21:27:41.2150090Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2153282Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cpu_dispatch.h' 2025-06-01T21:27:41.2156395Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cuda_dispatch.h' 2025-06-01T21:27:41.2159481Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_native.h' 2025-06-01T21:27:41.2162839Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_ops.h' 2025-06-01T21:27:41.2166130Z adding 'torch/include/ATen/ops/_fft_c2c.h' 2025-06-01T21:27:41.2169438Z adding 'torch/include/ATen/ops/_fft_c2c_cpu_dispatch.h' 2025-06-01T21:27:41.2172612Z adding 'torch/include/ATen/ops/_fft_c2c_cuda_dispatch.h' 2025-06-01T21:27:41.2175618Z adding 'torch/include/ATen/ops/_fft_c2c_native.h' 2025-06-01T21:27:41.2178803Z adding 'torch/include/ATen/ops/_fft_c2c_ops.h' 2025-06-01T21:27:41.2182466Z adding 'torch/include/ATen/ops/_fft_c2r.h' 2025-06-01T21:27:41.2185823Z adding 'torch/include/ATen/ops/_fft_c2r_cpu_dispatch.h' 2025-06-01T21:27:41.2189082Z adding 'torch/include/ATen/ops/_fft_c2r_cuda_dispatch.h' 2025-06-01T21:27:41.2192225Z adding 'torch/include/ATen/ops/_fft_c2r_native.h' 2025-06-01T21:27:41.2195463Z adding 'torch/include/ATen/ops/_fft_c2r_ops.h' 2025-06-01T21:27:41.2198564Z adding 'torch/include/ATen/ops/_fft_r2c.h' 2025-06-01T21:27:41.2201713Z adding 'torch/include/ATen/ops/_fft_r2c_cpu_dispatch.h' 2025-06-01T21:27:41.2204778Z adding 'torch/include/ATen/ops/_fft_r2c_cuda_dispatch.h' 2025-06-01T21:27:41.2207807Z adding 'torch/include/ATen/ops/_fft_r2c_native.h' 2025-06-01T21:27:41.2210999Z adding 'torch/include/ATen/ops/_fft_r2c_ops.h' 2025-06-01T21:27:41.2214157Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask.h' 2025-06-01T21:27:41.2217473Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_cuda_dispatch.h' 2025-06-01T21:27:41.2220540Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_meta_dispatch.h' 2025-06-01T21:27:41.2223492Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_native.h' 2025-06-01T21:27:41.2226613Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_ops.h' 2025-06-01T21:27:41.2230047Z adding 'torch/include/ATen/ops/_flash_attention_backward.h' 2025-06-01T21:27:41.2233576Z adding 'torch/include/ATen/ops/_flash_attention_backward_cuda_dispatch.h' 2025-06-01T21:27:41.2236639Z adding 'torch/include/ATen/ops/_flash_attention_backward_native.h' 2025-06-01T21:27:41.2239967Z adding 'torch/include/ATen/ops/_flash_attention_backward_ops.h' 2025-06-01T21:27:41.2243457Z adding 'torch/include/ATen/ops/_flash_attention_forward.h' 2025-06-01T21:27:41.2246844Z adding 'torch/include/ATen/ops/_flash_attention_forward_cuda_dispatch.h' 2025-06-01T21:27:41.2249924Z adding 'torch/include/ATen/ops/_flash_attention_forward_native.h' 2025-06-01T21:27:41.2253234Z adding 'torch/include/ATen/ops/_flash_attention_forward_ops.h' 2025-06-01T21:27:41.2256439Z adding 'torch/include/ATen/ops/_foobar.h' 2025-06-01T21:27:41.2259650Z adding 'torch/include/ATen/ops/_foobar_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2262520Z adding 'torch/include/ATen/ops/_foobar_cpu_dispatch.h' 2025-06-01T21:27:41.2265461Z adding 'torch/include/ATen/ops/_foobar_native.h' 2025-06-01T21:27:41.2268626Z adding 'torch/include/ATen/ops/_foobar_ops.h' 2025-06-01T21:27:41.2271929Z adding 'torch/include/ATen/ops/_foreach_abs.h' 2025-06-01T21:27:41.2275224Z adding 'torch/include/ATen/ops/_foreach_abs_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2278179Z adding 'torch/include/ATen/ops/_foreach_abs_cuda_dispatch.h' 2025-06-01T21:27:41.2281254Z adding 'torch/include/ATen/ops/_foreach_abs_native.h' 2025-06-01T21:27:41.2284422Z adding 'torch/include/ATen/ops/_foreach_abs_ops.h' 2025-06-01T21:27:41.2287512Z adding 'torch/include/ATen/ops/_foreach_acos.h' 2025-06-01T21:27:41.2290739Z adding 'torch/include/ATen/ops/_foreach_acos_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2293712Z adding 'torch/include/ATen/ops/_foreach_acos_cuda_dispatch.h' 2025-06-01T21:27:41.2296669Z adding 'torch/include/ATen/ops/_foreach_acos_native.h' 2025-06-01T21:27:41.2299807Z adding 'torch/include/ATen/ops/_foreach_acos_ops.h' 2025-06-01T21:27:41.2303308Z adding 'torch/include/ATen/ops/_foreach_add.h' 2025-06-01T21:27:41.2306769Z adding 'torch/include/ATen/ops/_foreach_add_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2309851Z adding 'torch/include/ATen/ops/_foreach_add_cuda_dispatch.h' 2025-06-01T21:27:41.2313163Z adding 'torch/include/ATen/ops/_foreach_add_native.h' 2025-06-01T21:27:41.2317141Z adding 'torch/include/ATen/ops/_foreach_add_ops.h' 2025-06-01T21:27:41.2321257Z adding 'torch/include/ATen/ops/_foreach_addcdiv.h' 2025-06-01T21:27:41.2324822Z adding 'torch/include/ATen/ops/_foreach_addcdiv_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2328169Z adding 'torch/include/ATen/ops/_foreach_addcdiv_cuda_dispatch.h' 2025-06-01T21:27:41.2331430Z adding 'torch/include/ATen/ops/_foreach_addcdiv_native.h' 2025-06-01T21:27:41.2335519Z adding 'torch/include/ATen/ops/_foreach_addcdiv_ops.h' 2025-06-01T21:27:41.2339162Z adding 'torch/include/ATen/ops/_foreach_addcmul.h' 2025-06-01T21:27:41.2343047Z adding 'torch/include/ATen/ops/_foreach_addcmul_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2346386Z adding 'torch/include/ATen/ops/_foreach_addcmul_cuda_dispatch.h' 2025-06-01T21:27:41.2349580Z adding 'torch/include/ATen/ops/_foreach_addcmul_native.h' 2025-06-01T21:27:41.2353821Z adding 'torch/include/ATen/ops/_foreach_addcmul_ops.h' 2025-06-01T21:27:41.2357166Z adding 'torch/include/ATen/ops/_foreach_asin.h' 2025-06-01T21:27:41.2360762Z adding 'torch/include/ATen/ops/_foreach_asin_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2363776Z adding 'torch/include/ATen/ops/_foreach_asin_cuda_dispatch.h' 2025-06-01T21:27:41.2366922Z adding 'torch/include/ATen/ops/_foreach_asin_native.h' 2025-06-01T21:27:41.2370160Z adding 'torch/include/ATen/ops/_foreach_asin_ops.h' 2025-06-01T21:27:41.2373480Z adding 'torch/include/ATen/ops/_foreach_atan.h' 2025-06-01T21:27:41.2376753Z adding 'torch/include/ATen/ops/_foreach_atan_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2379817Z adding 'torch/include/ATen/ops/_foreach_atan_cuda_dispatch.h' 2025-06-01T21:27:41.2382822Z adding 'torch/include/ATen/ops/_foreach_atan_native.h' 2025-06-01T21:27:41.2386295Z adding 'torch/include/ATen/ops/_foreach_atan_ops.h' 2025-06-01T21:27:41.2389397Z adding 'torch/include/ATen/ops/_foreach_ceil.h' 2025-06-01T21:27:41.2393003Z adding 'torch/include/ATen/ops/_foreach_ceil_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2396002Z adding 'torch/include/ATen/ops/_foreach_ceil_cuda_dispatch.h' 2025-06-01T21:27:41.2399150Z adding 'torch/include/ATen/ops/_foreach_ceil_native.h' 2025-06-01T21:27:41.2402425Z adding 'torch/include/ATen/ops/_foreach_ceil_ops.h' 2025-06-01T21:27:41.2406187Z adding 'torch/include/ATen/ops/_foreach_clamp_max.h' 2025-06-01T21:27:41.2410220Z adding 'torch/include/ATen/ops/_foreach_clamp_max_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2414023Z adding 'torch/include/ATen/ops/_foreach_clamp_max_cuda_dispatch.h' 2025-06-01T21:27:41.2424124Z adding 'torch/include/ATen/ops/_foreach_clamp_max_native.h' 2025-06-01T21:27:41.2424750Z adding 'torch/include/ATen/ops/_foreach_clamp_max_ops.h' 2025-06-01T21:27:41.2427913Z adding 'torch/include/ATen/ops/_foreach_clamp_min.h' 2025-06-01T21:27:41.2432024Z adding 'torch/include/ATen/ops/_foreach_clamp_min_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2435711Z adding 'torch/include/ATen/ops/_foreach_clamp_min_cuda_dispatch.h' 2025-06-01T21:27:41.2439005Z adding 'torch/include/ATen/ops/_foreach_clamp_min_native.h' 2025-06-01T21:27:41.2442803Z adding 'torch/include/ATen/ops/_foreach_clamp_min_ops.h' 2025-06-01T21:27:41.2446137Z adding 'torch/include/ATen/ops/_foreach_copy.h' 2025-06-01T21:27:41.2449579Z adding 'torch/include/ATen/ops/_foreach_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2452541Z adding 'torch/include/ATen/ops/_foreach_copy_cuda_dispatch.h' 2025-06-01T21:27:41.2455517Z adding 'torch/include/ATen/ops/_foreach_copy_native.h' 2025-06-01T21:27:41.2458724Z adding 'torch/include/ATen/ops/_foreach_copy_ops.h' 2025-06-01T21:27:41.2461923Z adding 'torch/include/ATen/ops/_foreach_cos.h' 2025-06-01T21:27:41.2465386Z adding 'torch/include/ATen/ops/_foreach_cos_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2468424Z adding 'torch/include/ATen/ops/_foreach_cos_cuda_dispatch.h' 2025-06-01T21:27:41.2471544Z adding 'torch/include/ATen/ops/_foreach_cos_native.h' 2025-06-01T21:27:41.2474727Z adding 'torch/include/ATen/ops/_foreach_cos_ops.h' 2025-06-01T21:27:41.2477825Z adding 'torch/include/ATen/ops/_foreach_cosh.h' 2025-06-01T21:27:41.2481307Z adding 'torch/include/ATen/ops/_foreach_cosh_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2484274Z adding 'torch/include/ATen/ops/_foreach_cosh_cuda_dispatch.h' 2025-06-01T21:27:41.2487237Z adding 'torch/include/ATen/ops/_foreach_cosh_native.h' 2025-06-01T21:27:41.2490434Z adding 'torch/include/ATen/ops/_foreach_cosh_ops.h' 2025-06-01T21:27:41.2493843Z adding 'torch/include/ATen/ops/_foreach_div.h' 2025-06-01T21:27:41.2497332Z adding 'torch/include/ATen/ops/_foreach_div_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2500378Z adding 'torch/include/ATen/ops/_foreach_div_cuda_dispatch.h' 2025-06-01T21:27:41.2503599Z adding 'torch/include/ATen/ops/_foreach_div_native.h' 2025-06-01T21:27:41.2507434Z adding 'torch/include/ATen/ops/_foreach_div_ops.h' 2025-06-01T21:27:41.2510956Z adding 'torch/include/ATen/ops/_foreach_erf.h' 2025-06-01T21:27:41.2514298Z adding 'torch/include/ATen/ops/_foreach_erf_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2517295Z adding 'torch/include/ATen/ops/_foreach_erf_cuda_dispatch.h' 2025-06-01T21:27:41.2520207Z adding 'torch/include/ATen/ops/_foreach_erf_native.h' 2025-06-01T21:27:41.2523467Z adding 'torch/include/ATen/ops/_foreach_erf_ops.h' 2025-06-01T21:27:41.2526542Z adding 'torch/include/ATen/ops/_foreach_erfc.h' 2025-06-01T21:27:41.2529791Z adding 'torch/include/ATen/ops/_foreach_erfc_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2532803Z adding 'torch/include/ATen/ops/_foreach_erfc_cuda_dispatch.h' 2025-06-01T21:27:41.2535774Z adding 'torch/include/ATen/ops/_foreach_erfc_native.h' 2025-06-01T21:27:41.2538958Z adding 'torch/include/ATen/ops/_foreach_erfc_ops.h' 2025-06-01T21:27:41.2542088Z adding 'torch/include/ATen/ops/_foreach_exp.h' 2025-06-01T21:27:41.2545262Z adding 'torch/include/ATen/ops/_foreach_exp_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2548326Z adding 'torch/include/ATen/ops/_foreach_exp_cuda_dispatch.h' 2025-06-01T21:27:41.2551389Z adding 'torch/include/ATen/ops/_foreach_exp_native.h' 2025-06-01T21:27:41.2554583Z adding 'torch/include/ATen/ops/_foreach_exp_ops.h' 2025-06-01T21:27:41.2558510Z adding 'torch/include/ATen/ops/_foreach_expm1.h' 2025-06-01T21:27:41.2561962Z adding 'torch/include/ATen/ops/_foreach_expm1_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2565032Z adding 'torch/include/ATen/ops/_foreach_expm1_cuda_dispatch.h' 2025-06-01T21:27:41.2568060Z adding 'torch/include/ATen/ops/_foreach_expm1_native.h' 2025-06-01T21:27:41.2571248Z adding 'torch/include/ATen/ops/_foreach_expm1_ops.h' 2025-06-01T21:27:41.2574361Z adding 'torch/include/ATen/ops/_foreach_floor.h' 2025-06-01T21:27:41.2577625Z adding 'torch/include/ATen/ops/_foreach_floor_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2580621Z adding 'torch/include/ATen/ops/_foreach_floor_cuda_dispatch.h' 2025-06-01T21:27:41.2583610Z adding 'torch/include/ATen/ops/_foreach_floor_native.h' 2025-06-01T21:27:41.2586852Z adding 'torch/include/ATen/ops/_foreach_floor_ops.h' 2025-06-01T21:27:41.2589913Z adding 'torch/include/ATen/ops/_foreach_frac.h' 2025-06-01T21:27:41.2593276Z adding 'torch/include/ATen/ops/_foreach_frac_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2596215Z adding 'torch/include/ATen/ops/_foreach_frac_cuda_dispatch.h' 2025-06-01T21:27:41.2599183Z adding 'torch/include/ATen/ops/_foreach_frac_native.h' 2025-06-01T21:27:41.2602384Z adding 'torch/include/ATen/ops/_foreach_frac_ops.h' 2025-06-01T21:27:41.2605722Z adding 'torch/include/ATen/ops/_foreach_lerp.h' 2025-06-01T21:27:41.2609201Z adding 'torch/include/ATen/ops/_foreach_lerp_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2612283Z adding 'torch/include/ATen/ops/_foreach_lerp_cuda_dispatch.h' 2025-06-01T21:27:41.2615453Z adding 'torch/include/ATen/ops/_foreach_lerp_native.h' 2025-06-01T21:27:41.2619046Z adding 'torch/include/ATen/ops/_foreach_lerp_ops.h' 2025-06-01T21:27:41.2622276Z adding 'torch/include/ATen/ops/_foreach_lgamma.h' 2025-06-01T21:27:41.2625984Z adding 'torch/include/ATen/ops/_foreach_lgamma_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2628982Z adding 'torch/include/ATen/ops/_foreach_lgamma_cuda_dispatch.h' 2025-06-01T21:27:41.2632129Z adding 'torch/include/ATen/ops/_foreach_lgamma_native.h' 2025-06-01T21:27:41.2635389Z adding 'torch/include/ATen/ops/_foreach_lgamma_ops.h' 2025-06-01T21:27:41.2638400Z adding 'torch/include/ATen/ops/_foreach_log.h' 2025-06-01T21:27:41.2641462Z adding 'torch/include/ATen/ops/_foreach_log10.h' 2025-06-01T21:27:41.2644703Z adding 'torch/include/ATen/ops/_foreach_log10_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2647646Z adding 'torch/include/ATen/ops/_foreach_log10_cuda_dispatch.h' 2025-06-01T21:27:41.2650586Z adding 'torch/include/ATen/ops/_foreach_log10_native.h' 2025-06-01T21:27:41.2653785Z adding 'torch/include/ATen/ops/_foreach_log10_ops.h' 2025-06-01T21:27:41.2656981Z adding 'torch/include/ATen/ops/_foreach_log1p.h' 2025-06-01T21:27:41.2660133Z adding 'torch/include/ATen/ops/_foreach_log1p_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2663067Z adding 'torch/include/ATen/ops/_foreach_log1p_cuda_dispatch.h' 2025-06-01T21:27:41.2666196Z adding 'torch/include/ATen/ops/_foreach_log1p_native.h' 2025-06-01T21:27:41.2669386Z adding 'torch/include/ATen/ops/_foreach_log1p_ops.h' 2025-06-01T21:27:41.2672627Z adding 'torch/include/ATen/ops/_foreach_log2.h' 2025-06-01T21:27:41.2675885Z adding 'torch/include/ATen/ops/_foreach_log2_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2678880Z adding 'torch/include/ATen/ops/_foreach_log2_cuda_dispatch.h' 2025-06-01T21:27:41.2681895Z adding 'torch/include/ATen/ops/_foreach_log2_native.h' 2025-06-01T21:27:41.2685103Z adding 'torch/include/ATen/ops/_foreach_log2_ops.h' 2025-06-01T21:27:41.2688327Z adding 'torch/include/ATen/ops/_foreach_log_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2691275Z adding 'torch/include/ATen/ops/_foreach_log_cuda_dispatch.h' 2025-06-01T21:27:41.2694231Z adding 'torch/include/ATen/ops/_foreach_log_native.h' 2025-06-01T21:27:41.2697431Z adding 'torch/include/ATen/ops/_foreach_log_ops.h' 2025-06-01T21:27:41.2700551Z adding 'torch/include/ATen/ops/_foreach_max.h' 2025-06-01T21:27:41.2703880Z adding 'torch/include/ATen/ops/_foreach_max_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2706875Z adding 'torch/include/ATen/ops/_foreach_max_cuda_dispatch.h' 2025-06-01T21:27:41.2709751Z adding 'torch/include/ATen/ops/_foreach_max_native.h' 2025-06-01T21:27:41.2713124Z adding 'torch/include/ATen/ops/_foreach_max_ops.h' 2025-06-01T21:27:41.2716426Z adding 'torch/include/ATen/ops/_foreach_maximum.h' 2025-06-01T21:27:41.2719871Z adding 'torch/include/ATen/ops/_foreach_maximum_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2722947Z adding 'torch/include/ATen/ops/_foreach_maximum_cuda_dispatch.h' 2025-06-01T21:27:41.2726100Z adding 'torch/include/ATen/ops/_foreach_maximum_native.h' 2025-06-01T21:27:41.2729765Z adding 'torch/include/ATen/ops/_foreach_maximum_ops.h' 2025-06-01T21:27:41.2733201Z adding 'torch/include/ATen/ops/_foreach_minimum.h' 2025-06-01T21:27:41.2736618Z adding 'torch/include/ATen/ops/_foreach_minimum_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2739690Z adding 'torch/include/ATen/ops/_foreach_minimum_cuda_dispatch.h' 2025-06-01T21:27:41.2742782Z adding 'torch/include/ATen/ops/_foreach_minimum_native.h' 2025-06-01T21:27:41.2746388Z adding 'torch/include/ATen/ops/_foreach_minimum_ops.h' 2025-06-01T21:27:41.2749989Z adding 'torch/include/ATen/ops/_foreach_mul.h' 2025-06-01T21:27:41.2753620Z adding 'torch/include/ATen/ops/_foreach_mul_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2756654Z adding 'torch/include/ATen/ops/_foreach_mul_cuda_dispatch.h' 2025-06-01T21:27:41.2759838Z adding 'torch/include/ATen/ops/_foreach_mul_native.h' 2025-06-01T21:27:41.2763597Z adding 'torch/include/ATen/ops/_foreach_mul_ops.h' 2025-06-01T21:27:41.2766876Z adding 'torch/include/ATen/ops/_foreach_neg.h' 2025-06-01T21:27:41.2770610Z adding 'torch/include/ATen/ops/_foreach_neg_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2773647Z adding 'torch/include/ATen/ops/_foreach_neg_cuda_dispatch.h' 2025-06-01T21:27:41.2776723Z adding 'torch/include/ATen/ops/_foreach_neg_native.h' 2025-06-01T21:27:41.2780036Z adding 'torch/include/ATen/ops/_foreach_neg_ops.h' 2025-06-01T21:27:41.2783202Z adding 'torch/include/ATen/ops/_foreach_norm.h' 2025-06-01T21:27:41.2786624Z adding 'torch/include/ATen/ops/_foreach_norm_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2789698Z adding 'torch/include/ATen/ops/_foreach_norm_cuda_dispatch.h' 2025-06-01T21:27:41.2792993Z adding 'torch/include/ATen/ops/_foreach_norm_native.h' 2025-06-01T21:27:41.2796181Z adding 'torch/include/ATen/ops/_foreach_norm_ops.h' 2025-06-01T21:27:41.2799816Z adding 'torch/include/ATen/ops/_foreach_pow.h' 2025-06-01T21:27:41.2803271Z adding 'torch/include/ATen/ops/_foreach_pow_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2806375Z adding 'torch/include/ATen/ops/_foreach_pow_cuda_dispatch.h' 2025-06-01T21:27:41.2809824Z adding 'torch/include/ATen/ops/_foreach_pow_native.h' 2025-06-01T21:27:41.2813970Z adding 'torch/include/ATen/ops/_foreach_pow_ops.h' 2025-06-01T21:27:41.2817768Z adding 'torch/include/ATen/ops/_foreach_reciprocal.h' 2025-06-01T21:27:41.2821599Z adding 'torch/include/ATen/ops/_foreach_reciprocal_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2825063Z adding 'torch/include/ATen/ops/_foreach_reciprocal_cuda_dispatch.h' 2025-06-01T21:27:41.2828481Z adding 'torch/include/ATen/ops/_foreach_reciprocal_native.h' 2025-06-01T21:27:41.2832275Z adding 'torch/include/ATen/ops/_foreach_reciprocal_ops.h' 2025-06-01T21:27:41.2836236Z adding 'torch/include/ATen/ops/_foreach_round.h' 2025-06-01T21:27:41.2841083Z adding 'torch/include/ATen/ops/_foreach_round_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2844277Z adding 'torch/include/ATen/ops/_foreach_round_cuda_dispatch.h' 2025-06-01T21:27:41.2848202Z adding 'torch/include/ATen/ops/_foreach_round_native.h' 2025-06-01T21:27:41.2850738Z adding 'torch/include/ATen/ops/_foreach_round_ops.h' 2025-06-01T21:27:41.2854417Z adding 'torch/include/ATen/ops/_foreach_rsqrt.h' 2025-06-01T21:27:41.2857797Z adding 'torch/include/ATen/ops/_foreach_rsqrt_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2860921Z adding 'torch/include/ATen/ops/_foreach_rsqrt_cuda_dispatch.h' 2025-06-01T21:27:41.2863860Z adding 'torch/include/ATen/ops/_foreach_rsqrt_native.h' 2025-06-01T21:27:41.2867232Z adding 'torch/include/ATen/ops/_foreach_rsqrt_ops.h' 2025-06-01T21:27:41.2870405Z adding 'torch/include/ATen/ops/_foreach_sigmoid.h' 2025-06-01T21:27:41.2873819Z adding 'torch/include/ATen/ops/_foreach_sigmoid_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2876925Z adding 'torch/include/ATen/ops/_foreach_sigmoid_cuda_dispatch.h' 2025-06-01T21:27:41.2879915Z adding 'torch/include/ATen/ops/_foreach_sigmoid_native.h' 2025-06-01T21:27:41.2883073Z adding 'torch/include/ATen/ops/_foreach_sigmoid_ops.h' 2025-06-01T21:27:41.2886119Z adding 'torch/include/ATen/ops/_foreach_sign.h' 2025-06-01T21:27:41.2889342Z adding 'torch/include/ATen/ops/_foreach_sign_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2892463Z adding 'torch/include/ATen/ops/_foreach_sign_cuda_dispatch.h' 2025-06-01T21:27:41.2895473Z adding 'torch/include/ATen/ops/_foreach_sign_native.h' 2025-06-01T21:27:41.2898704Z adding 'torch/include/ATen/ops/_foreach_sign_ops.h' 2025-06-01T21:27:41.2901795Z adding 'torch/include/ATen/ops/_foreach_sin.h' 2025-06-01T21:27:41.2905009Z adding 'torch/include/ATen/ops/_foreach_sin_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2907941Z adding 'torch/include/ATen/ops/_foreach_sin_cuda_dispatch.h' 2025-06-01T21:27:41.2910898Z adding 'torch/include/ATen/ops/_foreach_sin_native.h' 2025-06-01T21:27:41.2914095Z adding 'torch/include/ATen/ops/_foreach_sin_ops.h' 2025-06-01T21:27:41.2917265Z adding 'torch/include/ATen/ops/_foreach_sinh.h' 2025-06-01T21:27:41.2920599Z adding 'torch/include/ATen/ops/_foreach_sinh_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2923634Z adding 'torch/include/ATen/ops/_foreach_sinh_cuda_dispatch.h' 2025-06-01T21:27:41.2926657Z adding 'torch/include/ATen/ops/_foreach_sinh_native.h' 2025-06-01T21:27:41.2929823Z adding 'torch/include/ATen/ops/_foreach_sinh_ops.h' 2025-06-01T21:27:41.2932908Z adding 'torch/include/ATen/ops/_foreach_sqrt.h' 2025-06-01T21:27:41.2936159Z adding 'torch/include/ATen/ops/_foreach_sqrt_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2939098Z adding 'torch/include/ATen/ops/_foreach_sqrt_cuda_dispatch.h' 2025-06-01T21:27:41.2942102Z adding 'torch/include/ATen/ops/_foreach_sqrt_native.h' 2025-06-01T21:27:41.2945316Z adding 'torch/include/ATen/ops/_foreach_sqrt_ops.h' 2025-06-01T21:27:41.2948636Z adding 'torch/include/ATen/ops/_foreach_sub.h' 2025-06-01T21:27:41.2952137Z adding 'torch/include/ATen/ops/_foreach_sub_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2955186Z adding 'torch/include/ATen/ops/_foreach_sub_cuda_dispatch.h' 2025-06-01T21:27:41.2958284Z adding 'torch/include/ATen/ops/_foreach_sub_native.h' 2025-06-01T21:27:41.2961900Z adding 'torch/include/ATen/ops/_foreach_sub_ops.h' 2025-06-01T21:27:41.2965251Z adding 'torch/include/ATen/ops/_foreach_tan.h' 2025-06-01T21:27:41.2968537Z adding 'torch/include/ATen/ops/_foreach_tan_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2971475Z adding 'torch/include/ATen/ops/_foreach_tan_cuda_dispatch.h' 2025-06-01T21:27:41.2974413Z adding 'torch/include/ATen/ops/_foreach_tan_native.h' 2025-06-01T21:27:41.2977614Z adding 'torch/include/ATen/ops/_foreach_tan_ops.h' 2025-06-01T21:27:41.2980719Z adding 'torch/include/ATen/ops/_foreach_tanh.h' 2025-06-01T21:27:41.2983960Z adding 'torch/include/ATen/ops/_foreach_tanh_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.2986912Z adding 'torch/include/ATen/ops/_foreach_tanh_cuda_dispatch.h' 2025-06-01T21:27:41.2989887Z adding 'torch/include/ATen/ops/_foreach_tanh_native.h' 2025-06-01T21:27:41.2993219Z adding 'torch/include/ATen/ops/_foreach_tanh_ops.h' 2025-06-01T21:27:41.2996301Z adding 'torch/include/ATen/ops/_foreach_trunc.h' 2025-06-01T21:27:41.2999655Z adding 'torch/include/ATen/ops/_foreach_trunc_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.3002552Z adding 'torch/include/ATen/ops/_foreach_trunc_cuda_dispatch.h' 2025-06-01T21:27:41.3005581Z adding 'torch/include/ATen/ops/_foreach_trunc_native.h' 2025-06-01T21:27:41.3008729Z adding 'torch/include/ATen/ops/_foreach_trunc_ops.h' 2025-06-01T21:27:41.3011787Z adding 'torch/include/ATen/ops/_foreach_zero.h' 2025-06-01T21:27:41.3015104Z adding 'torch/include/ATen/ops/_foreach_zero_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.3018058Z adding 'torch/include/ATen/ops/_foreach_zero_cuda_dispatch.h' 2025-06-01T21:27:41.3020995Z adding 'torch/include/ATen/ops/_foreach_zero_native.h' 2025-06-01T21:27:41.3024322Z adding 'torch/include/ATen/ops/_foreach_zero_ops.h' 2025-06-01T21:27:41.3027480Z adding 'torch/include/ATen/ops/_functional_assert_async.h' 2025-06-01T21:27:41.3030716Z adding 'torch/include/ATen/ops/_functional_assert_async_cpu_dispatch.h' 2025-06-01T21:27:41.3033849Z adding 'torch/include/ATen/ops/_functional_assert_async_native.h' 2025-06-01T21:27:41.3036886Z adding 'torch/include/ATen/ops/_functional_assert_async_ops.h' 2025-06-01T21:27:41.3040007Z adding 'torch/include/ATen/ops/_functional_assert_scalar.h' 2025-06-01T21:27:41.3043296Z adding 'torch/include/ATen/ops/_functional_assert_scalar_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.3046262Z adding 'torch/include/ATen/ops/_functional_assert_scalar_native.h' 2025-06-01T21:27:41.3049269Z adding 'torch/include/ATen/ops/_functional_assert_scalar_ops.h' 2025-06-01T21:27:41.3052376Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range.h' 2025-06-01T21:27:41.3055666Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.3058597Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size.h' 2025-06-01T21:27:41.3061909Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.3064896Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_native.h' 2025-06-01T21:27:41.3068047Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_ops.h' 2025-06-01T21:27:41.3071135Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_native.h' 2025-06-01T21:27:41.3074267Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_ops.h' 2025-06-01T21:27:41.3077782Z adding 'torch/include/ATen/ops/_fused_adagrad.h' 2025-06-01T21:27:41.3081378Z adding 'torch/include/ATen/ops/_fused_adagrad_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.3084469Z adding 'torch/include/ATen/ops/_fused_adagrad_cpu_dispatch.h' 2025-06-01T21:27:41.3087685Z adding 'torch/include/ATen/ops/_fused_adagrad_native.h' 2025-06-01T21:27:41.3091515Z adding 'torch/include/ATen/ops/_fused_adagrad_ops.h' 2025-06-01T21:27:41.3095346Z adding 'torch/include/ATen/ops/_fused_adam.h' 2025-06-01T21:27:41.3099008Z adding 'torch/include/ATen/ops/_fused_adam_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.3102155Z adding 'torch/include/ATen/ops/_fused_adam_cpu_dispatch.h' 2025-06-01T21:27:41.3105667Z adding 'torch/include/ATen/ops/_fused_adam_cuda_dispatch.h' 2025-06-01T21:27:41.3108978Z adding 'torch/include/ATen/ops/_fused_adam_native.h' 2025-06-01T21:27:41.3113042Z adding 'torch/include/ATen/ops/_fused_adam_ops.h' 2025-06-01T21:27:41.3116942Z adding 'torch/include/ATen/ops/_fused_adamw.h' 2025-06-01T21:27:41.3120745Z adding 'torch/include/ATen/ops/_fused_adamw_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.3123927Z adding 'torch/include/ATen/ops/_fused_adamw_cpu_dispatch.h' 2025-06-01T21:27:41.3127244Z adding 'torch/include/ATen/ops/_fused_adamw_cuda_dispatch.h' 2025-06-01T21:27:41.3130498Z adding 'torch/include/ATen/ops/_fused_adamw_native.h' 2025-06-01T21:27:41.3134597Z adding 'torch/include/ATen/ops/_fused_adamw_ops.h' 2025-06-01T21:27:41.3138138Z adding 'torch/include/ATen/ops/_fused_dropout.h' 2025-06-01T21:27:41.3141588Z adding 'torch/include/ATen/ops/_fused_dropout_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.3144644Z adding 'torch/include/ATen/ops/_fused_dropout_cuda_dispatch.h' 2025-06-01T21:27:41.3148247Z adding 'torch/include/ATen/ops/_fused_dropout_native.h' 2025-06-01T21:27:41.3151172Z adding 'torch/include/ATen/ops/_fused_dropout_ops.h' 2025-06-01T21:27:41.3154717Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper.h' 2025-06-01T21:27:41.3158351Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.3161559Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cpu_dispatch.h' 2025-06-01T21:27:41.3165157Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cuda_dispatch.h' 2025-06-01T21:27:41.3168485Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_native.h' 2025-06-01T21:27:41.3172092Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_ops.h' 2025-06-01T21:27:41.3175352Z adding 'torch/include/ATen/ops/_fused_rms_norm.h' 2025-06-01T21:27:41.3178332Z adding 'torch/include/ATen/ops/_fused_rms_norm_native.h' 2025-06-01T21:27:41.3181551Z adding 'torch/include/ATen/ops/_fused_rms_norm_ops.h' 2025-06-01T21:27:41.3184702Z adding 'torch/include/ATen/ops/_fused_sdp_choice.h' 2025-06-01T21:27:41.3188052Z adding 'torch/include/ATen/ops/_fused_sdp_choice_cpu_dispatch.h' 2025-06-01T21:27:41.3191361Z adding 'torch/include/ATen/ops/_fused_sdp_choice_cuda_dispatch.h' 2025-06-01T21:27:41.3194551Z adding 'torch/include/ATen/ops/_fused_sdp_choice_meta_dispatch.h' 2025-06-01T21:27:41.3197703Z adding 'torch/include/ATen/ops/_fused_sdp_choice_native.h' 2025-06-01T21:27:41.3200949Z adding 'torch/include/ATen/ops/_fused_sdp_choice_ops.h' 2025-06-01T21:27:41.3204574Z adding 'torch/include/ATen/ops/_fused_sgd.h' 2025-06-01T21:27:41.3208218Z adding 'torch/include/ATen/ops/_fused_sgd_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.3211436Z adding 'torch/include/ATen/ops/_fused_sgd_cpu_dispatch.h' 2025-06-01T21:27:41.3214742Z adding 'torch/include/ATen/ops/_fused_sgd_cuda_dispatch.h' 2025-06-01T21:27:41.3217905Z adding 'torch/include/ATen/ops/_fused_sgd_native.h' 2025-06-01T21:27:41.3221902Z adding 'torch/include/ATen/ops/_fused_sgd_ops.h' 2025-06-01T21:27:41.3225110Z adding 'torch/include/ATen/ops/_fw_primal.h' 2025-06-01T21:27:41.3228477Z adding 'torch/include/ATen/ops/_fw_primal_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.3231547Z adding 'torch/include/ATen/ops/_fw_primal_copy.h' 2025-06-01T21:27:41.3234956Z adding 'torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.3238830Z adding 'torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.3241646Z adding 'torch/include/ATen/ops/_fw_primal_copy_native.h' 2025-06-01T21:27:41.3244945Z adding 'torch/include/ATen/ops/_fw_primal_copy_ops.h' 2025-06-01T21:27:41.3248120Z adding 'torch/include/ATen/ops/_fw_primal_native.h' 2025-06-01T21:27:41.3251353Z adding 'torch/include/ATen/ops/_fw_primal_ops.h' 2025-06-01T21:27:41.3254406Z adding 'torch/include/ATen/ops/_gather_sparse_backward.h' 2025-06-01T21:27:41.3257813Z adding 'torch/include/ATen/ops/_gather_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.3260633Z adding 'torch/include/ATen/ops/_gather_sparse_backward_native.h' 2025-06-01T21:27:41.3263919Z adding 'torch/include/ATen/ops/_gather_sparse_backward_ops.h' 2025-06-01T21:27:41.3267110Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback.h' 2025-06-01T21:27:41.3270355Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward.h' 2025-06-01T21:27:41.3273903Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.3276793Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_native.h' 2025-06-01T21:27:41.3280093Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_ops.h' 2025-06-01T21:27:41.3283425Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.3286519Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_native.h' 2025-06-01T21:27:41.3289815Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_ops.h' 2025-06-01T21:27:41.3293063Z adding 'torch/include/ATen/ops/_grouped_mm.h' 2025-06-01T21:27:41.3296246Z adding 'torch/include/ATen/ops/_grouped_mm_cuda_dispatch.h' 2025-06-01T21:27:41.3299424Z adding 'torch/include/ATen/ops/_grouped_mm_native.h' 2025-06-01T21:27:41.3302726Z adding 'torch/include/ATen/ops/_grouped_mm_ops.h' 2025-06-01T21:27:41.3306710Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type.h' 2025-06-01T21:27:41.3310100Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.3313233Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_native.h' 2025-06-01T21:27:41.3316849Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_ops.h' 2025-06-01T21:27:41.3319952Z adding 'torch/include/ATen/ops/_has_same_storage_numel.h' 2025-06-01T21:27:41.3323305Z adding 'torch/include/ATen/ops/_has_same_storage_numel_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.3326667Z adding 'torch/include/ATen/ops/_has_same_storage_numel_native.h' 2025-06-01T21:27:41.3330108Z adding 'torch/include/ATen/ops/_has_same_storage_numel_ops.h' 2025-06-01T21:27:41.3333280Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges.h' 2025-06-01T21:27:41.3336829Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.3339946Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_cpu_dispatch.h' 2025-06-01T21:27:41.3343397Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_native.h' 2025-06-01T21:27:41.3346790Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_ops.h' 2025-06-01T21:27:41.3350166Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts.h' 2025-06-01T21:27:41.3353702Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.3356872Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_cpu_dispatch.h' 2025-06-01T21:27:41.3359872Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_native.h' 2025-06-01T21:27:41.3363337Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_ops.h' 2025-06-01T21:27:41.3366586Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors.h' 2025-06-01T21:27:41.3370609Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.3373643Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_cpu_dispatch.h' 2025-06-01T21:27:41.3376617Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_native.h' 2025-06-01T21:27:41.3379994Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_ops.h' 2025-06-01T21:27:41.3383189Z adding 'torch/include/ATen/ops/_index_put_impl.h' 2025-06-01T21:27:41.3386517Z adding 'torch/include/ATen/ops/_index_put_impl_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.3389552Z adding 'torch/include/ATen/ops/_index_put_impl_cpu_dispatch.h' 2025-06-01T21:27:41.3392729Z adding 'torch/include/ATen/ops/_index_put_impl_cuda_dispatch.h' 2025-06-01T21:27:41.3395967Z adding 'torch/include/ATen/ops/_index_put_impl_meta_dispatch.h' 2025-06-01T21:27:41.3407147Z adding 'torch/include/ATen/ops/_index_put_impl_native.h' 2025-06-01T21:27:41.3410528Z adding 'torch/include/ATen/ops/_index_put_impl_ops.h' 2025-06-01T21:27:41.3413535Z adding 'torch/include/ATen/ops/_indices.h' 2025-06-01T21:27:41.3416644Z adding 'torch/include/ATen/ops/_indices_copy.h' 2025-06-01T21:27:41.3419905Z adding 'torch/include/ATen/ops/_indices_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.3423120Z adding 'torch/include/ATen/ops/_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.3426498Z adding 'torch/include/ATen/ops/_indices_copy_native.h' 2025-06-01T21:27:41.3429215Z adding 'torch/include/ATen/ops/_indices_copy_ops.h' 2025-06-01T21:27:41.3432367Z adding 'torch/include/ATen/ops/_indices_native.h' 2025-06-01T21:27:41.3435365Z adding 'torch/include/ATen/ops/_indices_ops.h' 2025-06-01T21:27:41.3438428Z adding 'torch/include/ATen/ops/_int_mm.h' 2025-06-01T21:27:41.3441546Z adding 'torch/include/ATen/ops/_int_mm_cpu_dispatch.h' 2025-06-01T21:27:41.3444659Z adding 'torch/include/ATen/ops/_int_mm_cuda_dispatch.h' 2025-06-01T21:27:41.3447715Z adding 'torch/include/ATen/ops/_int_mm_native.h' 2025-06-01T21:27:41.3450845Z adding 'torch/include/ATen/ops/_int_mm_ops.h' 2025-06-01T21:27:41.3453936Z adding 'torch/include/ATen/ops/_is_all_true.h' 2025-06-01T21:27:41.3457160Z adding 'torch/include/ATen/ops/_is_all_true_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.3460016Z adding 'torch/include/ATen/ops/_is_all_true_native.h' 2025-06-01T21:27:41.3463094Z adding 'torch/include/ATen/ops/_is_all_true_ops.h' 2025-06-01T21:27:41.3466225Z adding 'torch/include/ATen/ops/_is_any_true.h' 2025-06-01T21:27:41.3469427Z adding 'torch/include/ATen/ops/_is_any_true_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.3472384Z adding 'torch/include/ATen/ops/_is_any_true_native.h' 2025-06-01T21:27:41.3475482Z adding 'torch/include/ATen/ops/_is_any_true_ops.h' 2025-06-01T21:27:41.3478494Z adding 'torch/include/ATen/ops/_is_zerotensor.h' 2025-06-01T21:27:41.3481684Z adding 'torch/include/ATen/ops/_is_zerotensor_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.3484561Z adding 'torch/include/ATen/ops/_is_zerotensor_native.h' 2025-06-01T21:27:41.3487615Z adding 'torch/include/ATen/ops/_is_zerotensor_ops.h' 2025-06-01T21:27:41.3490899Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward.h' 2025-06-01T21:27:41.3494092Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_cpu_dispatch.h' 2025-06-01T21:27:41.3497312Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_cuda_dispatch.h' 2025-06-01T21:27:41.3500369Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_native.h' 2025-06-01T21:27:41.3503492Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_ops.h' 2025-06-01T21:27:41.3506431Z adding 'torch/include/ATen/ops/_lazy_clone.h' 2025-06-01T21:27:41.3509647Z adding 'torch/include/ATen/ops/_lazy_clone_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.3512583Z adding 'torch/include/ATen/ops/_lazy_clone_native.h' 2025-06-01T21:27:41.3515701Z adding 'torch/include/ATen/ops/_lazy_clone_ops.h' 2025-06-01T21:27:41.3518750Z adding 'torch/include/ATen/ops/_linalg_check_errors.h' 2025-06-01T21:27:41.3522009Z adding 'torch/include/ATen/ops/_linalg_check_errors_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.3524859Z adding 'torch/include/ATen/ops/_linalg_check_errors_native.h' 2025-06-01T21:27:41.3527954Z adding 'torch/include/ATen/ops/_linalg_check_errors_ops.h' 2025-06-01T21:27:41.3531405Z adding 'torch/include/ATen/ops/_linalg_det.h' 2025-06-01T21:27:41.3534688Z adding 'torch/include/ATen/ops/_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.3537600Z adding 'torch/include/ATen/ops/_linalg_det_cpu_dispatch.h' 2025-06-01T21:27:41.3540712Z adding 'torch/include/ATen/ops/_linalg_det_cuda_dispatch.h' 2025-06-01T21:27:41.3543651Z adding 'torch/include/ATen/ops/_linalg_det_meta.h' 2025-06-01T21:27:41.3546767Z adding 'torch/include/ATen/ops/_linalg_det_meta_dispatch.h' 2025-06-01T21:27:41.3549794Z adding 'torch/include/ATen/ops/_linalg_det_native.h' 2025-06-01T21:27:41.3553129Z adding 'torch/include/ATen/ops/_linalg_det_ops.h' 2025-06-01T21:27:41.3556343Z adding 'torch/include/ATen/ops/_linalg_eigh.h' 2025-06-01T21:27:41.3559698Z adding 'torch/include/ATen/ops/_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.3562659Z adding 'torch/include/ATen/ops/_linalg_eigh_cpu_dispatch.h' 2025-06-01T21:27:41.3565802Z adding 'torch/include/ATen/ops/_linalg_eigh_cuda_dispatch.h' 2025-06-01T21:27:41.3568845Z adding 'torch/include/ATen/ops/_linalg_eigh_meta.h' 2025-06-01T21:27:41.3571964Z adding 'torch/include/ATen/ops/_linalg_eigh_meta_dispatch.h' 2025-06-01T21:27:41.3574931Z adding 'torch/include/ATen/ops/_linalg_eigh_native.h' 2025-06-01T21:27:41.3578207Z adding 'torch/include/ATen/ops/_linalg_eigh_ops.h' 2025-06-01T21:27:41.3581166Z adding 'torch/include/ATen/ops/_linalg_eigvals.h' 2025-06-01T21:27:41.3584250Z adding 'torch/include/ATen/ops/_linalg_eigvals_cpu_dispatch.h' 2025-06-01T21:27:41.3587280Z adding 'torch/include/ATen/ops/_linalg_eigvals_cuda_dispatch.h' 2025-06-01T21:27:41.3590311Z adding 'torch/include/ATen/ops/_linalg_eigvals_native.h' 2025-06-01T21:27:41.3593476Z adding 'torch/include/ATen/ops/_linalg_eigvals_ops.h' 2025-06-01T21:27:41.3596638Z adding 'torch/include/ATen/ops/_linalg_slogdet.h' 2025-06-01T21:27:41.3600036Z adding 'torch/include/ATen/ops/_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.3603026Z adding 'torch/include/ATen/ops/_linalg_slogdet_cpu_dispatch.h' 2025-06-01T21:27:41.3606112Z adding 'torch/include/ATen/ops/_linalg_slogdet_cuda_dispatch.h' 2025-06-01T21:27:41.3609118Z adding 'torch/include/ATen/ops/_linalg_slogdet_meta.h' 2025-06-01T21:27:41.3612259Z adding 'torch/include/ATen/ops/_linalg_slogdet_meta_dispatch.h' 2025-06-01T21:27:41.3615245Z adding 'torch/include/ATen/ops/_linalg_slogdet_native.h' 2025-06-01T21:27:41.3618467Z adding 'torch/include/ATen/ops/_linalg_slogdet_ops.h' 2025-06-01T21:27:41.3621768Z adding 'torch/include/ATen/ops/_linalg_solve_ex.h' 2025-06-01T21:27:41.3625246Z adding 'torch/include/ATen/ops/_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.3628339Z adding 'torch/include/ATen/ops/_linalg_solve_ex_cpu_dispatch.h' 2025-06-01T21:27:41.3631730Z adding 'torch/include/ATen/ops/_linalg_solve_ex_cuda_dispatch.h' 2025-06-01T21:27:41.3634735Z adding 'torch/include/ATen/ops/_linalg_solve_ex_meta.h' 2025-06-01T21:27:41.3637932Z adding 'torch/include/ATen/ops/_linalg_solve_ex_meta_dispatch.h' 2025-06-01T21:27:41.3641040Z adding 'torch/include/ATen/ops/_linalg_solve_ex_native.h' 2025-06-01T21:27:41.3644315Z adding 'torch/include/ATen/ops/_linalg_solve_ex_ops.h' 2025-06-01T21:27:41.3647688Z adding 'torch/include/ATen/ops/_linalg_svd.h' 2025-06-01T21:27:41.3651059Z adding 'torch/include/ATen/ops/_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.3654193Z adding 'torch/include/ATen/ops/_linalg_svd_cpu_dispatch.h' 2025-06-01T21:27:41.3657433Z adding 'torch/include/ATen/ops/_linalg_svd_cuda_dispatch.h' 2025-06-01T21:27:41.3660513Z adding 'torch/include/ATen/ops/_linalg_svd_meta.h' 2025-06-01T21:27:41.3663807Z adding 'torch/include/ATen/ops/_linalg_svd_meta_dispatch.h' 2025-06-01T21:27:41.3666887Z adding 'torch/include/ATen/ops/_linalg_svd_native.h' 2025-06-01T21:27:41.3670377Z adding 'torch/include/ATen/ops/_linalg_svd_ops.h' 2025-06-01T21:27:41.3673592Z adding 'torch/include/ATen/ops/_local_scalar_dense.h' 2025-06-01T21:27:41.3676847Z adding 'torch/include/ATen/ops/_local_scalar_dense_cpu_dispatch.h' 2025-06-01T21:27:41.3679914Z adding 'torch/include/ATen/ops/_local_scalar_dense_cuda_dispatch.h' 2025-06-01T21:27:41.3682937Z adding 'torch/include/ATen/ops/_local_scalar_dense_native.h' 2025-06-01T21:27:41.3686137Z adding 'torch/include/ATen/ops/_local_scalar_dense_ops.h' 2025-06-01T21:27:41.3689217Z adding 'torch/include/ATen/ops/_log_softmax.h' 2025-06-01T21:27:41.3692516Z adding 'torch/include/ATen/ops/_log_softmax_backward_data.h' 2025-06-01T21:27:41.3695934Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.3699022Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_cpu_dispatch.h' 2025-06-01T21:27:41.3702131Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_cuda_dispatch.h' 2025-06-01T21:27:41.3705330Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_meta.h' 2025-06-01T21:27:41.3708541Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_meta_dispatch.h' 2025-06-01T21:27:41.3711733Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_native.h' 2025-06-01T21:27:41.3715142Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_ops.h' 2025-06-01T21:27:41.3718397Z adding 'torch/include/ATen/ops/_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.3721467Z adding 'torch/include/ATen/ops/_log_softmax_cpu_dispatch.h' 2025-06-01T21:27:41.3724566Z adding 'torch/include/ATen/ops/_log_softmax_cuda_dispatch.h' 2025-06-01T21:27:41.3727682Z adding 'torch/include/ATen/ops/_log_softmax_meta.h' 2025-06-01T21:27:41.3730763Z adding 'torch/include/ATen/ops/_log_softmax_meta_dispatch.h' 2025-06-01T21:27:41.3733882Z adding 'torch/include/ATen/ops/_log_softmax_native.h' 2025-06-01T21:27:41.3737164Z adding 'torch/include/ATen/ops/_log_softmax_ops.h' 2025-06-01T21:27:41.3740344Z adding 'torch/include/ATen/ops/_logcumsumexp.h' 2025-06-01T21:27:41.3743625Z adding 'torch/include/ATen/ops/_logcumsumexp_cpu_dispatch.h' 2025-06-01T21:27:41.3746809Z adding 'torch/include/ATen/ops/_logcumsumexp_cuda_dispatch.h' 2025-06-01T21:27:41.3749910Z adding 'torch/include/ATen/ops/_logcumsumexp_native.h' 2025-06-01T21:27:41.3753155Z adding 'torch/include/ATen/ops/_logcumsumexp_ops.h' 2025-06-01T21:27:41.3756985Z adding 'torch/include/ATen/ops/_lstm_mps.h' 2025-06-01T21:27:41.3760402Z adding 'torch/include/ATen/ops/_lstm_mps_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.3763375Z adding 'torch/include/ATen/ops/_lstm_mps_native.h' 2025-06-01T21:27:41.3766916Z adding 'torch/include/ATen/ops/_lstm_mps_ops.h' 2025-06-01T21:27:41.3770077Z adding 'torch/include/ATen/ops/_lu_with_info.h' 2025-06-01T21:27:41.3773514Z adding 'torch/include/ATen/ops/_lu_with_info_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.3776399Z adding 'torch/include/ATen/ops/_lu_with_info_native.h' 2025-06-01T21:27:41.3779673Z adding 'torch/include/ATen/ops/_lu_with_info_ops.h' 2025-06-01T21:27:41.3782956Z adding 'torch/include/ATen/ops/_make_dep_token.h' 2025-06-01T21:27:41.3786136Z adding 'torch/include/ATen/ops/_make_dep_token_cpu_dispatch.h' 2025-06-01T21:27:41.3789235Z adding 'torch/include/ATen/ops/_make_dep_token_native.h' 2025-06-01T21:27:41.3792592Z adding 'torch/include/ATen/ops/_make_dep_token_ops.h' 2025-06-01T21:27:41.3795810Z adding 'torch/include/ATen/ops/_make_dual.h' 2025-06-01T21:27:41.3799022Z adding 'torch/include/ATen/ops/_make_dual_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.3802193Z adding 'torch/include/ATen/ops/_make_dual_copy.h' 2025-06-01T21:27:41.3805552Z adding 'torch/include/ATen/ops/_make_dual_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.3808752Z adding 'torch/include/ATen/ops/_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.3811832Z adding 'torch/include/ATen/ops/_make_dual_copy_native.h' 2025-06-01T21:27:41.3815067Z adding 'torch/include/ATen/ops/_make_dual_copy_ops.h' 2025-06-01T21:27:41.3818295Z adding 'torch/include/ATen/ops/_make_dual_native.h' 2025-06-01T21:27:41.3821786Z adding 'torch/include/ATen/ops/_make_dual_ops.h' 2025-06-01T21:27:41.3825055Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor.h' 2025-06-01T21:27:41.3828598Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.3831729Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_cpu_dispatch.h' 2025-06-01T21:27:41.3835073Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_cuda_dispatch.h' 2025-06-01T21:27:41.3838094Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_native.h' 2025-06-01T21:27:41.3841512Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_ops.h' 2025-06-01T21:27:41.3844715Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor.h' 2025-06-01T21:27:41.3848167Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.3851246Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cpu_dispatch.h' 2025-06-01T21:27:41.3854712Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cuda_dispatch.h' 2025-06-01T21:27:41.3857698Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_native.h' 2025-06-01T21:27:41.3861051Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_ops.h' 2025-06-01T21:27:41.3864099Z adding 'torch/include/ATen/ops/_masked_scale.h' 2025-06-01T21:27:41.3867502Z adding 'torch/include/ATen/ops/_masked_scale_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.3870512Z adding 'torch/include/ATen/ops/_masked_scale_cuda_dispatch.h' 2025-06-01T21:27:41.3873844Z adding 'torch/include/ATen/ops/_masked_scale_native.h' 2025-06-01T21:27:41.3876993Z adding 'torch/include/ATen/ops/_masked_scale_ops.h' 2025-06-01T21:27:41.3880370Z adding 'torch/include/ATen/ops/_masked_softmax.h' 2025-06-01T21:27:41.3883685Z adding 'torch/include/ATen/ops/_masked_softmax_backward.h' 2025-06-01T21:27:41.3887059Z adding 'torch/include/ATen/ops/_masked_softmax_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.3890013Z adding 'torch/include/ATen/ops/_masked_softmax_backward_cpu_dispatch.h' 2025-06-01T21:27:41.3893095Z adding 'torch/include/ATen/ops/_masked_softmax_backward_cuda_dispatch.h' 2025-06-01T21:27:41.3896358Z adding 'torch/include/ATen/ops/_masked_softmax_backward_native.h' 2025-06-01T21:27:41.3899537Z adding 'torch/include/ATen/ops/_masked_softmax_backward_ops.h' 2025-06-01T21:27:41.3902773Z adding 'torch/include/ATen/ops/_masked_softmax_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.3905755Z adding 'torch/include/ATen/ops/_masked_softmax_cpu_dispatch.h' 2025-06-01T21:27:41.3908778Z adding 'torch/include/ATen/ops/_masked_softmax_cuda_dispatch.h' 2025-06-01T21:27:41.3912199Z adding 'torch/include/ATen/ops/_masked_softmax_native.h' 2025-06-01T21:27:41.3915355Z adding 'torch/include/ATen/ops/_masked_softmax_ops.h' 2025-06-01T21:27:41.3918545Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear.h' 2025-06-01T21:27:41.3921720Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_cuda_dispatch.h' 2025-06-01T21:27:41.3924701Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_native.h' 2025-06-01T21:27:41.3927781Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_ops.h' 2025-06-01T21:27:41.3931255Z adding 'torch/include/ATen/ops/_mkldnn_reshape.h' 2025-06-01T21:27:41.3934505Z adding 'torch/include/ATen/ops/_mkldnn_reshape_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.3937350Z adding 'torch/include/ATen/ops/_mkldnn_reshape_native.h' 2025-06-01T21:27:41.3940535Z adding 'torch/include/ATen/ops/_mkldnn_reshape_ops.h' 2025-06-01T21:27:41.3943923Z adding 'torch/include/ATen/ops/_mkldnn_transpose.h' 2025-06-01T21:27:41.3947229Z adding 'torch/include/ATen/ops/_mkldnn_transpose_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.3950189Z adding 'torch/include/ATen/ops/_mkldnn_transpose_meta_dispatch.h' 2025-06-01T21:27:41.3953392Z adding 'torch/include/ATen/ops/_mkldnn_transpose_native.h' 2025-06-01T21:27:41.3956532Z adding 'torch/include/ATen/ops/_mkldnn_transpose_ops.h' 2025-06-01T21:27:41.3960042Z adding 'torch/include/ATen/ops/_mps_convolution.h' 2025-06-01T21:27:41.3963528Z adding 'torch/include/ATen/ops/_mps_convolution_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.3966455Z adding 'torch/include/ATen/ops/_mps_convolution_native.h' 2025-06-01T21:27:41.3969844Z adding 'torch/include/ATen/ops/_mps_convolution_ops.h' 2025-06-01T21:27:41.3973448Z adding 'torch/include/ATen/ops/_mps_convolution_transpose.h' 2025-06-01T21:27:41.3976968Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.3979848Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_native.h' 2025-06-01T21:27:41.3983080Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_ops.h' 2025-06-01T21:27:41.3986745Z adding 'torch/include/ATen/ops/_native_batch_norm_legit.h' 2025-06-01T21:27:41.3990083Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.3993429Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_cpu_dispatch.h' 2025-06-01T21:27:41.3996590Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_cuda_dispatch.h' 2025-06-01T21:27:41.3999788Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_native.h' 2025-06-01T21:27:41.4003124Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training.h' 2025-06-01T21:27:41.4006642Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.4009649Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_native.h' 2025-06-01T21:27:41.4012965Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_ops.h' 2025-06-01T21:27:41.4016613Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_ops.h' 2025-06-01T21:27:41.4020114Z adding 'torch/include/ATen/ops/_native_multi_head_attention.h' 2025-06-01T21:27:41.4023525Z adding 'torch/include/ATen/ops/_native_multi_head_attention_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.4026622Z adding 'torch/include/ATen/ops/_native_multi_head_attention_cpu_dispatch.h' 2025-06-01T21:27:41.4029751Z adding 'torch/include/ATen/ops/_native_multi_head_attention_cuda_dispatch.h' 2025-06-01T21:27:41.4038940Z adding 'torch/include/ATen/ops/_native_multi_head_attention_native.h' 2025-06-01T21:27:41.4043825Z adding 'torch/include/ATen/ops/_native_multi_head_attention_ops.h' 2025-06-01T21:27:41.4047071Z adding 'torch/include/ATen/ops/_neg_view.h' 2025-06-01T21:27:41.4050360Z adding 'torch/include/ATen/ops/_neg_view_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.4053459Z adding 'torch/include/ATen/ops/_neg_view_copy.h' 2025-06-01T21:27:41.4057601Z adding 'torch/include/ATen/ops/_neg_view_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.4060879Z adding 'torch/include/ATen/ops/_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.4063796Z adding 'torch/include/ATen/ops/_neg_view_copy_native.h' 2025-06-01T21:27:41.4066979Z adding 'torch/include/ATen/ops/_neg_view_copy_ops.h' 2025-06-01T21:27:41.4070025Z adding 'torch/include/ATen/ops/_neg_view_native.h' 2025-06-01T21:27:41.4073400Z adding 'torch/include/ATen/ops/_neg_view_ops.h' 2025-06-01T21:27:41.4076670Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets.h' 2025-06-01T21:27:41.4079804Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cpu_dispatch.h' 2025-06-01T21:27:41.4082965Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cuda_dispatch.h' 2025-06-01T21:27:41.4086013Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_native.h' 2025-06-01T21:27:41.4089201Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_ops.h' 2025-06-01T21:27:41.4092328Z adding 'torch/include/ATen/ops/_nested_from_padded.h' 2025-06-01T21:27:41.4096056Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example.h' 2025-06-01T21:27:41.4099436Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.4102462Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_native.h' 2025-06-01T21:27:41.4105867Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_ops.h' 2025-06-01T21:27:41.4109195Z adding 'torch/include/ATen/ops/_nested_from_padded_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.4112446Z adding 'torch/include/ATen/ops/_nested_from_padded_cpu_dispatch.h' 2025-06-01T21:27:41.4115544Z adding 'torch/include/ATen/ops/_nested_from_padded_cuda_dispatch.h' 2025-06-01T21:27:41.4118588Z adding 'torch/include/ATen/ops/_nested_from_padded_native.h' 2025-06-01T21:27:41.4121842Z adding 'torch/include/ATen/ops/_nested_from_padded_ops.h' 2025-06-01T21:27:41.4126973Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor.h' 2025-06-01T21:27:41.4130098Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor_native.h' 2025-06-01T21:27:41.4133441Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor_ops.h' 2025-06-01T21:27:41.4136515Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy.h' 2025-06-01T21:27:41.4139490Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy_native.h' 2025-06-01T21:27:41.4142619Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy_ops.h' 2025-06-01T21:27:41.4145638Z adding 'torch/include/ATen/ops/_nested_get_lengths.h' 2025-06-01T21:27:41.4148616Z adding 'torch/include/ATen/ops/_nested_get_lengths_native.h' 2025-06-01T21:27:41.4151823Z adding 'torch/include/ATen/ops/_nested_get_lengths_ops.h' 2025-06-01T21:27:41.4154968Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen.h' 2025-06-01T21:27:41.4157912Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen_native.h' 2025-06-01T21:27:41.4161022Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen_ops.h' 2025-06-01T21:27:41.4164107Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen.h' 2025-06-01T21:27:41.4167110Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen_native.h' 2025-06-01T21:27:41.4170226Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen_ops.h' 2025-06-01T21:27:41.4173299Z adding 'torch/include/ATen/ops/_nested_get_offsets.h' 2025-06-01T21:27:41.4176300Z adding 'torch/include/ATen/ops/_nested_get_offsets_native.h' 2025-06-01T21:27:41.4179451Z adding 'torch/include/ATen/ops/_nested_get_offsets_ops.h' 2025-06-01T21:27:41.4182495Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx.h' 2025-06-01T21:27:41.4185491Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx_native.h' 2025-06-01T21:27:41.4188606Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx_ops.h' 2025-06-01T21:27:41.4191747Z adding 'torch/include/ATen/ops/_nested_get_values.h' 2025-06-01T21:27:41.4194904Z adding 'torch/include/ATen/ops/_nested_get_values_copy.h' 2025-06-01T21:27:41.4198239Z adding 'torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.4201533Z adding 'torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.4204368Z adding 'torch/include/ATen/ops/_nested_get_values_copy_native.h' 2025-06-01T21:27:41.4207527Z adding 'torch/include/ATen/ops/_nested_get_values_copy_ops.h' 2025-06-01T21:27:41.4210488Z adding 'torch/include/ATen/ops/_nested_get_values_native.h' 2025-06-01T21:27:41.4213629Z adding 'torch/include/ATen/ops/_nested_get_values_ops.h' 2025-06-01T21:27:41.4216834Z adding 'torch/include/ATen/ops/_nested_select_backward.h' 2025-06-01T21:27:41.4219943Z adding 'torch/include/ATen/ops/_nested_select_backward_native.h' 2025-06-01T21:27:41.4223133Z adding 'torch/include/ATen/ops/_nested_select_backward_ops.h' 2025-06-01T21:27:41.4228120Z adding 'torch/include/ATen/ops/_nested_sum_backward.h' 2025-06-01T21:27:41.4231390Z adding 'torch/include/ATen/ops/_nested_sum_backward_native.h' 2025-06-01T21:27:41.4236075Z adding 'torch/include/ATen/ops/_nested_sum_backward_ops.h' 2025-06-01T21:27:41.4240753Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask.h' 2025-06-01T21:27:41.4245476Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.4248762Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_cpu_dispatch.h' 2025-06-01T21:27:41.4253341Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_cuda_dispatch.h' 2025-06-01T21:27:41.4257771Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned.h' 2025-06-01T21:27:41.4261085Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cpu_dispatch.h' 2025-06-01T21:27:41.4265714Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cuda_dispatch.h' 2025-06-01T21:27:41.4270064Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_native.h' 2025-06-01T21:27:41.4274799Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_ops.h' 2025-06-01T21:27:41.4277991Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_native.h' 2025-06-01T21:27:41.4282574Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_ops.h' 2025-06-01T21:27:41.4287260Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list.h' 2025-06-01T21:27:41.4290823Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.4295400Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_native.h' 2025-06-01T21:27:41.4300052Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_ops.h' 2025-06-01T21:27:41.4303268Z adding 'torch/include/ATen/ops/_nested_tensor_size.h' 2025-06-01T21:27:41.4308005Z adding 'torch/include/ATen/ops/_nested_tensor_size_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.4312460Z adding 'torch/include/ATen/ops/_nested_tensor_size_native.h' 2025-06-01T21:27:41.4323845Z adding 'torch/include/ATen/ops/_nested_tensor_size_ops.h' 2025-06-01T21:27:41.4327284Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape.h' 2025-06-01T21:27:41.4333325Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape_native.h' 2025-06-01T21:27:41.4340901Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape_ops.h' 2025-06-01T21:27:41.4344141Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets.h' 2025-06-01T21:27:41.4349635Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.4354813Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_native.h' 2025-06-01T21:27:41.4360906Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_ops.h' 2025-06-01T21:27:41.4364218Z adding 'torch/include/ATen/ops/_nested_tensor_strides.h' 2025-06-01T21:27:41.4370589Z adding 'torch/include/ATen/ops/_nested_tensor_strides_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.4380215Z adding 'torch/include/ATen/ops/_nested_tensor_strides_native.h' 2025-06-01T21:27:41.4383528Z adding 'torch/include/ATen/ops/_nested_tensor_strides_ops.h' 2025-06-01T21:27:41.4390334Z adding 'torch/include/ATen/ops/_nested_view_from_buffer.h' 2025-06-01T21:27:41.4397421Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy.h' 2025-06-01T21:27:41.4402529Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.4405879Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.4411385Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_native.h' 2025-06-01T21:27:41.4416480Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_ops.h' 2025-06-01T21:27:41.4421362Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_cpu_dispatch.h' 2025-06-01T21:27:41.4424699Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_cuda_dispatch.h' 2025-06-01T21:27:41.4429540Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_native.h' 2025-06-01T21:27:41.4434549Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_ops.h' 2025-06-01T21:27:41.4437853Z adding 'torch/include/ATen/ops/_nested_view_from_jagged.h' 2025-06-01T21:27:41.4441167Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy.h' 2025-06-01T21:27:41.4446304Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.4449782Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.4452707Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_native.h' 2025-06-01T21:27:41.4456035Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_ops.h' 2025-06-01T21:27:41.4459117Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_native.h' 2025-06-01T21:27:41.4464124Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_ops.h' 2025-06-01T21:27:41.4467467Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta.h' 2025-06-01T21:27:41.4471764Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.4475055Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_native.h' 2025-06-01T21:27:41.4478272Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_ops.h' 2025-06-01T21:27:41.4481285Z adding 'torch/include/ATen/ops/_nnpack_available.h' 2025-06-01T21:27:41.4484496Z adding 'torch/include/ATen/ops/_nnpack_available_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.4487407Z adding 'torch/include/ATen/ops/_nnpack_available_native.h' 2025-06-01T21:27:41.4490502Z adding 'torch/include/ATen/ops/_nnpack_available_ops.h' 2025-06-01T21:27:41.4494006Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution.h' 2025-06-01T21:27:41.4497637Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.4500704Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_native.h' 2025-06-01T21:27:41.4504009Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_ops.h' 2025-06-01T21:27:41.4507011Z adding 'torch/include/ATen/ops/_nnz.h' 2025-06-01T21:27:41.4510064Z adding 'torch/include/ATen/ops/_nnz_native.h' 2025-06-01T21:27:41.4513283Z adding 'torch/include/ATen/ops/_nnz_ops.h' 2025-06-01T21:27:41.4516482Z adding 'torch/include/ATen/ops/_pack_padded_sequence.h' 2025-06-01T21:27:41.4519722Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward.h' 2025-06-01T21:27:41.4523124Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.4526160Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_native.h' 2025-06-01T21:27:41.4529366Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_ops.h' 2025-06-01T21:27:41.4532636Z adding 'torch/include/ATen/ops/_pack_padded_sequence_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.4535567Z adding 'torch/include/ATen/ops/_pack_padded_sequence_native.h' 2025-06-01T21:27:41.4538815Z adding 'torch/include/ATen/ops/_pack_padded_sequence_ops.h' 2025-06-01T21:27:41.4541954Z adding 'torch/include/ATen/ops/_pad_circular.h' 2025-06-01T21:27:41.4545309Z adding 'torch/include/ATen/ops/_pad_circular_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.4548201Z adding 'torch/include/ATen/ops/_pad_circular_native.h' 2025-06-01T21:27:41.4551538Z adding 'torch/include/ATen/ops/_pad_circular_ops.h' 2025-06-01T21:27:41.4554761Z adding 'torch/include/ATen/ops/_pad_enum.h' 2025-06-01T21:27:41.4558040Z adding 'torch/include/ATen/ops/_pad_enum_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.4560986Z adding 'torch/include/ATen/ops/_pad_enum_native.h' 2025-06-01T21:27:41.4564153Z adding 'torch/include/ATen/ops/_pad_enum_ops.h' 2025-06-01T21:27:41.4567615Z adding 'torch/include/ATen/ops/_pad_packed_sequence.h' 2025-06-01T21:27:41.4570997Z adding 'torch/include/ATen/ops/_pad_packed_sequence_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.4574436Z adding 'torch/include/ATen/ops/_pad_packed_sequence_native.h' 2025-06-01T21:27:41.4577642Z adding 'torch/include/ATen/ops/_pad_packed_sequence_ops.h' 2025-06-01T21:27:41.4580896Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward.h' 2025-06-01T21:27:41.4584140Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_cpu_dispatch.h' 2025-06-01T21:27:41.4587269Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_cuda_dispatch.h' 2025-06-01T21:27:41.4590310Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_native.h' 2025-06-01T21:27:41.4593660Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_ops.h' 2025-06-01T21:27:41.4596777Z adding 'torch/include/ATen/ops/_pdist_backward.h' 2025-06-01T21:27:41.4600116Z adding 'torch/include/ATen/ops/_pdist_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.4603244Z adding 'torch/include/ATen/ops/_pdist_backward_cpu_dispatch.h' 2025-06-01T21:27:41.4606253Z adding 'torch/include/ATen/ops/_pdist_backward_cuda_dispatch.h' 2025-06-01T21:27:41.4609276Z adding 'torch/include/ATen/ops/_pdist_backward_native.h' 2025-06-01T21:27:41.4612479Z adding 'torch/include/ATen/ops/_pdist_backward_ops.h' 2025-06-01T21:27:41.4615608Z adding 'torch/include/ATen/ops/_pdist_forward.h' 2025-06-01T21:27:41.4618932Z adding 'torch/include/ATen/ops/_pdist_forward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.4621989Z adding 'torch/include/ATen/ops/_pdist_forward_cpu_dispatch.h' 2025-06-01T21:27:41.4625015Z adding 'torch/include/ATen/ops/_pdist_forward_cuda_dispatch.h' 2025-06-01T21:27:41.4629654Z adding 'torch/include/ATen/ops/_pdist_forward_native.h' 2025-06-01T21:27:41.4633110Z adding 'torch/include/ATen/ops/_pdist_forward_ops.h' 2025-06-01T21:27:41.4636334Z adding 'torch/include/ATen/ops/_pin_memory.h' 2025-06-01T21:27:41.4639590Z adding 'torch/include/ATen/ops/_pin_memory_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.4642532Z adding 'torch/include/ATen/ops/_pin_memory_native.h' 2025-06-01T21:27:41.4645799Z adding 'torch/include/ATen/ops/_pin_memory_ops.h' 2025-06-01T21:27:41.4648886Z adding 'torch/include/ATen/ops/_prelu_kernel.h' 2025-06-01T21:27:41.4651985Z adding 'torch/include/ATen/ops/_prelu_kernel_backward.h' 2025-06-01T21:27:41.4655109Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_cpu_dispatch.h' 2025-06-01T21:27:41.4658185Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_cuda_dispatch.h' 2025-06-01T21:27:41.4661155Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_native.h' 2025-06-01T21:27:41.4664281Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_ops.h' 2025-06-01T21:27:41.4667364Z adding 'torch/include/ATen/ops/_prelu_kernel_cpu_dispatch.h' 2025-06-01T21:27:41.4670434Z adding 'torch/include/ATen/ops/_prelu_kernel_cuda_dispatch.h' 2025-06-01T21:27:41.4673577Z adding 'torch/include/ATen/ops/_prelu_kernel_native.h' 2025-06-01T21:27:41.4676750Z adding 'torch/include/ATen/ops/_prelu_kernel_ops.h' 2025-06-01T21:27:41.4679789Z adding 'torch/include/ATen/ops/_print.h' 2025-06-01T21:27:41.4683010Z adding 'torch/include/ATen/ops/_print_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.4687553Z adding 'torch/include/ATen/ops/_print_native.h' 2025-06-01T21:27:41.4690722Z adding 'torch/include/ATen/ops/_print_ops.h' 2025-06-01T21:27:41.4693825Z adding 'torch/include/ATen/ops/_propagate_xla_data.h' 2025-06-01T21:27:41.4697093Z adding 'torch/include/ATen/ops/_propagate_xla_data_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.4699966Z adding 'torch/include/ATen/ops/_propagate_xla_data_native.h' 2025-06-01T21:27:41.4703078Z adding 'torch/include/ATen/ops/_propagate_xla_data_ops.h' 2025-06-01T21:27:41.4706241Z adding 'torch/include/ATen/ops/_remove_batch_dim.h' 2025-06-01T21:27:41.4709543Z adding 'torch/include/ATen/ops/_remove_batch_dim_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.4712588Z adding 'torch/include/ATen/ops/_remove_batch_dim_native.h' 2025-06-01T21:27:41.4715690Z adding 'torch/include/ATen/ops/_remove_batch_dim_ops.h' 2025-06-01T21:27:41.4718813Z adding 'torch/include/ATen/ops/_reshape_alias.h' 2025-06-01T21:27:41.4722219Z adding 'torch/include/ATen/ops/_reshape_alias_copy.h' 2025-06-01T21:27:41.4725647Z adding 'torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.4728866Z adding 'torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.4731727Z adding 'torch/include/ATen/ops/_reshape_alias_copy_native.h' 2025-06-01T21:27:41.4734967Z adding 'torch/include/ATen/ops/_reshape_alias_copy_ops.h' 2025-06-01T21:27:41.4738066Z adding 'torch/include/ATen/ops/_reshape_alias_cpu_dispatch.h' 2025-06-01T21:27:41.4741139Z adding 'torch/include/ATen/ops/_reshape_alias_cuda_dispatch.h' 2025-06-01T21:27:41.4744308Z adding 'torch/include/ATen/ops/_reshape_alias_meta_dispatch.h' 2025-06-01T21:27:41.4747216Z adding 'torch/include/ATen/ops/_reshape_alias_native.h' 2025-06-01T21:27:41.4750345Z adding 'torch/include/ATen/ops/_reshape_alias_ops.h' 2025-06-01T21:27:41.4753798Z adding 'torch/include/ATen/ops/_reshape_copy.h' 2025-06-01T21:27:41.4757065Z adding 'torch/include/ATen/ops/_reshape_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.4759955Z adding 'torch/include/ATen/ops/_reshape_copy_native.h' 2025-06-01T21:27:41.4763070Z adding 'torch/include/ATen/ops/_reshape_copy_ops.h' 2025-06-01T21:27:41.4766089Z adding 'torch/include/ATen/ops/_reshape_from_tensor.h' 2025-06-01T21:27:41.4769350Z adding 'torch/include/ATen/ops/_reshape_from_tensor_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.4772276Z adding 'torch/include/ATen/ops/_reshape_from_tensor_native.h' 2025-06-01T21:27:41.4775311Z adding 'torch/include/ATen/ops/_reshape_from_tensor_ops.h' 2025-06-01T21:27:41.4779338Z adding 'torch/include/ATen/ops/_resize_output.h' 2025-06-01T21:27:41.4782781Z adding 'torch/include/ATen/ops/_resize_output_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.4787580Z adding 'torch/include/ATen/ops/_resize_output_meta_dispatch.h' 2025-06-01T21:27:41.4790866Z adding 'torch/include/ATen/ops/_resize_output_native.h' 2025-06-01T21:27:41.4795681Z adding 'torch/include/ATen/ops/_resize_output_ops.h' 2025-06-01T21:27:41.4800179Z adding 'torch/include/ATen/ops/_rowwise_prune.h' 2025-06-01T21:27:41.4803670Z adding 'torch/include/ATen/ops/_rowwise_prune_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.4808030Z adding 'torch/include/ATen/ops/_rowwise_prune_native.h' 2025-06-01T21:27:41.4812555Z adding 'torch/include/ATen/ops/_rowwise_prune_ops.h' 2025-06-01T21:27:41.4826706Z adding 'torch/include/ATen/ops/_safe_softmax.h' 2025-06-01T21:27:41.4830136Z adding 'torch/include/ATen/ops/_safe_softmax_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.4836860Z adding 'torch/include/ATen/ops/_safe_softmax_native.h' 2025-06-01T21:27:41.4842130Z adding 'torch/include/ATen/ops/_safe_softmax_ops.h' 2025-06-01T21:27:41.4845454Z adding 'torch/include/ATen/ops/_sample_dirichlet.h' 2025-06-01T21:27:41.4851680Z adding 'torch/include/ATen/ops/_sample_dirichlet_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.4860678Z adding 'torch/include/ATen/ops/_sample_dirichlet_cpu_dispatch.h' 2025-06-01T21:27:41.4866608Z adding 'torch/include/ATen/ops/_sample_dirichlet_cuda_dispatch.h' 2025-06-01T21:27:41.4869826Z adding 'torch/include/ATen/ops/_sample_dirichlet_native.h' 2025-06-01T21:27:41.4876849Z adding 'torch/include/ATen/ops/_sample_dirichlet_ops.h' 2025-06-01T21:27:41.4884403Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16.h' 2025-06-01T21:27:41.4887848Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.4894496Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_native.h' 2025-06-01T21:27:41.4902792Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_ops.h' 2025-06-01T21:27:41.4910426Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math.h' 2025-06-01T21:27:41.4914080Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.4918696Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps.h' 2025-06-01T21:27:41.4926577Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_native.h' 2025-06-01T21:27:41.4929952Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_ops.h' 2025-06-01T21:27:41.4935215Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_native.h' 2025-06-01T21:27:41.4940446Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_ops.h' 2025-06-01T21:27:41.4945454Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention.h' 2025-06-01T21:27:41.4950742Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward.h' 2025-06-01T21:27:41.4954480Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_cuda_dispatch.h' 2025-06-01T21:27:41.4957609Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_native.h' 2025-06-01T21:27:41.4962391Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_ops.h' 2025-06-01T21:27:41.4965737Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_cuda_dispatch.h' 2025-06-01T21:27:41.4968922Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_native.h' 2025-06-01T21:27:41.4972245Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_ops.h' 2025-06-01T21:27:41.4975475Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention.h' 2025-06-01T21:27:41.4980181Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward.h' 2025-06-01T21:27:41.4983517Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_cuda_dispatch.h' 2025-06-01T21:27:41.4987015Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_native.h' 2025-06-01T21:27:41.4990056Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_ops.h' 2025-06-01T21:27:41.4993444Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_cuda_dispatch.h' 2025-06-01T21:27:41.4996536Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_native.h' 2025-06-01T21:27:41.4999846Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_ops.h' 2025-06-01T21:27:41.5003115Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention.h' 2025-06-01T21:27:41.5007475Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward.h' 2025-06-01T21:27:41.5011525Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_cuda_dispatch.h' 2025-06-01T21:27:41.5015122Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_native.h' 2025-06-01T21:27:41.5018168Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_ops.h' 2025-06-01T21:27:41.5021405Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_cuda_dispatch.h' 2025-06-01T21:27:41.5024569Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu.h' 2025-06-01T21:27:41.5027821Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward.h' 2025-06-01T21:27:41.5031140Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_cpu_dispatch.h' 2025-06-01T21:27:41.5034349Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_native.h' 2025-06-01T21:27:41.5037748Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_ops.h' 2025-06-01T21:27:41.5041023Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_cpu_dispatch.h' 2025-06-01T21:27:41.5044070Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_native.h' 2025-06-01T21:27:41.5047332Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_ops.h' 2025-06-01T21:27:41.5050426Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_native.h' 2025-06-01T21:27:41.5053779Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_ops.h' 2025-06-01T21:27:41.5057169Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable.h' 2025-06-01T21:27:41.5060809Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward.h' 2025-06-01T21:27:41.5065955Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.5070354Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_native.h' 2025-06-01T21:27:41.5074116Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_ops.h' 2025-06-01T21:27:41.5079159Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.5083460Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_native.h' 2025-06-01T21:27:41.5087995Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_ops.h' 2025-06-01T21:27:41.5091328Z adding 'torch/include/ATen/ops/_scaled_grouped_mm.h' 2025-06-01T21:27:41.5096181Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_cuda_dispatch.h' 2025-06-01T21:27:41.5100712Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_native.h' 2025-06-01T21:27:41.5104012Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_ops.h' 2025-06-01T21:27:41.5108869Z adding 'torch/include/ATen/ops/_scaled_mm.h' 2025-06-01T21:27:41.5113532Z adding 'torch/include/ATen/ops/_scaled_mm_cpu_dispatch.h' 2025-06-01T21:27:41.5118455Z adding 'torch/include/ATen/ops/_scaled_mm_cuda_dispatch.h' 2025-06-01T21:27:41.5121706Z adding 'torch/include/ATen/ops/_scaled_mm_native.h' 2025-06-01T21:27:41.5126447Z adding 'torch/include/ATen/ops/_scaled_mm_ops.h' 2025-06-01T21:27:41.5131130Z adding 'torch/include/ATen/ops/_segment_reduce_backward.h' 2025-06-01T21:27:41.5135484Z adding 'torch/include/ATen/ops/_segment_reduce_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.5139165Z adding 'torch/include/ATen/ops/_segment_reduce_backward_cpu_dispatch.h' 2025-06-01T21:27:41.5143765Z adding 'torch/include/ATen/ops/_segment_reduce_backward_cuda_dispatch.h' 2025-06-01T21:27:41.5148246Z adding 'torch/include/ATen/ops/_segment_reduce_backward_native.h' 2025-06-01T21:27:41.5151896Z adding 'torch/include/ATen/ops/_segment_reduce_backward_ops.h' 2025-06-01T21:27:41.5156456Z adding 'torch/include/ATen/ops/_shape_as_tensor.h' 2025-06-01T21:27:41.5161137Z adding 'torch/include/ATen/ops/_shape_as_tensor_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.5164202Z adding 'torch/include/ATen/ops/_shape_as_tensor_native.h' 2025-06-01T21:27:41.5168915Z adding 'torch/include/ATen/ops/_shape_as_tensor_ops.h' 2025-06-01T21:27:41.5174335Z adding 'torch/include/ATen/ops/_slow_conv2d_backward.h' 2025-06-01T21:27:41.5179581Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.5184186Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_cpu_dispatch.h' 2025-06-01T21:27:41.5187614Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_cuda_dispatch.h' 2025-06-01T21:27:41.5192450Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_native.h' 2025-06-01T21:27:41.5197419Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_ops.h' 2025-06-01T21:27:41.5202469Z adding 'torch/include/ATen/ops/_slow_conv2d_forward.h' 2025-06-01T21:27:41.5206858Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_cpu_dispatch.h' 2025-06-01T21:27:41.5210768Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_cuda_dispatch.h' 2025-06-01T21:27:41.5215269Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_native.h' 2025-06-01T21:27:41.5220038Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_ops.h' 2025-06-01T21:27:41.5223314Z adding 'torch/include/ATen/ops/_sobol_engine_draw.h' 2025-06-01T21:27:41.5228103Z adding 'torch/include/ATen/ops/_sobol_engine_draw_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.5232460Z adding 'torch/include/ATen/ops/_sobol_engine_draw_native.h' 2025-06-01T21:27:41.5236953Z adding 'torch/include/ATen/ops/_sobol_engine_draw_ops.h' 2025-06-01T21:27:41.5240309Z adding 'torch/include/ATen/ops/_sobol_engine_ff.h' 2025-06-01T21:27:41.5245025Z adding 'torch/include/ATen/ops/_sobol_engine_ff_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.5249269Z adding 'torch/include/ATen/ops/_sobol_engine_ff_native.h' 2025-06-01T21:27:41.5252672Z adding 'torch/include/ATen/ops/_sobol_engine_ff_ops.h' 2025-06-01T21:27:41.5257275Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state.h' 2025-06-01T21:27:41.5261972Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.5265120Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_native.h' 2025-06-01T21:27:41.5269760Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_ops.h' 2025-06-01T21:27:41.5274199Z adding 'torch/include/ATen/ops/_sobol_engine_scramble.h' 2025-06-01T21:27:41.5277525Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.5281860Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_native.h' 2025-06-01T21:27:41.5286400Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_ops.h' 2025-06-01T21:27:41.5290899Z adding 'torch/include/ATen/ops/_softmax.h' 2025-06-01T21:27:41.5294391Z adding 'torch/include/ATen/ops/_softmax_backward_data.h' 2025-06-01T21:27:41.5299163Z adding 'torch/include/ATen/ops/_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.5303517Z adding 'torch/include/ATen/ops/_softmax_backward_data_cpu_dispatch.h' 2025-06-01T21:27:41.5306838Z adding 'torch/include/ATen/ops/_softmax_backward_data_cuda_dispatch.h' 2025-06-01T21:27:41.5311439Z adding 'torch/include/ATen/ops/_softmax_backward_data_meta.h' 2025-06-01T21:27:41.5315981Z adding 'torch/include/ATen/ops/_softmax_backward_data_meta_dispatch.h' 2025-06-01T21:27:41.5320411Z adding 'torch/include/ATen/ops/_softmax_backward_data_native.h' 2025-06-01T21:27:41.5323946Z adding 'torch/include/ATen/ops/_softmax_backward_data_ops.h' 2025-06-01T21:27:41.5331049Z adding 'torch/include/ATen/ops/_softmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.5336847Z adding 'torch/include/ATen/ops/_softmax_cpu_dispatch.h' 2025-06-01T21:27:41.5340203Z adding 'torch/include/ATen/ops/_softmax_cuda_dispatch.h' 2025-06-01T21:27:41.5345355Z adding 'torch/include/ATen/ops/_softmax_meta.h' 2025-06-01T21:27:41.5351103Z adding 'torch/include/ATen/ops/_softmax_meta_dispatch.h' 2025-06-01T21:27:41.5354310Z adding 'torch/include/ATen/ops/_softmax_native.h' 2025-06-01T21:27:41.5359815Z adding 'torch/include/ATen/ops/_softmax_ops.h' 2025-06-01T21:27:41.5375630Z adding 'torch/include/ATen/ops/_sparse_addmm.h' 2025-06-01T21:27:41.5376320Z adding 'torch/include/ATen/ops/_sparse_addmm_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.5376487Z adding 'torch/include/ATen/ops/_sparse_addmm_native.h' 2025-06-01T21:27:41.5378464Z adding 'torch/include/ATen/ops/_sparse_addmm_ops.h' 2025-06-01T21:27:41.5383379Z adding 'torch/include/ATen/ops/_sparse_broadcast_to.h' 2025-06-01T21:27:41.5388191Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy.h' 2025-06-01T21:27:41.5391820Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.5396821Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.5399760Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_native.h' 2025-06-01T21:27:41.5402989Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_ops.h' 2025-06-01T21:27:41.5408125Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_native.h' 2025-06-01T21:27:41.5411081Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_ops.h' 2025-06-01T21:27:41.5414335Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe.h' 2025-06-01T21:27:41.5417855Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.5422537Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_native.h' 2025-06-01T21:27:41.5425981Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_ops.h' 2025-06-01T21:27:41.5429245Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe.h' 2025-06-01T21:27:41.5433014Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.5435731Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_native.h' 2025-06-01T21:27:41.5438922Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_ops.h' 2025-06-01T21:27:41.5442621Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe.h' 2025-06-01T21:27:41.5446041Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.5449098Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_native.h' 2025-06-01T21:27:41.5453652Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_ops.h' 2025-06-01T21:27:41.5457070Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims.h' 2025-06-01T21:27:41.5460501Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.5463478Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_native.h' 2025-06-01T21:27:41.5466840Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_ops.h' 2025-06-01T21:27:41.5470365Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe.h' 2025-06-01T21:27:41.5474028Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.5477049Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_native.h' 2025-06-01T21:27:41.5481389Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_ops.h' 2025-06-01T21:27:41.5484703Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims.h' 2025-06-01T21:27:41.5488732Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors.h' 2025-06-01T21:27:41.5492416Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.5495650Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_meta_dispatch.h' 2025-06-01T21:27:41.5498762Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_native.h' 2025-06-01T21:27:41.5502266Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_ops.h' 2025-06-01T21:27:41.5505497Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.5508560Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_meta_dispatch.h' 2025-06-01T21:27:41.5511724Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_native.h' 2025-06-01T21:27:41.5515057Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_ops.h' 2025-06-01T21:27:41.5518296Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe.h' 2025-06-01T21:27:41.5521697Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.5524688Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_native.h' 2025-06-01T21:27:41.5527900Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_ops.h' 2025-06-01T21:27:41.5531079Z adding 'torch/include/ATen/ops/_sparse_csr_prod.h' 2025-06-01T21:27:41.5534466Z adding 'torch/include/ATen/ops/_sparse_csr_prod_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.5537462Z adding 'torch/include/ATen/ops/_sparse_csr_prod_native.h' 2025-06-01T21:27:41.5540757Z adding 'torch/include/ATen/ops/_sparse_csr_prod_ops.h' 2025-06-01T21:27:41.5543980Z adding 'torch/include/ATen/ops/_sparse_csr_sum.h' 2025-06-01T21:27:41.5547340Z adding 'torch/include/ATen/ops/_sparse_csr_sum_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.5550327Z adding 'torch/include/ATen/ops/_sparse_csr_sum_native.h' 2025-06-01T21:27:41.5553775Z adding 'torch/include/ATen/ops/_sparse_csr_sum_ops.h' 2025-06-01T21:27:41.5557089Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe.h' 2025-06-01T21:27:41.5560457Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.5563412Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_native.h' 2025-06-01T21:27:41.5566616Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_ops.h' 2025-06-01T21:27:41.5569818Z adding 'torch/include/ATen/ops/_sparse_log_softmax.h' 2025-06-01T21:27:41.5573065Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data.h' 2025-06-01T21:27:41.5576583Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.5580012Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_native.h' 2025-06-01T21:27:41.5582732Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_ops.h' 2025-06-01T21:27:41.5586013Z adding 'torch/include/ATen/ops/_sparse_log_softmax_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.5589159Z adding 'torch/include/ATen/ops/_sparse_log_softmax_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.5592249Z adding 'torch/include/ATen/ops/_sparse_log_softmax_native.h' 2025-06-01T21:27:41.5595707Z adding 'torch/include/ATen/ops/_sparse_log_softmax_ops.h' 2025-06-01T21:27:41.5598941Z adding 'torch/include/ATen/ops/_sparse_mask_projection.h' 2025-06-01T21:27:41.5602253Z adding 'torch/include/ATen/ops/_sparse_mask_projection_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.5605175Z adding 'torch/include/ATen/ops/_sparse_mask_projection_native.h' 2025-06-01T21:27:41.5608389Z adding 'torch/include/ATen/ops/_sparse_mask_projection_ops.h' 2025-06-01T21:27:41.5611432Z adding 'torch/include/ATen/ops/_sparse_mm.h' 2025-06-01T21:27:41.5614663Z adding 'torch/include/ATen/ops/_sparse_mm_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.5617599Z adding 'torch/include/ATen/ops/_sparse_mm_native.h' 2025-06-01T21:27:41.5620735Z adding 'torch/include/ATen/ops/_sparse_mm_ops.h' 2025-06-01T21:27:41.5623862Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl.h' 2025-06-01T21:27:41.5627025Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward.h' 2025-06-01T21:27:41.5630079Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_native.h' 2025-06-01T21:27:41.5633414Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_ops.h' 2025-06-01T21:27:41.5638349Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_native.h' 2025-06-01T21:27:41.5642885Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_ops.h' 2025-06-01T21:27:41.5646159Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm.h' 2025-06-01T21:27:41.5650801Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_cuda_dispatch.h' 2025-06-01T21:27:41.5655212Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_native.h' 2025-06-01T21:27:41.5659922Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_ops.h' 2025-06-01T21:27:41.5663510Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply.h' 2025-06-01T21:27:41.5668068Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_cuda_dispatch.h' 2025-06-01T21:27:41.5672474Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense.h' 2025-06-01T21:27:41.5675783Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_cuda_dispatch.h' 2025-06-01T21:27:41.5680164Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_native.h' 2025-06-01T21:27:41.5684617Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_ops.h' 2025-06-01T21:27:41.5688157Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_native.h' 2025-06-01T21:27:41.5692517Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_ops.h' 2025-06-01T21:27:41.5696950Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear.h' 2025-06-01T21:27:41.5700458Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_cuda_dispatch.h' 2025-06-01T21:27:41.5704910Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_native.h' 2025-06-01T21:27:41.5709511Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_ops.h' 2025-06-01T21:27:41.5714103Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm.h' 2025-06-01T21:27:41.5717844Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_cuda_dispatch.h' 2025-06-01T21:27:41.5722308Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_native.h' 2025-06-01T21:27:41.5726888Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_ops.h' 2025-06-01T21:27:41.5731363Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile.h' 2025-06-01T21:27:41.5734662Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_cuda_dispatch.h' 2025-06-01T21:27:41.5739181Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_native.h' 2025-06-01T21:27:41.5743559Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_ops.h' 2025-06-01T21:27:41.5746949Z adding 'torch/include/ATen/ops/_sparse_softmax.h' 2025-06-01T21:27:41.5751715Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data.h' 2025-06-01T21:27:41.5756423Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.5759473Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_native.h' 2025-06-01T21:27:41.5764582Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_ops.h' 2025-06-01T21:27:41.5769261Z adding 'torch/include/ATen/ops/_sparse_softmax_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.5773906Z adding 'torch/include/ATen/ops/_sparse_softmax_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.5776833Z adding 'torch/include/ATen/ops/_sparse_softmax_native.h' 2025-06-01T21:27:41.5781591Z adding 'torch/include/ATen/ops/_sparse_softmax_ops.h' 2025-06-01T21:27:41.5786205Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul.h' 2025-06-01T21:27:41.5790903Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.5794074Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_native.h' 2025-06-01T21:27:41.5798828Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_ops.h' 2025-06-01T21:27:41.5803297Z adding 'torch/include/ATen/ops/_sparse_sum.h' 2025-06-01T21:27:41.5806590Z adding 'torch/include/ATen/ops/_sparse_sum_backward.h' 2025-06-01T21:27:41.5811347Z adding 'torch/include/ATen/ops/_sparse_sum_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.5815605Z adding 'torch/include/ATen/ops/_sparse_sum_backward_native.h' 2025-06-01T21:27:41.5819003Z adding 'torch/include/ATen/ops/_sparse_sum_backward_ops.h' 2025-06-01T21:27:41.5823734Z adding 'torch/include/ATen/ops/_sparse_sum_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.5828972Z adding 'torch/include/ATen/ops/_sparse_sum_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.5837266Z adding 'torch/include/ATen/ops/_sparse_sum_native.h' 2025-06-01T21:27:41.5844290Z adding 'torch/include/ATen/ops/_sparse_sum_ops.h' 2025-06-01T21:27:41.5847780Z adding 'torch/include/ATen/ops/_spdiags.h' 2025-06-01T21:27:41.5853303Z adding 'torch/include/ATen/ops/_spdiags_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.5861466Z adding 'torch/include/ATen/ops/_spdiags_cpu_dispatch.h' 2025-06-01T21:27:41.5864624Z adding 'torch/include/ATen/ops/_spdiags_native.h' 2025-06-01T21:27:41.5870146Z adding 'torch/include/ATen/ops/_spdiags_ops.h' 2025-06-01T21:27:41.5875800Z adding 'torch/include/ATen/ops/_spsolve.h' 2025-06-01T21:27:41.5880488Z adding 'torch/include/ATen/ops/_spsolve_native.h' 2025-06-01T21:27:41.5883805Z adding 'torch/include/ATen/ops/_spsolve_ops.h' 2025-06-01T21:27:41.5888686Z adding 'torch/include/ATen/ops/_stack.h' 2025-06-01T21:27:41.5893738Z adding 'torch/include/ATen/ops/_stack_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.5896933Z adding 'torch/include/ATen/ops/_stack_cpu_dispatch.h' 2025-06-01T21:27:41.5901791Z adding 'torch/include/ATen/ops/_stack_native.h' 2025-06-01T21:27:41.5905005Z adding 'torch/include/ATen/ops/_stack_ops.h' 2025-06-01T21:27:41.5908171Z adding 'torch/include/ATen/ops/_standard_gamma.h' 2025-06-01T21:27:41.5913330Z adding 'torch/include/ATen/ops/_standard_gamma_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.5916413Z adding 'torch/include/ATen/ops/_standard_gamma_cpu_dispatch.h' 2025-06-01T21:27:41.5919546Z adding 'torch/include/ATen/ops/_standard_gamma_cuda_dispatch.h' 2025-06-01T21:27:41.5922585Z adding 'torch/include/ATen/ops/_standard_gamma_grad.h' 2025-06-01T21:27:41.5928135Z adding 'torch/include/ATen/ops/_standard_gamma_grad_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.5930771Z adding 'torch/include/ATen/ops/_standard_gamma_grad_cpu_dispatch.h' 2025-06-01T21:27:41.5933857Z adding 'torch/include/ATen/ops/_standard_gamma_grad_cuda_dispatch.h' 2025-06-01T21:27:41.5936775Z adding 'torch/include/ATen/ops/_standard_gamma_grad_native.h' 2025-06-01T21:27:41.5939918Z adding 'torch/include/ATen/ops/_standard_gamma_grad_ops.h' 2025-06-01T21:27:41.5942990Z adding 'torch/include/ATen/ops/_standard_gamma_native.h' 2025-06-01T21:27:41.5946172Z adding 'torch/include/ATen/ops/_standard_gamma_ops.h' 2025-06-01T21:27:41.5949282Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults.h' 2025-06-01T21:27:41.5952690Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.5955609Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_native.h' 2025-06-01T21:27:41.5960319Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_ops.h' 2025-06-01T21:27:41.5963921Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch.h' 2025-06-01T21:27:41.5967270Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.5970376Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.5973276Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_native.h' 2025-06-01T21:27:41.5976658Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_ops.h' 2025-06-01T21:27:41.5979804Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view.h' 2025-06-01T21:27:41.5984005Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.5987122Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy.h' 2025-06-01T21:27:41.5990470Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.5993824Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.5996638Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_native.h' 2025-06-01T21:27:41.5999813Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_ops.h' 2025-06-01T21:27:41.6002813Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_native.h' 2025-06-01T21:27:41.6005948Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_ops.h' 2025-06-01T21:27:41.6008923Z adding 'torch/include/ATen/ops/_test_check_tensor.h' 2025-06-01T21:27:41.6012137Z adding 'torch/include/ATen/ops/_test_check_tensor_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.6015006Z adding 'torch/include/ATen/ops/_test_check_tensor_native.h' 2025-06-01T21:27:41.6018093Z adding 'torch/include/ATen/ops/_test_check_tensor_ops.h' 2025-06-01T21:27:41.6021224Z adding 'torch/include/ATen/ops/_test_functorch_fallback.h' 2025-06-01T21:27:41.6024493Z adding 'torch/include/ATen/ops/_test_functorch_fallback_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.6027524Z adding 'torch/include/ATen/ops/_test_functorch_fallback_cpu_dispatch.h' 2025-06-01T21:27:41.6030974Z adding 'torch/include/ATen/ops/_test_functorch_fallback_native.h' 2025-06-01T21:27:41.6034145Z adding 'torch/include/ATen/ops/_test_functorch_fallback_ops.h' 2025-06-01T21:27:41.6037216Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist.h' 2025-06-01T21:27:41.6040574Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.6043593Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_cpu_dispatch.h' 2025-06-01T21:27:41.6046620Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_native.h' 2025-06-01T21:27:41.6049799Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_ops.h' 2025-06-01T21:27:41.6053184Z adding 'torch/include/ATen/ops/_test_optional_floatlist.h' 2025-06-01T21:27:41.6056593Z adding 'torch/include/ATen/ops/_test_optional_floatlist_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.6059442Z adding 'torch/include/ATen/ops/_test_optional_floatlist_cpu_dispatch.h' 2025-06-01T21:27:41.6062446Z adding 'torch/include/ATen/ops/_test_optional_floatlist_native.h' 2025-06-01T21:27:41.6065656Z adding 'torch/include/ATen/ops/_test_optional_floatlist_ops.h' 2025-06-01T21:27:41.6068795Z adding 'torch/include/ATen/ops/_test_optional_intlist.h' 2025-06-01T21:27:41.6072219Z adding 'torch/include/ATen/ops/_test_optional_intlist_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.6075227Z adding 'torch/include/ATen/ops/_test_optional_intlist_cpu_dispatch.h' 2025-06-01T21:27:41.6078252Z adding 'torch/include/ATen/ops/_test_optional_intlist_native.h' 2025-06-01T21:27:41.6081476Z adding 'torch/include/ATen/ops/_test_optional_intlist_ops.h' 2025-06-01T21:27:41.6084626Z adding 'torch/include/ATen/ops/_test_parallel_materialize.h' 2025-06-01T21:27:41.6087858Z adding 'torch/include/ATen/ops/_test_parallel_materialize_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.6090741Z adding 'torch/include/ATen/ops/_test_parallel_materialize_native.h' 2025-06-01T21:27:41.6093824Z adding 'torch/include/ATen/ops/_test_parallel_materialize_ops.h' 2025-06-01T21:27:41.6096863Z adding 'torch/include/ATen/ops/_test_serialization_subcmul.h' 2025-06-01T21:27:41.6100096Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.6102995Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_native.h' 2025-06-01T21:27:41.6106189Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_ops.h' 2025-06-01T21:27:41.6109234Z adding 'torch/include/ATen/ops/_test_string_default.h' 2025-06-01T21:27:41.6112679Z adding 'torch/include/ATen/ops/_test_string_default_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.6115579Z adding 'torch/include/ATen/ops/_test_string_default_native.h' 2025-06-01T21:27:41.6118727Z adding 'torch/include/ATen/ops/_test_string_default_ops.h' 2025-06-01T21:27:41.6121946Z adding 'torch/include/ATen/ops/_test_warn_in_autograd.h' 2025-06-01T21:27:41.6125223Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.6128214Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_native.h' 2025-06-01T21:27:41.6131374Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_ops.h' 2025-06-01T21:27:41.6134632Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward.h' 2025-06-01T21:27:41.6137937Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.6143283Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_native.h' 2025-06-01T21:27:41.6148060Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_ops.h' 2025-06-01T21:27:41.6152351Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward.h' 2025-06-01T21:27:41.6156295Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.6160738Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_native.h' 2025-06-01T21:27:41.6165361Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_ops.h' 2025-06-01T21:27:41.6168723Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell.h' 2025-06-01T21:27:41.6173490Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward.h' 2025-06-01T21:27:41.6178177Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.6181363Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_cuda_dispatch.h' 2025-06-01T21:27:41.6185851Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_native.h' 2025-06-01T21:27:41.6190650Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_ops.h' 2025-06-01T21:27:41.6195625Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.6198799Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_cuda_dispatch.h' 2025-06-01T21:27:41.6203213Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_native.h' 2025-06-01T21:27:41.6207849Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_ops.h' 2025-06-01T21:27:41.6212554Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell.h' 2025-06-01T21:27:41.6215994Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward.h' 2025-06-01T21:27:41.6220822Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.6225324Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl.h' 2025-06-01T21:27:41.6228814Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.6233395Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_cuda_dispatch.h' 2025-06-01T21:27:41.6237859Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_native.h' 2025-06-01T21:27:41.6242613Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_ops.h' 2025-06-01T21:27:41.6246014Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_native.h' 2025-06-01T21:27:41.6250663Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_ops.h' 2025-06-01T21:27:41.6255517Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.6259510Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_cuda_dispatch.h' 2025-06-01T21:27:41.6263157Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_native.h' 2025-06-01T21:27:41.6267931Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_ops.h' 2025-06-01T21:27:41.6272775Z adding 'torch/include/ATen/ops/_to_copy.h' 2025-06-01T21:27:41.6276311Z adding 'torch/include/ATen/ops/_to_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.6280804Z adding 'torch/include/ATen/ops/_to_copy_native.h' 2025-06-01T21:27:41.6285482Z adding 'torch/include/ATen/ops/_to_copy_ops.h' 2025-06-01T21:27:41.6289917Z adding 'torch/include/ATen/ops/_to_cpu.h' 2025-06-01T21:27:41.6293413Z adding 'torch/include/ATen/ops/_to_cpu_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.6297700Z adding 'torch/include/ATen/ops/_to_cpu_native.h' 2025-06-01T21:27:41.6302173Z adding 'torch/include/ATen/ops/_to_cpu_ops.h' 2025-06-01T21:27:41.6305479Z adding 'torch/include/ATen/ops/_to_dense.h' 2025-06-01T21:27:41.6310240Z adding 'torch/include/ATen/ops/_to_dense_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.6314692Z adding 'torch/include/ATen/ops/_to_dense_native.h' 2025-06-01T21:27:41.6318112Z adding 'torch/include/ATen/ops/_to_dense_ops.h' 2025-06-01T21:27:41.6322746Z adding 'torch/include/ATen/ops/_to_sparse.h' 2025-06-01T21:27:41.6327296Z adding 'torch/include/ATen/ops/_to_sparse_bsc.h' 2025-06-01T21:27:41.6335672Z adding 'torch/include/ATen/ops/_to_sparse_bsc_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.6338908Z adding 'torch/include/ATen/ops/_to_sparse_bsc_cpu_dispatch.h' 2025-06-01T21:27:41.6348024Z adding 'torch/include/ATen/ops/_to_sparse_bsc_cuda_dispatch.h' 2025-06-01T21:27:41.6353253Z adding 'torch/include/ATen/ops/_to_sparse_bsc_native.h' 2025-06-01T21:27:41.6356689Z adding 'torch/include/ATen/ops/_to_sparse_bsc_ops.h' 2025-06-01T21:27:41.6364408Z adding 'torch/include/ATen/ops/_to_sparse_bsr.h' 2025-06-01T21:27:41.6370378Z adding 'torch/include/ATen/ops/_to_sparse_bsr_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.6375067Z adding 'torch/include/ATen/ops/_to_sparse_bsr_cpu_dispatch.h' 2025-06-01T21:27:41.6378343Z adding 'torch/include/ATen/ops/_to_sparse_bsr_cuda_dispatch.h' 2025-06-01T21:27:41.6383486Z adding 'torch/include/ATen/ops/_to_sparse_bsr_native.h' 2025-06-01T21:27:41.6388277Z adding 'torch/include/ATen/ops/_to_sparse_bsr_ops.h' 2025-06-01T21:27:41.6393174Z adding 'torch/include/ATen/ops/_to_sparse_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.6396446Z adding 'torch/include/ATen/ops/_to_sparse_cpu_dispatch.h' 2025-06-01T21:27:41.6399452Z adding 'torch/include/ATen/ops/_to_sparse_csc.h' 2025-06-01T21:27:41.6404390Z adding 'torch/include/ATen/ops/_to_sparse_csc_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.6407632Z adding 'torch/include/ATen/ops/_to_sparse_csc_cpu_dispatch.h' 2025-06-01T21:27:41.6410844Z adding 'torch/include/ATen/ops/_to_sparse_csc_cuda_dispatch.h' 2025-06-01T21:27:41.6413926Z adding 'torch/include/ATen/ops/_to_sparse_csc_native.h' 2025-06-01T21:27:41.6417155Z adding 'torch/include/ATen/ops/_to_sparse_csc_ops.h' 2025-06-01T21:27:41.6422121Z adding 'torch/include/ATen/ops/_to_sparse_csr.h' 2025-06-01T21:27:41.6425487Z adding 'torch/include/ATen/ops/_to_sparse_csr_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.6428510Z adding 'torch/include/ATen/ops/_to_sparse_csr_cpu_dispatch.h' 2025-06-01T21:27:41.6431714Z adding 'torch/include/ATen/ops/_to_sparse_csr_cuda_dispatch.h' 2025-06-01T21:27:41.6434722Z adding 'torch/include/ATen/ops/_to_sparse_csr_native.h' 2025-06-01T21:27:41.6437917Z adding 'torch/include/ATen/ops/_to_sparse_csr_ops.h' 2025-06-01T21:27:41.6441099Z adding 'torch/include/ATen/ops/_to_sparse_cuda_dispatch.h' 2025-06-01T21:27:41.6444186Z adding 'torch/include/ATen/ops/_to_sparse_native.h' 2025-06-01T21:27:41.6447599Z adding 'torch/include/ATen/ops/_to_sparse_ops.h' 2025-06-01T21:27:41.6452171Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured.h' 2025-06-01T21:27:41.6455511Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_cuda_dispatch.h' 2025-06-01T21:27:41.6458528Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_native.h' 2025-06-01T21:27:41.6461656Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_ops.h' 2025-06-01T21:27:41.6464873Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv.h' 2025-06-01T21:27:41.6468247Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.6471420Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_cpu_dispatch.h' 2025-06-01T21:27:41.6474550Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_cuda_dispatch.h' 2025-06-01T21:27:41.6477589Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_native.h' 2025-06-01T21:27:41.6480834Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_ops.h' 2025-06-01T21:27:41.6484321Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd.h' 2025-06-01T21:27:41.6488831Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.6492133Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_cpu_dispatch.h' 2025-06-01T21:27:41.6495361Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_cuda_dispatch.h' 2025-06-01T21:27:41.6498552Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_native.h' 2025-06-01T21:27:41.6502157Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_ops.h' 2025-06-01T21:27:41.6505416Z adding 'torch/include/ATen/ops/_trilinear.h' 2025-06-01T21:27:41.6508761Z adding 'torch/include/ATen/ops/_trilinear_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.6512113Z adding 'torch/include/ATen/ops/_trilinear_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.6515164Z adding 'torch/include/ATen/ops/_trilinear_native.h' 2025-06-01T21:27:41.6518493Z adding 'torch/include/ATen/ops/_trilinear_ops.h' 2025-06-01T21:27:41.6521832Z adding 'torch/include/ATen/ops/_triton_multi_head_attention.h' 2025-06-01T21:27:41.6525209Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.6528270Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_cuda_dispatch.h' 2025-06-01T21:27:41.6531366Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_native.h' 2025-06-01T21:27:41.6534884Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_ops.h' 2025-06-01T21:27:41.6538008Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention.h' 2025-06-01T21:27:41.6541545Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.6544515Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_cuda_dispatch.h' 2025-06-01T21:27:41.6547558Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_native.h' 2025-06-01T21:27:41.6550811Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_ops.h' 2025-06-01T21:27:41.6554027Z adding 'torch/include/ATen/ops/_unique.h' 2025-06-01T21:27:41.6557276Z adding 'torch/include/ATen/ops/_unique2.h' 2025-06-01T21:27:41.6560604Z adding 'torch/include/ATen/ops/_unique2_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.6563610Z adding 'torch/include/ATen/ops/_unique2_cpu_dispatch.h' 2025-06-01T21:27:41.6566724Z adding 'torch/include/ATen/ops/_unique2_cuda_dispatch.h' 2025-06-01T21:27:41.6569778Z adding 'torch/include/ATen/ops/_unique2_native.h' 2025-06-01T21:27:41.6573090Z adding 'torch/include/ATen/ops/_unique2_ops.h' 2025-06-01T21:27:41.6576352Z adding 'torch/include/ATen/ops/_unique_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.6587877Z adding 'torch/include/ATen/ops/_unique_cpu_dispatch.h' 2025-06-01T21:27:41.6591196Z adding 'torch/include/ATen/ops/_unique_cuda_dispatch.h' 2025-06-01T21:27:41.6594066Z adding 'torch/include/ATen/ops/_unique_native.h' 2025-06-01T21:27:41.6597371Z adding 'torch/include/ATen/ops/_unique_ops.h' 2025-06-01T21:27:41.6600492Z adding 'torch/include/ATen/ops/_unpack_dual.h' 2025-06-01T21:27:41.6603876Z adding 'torch/include/ATen/ops/_unpack_dual_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.6606681Z adding 'torch/include/ATen/ops/_unpack_dual_native.h' 2025-06-01T21:27:41.6609795Z adding 'torch/include/ATen/ops/_unpack_dual_ops.h' 2025-06-01T21:27:41.6612869Z adding 'torch/include/ATen/ops/_unsafe_index.h' 2025-06-01T21:27:41.6616444Z adding 'torch/include/ATen/ops/_unsafe_index_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.6619378Z adding 'torch/include/ATen/ops/_unsafe_index_native.h' 2025-06-01T21:27:41.6622522Z adding 'torch/include/ATen/ops/_unsafe_index_ops.h' 2025-06-01T21:27:41.6625778Z adding 'torch/include/ATen/ops/_unsafe_index_put.h' 2025-06-01T21:27:41.6628905Z adding 'torch/include/ATen/ops/_unsafe_index_put_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.6631837Z adding 'torch/include/ATen/ops/_unsafe_index_put_native.h' 2025-06-01T21:27:41.6635022Z adding 'torch/include/ATen/ops/_unsafe_index_put_ops.h' 2025-06-01T21:27:41.6638124Z adding 'torch/include/ATen/ops/_unsafe_masked_index.h' 2025-06-01T21:27:41.6641418Z adding 'torch/include/ATen/ops/_unsafe_masked_index_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.6644502Z adding 'torch/include/ATen/ops/_unsafe_masked_index_native.h' 2025-06-01T21:27:41.6647678Z adding 'torch/include/ATen/ops/_unsafe_masked_index_ops.h' 2025-06-01T21:27:41.6650853Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate.h' 2025-06-01T21:27:41.6654219Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.6657055Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_native.h' 2025-06-01T21:27:41.6660185Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_ops.h' 2025-06-01T21:27:41.6663346Z adding 'torch/include/ATen/ops/_unsafe_view.h' 2025-06-01T21:27:41.6666708Z adding 'torch/include/ATen/ops/_unsafe_view_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.6669599Z adding 'torch/include/ATen/ops/_unsafe_view_native.h' 2025-06-01T21:27:41.6672947Z adding 'torch/include/ATen/ops/_unsafe_view_ops.h' 2025-06-01T21:27:41.6676636Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa.h' 2025-06-01T21:27:41.6680482Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward.h' 2025-06-01T21:27:41.6684198Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.6688099Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cpu_dispatch.h' 2025-06-01T21:27:41.6691438Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cuda_dispatch.h' 2025-06-01T21:27:41.6694583Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta.h' 2025-06-01T21:27:41.6697909Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta_dispatch.h' 2025-06-01T21:27:41.6701030Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_native.h' 2025-06-01T21:27:41.6704340Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_ops.h' 2025-06-01T21:27:41.6707844Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.6711039Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.6714226Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_cpu_dispatch.h' 2025-06-01T21:27:41.6717478Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_cuda_dispatch.h' 2025-06-01T21:27:41.6720573Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_meta.h' 2025-06-01T21:27:41.6723825Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_meta_dispatch.h' 2025-06-01T21:27:41.6726931Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_native.h' 2025-06-01T21:27:41.6730298Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_ops.h' 2025-06-01T21:27:41.6733992Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa.h' 2025-06-01T21:27:41.6737967Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward.h' 2025-06-01T21:27:41.6741586Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.6745165Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cpu_dispatch.h' 2025-06-01T21:27:41.6748201Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cuda_dispatch.h' 2025-06-01T21:27:41.6751529Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta.h' 2025-06-01T21:27:41.6754864Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta_dispatch.h' 2025-06-01T21:27:41.6758108Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_native.h' 2025-06-01T21:27:41.6761411Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_ops.h' 2025-06-01T21:27:41.6765113Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.6768225Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.6771488Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_cpu_dispatch.h' 2025-06-01T21:27:41.6774903Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_cuda_dispatch.h' 2025-06-01T21:27:41.6778044Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_meta.h' 2025-06-01T21:27:41.6781357Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_meta_dispatch.h' 2025-06-01T21:27:41.6784530Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_native.h' 2025-06-01T21:27:41.6788008Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_ops.h' 2025-06-01T21:27:41.6792212Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d.h' 2025-06-01T21:27:41.6795935Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward.h' 2025-06-01T21:27:41.6799662Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.6802881Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cpu_dispatch.h' 2025-06-01T21:27:41.6806230Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cuda_dispatch.h' 2025-06-01T21:27:41.6809359Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta.h' 2025-06-01T21:27:41.6812863Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta_dispatch.h' 2025-06-01T21:27:41.6816064Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_native.h' 2025-06-01T21:27:41.6819386Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_ops.h' 2025-06-01T21:27:41.6822782Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.6825874Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.6829092Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_cpu_dispatch.h' 2025-06-01T21:27:41.6832391Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_cuda_dispatch.h' 2025-06-01T21:27:41.6835862Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_meta.h' 2025-06-01T21:27:41.6839466Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_meta_dispatch.h' 2025-06-01T21:27:41.6842972Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_native.h' 2025-06-01T21:27:41.6846519Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_ops.h' 2025-06-01T21:27:41.6850521Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d.h' 2025-06-01T21:27:41.6854485Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward.h' 2025-06-01T21:27:41.6858610Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.6862058Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cpu_dispatch.h' 2025-06-01T21:27:41.6865756Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cuda_dispatch.h' 2025-06-01T21:27:41.6869234Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta.h' 2025-06-01T21:27:41.6872723Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta_dispatch.h' 2025-06-01T21:27:41.6875993Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_native.h' 2025-06-01T21:27:41.6879408Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_ops.h' 2025-06-01T21:27:41.6883031Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.6886140Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.6889381Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_cpu_dispatch.h' 2025-06-01T21:27:41.6892898Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_cuda_dispatch.h' 2025-06-01T21:27:41.6895792Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_meta.h' 2025-06-01T21:27:41.6898993Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_meta_dispatch.h' 2025-06-01T21:27:41.6902322Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_native.h' 2025-06-01T21:27:41.6905737Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_ops.h' 2025-06-01T21:27:41.6909422Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d.h' 2025-06-01T21:27:41.6913538Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward.h' 2025-06-01T21:27:41.6917155Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.6920331Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cpu_dispatch.h' 2025-06-01T21:27:41.6923632Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cuda_dispatch.h' 2025-06-01T21:27:41.6926694Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta.h' 2025-06-01T21:27:41.6930265Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta_dispatch.h' 2025-06-01T21:27:41.6933430Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_native.h' 2025-06-01T21:27:41.6936723Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_ops.h' 2025-06-01T21:27:41.6940212Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.6943189Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.6946428Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_cpu_dispatch.h' 2025-06-01T21:27:41.6949587Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_cuda_dispatch.h' 2025-06-01T21:27:41.6952747Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_meta.h' 2025-06-01T21:27:41.6955956Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_meta_dispatch.h' 2025-06-01T21:27:41.6959273Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_native.h' 2025-06-01T21:27:41.6962632Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_ops.h' 2025-06-01T21:27:41.6965856Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss.h' 2025-06-01T21:27:41.6969116Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_cuda_dispatch.h' 2025-06-01T21:27:41.6972125Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_native.h' 2025-06-01T21:27:41.6975306Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_ops.h' 2025-06-01T21:27:41.6978365Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight.h' 2025-06-01T21:27:41.6981590Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.6984521Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_native.h' 2025-06-01T21:27:41.6987525Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_ops.h' 2025-06-01T21:27:41.6991067Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices.h' 2025-06-01T21:27:41.6994300Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_cpu_dispatch.h' 2025-06-01T21:27:41.6997418Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_cuda_dispatch.h' 2025-06-01T21:27:41.7000443Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_native.h' 2025-06-01T21:27:41.7003559Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_ops.h' 2025-06-01T21:27:41.7006576Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args.h' 2025-06-01T21:27:41.7009833Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.7012737Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_native.h' 2025-06-01T21:27:41.7015902Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_ops.h' 2025-06-01T21:27:41.7018949Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args.h' 2025-06-01T21:27:41.7022191Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.7025065Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_native.h' 2025-06-01T21:27:41.7028238Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_ops.h' 2025-06-01T21:27:41.7031373Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args.h' 2025-06-01T21:27:41.7034671Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.7037593Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_native.h' 2025-06-01T21:27:41.7040768Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_ops.h' 2025-06-01T21:27:41.7043830Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args.h' 2025-06-01T21:27:41.7047112Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.7049984Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_native.h' 2025-06-01T21:27:41.7053164Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_ops.h' 2025-06-01T21:27:41.7056243Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args.h' 2025-06-01T21:27:41.7059558Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.7062508Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_native.h' 2025-06-01T21:27:41.7065664Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_ops.h' 2025-06-01T21:27:41.7068714Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args.h' 2025-06-01T21:27:41.7072038Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.7074953Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_native.h' 2025-06-01T21:27:41.7078080Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_ops.h' 2025-06-01T21:27:41.7080959Z adding 'torch/include/ATen/ops/_values.h' 2025-06-01T21:27:41.7084087Z adding 'torch/include/ATen/ops/_values_copy.h' 2025-06-01T21:27:41.7087307Z adding 'torch/include/ATen/ops/_values_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.7090467Z adding 'torch/include/ATen/ops/_values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.7093302Z adding 'torch/include/ATen/ops/_values_copy_native.h' 2025-06-01T21:27:41.7096432Z adding 'torch/include/ATen/ops/_values_copy_ops.h' 2025-06-01T21:27:41.7099418Z adding 'torch/include/ATen/ops/_values_native.h' 2025-06-01T21:27:41.7102573Z adding 'torch/include/ATen/ops/_values_ops.h' 2025-06-01T21:27:41.7105575Z adding 'torch/include/ATen/ops/_version.h' 2025-06-01T21:27:41.7108889Z adding 'torch/include/ATen/ops/_version_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.7111867Z adding 'torch/include/ATen/ops/_version_native.h' 2025-06-01T21:27:41.7114959Z adding 'torch/include/ATen/ops/_version_ops.h' 2025-06-01T21:27:41.7118055Z adding 'torch/include/ATen/ops/_weight_int4pack_mm.h' 2025-06-01T21:27:41.7121188Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_cuda_dispatch.h' 2025-06-01T21:27:41.7124243Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu.h' 2025-06-01T21:27:41.7127392Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_cpu_dispatch.h' 2025-06-01T21:27:41.7130405Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_native.h' 2025-06-01T21:27:41.7133503Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_ops.h' 2025-06-01T21:27:41.7136520Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_native.h' 2025-06-01T21:27:41.7139649Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_ops.h' 2025-06-01T21:27:41.7142833Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros.h' 2025-06-01T21:27:41.7145841Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros_native.h' 2025-06-01T21:27:41.7149214Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros_ops.h' 2025-06-01T21:27:41.7152402Z adding 'torch/include/ATen/ops/_weight_int8pack_mm.h' 2025-06-01T21:27:41.7155762Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_cpu_dispatch.h' 2025-06-01T21:27:41.7158845Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_native.h' 2025-06-01T21:27:41.7162025Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_ops.h' 2025-06-01T21:27:41.7165181Z adding 'torch/include/ATen/ops/_weight_norm.h' 2025-06-01T21:27:41.7168495Z adding 'torch/include/ATen/ops/_weight_norm_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.7171705Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward.h' 2025-06-01T21:27:41.7175092Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.7178156Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_native.h' 2025-06-01T21:27:41.7181390Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_ops.h' 2025-06-01T21:27:41.7184627Z adding 'torch/include/ATen/ops/_weight_norm_interface.h' 2025-06-01T21:27:41.7187924Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward.h' 2025-06-01T21:27:41.7191541Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.7194913Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_cpu_dispatch.h' 2025-06-01T21:27:41.7198098Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_cuda_dispatch.h' 2025-06-01T21:27:41.7201202Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_native.h' 2025-06-01T21:27:41.7204516Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_ops.h' 2025-06-01T21:27:41.7207952Z adding 'torch/include/ATen/ops/_weight_norm_interface_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.7211052Z adding 'torch/include/ATen/ops/_weight_norm_interface_cpu_dispatch.h' 2025-06-01T21:27:41.7214112Z adding 'torch/include/ATen/ops/_weight_norm_interface_cuda_dispatch.h' 2025-06-01T21:27:41.7217218Z adding 'torch/include/ATen/ops/_weight_norm_interface_native.h' 2025-06-01T21:27:41.7220506Z adding 'torch/include/ATen/ops/_weight_norm_interface_ops.h' 2025-06-01T21:27:41.7223684Z adding 'torch/include/ATen/ops/_weight_norm_native.h' 2025-06-01T21:27:41.7226801Z adding 'torch/include/ATen/ops/_weight_norm_ops.h' 2025-06-01T21:27:41.7230167Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack.h' 2025-06-01T21:27:41.7233691Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.7236629Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_native.h' 2025-06-01T21:27:41.7239875Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_ops.h' 2025-06-01T21:27:41.7243089Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked.h' 2025-06-01T21:27:41.7246561Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.7249530Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_native.h' 2025-06-01T21:27:41.7252909Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_ops.h' 2025-06-01T21:27:41.7255973Z adding 'torch/include/ATen/ops/abs.h' 2025-06-01T21:27:41.7259358Z adding 'torch/include/ATen/ops/abs_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.7262499Z adding 'torch/include/ATen/ops/abs_cpu_dispatch.h' 2025-06-01T21:27:41.7265573Z adding 'torch/include/ATen/ops/abs_cuda_dispatch.h' 2025-06-01T21:27:41.7268906Z adding 'torch/include/ATen/ops/abs_native.h' 2025-06-01T21:27:41.7272140Z adding 'torch/include/ATen/ops/abs_ops.h' 2025-06-01T21:27:41.7275434Z adding 'torch/include/ATen/ops/absolute.h' 2025-06-01T21:27:41.7278804Z adding 'torch/include/ATen/ops/absolute_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.7281795Z adding 'torch/include/ATen/ops/absolute_native.h' 2025-06-01T21:27:41.7285251Z adding 'torch/include/ATen/ops/absolute_ops.h' 2025-06-01T21:27:41.7288417Z adding 'torch/include/ATen/ops/acos.h' 2025-06-01T21:27:41.7291836Z adding 'torch/include/ATen/ops/acos_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.7294789Z adding 'torch/include/ATen/ops/acos_cpu_dispatch.h' 2025-06-01T21:27:41.7298026Z adding 'torch/include/ATen/ops/acos_cuda_dispatch.h' 2025-06-01T21:27:41.7301088Z adding 'torch/include/ATen/ops/acos_meta.h' 2025-06-01T21:27:41.7304329Z adding 'torch/include/ATen/ops/acos_meta_dispatch.h' 2025-06-01T21:27:41.7307354Z adding 'torch/include/ATen/ops/acos_native.h' 2025-06-01T21:27:41.7310770Z adding 'torch/include/ATen/ops/acos_ops.h' 2025-06-01T21:27:41.7314102Z adding 'torch/include/ATen/ops/acosh.h' 2025-06-01T21:27:41.7317448Z adding 'torch/include/ATen/ops/acosh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.7320501Z adding 'torch/include/ATen/ops/acosh_cpu_dispatch.h' 2025-06-01T21:27:41.7323617Z adding 'torch/include/ATen/ops/acosh_cuda_dispatch.h' 2025-06-01T21:27:41.7326791Z adding 'torch/include/ATen/ops/acosh_meta.h' 2025-06-01T21:27:41.7329913Z adding 'torch/include/ATen/ops/acosh_meta_dispatch.h' 2025-06-01T21:27:41.7333037Z adding 'torch/include/ATen/ops/acosh_native.h' 2025-06-01T21:27:41.7336444Z adding 'torch/include/ATen/ops/acosh_ops.h' 2025-06-01T21:27:41.7340053Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d.h' 2025-06-01T21:27:41.7343961Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.7347659Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.7350973Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_native.h' 2025-06-01T21:27:41.7354303Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_ops.h' 2025-06-01T21:27:41.7357923Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d.h' 2025-06-01T21:27:41.7361496Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.7364612Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_cpu_dispatch.h' 2025-06-01T21:27:41.7367877Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_cuda_dispatch.h' 2025-06-01T21:27:41.7371053Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_native.h' 2025-06-01T21:27:41.7374716Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_ops.h' 2025-06-01T21:27:41.7377947Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d.h' 2025-06-01T21:27:41.7381214Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward.h' 2025-06-01T21:27:41.7384633Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_cpu_dispatch.h' 2025-06-01T21:27:41.7387701Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_cuda_dispatch.h' 2025-06-01T21:27:41.7390797Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_native.h' 2025-06-01T21:27:41.7395055Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_ops.h' 2025-06-01T21:27:41.7397549Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.7400640Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_cpu_dispatch.h' 2025-06-01T21:27:41.7403749Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_cuda_dispatch.h' 2025-06-01T21:27:41.7406818Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_native.h' 2025-06-01T21:27:41.7411083Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_ops.h' 2025-06-01T21:27:41.7413465Z adding 'torch/include/ATen/ops/adaptive_max_pool1d.h' 2025-06-01T21:27:41.7416639Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.7419506Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_native.h' 2025-06-01T21:27:41.7422614Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_ops.h' 2025-06-01T21:27:41.7425846Z adding 'torch/include/ATen/ops/adaptive_max_pool2d.h' 2025-06-01T21:27:41.7429054Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward.h' 2025-06-01T21:27:41.7432611Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.7436419Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_cpu_dispatch.h' 2025-06-01T21:27:41.7439654Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_cuda_dispatch.h' 2025-06-01T21:27:41.7442911Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_meta.h' 2025-06-01T21:27:41.7446031Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_meta_dispatch.h' 2025-06-01T21:27:41.7449085Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_native.h' 2025-06-01T21:27:41.7452301Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_ops.h' 2025-06-01T21:27:41.7455690Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.7458654Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_cpu_dispatch.h' 2025-06-01T21:27:41.7461768Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_cuda_dispatch.h' 2025-06-01T21:27:41.7464805Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_meta.h' 2025-06-01T21:27:41.7467894Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_meta_dispatch.h' 2025-06-01T21:27:41.7470955Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_native.h' 2025-06-01T21:27:41.7474315Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_ops.h' 2025-06-01T21:27:41.7477513Z adding 'torch/include/ATen/ops/adaptive_max_pool3d.h' 2025-06-01T21:27:41.7480686Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward.h' 2025-06-01T21:27:41.7483999Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.7486962Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_cpu_dispatch.h' 2025-06-01T21:27:41.7490078Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_cuda_dispatch.h' 2025-06-01T21:27:41.7493222Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_meta.h' 2025-06-01T21:27:41.7496339Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_meta_dispatch.h' 2025-06-01T21:27:41.7499517Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_native.h' 2025-06-01T21:27:41.7502769Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_ops.h' 2025-06-01T21:27:41.7506209Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.7509141Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_cpu_dispatch.h' 2025-06-01T21:27:41.7512366Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_cuda_dispatch.h' 2025-06-01T21:27:41.7515390Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_meta.h' 2025-06-01T21:27:41.7518509Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_meta_dispatch.h' 2025-06-01T21:27:41.7521684Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_native.h' 2025-06-01T21:27:41.7524944Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_ops.h' 2025-06-01T21:27:41.7528176Z adding 'torch/include/ATen/ops/add.h' 2025-06-01T21:27:41.7531497Z adding 'torch/include/ATen/ops/add_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.7534741Z adding 'torch/include/ATen/ops/add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.7537694Z adding 'torch/include/ATen/ops/add_cpu_dispatch.h' 2025-06-01T21:27:41.7540761Z adding 'torch/include/ATen/ops/add_cuda_dispatch.h' 2025-06-01T21:27:41.7543807Z adding 'torch/include/ATen/ops/add_meta.h' 2025-06-01T21:27:41.7546966Z adding 'torch/include/ATen/ops/add_meta_dispatch.h' 2025-06-01T21:27:41.7550182Z adding 'torch/include/ATen/ops/add_native.h' 2025-06-01T21:27:41.7553878Z adding 'torch/include/ATen/ops/add_ops.h' 2025-06-01T21:27:41.7557267Z adding 'torch/include/ATen/ops/addbmm.h' 2025-06-01T21:27:41.7560325Z adding 'torch/include/ATen/ops/addbmm_cpu_dispatch.h' 2025-06-01T21:27:41.7563457Z adding 'torch/include/ATen/ops/addbmm_cuda_dispatch.h' 2025-06-01T21:27:41.7566547Z adding 'torch/include/ATen/ops/addbmm_meta_dispatch.h' 2025-06-01T21:27:41.7569542Z adding 'torch/include/ATen/ops/addbmm_native.h' 2025-06-01T21:27:41.7572820Z adding 'torch/include/ATen/ops/addbmm_ops.h' 2025-06-01T21:27:41.7576069Z adding 'torch/include/ATen/ops/addcdiv.h' 2025-06-01T21:27:41.7579460Z adding 'torch/include/ATen/ops/addcdiv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.7582401Z adding 'torch/include/ATen/ops/addcdiv_cpu_dispatch.h' 2025-06-01T21:27:41.7585531Z adding 'torch/include/ATen/ops/addcdiv_cuda_dispatch.h' 2025-06-01T21:27:41.7588562Z adding 'torch/include/ATen/ops/addcdiv_meta.h' 2025-06-01T21:27:41.7591796Z adding 'torch/include/ATen/ops/addcdiv_meta_dispatch.h' 2025-06-01T21:27:41.7594806Z adding 'torch/include/ATen/ops/addcdiv_native.h' 2025-06-01T21:27:41.7598976Z adding 'torch/include/ATen/ops/addcdiv_ops.h' 2025-06-01T21:27:41.7601502Z adding 'torch/include/ATen/ops/addcmul.h' 2025-06-01T21:27:41.7605533Z adding 'torch/include/ATen/ops/addcmul_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.7608001Z adding 'torch/include/ATen/ops/addcmul_cpu_dispatch.h' 2025-06-01T21:27:41.7611460Z adding 'torch/include/ATen/ops/addcmul_cuda_dispatch.h' 2025-06-01T21:27:41.7614300Z adding 'torch/include/ATen/ops/addcmul_meta.h' 2025-06-01T21:27:41.7617551Z adding 'torch/include/ATen/ops/addcmul_meta_dispatch.h' 2025-06-01T21:27:41.7620691Z adding 'torch/include/ATen/ops/addcmul_native.h' 2025-06-01T21:27:41.7623998Z adding 'torch/include/ATen/ops/addcmul_ops.h' 2025-06-01T21:27:41.7628428Z adding 'torch/include/ATen/ops/addmm.h' 2025-06-01T21:27:41.7630949Z adding 'torch/include/ATen/ops/addmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.7634474Z adding 'torch/include/ATen/ops/addmm_cpu_dispatch.h' 2025-06-01T21:27:41.7637431Z adding 'torch/include/ATen/ops/addmm_cuda_dispatch.h' 2025-06-01T21:27:41.7640591Z adding 'torch/include/ATen/ops/addmm_meta.h' 2025-06-01T21:27:41.7643759Z adding 'torch/include/ATen/ops/addmm_meta_dispatch.h' 2025-06-01T21:27:41.7647183Z adding 'torch/include/ATen/ops/addmm_native.h' 2025-06-01T21:27:41.7651540Z adding 'torch/include/ATen/ops/addmm_ops.h' 2025-06-01T21:27:41.7654171Z adding 'torch/include/ATen/ops/addmv.h' 2025-06-01T21:27:41.7657687Z adding 'torch/include/ATen/ops/addmv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.7660660Z adding 'torch/include/ATen/ops/addmv_cpu_dispatch.h' 2025-06-01T21:27:41.7663947Z adding 'torch/include/ATen/ops/addmv_cuda_dispatch.h' 2025-06-01T21:27:41.7666979Z adding 'torch/include/ATen/ops/addmv_meta.h' 2025-06-01T21:27:41.7670352Z adding 'torch/include/ATen/ops/addmv_meta_dispatch.h' 2025-06-01T21:27:41.7674467Z adding 'torch/include/ATen/ops/addmv_native.h' 2025-06-01T21:27:41.7677018Z adding 'torch/include/ATen/ops/addmv_ops.h' 2025-06-01T21:27:41.7680392Z adding 'torch/include/ATen/ops/addr.h' 2025-06-01T21:27:41.7683758Z adding 'torch/include/ATen/ops/addr_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.7686953Z adding 'torch/include/ATen/ops/addr_cpu_dispatch.h' 2025-06-01T21:27:41.7690074Z adding 'torch/include/ATen/ops/addr_cuda_dispatch.h' 2025-06-01T21:27:41.7693510Z adding 'torch/include/ATen/ops/addr_native.h' 2025-06-01T21:27:41.7696943Z adding 'torch/include/ATen/ops/addr_ops.h' 2025-06-01T21:27:41.7700270Z adding 'torch/include/ATen/ops/adjoint.h' 2025-06-01T21:27:41.7703549Z adding 'torch/include/ATen/ops/adjoint_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.7706719Z adding 'torch/include/ATen/ops/adjoint_native.h' 2025-06-01T21:27:41.7709791Z adding 'torch/include/ATen/ops/adjoint_ops.h' 2025-06-01T21:27:41.7713549Z adding 'torch/include/ATen/ops/affine_grid_generator.h' 2025-06-01T21:27:41.7717802Z adding 'torch/include/ATen/ops/affine_grid_generator_backward.h' 2025-06-01T21:27:41.7720371Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.7728033Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_native.h' 2025-06-01T21:27:41.7728257Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_ops.h' 2025-06-01T21:27:41.7730553Z adding 'torch/include/ATen/ops/affine_grid_generator_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.7739058Z adding 'torch/include/ATen/ops/affine_grid_generator_native.h' 2025-06-01T21:27:41.7739249Z adding 'torch/include/ATen/ops/affine_grid_generator_ops.h' 2025-06-01T21:27:41.7740865Z adding 'torch/include/ATen/ops/alias.h' 2025-06-01T21:27:41.7745535Z adding 'torch/include/ATen/ops/alias_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.7747350Z adding 'torch/include/ATen/ops/alias_copy.h' 2025-06-01T21:27:41.7752072Z adding 'torch/include/ATen/ops/alias_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.7754191Z adding 'torch/include/ATen/ops/alias_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.7758437Z adding 'torch/include/ATen/ops/alias_copy_native.h' 2025-06-01T21:27:41.7760555Z adding 'torch/include/ATen/ops/alias_copy_ops.h' 2025-06-01T21:27:41.7764062Z adding 'torch/include/ATen/ops/alias_native.h' 2025-06-01T21:27:41.7766818Z adding 'torch/include/ATen/ops/alias_ops.h' 2025-06-01T21:27:41.7771928Z adding 'torch/include/ATen/ops/align_as.h' 2025-06-01T21:27:41.7773513Z adding 'torch/include/ATen/ops/align_as_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.7777954Z adding 'torch/include/ATen/ops/align_as_native.h' 2025-06-01T21:27:41.7779741Z adding 'torch/include/ATen/ops/align_as_ops.h' 2025-06-01T21:27:41.7783849Z adding 'torch/include/ATen/ops/align_tensors.h' 2025-06-01T21:27:41.7786189Z adding 'torch/include/ATen/ops/align_tensors_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.7789431Z adding 'torch/include/ATen/ops/align_tensors_native.h' 2025-06-01T21:27:41.7792480Z adding 'torch/include/ATen/ops/align_tensors_ops.h' 2025-06-01T21:27:41.7795660Z adding 'torch/include/ATen/ops/align_to.h' 2025-06-01T21:27:41.7798916Z adding 'torch/include/ATen/ops/align_to_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.7801997Z adding 'torch/include/ATen/ops/align_to_native.h' 2025-06-01T21:27:41.7805224Z adding 'torch/include/ATen/ops/align_to_ops.h' 2025-06-01T21:27:41.7808605Z adding 'torch/include/ATen/ops/all.h' 2025-06-01T21:27:41.7812646Z adding 'torch/include/ATen/ops/all_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.7815390Z adding 'torch/include/ATen/ops/all_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.7818499Z adding 'torch/include/ATen/ops/all_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.7821541Z adding 'torch/include/ATen/ops/all_cpu_dispatch.h' 2025-06-01T21:27:41.7824656Z adding 'torch/include/ATen/ops/all_cuda_dispatch.h' 2025-06-01T21:27:41.7828220Z adding 'torch/include/ATen/ops/all_meta.h' 2025-06-01T21:27:41.7831114Z adding 'torch/include/ATen/ops/all_meta_dispatch.h' 2025-06-01T21:27:41.7834333Z adding 'torch/include/ATen/ops/all_native.h' 2025-06-01T21:27:41.7837940Z adding 'torch/include/ATen/ops/all_ops.h' 2025-06-01T21:27:41.7841123Z adding 'torch/include/ATen/ops/allclose.h' 2025-06-01T21:27:41.7844386Z adding 'torch/include/ATen/ops/allclose_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.7847203Z adding 'torch/include/ATen/ops/allclose_native.h' 2025-06-01T21:27:41.7850503Z adding 'torch/include/ATen/ops/allclose_ops.h' 2025-06-01T21:27:41.7854967Z adding 'torch/include/ATen/ops/alpha_dropout.h' 2025-06-01T21:27:41.7857111Z adding 'torch/include/ATen/ops/alpha_dropout_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.7860142Z adding 'torch/include/ATen/ops/alpha_dropout_native.h' 2025-06-01T21:27:41.7863145Z adding 'torch/include/ATen/ops/alpha_dropout_ops.h' 2025-06-01T21:27:41.7866262Z adding 'torch/include/ATen/ops/amax.h' 2025-06-01T21:27:41.7869609Z adding 'torch/include/ATen/ops/amax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.7872651Z adding 'torch/include/ATen/ops/amax_cpu_dispatch.h' 2025-06-01T21:27:41.7875761Z adding 'torch/include/ATen/ops/amax_cuda_dispatch.h' 2025-06-01T21:27:41.7878833Z adding 'torch/include/ATen/ops/amax_meta.h' 2025-06-01T21:27:41.7881954Z adding 'torch/include/ATen/ops/amax_meta_dispatch.h' 2025-06-01T21:27:41.7885023Z adding 'torch/include/ATen/ops/amax_native.h' 2025-06-01T21:27:41.7888193Z adding 'torch/include/ATen/ops/amax_ops.h' 2025-06-01T21:27:41.7891320Z adding 'torch/include/ATen/ops/amin.h' 2025-06-01T21:27:41.7894657Z adding 'torch/include/ATen/ops/amin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.7897639Z adding 'torch/include/ATen/ops/amin_cpu_dispatch.h' 2025-06-01T21:27:41.7900709Z adding 'torch/include/ATen/ops/amin_cuda_dispatch.h' 2025-06-01T21:27:41.7903688Z adding 'torch/include/ATen/ops/amin_meta.h' 2025-06-01T21:27:41.7906842Z adding 'torch/include/ATen/ops/amin_meta_dispatch.h' 2025-06-01T21:27:41.7910889Z adding 'torch/include/ATen/ops/amin_native.h' 2025-06-01T21:27:41.7913337Z adding 'torch/include/ATen/ops/amin_ops.h' 2025-06-01T21:27:41.7916536Z adding 'torch/include/ATen/ops/aminmax.h' 2025-06-01T21:27:41.7919875Z adding 'torch/include/ATen/ops/aminmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.7922855Z adding 'torch/include/ATen/ops/aminmax_cpu_dispatch.h' 2025-06-01T21:27:41.7926041Z adding 'torch/include/ATen/ops/aminmax_cuda_dispatch.h' 2025-06-01T21:27:41.7929113Z adding 'torch/include/ATen/ops/aminmax_meta.h' 2025-06-01T21:27:41.7932175Z adding 'torch/include/ATen/ops/aminmax_meta_dispatch.h' 2025-06-01T21:27:41.7935718Z adding 'torch/include/ATen/ops/aminmax_native.h' 2025-06-01T21:27:41.7938494Z adding 'torch/include/ATen/ops/aminmax_ops.h' 2025-06-01T21:27:41.7941547Z adding 'torch/include/ATen/ops/and.h' 2025-06-01T21:27:41.7944861Z adding 'torch/include/ATen/ops/and_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.7947768Z adding 'torch/include/ATen/ops/and_native.h' 2025-06-01T21:27:41.7951146Z adding 'torch/include/ATen/ops/and_ops.h' 2025-06-01T21:27:41.7954270Z adding 'torch/include/ATen/ops/angle.h' 2025-06-01T21:27:41.7957418Z adding 'torch/include/ATen/ops/angle_cpu_dispatch.h' 2025-06-01T21:27:41.7960492Z adding 'torch/include/ATen/ops/angle_cuda_dispatch.h' 2025-06-01T21:27:41.7963488Z adding 'torch/include/ATen/ops/angle_native.h' 2025-06-01T21:27:41.7966669Z adding 'torch/include/ATen/ops/angle_ops.h' 2025-06-01T21:27:41.7969964Z adding 'torch/include/ATen/ops/any.h' 2025-06-01T21:27:41.7973378Z adding 'torch/include/ATen/ops/any_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.7976613Z adding 'torch/include/ATen/ops/any_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.7979644Z adding 'torch/include/ATen/ops/any_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.7982761Z adding 'torch/include/ATen/ops/any_cpu_dispatch.h' 2025-06-01T21:27:41.7985951Z adding 'torch/include/ATen/ops/any_cuda_dispatch.h' 2025-06-01T21:27:41.7989133Z adding 'torch/include/ATen/ops/any_meta.h' 2025-06-01T21:27:41.7992545Z adding 'torch/include/ATen/ops/any_meta_dispatch.h' 2025-06-01T21:27:41.7996505Z adding 'torch/include/ATen/ops/any_native.h' 2025-06-01T21:27:41.7999329Z adding 'torch/include/ATen/ops/any_ops.h' 2025-06-01T21:27:41.8002927Z adding 'torch/include/ATen/ops/arange.h' 2025-06-01T21:27:41.8006409Z adding 'torch/include/ATen/ops/arange_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.8009419Z adding 'torch/include/ATen/ops/arange_cpu_dispatch.h' 2025-06-01T21:27:41.8012515Z adding 'torch/include/ATen/ops/arange_cuda_dispatch.h' 2025-06-01T21:27:41.8015555Z adding 'torch/include/ATen/ops/arange_meta_dispatch.h' 2025-06-01T21:27:41.8018610Z adding 'torch/include/ATen/ops/arange_native.h' 2025-06-01T21:27:41.8022535Z adding 'torch/include/ATen/ops/arange_ops.h' 2025-06-01T21:27:41.8025760Z adding 'torch/include/ATen/ops/arccos.h' 2025-06-01T21:27:41.8029023Z adding 'torch/include/ATen/ops/arccos_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.8032018Z adding 'torch/include/ATen/ops/arccos_native.h' 2025-06-01T21:27:41.8035229Z adding 'torch/include/ATen/ops/arccos_ops.h' 2025-06-01T21:27:41.8038330Z adding 'torch/include/ATen/ops/arccosh.h' 2025-06-01T21:27:41.8041585Z adding 'torch/include/ATen/ops/arccosh_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.8044411Z adding 'torch/include/ATen/ops/arccosh_native.h' 2025-06-01T21:27:41.8047713Z adding 'torch/include/ATen/ops/arccosh_ops.h' 2025-06-01T21:27:41.8050823Z adding 'torch/include/ATen/ops/arcsin.h' 2025-06-01T21:27:41.8054092Z adding 'torch/include/ATen/ops/arcsin_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.8057011Z adding 'torch/include/ATen/ops/arcsin_native.h' 2025-06-01T21:27:41.8060211Z adding 'torch/include/ATen/ops/arcsin_ops.h' 2025-06-01T21:27:41.8063342Z adding 'torch/include/ATen/ops/arcsinh.h' 2025-06-01T21:27:41.8066573Z adding 'torch/include/ATen/ops/arcsinh_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.8069468Z adding 'torch/include/ATen/ops/arcsinh_native.h' 2025-06-01T21:27:41.8072810Z adding 'torch/include/ATen/ops/arcsinh_ops.h' 2025-06-01T21:27:41.8076010Z adding 'torch/include/ATen/ops/arctan.h' 2025-06-01T21:27:41.8079039Z adding 'torch/include/ATen/ops/arctan2.h' 2025-06-01T21:27:41.8082333Z adding 'torch/include/ATen/ops/arctan2_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.8085255Z adding 'torch/include/ATen/ops/arctan2_native.h' 2025-06-01T21:27:41.8088573Z adding 'torch/include/ATen/ops/arctan2_ops.h' 2025-06-01T21:27:41.8091765Z adding 'torch/include/ATen/ops/arctan_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.8094730Z adding 'torch/include/ATen/ops/arctan_native.h' 2025-06-01T21:27:41.8098173Z adding 'torch/include/ATen/ops/arctan_ops.h' 2025-06-01T21:27:41.8100917Z adding 'torch/include/ATen/ops/arctanh.h' 2025-06-01T21:27:41.8104176Z adding 'torch/include/ATen/ops/arctanh_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.8107031Z adding 'torch/include/ATen/ops/arctanh_native.h' 2025-06-01T21:27:41.8110258Z adding 'torch/include/ATen/ops/arctanh_ops.h' 2025-06-01T21:27:41.8113552Z adding 'torch/include/ATen/ops/argmax.h' 2025-06-01T21:27:41.8116896Z adding 'torch/include/ATen/ops/argmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.8119819Z adding 'torch/include/ATen/ops/argmax_cpu_dispatch.h' 2025-06-01T21:27:41.8122976Z adding 'torch/include/ATen/ops/argmax_cuda_dispatch.h' 2025-06-01T21:27:41.8125941Z adding 'torch/include/ATen/ops/argmax_meta.h' 2025-06-01T21:27:41.8129028Z adding 'torch/include/ATen/ops/argmax_meta_dispatch.h' 2025-06-01T21:27:41.8132071Z adding 'torch/include/ATen/ops/argmax_native.h' 2025-06-01T21:27:41.8135330Z adding 'torch/include/ATen/ops/argmax_ops.h' 2025-06-01T21:27:41.8138406Z adding 'torch/include/ATen/ops/argmin.h' 2025-06-01T21:27:41.8141790Z adding 'torch/include/ATen/ops/argmin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.8144669Z adding 'torch/include/ATen/ops/argmin_cpu_dispatch.h' 2025-06-01T21:27:41.8147729Z adding 'torch/include/ATen/ops/argmin_cuda_dispatch.h' 2025-06-01T21:27:41.8150811Z adding 'torch/include/ATen/ops/argmin_meta.h' 2025-06-01T21:27:41.8154143Z adding 'torch/include/ATen/ops/argmin_meta_dispatch.h' 2025-06-01T21:27:41.8157262Z adding 'torch/include/ATen/ops/argmin_native.h' 2025-06-01T21:27:41.8160481Z adding 'torch/include/ATen/ops/argmin_ops.h' 2025-06-01T21:27:41.8163626Z adding 'torch/include/ATen/ops/argsort.h' 2025-06-01T21:27:41.8166933Z adding 'torch/include/ATen/ops/argsort_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.8170650Z adding 'torch/include/ATen/ops/argsort_native.h' 2025-06-01T21:27:41.8174149Z adding 'torch/include/ATen/ops/argsort_ops.h' 2025-06-01T21:27:41.8177312Z adding 'torch/include/ATen/ops/argwhere.h' 2025-06-01T21:27:41.8181649Z adding 'torch/include/ATen/ops/argwhere_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.8184594Z adding 'torch/include/ATen/ops/argwhere_native.h' 2025-06-01T21:27:41.8187684Z adding 'torch/include/ATen/ops/argwhere_ops.h' 2025-06-01T21:27:41.8191175Z adding 'torch/include/ATen/ops/as_strided.h' 2025-06-01T21:27:41.8194699Z adding 'torch/include/ATen/ops/as_strided_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.8197981Z adding 'torch/include/ATen/ops/as_strided_copy.h' 2025-06-01T21:27:41.8201459Z adding 'torch/include/ATen/ops/as_strided_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.8204817Z adding 'torch/include/ATen/ops/as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.8207713Z adding 'torch/include/ATen/ops/as_strided_copy_native.h' 2025-06-01T21:27:41.8210908Z adding 'torch/include/ATen/ops/as_strided_copy_ops.h' 2025-06-01T21:27:41.8214068Z adding 'torch/include/ATen/ops/as_strided_cpu_dispatch.h' 2025-06-01T21:27:41.8217203Z adding 'torch/include/ATen/ops/as_strided_cuda_dispatch.h' 2025-06-01T21:27:41.8220420Z adding 'torch/include/ATen/ops/as_strided_meta_dispatch.h' 2025-06-01T21:27:41.8223429Z adding 'torch/include/ATen/ops/as_strided_native.h' 2025-06-01T21:27:41.8226661Z adding 'torch/include/ATen/ops/as_strided_ops.h' 2025-06-01T21:27:41.8230309Z adding 'torch/include/ATen/ops/as_strided_scatter.h' 2025-06-01T21:27:41.8233992Z adding 'torch/include/ATen/ops/as_strided_scatter_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.8237788Z adding 'torch/include/ATen/ops/as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.8240158Z adding 'torch/include/ATen/ops/as_strided_scatter_native.h' 2025-06-01T21:27:41.8243453Z adding 'torch/include/ATen/ops/as_strided_scatter_ops.h' 2025-06-01T21:27:41.8246521Z adding 'torch/include/ATen/ops/asin.h' 2025-06-01T21:27:41.8249910Z adding 'torch/include/ATen/ops/asin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.8252841Z adding 'torch/include/ATen/ops/asin_cpu_dispatch.h' 2025-06-01T21:27:41.8256066Z adding 'torch/include/ATen/ops/asin_cuda_dispatch.h' 2025-06-01T21:27:41.8259138Z adding 'torch/include/ATen/ops/asin_meta.h' 2025-06-01T21:27:41.8262188Z adding 'torch/include/ATen/ops/asin_meta_dispatch.h' 2025-06-01T21:27:41.8265175Z adding 'torch/include/ATen/ops/asin_native.h' 2025-06-01T21:27:41.8268383Z adding 'torch/include/ATen/ops/asin_ops.h' 2025-06-01T21:27:41.8271625Z adding 'torch/include/ATen/ops/asinh.h' 2025-06-01T21:27:41.8274929Z adding 'torch/include/ATen/ops/asinh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.8277854Z adding 'torch/include/ATen/ops/asinh_cpu_dispatch.h' 2025-06-01T21:27:41.8281315Z adding 'torch/include/ATen/ops/asinh_cuda_dispatch.h' 2025-06-01T21:27:41.8284316Z adding 'torch/include/ATen/ops/asinh_meta.h' 2025-06-01T21:27:41.8287409Z adding 'torch/include/ATen/ops/asinh_meta_dispatch.h' 2025-06-01T21:27:41.8290436Z adding 'torch/include/ATen/ops/asinh_native.h' 2025-06-01T21:27:41.8293644Z adding 'torch/include/ATen/ops/asinh_ops.h' 2025-06-01T21:27:41.8296767Z adding 'torch/include/ATen/ops/atan.h' 2025-06-01T21:27:41.8299870Z adding 'torch/include/ATen/ops/atan2.h' 2025-06-01T21:27:41.8303167Z adding 'torch/include/ATen/ops/atan2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.8306134Z adding 'torch/include/ATen/ops/atan2_cpu_dispatch.h' 2025-06-01T21:27:41.8309215Z adding 'torch/include/ATen/ops/atan2_cuda_dispatch.h' 2025-06-01T21:27:41.8312339Z adding 'torch/include/ATen/ops/atan2_meta.h' 2025-06-01T21:27:41.8315404Z adding 'torch/include/ATen/ops/atan2_meta_dispatch.h' 2025-06-01T21:27:41.8318374Z adding 'torch/include/ATen/ops/atan2_native.h' 2025-06-01T21:27:41.8321665Z adding 'torch/include/ATen/ops/atan2_ops.h' 2025-06-01T21:27:41.8324982Z adding 'torch/include/ATen/ops/atan_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.8327896Z adding 'torch/include/ATen/ops/atan_cpu_dispatch.h' 2025-06-01T21:27:41.8331017Z adding 'torch/include/ATen/ops/atan_cuda_dispatch.h' 2025-06-01T21:27:41.8334004Z adding 'torch/include/ATen/ops/atan_meta.h' 2025-06-01T21:27:41.8337056Z adding 'torch/include/ATen/ops/atan_meta_dispatch.h' 2025-06-01T21:27:41.8340057Z adding 'torch/include/ATen/ops/atan_native.h' 2025-06-01T21:27:41.8343335Z adding 'torch/include/ATen/ops/atan_ops.h' 2025-06-01T21:27:41.8346446Z adding 'torch/include/ATen/ops/atanh.h' 2025-06-01T21:27:41.8349765Z adding 'torch/include/ATen/ops/atanh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.8352858Z adding 'torch/include/ATen/ops/atanh_cpu_dispatch.h' 2025-06-01T21:27:41.8355986Z adding 'torch/include/ATen/ops/atanh_cuda_dispatch.h' 2025-06-01T21:27:41.8359437Z adding 'torch/include/ATen/ops/atanh_meta.h' 2025-06-01T21:27:41.8362915Z adding 'torch/include/ATen/ops/atanh_meta_dispatch.h' 2025-06-01T21:27:41.8366420Z adding 'torch/include/ATen/ops/atanh_native.h' 2025-06-01T21:27:41.8369824Z adding 'torch/include/ATen/ops/atanh_ops.h' 2025-06-01T21:27:41.8373048Z adding 'torch/include/ATen/ops/atleast_1d.h' 2025-06-01T21:27:41.8376585Z adding 'torch/include/ATen/ops/atleast_1d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.8379525Z adding 'torch/include/ATen/ops/atleast_1d_native.h' 2025-06-01T21:27:41.8383061Z adding 'torch/include/ATen/ops/atleast_1d_ops.h' 2025-06-01T21:27:41.8386268Z adding 'torch/include/ATen/ops/atleast_2d.h' 2025-06-01T21:27:41.8389927Z adding 'torch/include/ATen/ops/atleast_2d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.8393405Z adding 'torch/include/ATen/ops/atleast_2d_native.h' 2025-06-01T21:27:41.8396500Z adding 'torch/include/ATen/ops/atleast_2d_ops.h' 2025-06-01T21:27:41.8399912Z adding 'torch/include/ATen/ops/atleast_3d.h' 2025-06-01T21:27:41.8403140Z adding 'torch/include/ATen/ops/atleast_3d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.8406234Z adding 'torch/include/ATen/ops/atleast_3d_native.h' 2025-06-01T21:27:41.8409417Z adding 'torch/include/ATen/ops/atleast_3d_ops.h' 2025-06-01T21:27:41.8413046Z adding 'torch/include/ATen/ops/avg_pool1d.h' 2025-06-01T21:27:41.8416913Z adding 'torch/include/ATen/ops/avg_pool1d_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.8420130Z adding 'torch/include/ATen/ops/avg_pool1d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.8423215Z adding 'torch/include/ATen/ops/avg_pool1d_native.h' 2025-06-01T21:27:41.8426783Z adding 'torch/include/ATen/ops/avg_pool1d_ops.h' 2025-06-01T21:27:41.8430055Z adding 'torch/include/ATen/ops/avg_pool2d.h' 2025-06-01T21:27:41.8433940Z adding 'torch/include/ATen/ops/avg_pool2d_backward.h' 2025-06-01T21:27:41.8437862Z adding 'torch/include/ATen/ops/avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.8441327Z adding 'torch/include/ATen/ops/avg_pool2d_backward_cpu_dispatch.h' 2025-06-01T21:27:41.8444940Z adding 'torch/include/ATen/ops/avg_pool2d_backward_cuda_dispatch.h' 2025-06-01T21:27:41.8448081Z adding 'torch/include/ATen/ops/avg_pool2d_backward_meta.h' 2025-06-01T21:27:41.8451442Z adding 'torch/include/ATen/ops/avg_pool2d_backward_meta_dispatch.h' 2025-06-01T21:27:41.8454588Z adding 'torch/include/ATen/ops/avg_pool2d_backward_native.h' 2025-06-01T21:27:41.8458148Z adding 'torch/include/ATen/ops/avg_pool2d_backward_ops.h' 2025-06-01T21:27:41.8461750Z adding 'torch/include/ATen/ops/avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.8464949Z adding 'torch/include/ATen/ops/avg_pool2d_cpu_dispatch.h' 2025-06-01T21:27:41.8468160Z adding 'torch/include/ATen/ops/avg_pool2d_cuda_dispatch.h' 2025-06-01T21:27:41.8471978Z adding 'torch/include/ATen/ops/avg_pool2d_meta.h' 2025-06-01T21:27:41.8475205Z adding 'torch/include/ATen/ops/avg_pool2d_meta_dispatch.h' 2025-06-01T21:27:41.8478370Z adding 'torch/include/ATen/ops/avg_pool2d_native.h' 2025-06-01T21:27:41.8481890Z adding 'torch/include/ATen/ops/avg_pool2d_ops.h' 2025-06-01T21:27:41.8485174Z adding 'torch/include/ATen/ops/avg_pool3d.h' 2025-06-01T21:27:41.8488501Z adding 'torch/include/ATen/ops/avg_pool3d_backward.h' 2025-06-01T21:27:41.8491960Z adding 'torch/include/ATen/ops/avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.8495028Z adding 'torch/include/ATen/ops/avg_pool3d_backward_cpu_dispatch.h' 2025-06-01T21:27:41.8498170Z adding 'torch/include/ATen/ops/avg_pool3d_backward_cuda_dispatch.h' 2025-06-01T21:27:41.8501452Z adding 'torch/include/ATen/ops/avg_pool3d_backward_meta.h' 2025-06-01T21:27:41.8504688Z adding 'torch/include/ATen/ops/avg_pool3d_backward_meta_dispatch.h' 2025-06-01T21:27:41.8507899Z adding 'torch/include/ATen/ops/avg_pool3d_backward_native.h' 2025-06-01T21:27:41.8511332Z adding 'torch/include/ATen/ops/avg_pool3d_backward_ops.h' 2025-06-01T21:27:41.8514884Z adding 'torch/include/ATen/ops/avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.8517915Z adding 'torch/include/ATen/ops/avg_pool3d_cpu_dispatch.h' 2025-06-01T21:27:41.8521089Z adding 'torch/include/ATen/ops/avg_pool3d_cuda_dispatch.h' 2025-06-01T21:27:41.8524112Z adding 'torch/include/ATen/ops/avg_pool3d_meta.h' 2025-06-01T21:27:41.8527295Z adding 'torch/include/ATen/ops/avg_pool3d_meta_dispatch.h' 2025-06-01T21:27:41.8530416Z adding 'torch/include/ATen/ops/avg_pool3d_native.h' 2025-06-01T21:27:41.8533875Z adding 'torch/include/ATen/ops/avg_pool3d_ops.h' 2025-06-01T21:27:41.8537234Z adding 'torch/include/ATen/ops/baddbmm.h' 2025-06-01T21:27:41.8540638Z adding 'torch/include/ATen/ops/baddbmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.8543670Z adding 'torch/include/ATen/ops/baddbmm_cpu_dispatch.h' 2025-06-01T21:27:41.8546821Z adding 'torch/include/ATen/ops/baddbmm_cuda_dispatch.h' 2025-06-01T21:27:41.8549989Z adding 'torch/include/ATen/ops/baddbmm_meta.h' 2025-06-01T21:27:41.8553251Z adding 'torch/include/ATen/ops/baddbmm_meta_dispatch.h' 2025-06-01T21:27:41.8556328Z adding 'torch/include/ATen/ops/baddbmm_native.h' 2025-06-01T21:27:41.8559825Z adding 'torch/include/ATen/ops/baddbmm_ops.h' 2025-06-01T21:27:41.8563270Z adding 'torch/include/ATen/ops/bartlett_window.h' 2025-06-01T21:27:41.8566699Z adding 'torch/include/ATen/ops/bartlett_window_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.8569720Z adding 'torch/include/ATen/ops/bartlett_window_native.h' 2025-06-01T21:27:41.8573110Z adding 'torch/include/ATen/ops/bartlett_window_ops.h' 2025-06-01T21:27:41.8576278Z adding 'torch/include/ATen/ops/batch_norm.h' 2025-06-01T21:27:41.8579511Z adding 'torch/include/ATen/ops/batch_norm_backward.h' 2025-06-01T21:27:41.8582694Z adding 'torch/include/ATen/ops/batch_norm_backward_cpu_dispatch.h' 2025-06-01T21:27:41.8585823Z adding 'torch/include/ATen/ops/batch_norm_backward_cuda_dispatch.h' 2025-06-01T21:27:41.8589207Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt.h' 2025-06-01T21:27:41.8592813Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.8595936Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_cuda_dispatch.h' 2025-06-01T21:27:41.8599111Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_native.h' 2025-06-01T21:27:41.8602408Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_ops.h' 2025-06-01T21:27:41.8605710Z adding 'torch/include/ATen/ops/batch_norm_backward_native.h' 2025-06-01T21:27:41.8609072Z adding 'torch/include/ATen/ops/batch_norm_backward_ops.h' 2025-06-01T21:27:41.8612564Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce.h' 2025-06-01T21:27:41.8616048Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.8619188Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_cuda_dispatch.h' 2025-06-01T21:27:41.8622272Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_native.h' 2025-06-01T21:27:41.8625605Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_ops.h' 2025-06-01T21:27:41.8629064Z adding 'torch/include/ATen/ops/batch_norm_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.8632292Z adding 'torch/include/ATen/ops/batch_norm_elemt.h' 2025-06-01T21:27:41.8635635Z adding 'torch/include/ATen/ops/batch_norm_elemt_cuda_dispatch.h' 2025-06-01T21:27:41.8638858Z adding 'torch/include/ATen/ops/batch_norm_elemt_native.h' 2025-06-01T21:27:41.8642113Z adding 'torch/include/ATen/ops/batch_norm_elemt_ops.h' 2025-06-01T21:27:41.8645592Z adding 'torch/include/ATen/ops/batch_norm_gather_stats.h' 2025-06-01T21:27:41.8649159Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.8652287Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_cuda_dispatch.h' 2025-06-01T21:27:41.8655438Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_native.h' 2025-06-01T21:27:41.8658826Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_ops.h' 2025-06-01T21:27:41.8662276Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts.h' 2025-06-01T21:27:41.8665778Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.8668983Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_cuda_dispatch.h' 2025-06-01T21:27:41.8672179Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_native.h' 2025-06-01T21:27:41.8675701Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_ops.h' 2025-06-01T21:27:41.8678697Z adding 'torch/include/ATen/ops/batch_norm_native.h' 2025-06-01T21:27:41.8682071Z adding 'torch/include/ATen/ops/batch_norm_ops.h' 2025-06-01T21:27:41.8685444Z adding 'torch/include/ATen/ops/batch_norm_stats.h' 2025-06-01T21:27:41.8688722Z adding 'torch/include/ATen/ops/batch_norm_stats_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.8691894Z adding 'torch/include/ATen/ops/batch_norm_stats_cuda_dispatch.h' 2025-06-01T21:27:41.8694837Z adding 'torch/include/ATen/ops/batch_norm_stats_native.h' 2025-06-01T21:27:41.8698166Z adding 'torch/include/ATen/ops/batch_norm_stats_ops.h' 2025-06-01T21:27:41.8701359Z adding 'torch/include/ATen/ops/batch_norm_update_stats.h' 2025-06-01T21:27:41.8704979Z adding 'torch/include/ATen/ops/batch_norm_update_stats_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.8708114Z adding 'torch/include/ATen/ops/batch_norm_update_stats_cpu_dispatch.h' 2025-06-01T21:27:41.8711347Z adding 'torch/include/ATen/ops/batch_norm_update_stats_cuda_dispatch.h' 2025-06-01T21:27:41.8714498Z adding 'torch/include/ATen/ops/batch_norm_update_stats_native.h' 2025-06-01T21:27:41.8717750Z adding 'torch/include/ATen/ops/batch_norm_update_stats_ops.h' 2025-06-01T21:27:41.8721241Z adding 'torch/include/ATen/ops/bernoulli.h' 2025-06-01T21:27:41.8724687Z adding 'torch/include/ATen/ops/bernoulli_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.8728084Z adding 'torch/include/ATen/ops/bernoulli_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.8731191Z adding 'torch/include/ATen/ops/bernoulli_cpu_dispatch.h' 2025-06-01T21:27:41.8734320Z adding 'torch/include/ATen/ops/bernoulli_cuda_dispatch.h' 2025-06-01T21:27:41.8737544Z adding 'torch/include/ATen/ops/bernoulli_meta_dispatch.h' 2025-06-01T21:27:41.8740623Z adding 'torch/include/ATen/ops/bernoulli_native.h' 2025-06-01T21:27:41.8744360Z adding 'torch/include/ATen/ops/bernoulli_ops.h' 2025-06-01T21:27:41.8747697Z adding 'torch/include/ATen/ops/bilinear.h' 2025-06-01T21:27:41.8751009Z adding 'torch/include/ATen/ops/bilinear_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.8754160Z adding 'torch/include/ATen/ops/bilinear_native.h' 2025-06-01T21:27:41.8757348Z adding 'torch/include/ATen/ops/bilinear_ops.h' 2025-06-01T21:27:41.8760684Z adding 'torch/include/ATen/ops/binary_cross_entropy.h' 2025-06-01T21:27:41.8763967Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward.h' 2025-06-01T21:27:41.8767376Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_cpu_dispatch.h' 2025-06-01T21:27:41.8770632Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_cuda_dispatch.h' 2025-06-01T21:27:41.8773754Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_native.h' 2025-06-01T21:27:41.8777163Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_ops.h' 2025-06-01T21:27:41.8780374Z adding 'torch/include/ATen/ops/binary_cross_entropy_cpu_dispatch.h' 2025-06-01T21:27:41.8783630Z adding 'torch/include/ATen/ops/binary_cross_entropy_cuda_dispatch.h' 2025-06-01T21:27:41.8786678Z adding 'torch/include/ATen/ops/binary_cross_entropy_native.h' 2025-06-01T21:27:41.8790080Z adding 'torch/include/ATen/ops/binary_cross_entropy_ops.h' 2025-06-01T21:27:41.8793602Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits.h' 2025-06-01T21:27:41.8797005Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.8800142Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_native.h' 2025-06-01T21:27:41.8803420Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_ops.h' 2025-06-01T21:27:41.8806964Z adding 'torch/include/ATen/ops/bincount.h' 2025-06-01T21:27:41.8810347Z adding 'torch/include/ATen/ops/bincount_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.8813472Z adding 'torch/include/ATen/ops/bincount_cpu_dispatch.h' 2025-06-01T21:27:41.8816676Z adding 'torch/include/ATen/ops/bincount_cuda_dispatch.h' 2025-06-01T21:27:41.8819758Z adding 'torch/include/ATen/ops/bincount_native.h' 2025-06-01T21:27:41.8823101Z adding 'torch/include/ATen/ops/bincount_ops.h' 2025-06-01T21:27:41.8826276Z adding 'torch/include/ATen/ops/binomial.h' 2025-06-01T21:27:41.8829882Z adding 'torch/include/ATen/ops/binomial_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.8833026Z adding 'torch/include/ATen/ops/binomial_cpu_dispatch.h' 2025-06-01T21:27:41.8836149Z adding 'torch/include/ATen/ops/binomial_cuda_dispatch.h' 2025-06-01T21:27:41.8839969Z adding 'torch/include/ATen/ops/binomial_native.h' 2025-06-01T21:27:41.8842584Z adding 'torch/include/ATen/ops/binomial_ops.h' 2025-06-01T21:27:41.8846045Z adding 'torch/include/ATen/ops/bitwise_and.h' 2025-06-01T21:27:41.8849506Z adding 'torch/include/ATen/ops/bitwise_and_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.8858767Z adding 'torch/include/ATen/ops/bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.8858945Z adding 'torch/include/ATen/ops/bitwise_and_cpu_dispatch.h' 2025-06-01T21:27:41.8859646Z adding 'torch/include/ATen/ops/bitwise_and_cuda_dispatch.h' 2025-06-01T21:27:41.8862635Z adding 'torch/include/ATen/ops/bitwise_and_meta.h' 2025-06-01T21:27:41.8867191Z adding 'torch/include/ATen/ops/bitwise_and_meta_dispatch.h' 2025-06-01T21:27:41.8869351Z adding 'torch/include/ATen/ops/bitwise_and_native.h' 2025-06-01T21:27:41.8873235Z adding 'torch/include/ATen/ops/bitwise_and_ops.h' 2025-06-01T21:27:41.8877057Z adding 'torch/include/ATen/ops/bitwise_left_shift.h' 2025-06-01T21:27:41.8880727Z adding 'torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.8885272Z adding 'torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.8887065Z adding 'torch/include/ATen/ops/bitwise_left_shift_cpu_dispatch.h' 2025-06-01T21:27:41.8890394Z adding 'torch/include/ATen/ops/bitwise_left_shift_cuda_dispatch.h' 2025-06-01T21:27:41.8893319Z adding 'torch/include/ATen/ops/bitwise_left_shift_meta.h' 2025-06-01T21:27:41.8896515Z adding 'torch/include/ATen/ops/bitwise_left_shift_meta_dispatch.h' 2025-06-01T21:27:41.8899661Z adding 'torch/include/ATen/ops/bitwise_left_shift_native.h' 2025-06-01T21:27:41.8903172Z adding 'torch/include/ATen/ops/bitwise_left_shift_ops.h' 2025-06-01T21:27:41.8906363Z adding 'torch/include/ATen/ops/bitwise_not.h' 2025-06-01T21:27:41.8909897Z adding 'torch/include/ATen/ops/bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.8912902Z adding 'torch/include/ATen/ops/bitwise_not_cpu_dispatch.h' 2025-06-01T21:27:41.8915944Z adding 'torch/include/ATen/ops/bitwise_not_cuda_dispatch.h' 2025-06-01T21:27:41.8918897Z adding 'torch/include/ATen/ops/bitwise_not_meta.h' 2025-06-01T21:27:41.8922821Z adding 'torch/include/ATen/ops/bitwise_not_meta_dispatch.h' 2025-06-01T21:27:41.8926092Z adding 'torch/include/ATen/ops/bitwise_not_native.h' 2025-06-01T21:27:41.8929309Z adding 'torch/include/ATen/ops/bitwise_not_ops.h' 2025-06-01T21:27:41.8932573Z adding 'torch/include/ATen/ops/bitwise_or.h' 2025-06-01T21:27:41.8935941Z adding 'torch/include/ATen/ops/bitwise_or_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.8939095Z adding 'torch/include/ATen/ops/bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.8942025Z adding 'torch/include/ATen/ops/bitwise_or_cpu_dispatch.h' 2025-06-01T21:27:41.8945065Z adding 'torch/include/ATen/ops/bitwise_or_cuda_dispatch.h' 2025-06-01T21:27:41.8948037Z adding 'torch/include/ATen/ops/bitwise_or_meta.h' 2025-06-01T21:27:41.8951269Z adding 'torch/include/ATen/ops/bitwise_or_meta_dispatch.h' 2025-06-01T21:27:41.8954377Z adding 'torch/include/ATen/ops/bitwise_or_native.h' 2025-06-01T21:27:41.8958055Z adding 'torch/include/ATen/ops/bitwise_or_ops.h' 2025-06-01T21:27:41.8961475Z adding 'torch/include/ATen/ops/bitwise_right_shift.h' 2025-06-01T21:27:41.8964940Z adding 'torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.8968210Z adding 'torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.8971175Z adding 'torch/include/ATen/ops/bitwise_right_shift_cpu_dispatch.h' 2025-06-01T21:27:41.8974508Z adding 'torch/include/ATen/ops/bitwise_right_shift_cuda_dispatch.h' 2025-06-01T21:27:41.8977618Z adding 'torch/include/ATen/ops/bitwise_right_shift_meta.h' 2025-06-01T21:27:41.8980837Z adding 'torch/include/ATen/ops/bitwise_right_shift_meta_dispatch.h' 2025-06-01T21:27:41.8983900Z adding 'torch/include/ATen/ops/bitwise_right_shift_native.h' 2025-06-01T21:27:41.8987398Z adding 'torch/include/ATen/ops/bitwise_right_shift_ops.h' 2025-06-01T21:27:41.8990797Z adding 'torch/include/ATen/ops/bitwise_xor.h' 2025-06-01T21:27:41.8994256Z adding 'torch/include/ATen/ops/bitwise_xor_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.8997495Z adding 'torch/include/ATen/ops/bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.9000462Z adding 'torch/include/ATen/ops/bitwise_xor_cpu_dispatch.h' 2025-06-01T21:27:41.9003615Z adding 'torch/include/ATen/ops/bitwise_xor_cuda_dispatch.h' 2025-06-01T21:27:41.9006629Z adding 'torch/include/ATen/ops/bitwise_xor_meta.h' 2025-06-01T21:27:41.9009722Z adding 'torch/include/ATen/ops/bitwise_xor_meta_dispatch.h' 2025-06-01T21:27:41.9012751Z adding 'torch/include/ATen/ops/bitwise_xor_native.h' 2025-06-01T21:27:41.9016235Z adding 'torch/include/ATen/ops/bitwise_xor_ops.h' 2025-06-01T21:27:41.9019732Z adding 'torch/include/ATen/ops/blackman_window.h' 2025-06-01T21:27:41.9023217Z adding 'torch/include/ATen/ops/blackman_window_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.9026170Z adding 'torch/include/ATen/ops/blackman_window_native.h' 2025-06-01T21:27:41.9029534Z adding 'torch/include/ATen/ops/blackman_window_ops.h' 2025-06-01T21:27:41.9032812Z adding 'torch/include/ATen/ops/block_diag.h' 2025-06-01T21:27:41.9036033Z adding 'torch/include/ATen/ops/block_diag_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.9038879Z adding 'torch/include/ATen/ops/block_diag_native.h' 2025-06-01T21:27:41.9042078Z adding 'torch/include/ATen/ops/block_diag_ops.h' 2025-06-01T21:27:41.9045234Z adding 'torch/include/ATen/ops/bmm.h' 2025-06-01T21:27:41.9048601Z adding 'torch/include/ATen/ops/bmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.9051476Z adding 'torch/include/ATen/ops/bmm_cpu_dispatch.h' 2025-06-01T21:27:41.9054517Z adding 'torch/include/ATen/ops/bmm_cuda_dispatch.h' 2025-06-01T21:27:41.9057497Z adding 'torch/include/ATen/ops/bmm_meta.h' 2025-06-01T21:27:41.9060591Z adding 'torch/include/ATen/ops/bmm_meta_dispatch.h' 2025-06-01T21:27:41.9063646Z adding 'torch/include/ATen/ops/bmm_native.h' 2025-06-01T21:27:41.9067277Z adding 'torch/include/ATen/ops/bmm_ops.h' 2025-06-01T21:27:41.9070515Z adding 'torch/include/ATen/ops/broadcast_tensors.h' 2025-06-01T21:27:41.9073910Z adding 'torch/include/ATen/ops/broadcast_tensors_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.9076762Z adding 'torch/include/ATen/ops/broadcast_tensors_native.h' 2025-06-01T21:27:41.9079842Z adding 'torch/include/ATen/ops/broadcast_tensors_ops.h' 2025-06-01T21:27:41.9082968Z adding 'torch/include/ATen/ops/broadcast_to.h' 2025-06-01T21:27:41.9086185Z adding 'torch/include/ATen/ops/broadcast_to_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.9089029Z adding 'torch/include/ATen/ops/broadcast_to_native.h' 2025-06-01T21:27:41.9092057Z adding 'torch/include/ATen/ops/broadcast_to_ops.h' 2025-06-01T21:27:41.9095242Z adding 'torch/include/ATen/ops/bucketize.h' 2025-06-01T21:27:41.9098577Z adding 'torch/include/ATen/ops/bucketize_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.9101668Z adding 'torch/include/ATen/ops/bucketize_cpu_dispatch.h' 2025-06-01T21:27:41.9104793Z adding 'torch/include/ATen/ops/bucketize_cuda_dispatch.h' 2025-06-01T21:27:41.9107830Z adding 'torch/include/ATen/ops/bucketize_native.h' 2025-06-01T21:27:41.9111238Z adding 'torch/include/ATen/ops/bucketize_ops.h' 2025-06-01T21:27:41.9114311Z adding 'torch/include/ATen/ops/can_cast.h' 2025-06-01T21:27:41.9117581Z adding 'torch/include/ATen/ops/can_cast_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.9120493Z adding 'torch/include/ATen/ops/can_cast_native.h' 2025-06-01T21:27:41.9123481Z adding 'torch/include/ATen/ops/can_cast_ops.h' 2025-06-01T21:27:41.9126554Z adding 'torch/include/ATen/ops/cartesian_prod.h' 2025-06-01T21:27:41.9129766Z adding 'torch/include/ATen/ops/cartesian_prod_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.9132619Z adding 'torch/include/ATen/ops/cartesian_prod_native.h' 2025-06-01T21:27:41.9135702Z adding 'torch/include/ATen/ops/cartesian_prod_ops.h' 2025-06-01T21:27:41.9138838Z adding 'torch/include/ATen/ops/cat.h' 2025-06-01T21:27:41.9142143Z adding 'torch/include/ATen/ops/cat_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.9145215Z adding 'torch/include/ATen/ops/cat_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.9148214Z adding 'torch/include/ATen/ops/cat_cpu_dispatch.h' 2025-06-01T21:27:41.9151368Z adding 'torch/include/ATen/ops/cat_cuda_dispatch.h' 2025-06-01T21:27:41.9154936Z adding 'torch/include/ATen/ops/cat_meta.h' 2025-06-01T21:27:41.9158180Z adding 'torch/include/ATen/ops/cat_meta_dispatch.h' 2025-06-01T21:27:41.9161287Z adding 'torch/include/ATen/ops/cat_native.h' 2025-06-01T21:27:41.9164807Z adding 'torch/include/ATen/ops/cat_ops.h' 2025-06-01T21:27:41.9168015Z adding 'torch/include/ATen/ops/cauchy.h' 2025-06-01T21:27:41.9171352Z adding 'torch/include/ATen/ops/cauchy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.9174324Z adding 'torch/include/ATen/ops/cauchy_cpu_dispatch.h' 2025-06-01T21:27:41.9177405Z adding 'torch/include/ATen/ops/cauchy_cuda_dispatch.h' 2025-06-01T21:27:41.9180494Z adding 'torch/include/ATen/ops/cauchy_meta_dispatch.h' 2025-06-01T21:27:41.9183491Z adding 'torch/include/ATen/ops/cauchy_native.h' 2025-06-01T21:27:41.9186723Z adding 'torch/include/ATen/ops/cauchy_ops.h' 2025-06-01T21:27:41.9189764Z adding 'torch/include/ATen/ops/ccol_indices.h' 2025-06-01T21:27:41.9193118Z adding 'torch/include/ATen/ops/ccol_indices_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.9196041Z adding 'torch/include/ATen/ops/ccol_indices_copy.h' 2025-06-01T21:27:41.9199421Z adding 'torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.9210009Z adding 'torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.9211385Z adding 'torch/include/ATen/ops/ccol_indices_copy_native.h' 2025-06-01T21:27:41.9215180Z adding 'torch/include/ATen/ops/ccol_indices_copy_ops.h' 2025-06-01T21:27:41.9217991Z adding 'torch/include/ATen/ops/ccol_indices_native.h' 2025-06-01T21:27:41.9221109Z adding 'torch/include/ATen/ops/ccol_indices_ops.h' 2025-06-01T21:27:41.9224217Z adding 'torch/include/ATen/ops/cdist.h' 2025-06-01T21:27:41.9227596Z adding 'torch/include/ATen/ops/cdist_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.9230437Z adding 'torch/include/ATen/ops/cdist_native.h' 2025-06-01T21:27:41.9233711Z adding 'torch/include/ATen/ops/cdist_ops.h' 2025-06-01T21:27:41.9236928Z adding 'torch/include/ATen/ops/ceil.h' 2025-06-01T21:27:41.9240224Z adding 'torch/include/ATen/ops/ceil_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.9243115Z adding 'torch/include/ATen/ops/ceil_cpu_dispatch.h' 2025-06-01T21:27:41.9246211Z adding 'torch/include/ATen/ops/ceil_cuda_dispatch.h' 2025-06-01T21:27:41.9249460Z adding 'torch/include/ATen/ops/ceil_meta.h' 2025-06-01T21:27:41.9252565Z adding 'torch/include/ATen/ops/ceil_meta_dispatch.h' 2025-06-01T21:27:41.9255565Z adding 'torch/include/ATen/ops/ceil_native.h' 2025-06-01T21:27:41.9258819Z adding 'torch/include/ATen/ops/ceil_ops.h' 2025-06-01T21:27:41.9261945Z adding 'torch/include/ATen/ops/celu.h' 2025-06-01T21:27:41.9265365Z adding 'torch/include/ATen/ops/celu_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.9268242Z adding 'torch/include/ATen/ops/celu_native.h' 2025-06-01T21:27:41.9271558Z adding 'torch/include/ATen/ops/celu_ops.h' 2025-06-01T21:27:41.9274713Z adding 'torch/include/ATen/ops/chain_matmul.h' 2025-06-01T21:27:41.9278143Z adding 'torch/include/ATen/ops/chain_matmul_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.9281030Z adding 'torch/include/ATen/ops/chain_matmul_native.h' 2025-06-01T21:27:41.9284217Z adding 'torch/include/ATen/ops/chain_matmul_ops.h' 2025-06-01T21:27:41.9287243Z adding 'torch/include/ATen/ops/chalf.h' 2025-06-01T21:27:41.9290471Z adding 'torch/include/ATen/ops/chalf_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.9293336Z adding 'torch/include/ATen/ops/chalf_native.h' 2025-06-01T21:27:41.9296429Z adding 'torch/include/ATen/ops/chalf_ops.h' 2025-06-01T21:27:41.9300265Z adding 'torch/include/ATen/ops/channel_shuffle.h' 2025-06-01T21:27:41.9303687Z adding 'torch/include/ATen/ops/channel_shuffle_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.9306758Z adding 'torch/include/ATen/ops/channel_shuffle_cpu_dispatch.h' 2025-06-01T21:27:41.9309806Z adding 'torch/include/ATen/ops/channel_shuffle_cuda_dispatch.h' 2025-06-01T21:27:41.9312945Z adding 'torch/include/ATen/ops/channel_shuffle_native.h' 2025-06-01T21:27:41.9316140Z adding 'torch/include/ATen/ops/channel_shuffle_ops.h' 2025-06-01T21:27:41.9319222Z adding 'torch/include/ATen/ops/cholesky.h' 2025-06-01T21:27:41.9322330Z adding 'torch/include/ATen/ops/cholesky_cpu_dispatch.h' 2025-06-01T21:27:41.9325440Z adding 'torch/include/ATen/ops/cholesky_cuda_dispatch.h' 2025-06-01T21:27:41.9338133Z adding 'torch/include/ATen/ops/cholesky_inverse.h' 2025-06-01T21:27:41.9338640Z adding 'torch/include/ATen/ops/cholesky_inverse_cpu_dispatch.h' 2025-06-01T21:27:41.9338835Z adding 'torch/include/ATen/ops/cholesky_inverse_cuda_dispatch.h' 2025-06-01T21:27:41.9338992Z adding 'torch/include/ATen/ops/cholesky_inverse_native.h' 2025-06-01T21:27:41.9340896Z adding 'torch/include/ATen/ops/cholesky_inverse_ops.h' 2025-06-01T21:27:41.9343907Z adding 'torch/include/ATen/ops/cholesky_native.h' 2025-06-01T21:27:41.9347030Z adding 'torch/include/ATen/ops/cholesky_ops.h' 2025-06-01T21:27:41.9350154Z adding 'torch/include/ATen/ops/cholesky_solve.h' 2025-06-01T21:27:41.9353896Z adding 'torch/include/ATen/ops/cholesky_solve_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.9356734Z adding 'torch/include/ATen/ops/cholesky_solve_native.h' 2025-06-01T21:27:41.9359751Z adding 'torch/include/ATen/ops/cholesky_solve_ops.h' 2025-06-01T21:27:41.9362856Z adding 'torch/include/ATen/ops/choose_qparams_optimized.h' 2025-06-01T21:27:41.9366509Z adding 'torch/include/ATen/ops/choose_qparams_optimized_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.9369337Z adding 'torch/include/ATen/ops/choose_qparams_optimized_native.h' 2025-06-01T21:27:41.9372505Z adding 'torch/include/ATen/ops/choose_qparams_optimized_ops.h' 2025-06-01T21:27:41.9375382Z adding 'torch/include/ATen/ops/chunk.h' 2025-06-01T21:27:41.9378687Z adding 'torch/include/ATen/ops/chunk_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.9381866Z adding 'torch/include/ATen/ops/chunk_native.h' 2025-06-01T21:27:41.9384756Z adding 'torch/include/ATen/ops/chunk_ops.h' 2025-06-01T21:27:41.9388025Z adding 'torch/include/ATen/ops/clamp.h' 2025-06-01T21:27:41.9391581Z adding 'torch/include/ATen/ops/clamp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.9394648Z adding 'torch/include/ATen/ops/clamp_cpu_dispatch.h' 2025-06-01T21:27:41.9397863Z adding 'torch/include/ATen/ops/clamp_cuda_dispatch.h' 2025-06-01T21:27:41.9401128Z adding 'torch/include/ATen/ops/clamp_max.h' 2025-06-01T21:27:41.9404445Z adding 'torch/include/ATen/ops/clamp_max_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.9407414Z adding 'torch/include/ATen/ops/clamp_max_cpu_dispatch.h' 2025-06-01T21:27:41.9410539Z adding 'torch/include/ATen/ops/clamp_max_cuda_dispatch.h' 2025-06-01T21:27:41.9413567Z adding 'torch/include/ATen/ops/clamp_max_meta.h' 2025-06-01T21:27:41.9416655Z adding 'torch/include/ATen/ops/clamp_max_meta_dispatch.h' 2025-06-01T21:27:41.9419604Z adding 'torch/include/ATen/ops/clamp_max_native.h' 2025-06-01T21:27:41.9423165Z adding 'torch/include/ATen/ops/clamp_max_ops.h' 2025-06-01T21:27:41.9426231Z adding 'torch/include/ATen/ops/clamp_meta.h' 2025-06-01T21:27:41.9429498Z adding 'torch/include/ATen/ops/clamp_meta_dispatch.h' 2025-06-01T21:27:41.9432776Z adding 'torch/include/ATen/ops/clamp_min.h' 2025-06-01T21:27:41.9436153Z adding 'torch/include/ATen/ops/clamp_min_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.9439176Z adding 'torch/include/ATen/ops/clamp_min_cpu_dispatch.h' 2025-06-01T21:27:41.9442546Z adding 'torch/include/ATen/ops/clamp_min_cuda_dispatch.h' 2025-06-01T21:27:41.9445406Z adding 'torch/include/ATen/ops/clamp_min_meta.h' 2025-06-01T21:27:41.9448580Z adding 'torch/include/ATen/ops/clamp_min_meta_dispatch.h' 2025-06-01T21:27:41.9451653Z adding 'torch/include/ATen/ops/clamp_min_native.h' 2025-06-01T21:27:41.9455077Z adding 'torch/include/ATen/ops/clamp_min_ops.h' 2025-06-01T21:27:41.9458235Z adding 'torch/include/ATen/ops/clamp_native.h' 2025-06-01T21:27:41.9461715Z adding 'torch/include/ATen/ops/clamp_ops.h' 2025-06-01T21:27:41.9465279Z adding 'torch/include/ATen/ops/clip.h' 2025-06-01T21:27:41.9468718Z adding 'torch/include/ATen/ops/clip_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.9471777Z adding 'torch/include/ATen/ops/clip_native.h' 2025-06-01T21:27:41.9475314Z adding 'torch/include/ATen/ops/clip_ops.h' 2025-06-01T21:27:41.9478573Z adding 'torch/include/ATen/ops/clone.h' 2025-06-01T21:27:41.9481889Z adding 'torch/include/ATen/ops/clone_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.9484918Z adding 'torch/include/ATen/ops/clone_native.h' 2025-06-01T21:27:41.9488127Z adding 'torch/include/ATen/ops/clone_ops.h' 2025-06-01T21:27:41.9491152Z adding 'torch/include/ATen/ops/coalesce.h' 2025-06-01T21:27:41.9494346Z adding 'torch/include/ATen/ops/coalesce_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.9497154Z adding 'torch/include/ATen/ops/coalesce_native.h' 2025-06-01T21:27:41.9500261Z adding 'torch/include/ATen/ops/coalesce_ops.h' 2025-06-01T21:27:41.9503692Z adding 'torch/include/ATen/ops/col2im.h' 2025-06-01T21:27:41.9507036Z adding 'torch/include/ATen/ops/col2im_cpu_dispatch.h' 2025-06-01T21:27:41.9510541Z adding 'torch/include/ATen/ops/col2im_cuda_dispatch.h' 2025-06-01T21:27:41.9513667Z adding 'torch/include/ATen/ops/col2im_native.h' 2025-06-01T21:27:41.9516850Z adding 'torch/include/ATen/ops/col2im_ops.h' 2025-06-01T21:27:41.9519887Z adding 'torch/include/ATen/ops/col_indices.h' 2025-06-01T21:27:41.9523129Z adding 'torch/include/ATen/ops/col_indices_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.9526106Z adding 'torch/include/ATen/ops/col_indices_copy.h' 2025-06-01T21:27:41.9529396Z adding 'torch/include/ATen/ops/col_indices_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.9532629Z adding 'torch/include/ATen/ops/col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.9535419Z adding 'torch/include/ATen/ops/col_indices_copy_native.h' 2025-06-01T21:27:41.9538582Z adding 'torch/include/ATen/ops/col_indices_copy_ops.h' 2025-06-01T21:27:41.9541540Z adding 'torch/include/ATen/ops/col_indices_native.h' 2025-06-01T21:27:41.9544784Z adding 'torch/include/ATen/ops/col_indices_ops.h' 2025-06-01T21:27:41.9547865Z adding 'torch/include/ATen/ops/column_stack.h' 2025-06-01T21:27:41.9551299Z adding 'torch/include/ATen/ops/column_stack_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.9554271Z adding 'torch/include/ATen/ops/column_stack_native.h' 2025-06-01T21:27:41.9557448Z adding 'torch/include/ATen/ops/column_stack_ops.h' 2025-06-01T21:27:41.9560568Z adding 'torch/include/ATen/ops/combinations.h' 2025-06-01T21:27:41.9563927Z adding 'torch/include/ATen/ops/combinations_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.9566790Z adding 'torch/include/ATen/ops/combinations_native.h' 2025-06-01T21:27:41.9569847Z adding 'torch/include/ATen/ops/combinations_ops.h' 2025-06-01T21:27:41.9573004Z adding 'torch/include/ATen/ops/complex.h' 2025-06-01T21:27:41.9576387Z adding 'torch/include/ATen/ops/complex_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.9579330Z adding 'torch/include/ATen/ops/complex_cpu_dispatch.h' 2025-06-01T21:27:41.9582517Z adding 'torch/include/ATen/ops/complex_cuda_dispatch.h' 2025-06-01T21:27:41.9585447Z adding 'torch/include/ATen/ops/complex_native.h' 2025-06-01T21:27:41.9588613Z adding 'torch/include/ATen/ops/complex_ops.h' 2025-06-01T21:27:41.9591965Z adding 'torch/include/ATen/ops/concat.h' 2025-06-01T21:27:41.9595301Z adding 'torch/include/ATen/ops/concat_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.9598217Z adding 'torch/include/ATen/ops/concat_native.h' 2025-06-01T21:27:41.9601463Z adding 'torch/include/ATen/ops/concat_ops.h' 2025-06-01T21:27:41.9604725Z adding 'torch/include/ATen/ops/concatenate.h' 2025-06-01T21:27:41.9608075Z adding 'torch/include/ATen/ops/concatenate_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.9611221Z adding 'torch/include/ATen/ops/concatenate_native.h' 2025-06-01T21:27:41.9614549Z adding 'torch/include/ATen/ops/concatenate_ops.h' 2025-06-01T21:27:41.9617598Z adding 'torch/include/ATen/ops/conj.h' 2025-06-01T21:27:41.9620835Z adding 'torch/include/ATen/ops/conj_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.9623770Z adding 'torch/include/ATen/ops/conj_native.h' 2025-06-01T21:27:41.9626810Z adding 'torch/include/ATen/ops/conj_ops.h' 2025-06-01T21:27:41.9629953Z adding 'torch/include/ATen/ops/conj_physical.h' 2025-06-01T21:27:41.9633409Z adding 'torch/include/ATen/ops/conj_physical_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.9636460Z adding 'torch/include/ATen/ops/conj_physical_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.9639455Z adding 'torch/include/ATen/ops/conj_physical_cpu_dispatch.h' 2025-06-01T21:27:41.9642563Z adding 'torch/include/ATen/ops/conj_physical_cuda_dispatch.h' 2025-06-01T21:27:41.9651894Z adding 'torch/include/ATen/ops/conj_physical_native.h' 2025-06-01T21:27:41.9655110Z adding 'torch/include/ATen/ops/conj_physical_ops.h' 2025-06-01T21:27:41.9658518Z adding 'torch/include/ATen/ops/constant_pad_nd.h' 2025-06-01T21:27:41.9671031Z adding 'torch/include/ATen/ops/constant_pad_nd_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.9674415Z adding 'torch/include/ATen/ops/constant_pad_nd_native.h' 2025-06-01T21:27:41.9677574Z adding 'torch/include/ATen/ops/constant_pad_nd_ops.h' 2025-06-01T21:27:41.9680633Z adding 'torch/include/ATen/ops/contiguous.h' 2025-06-01T21:27:41.9683890Z adding 'torch/include/ATen/ops/contiguous_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.9686848Z adding 'torch/include/ATen/ops/contiguous_native.h' 2025-06-01T21:27:41.9689849Z adding 'torch/include/ATen/ops/contiguous_ops.h' 2025-06-01T21:27:41.9693260Z adding 'torch/include/ATen/ops/conv1d.h' 2025-06-01T21:27:41.9696763Z adding 'torch/include/ATen/ops/conv1d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.9699855Z adding 'torch/include/ATen/ops/conv1d_native.h' 2025-06-01T21:27:41.9703063Z adding 'torch/include/ATen/ops/conv1d_ops.h' 2025-06-01T21:27:41.9706494Z adding 'torch/include/ATen/ops/conv2d.h' 2025-06-01T21:27:41.9709929Z adding 'torch/include/ATen/ops/conv2d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.9713125Z adding 'torch/include/ATen/ops/conv2d_native.h' 2025-06-01T21:27:41.9716474Z adding 'torch/include/ATen/ops/conv2d_ops.h' 2025-06-01T21:27:41.9719922Z adding 'torch/include/ATen/ops/conv3d.h' 2025-06-01T21:27:41.9723422Z adding 'torch/include/ATen/ops/conv3d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.9726309Z adding 'torch/include/ATen/ops/conv3d_native.h' 2025-06-01T21:27:41.9729594Z adding 'torch/include/ATen/ops/conv3d_ops.h' 2025-06-01T21:27:41.9733215Z adding 'torch/include/ATen/ops/conv_depthwise3d.h' 2025-06-01T21:27:41.9736812Z adding 'torch/include/ATen/ops/conv_depthwise3d_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.9739918Z adding 'torch/include/ATen/ops/conv_depthwise3d_cuda_dispatch.h' 2025-06-01T21:27:41.9743074Z adding 'torch/include/ATen/ops/conv_depthwise3d_native.h' 2025-06-01T21:27:41.9746420Z adding 'torch/include/ATen/ops/conv_depthwise3d_ops.h' 2025-06-01T21:27:41.9749569Z adding 'torch/include/ATen/ops/conv_tbc.h' 2025-06-01T21:27:41.9752840Z adding 'torch/include/ATen/ops/conv_tbc_backward.h' 2025-06-01T21:27:41.9756115Z adding 'torch/include/ATen/ops/conv_tbc_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.9759001Z adding 'torch/include/ATen/ops/conv_tbc_backward_native.h' 2025-06-01T21:27:41.9762502Z adding 'torch/include/ATen/ops/conv_tbc_backward_ops.h' 2025-06-01T21:27:41.9765833Z adding 'torch/include/ATen/ops/conv_tbc_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.9768937Z adding 'torch/include/ATen/ops/conv_tbc_native.h' 2025-06-01T21:27:41.9772177Z adding 'torch/include/ATen/ops/conv_tbc_ops.h' 2025-06-01T21:27:41.9775633Z adding 'torch/include/ATen/ops/conv_transpose1d.h' 2025-06-01T21:27:41.9778983Z adding 'torch/include/ATen/ops/conv_transpose1d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.9781932Z adding 'torch/include/ATen/ops/conv_transpose1d_native.h' 2025-06-01T21:27:41.9785149Z adding 'torch/include/ATen/ops/conv_transpose1d_ops.h' 2025-06-01T21:27:41.9788494Z adding 'torch/include/ATen/ops/conv_transpose2d.h' 2025-06-01T21:27:41.9791907Z adding 'torch/include/ATen/ops/conv_transpose2d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.9794865Z adding 'torch/include/ATen/ops/conv_transpose2d_native.h' 2025-06-01T21:27:41.9798099Z adding 'torch/include/ATen/ops/conv_transpose2d_ops.h' 2025-06-01T21:27:41.9801357Z adding 'torch/include/ATen/ops/conv_transpose3d.h' 2025-06-01T21:27:41.9804729Z adding 'torch/include/ATen/ops/conv_transpose3d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.9807671Z adding 'torch/include/ATen/ops/conv_transpose3d_native.h' 2025-06-01T21:27:41.9810993Z adding 'torch/include/ATen/ops/conv_transpose3d_ops.h' 2025-06-01T21:27:41.9814439Z adding 'torch/include/ATen/ops/convolution.h' 2025-06-01T21:27:41.9818491Z adding 'torch/include/ATen/ops/convolution_backward.h' 2025-06-01T21:27:41.9822339Z adding 'torch/include/ATen/ops/convolution_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.9825466Z adding 'torch/include/ATen/ops/convolution_backward_cuda_dispatch.h' 2025-06-01T21:27:41.9828618Z adding 'torch/include/ATen/ops/convolution_backward_native.h' 2025-06-01T21:27:41.9832193Z adding 'torch/include/ATen/ops/convolution_backward_ops.h' 2025-06-01T21:27:41.9836095Z adding 'torch/include/ATen/ops/convolution_backward_overrideable.h' 2025-06-01T21:27:41.9839891Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.9843273Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_native.h' 2025-06-01T21:27:41.9846641Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_ops.h' 2025-06-01T21:27:41.9850066Z adding 'torch/include/ATen/ops/convolution_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.9853077Z adding 'torch/include/ATen/ops/convolution_native.h' 2025-06-01T21:27:41.9856351Z adding 'torch/include/ATen/ops/convolution_ops.h' 2025-06-01T21:27:41.9860062Z adding 'torch/include/ATen/ops/convolution_overrideable.h' 2025-06-01T21:27:41.9863698Z adding 'torch/include/ATen/ops/convolution_overrideable_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.9866736Z adding 'torch/include/ATen/ops/convolution_overrideable_native.h' 2025-06-01T21:27:41.9870240Z adding 'torch/include/ATen/ops/convolution_overrideable_ops.h' 2025-06-01T21:27:41.9873521Z adding 'torch/include/ATen/ops/copy.h' 2025-06-01T21:27:41.9876792Z adding 'torch/include/ATen/ops/copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.9879961Z adding 'torch/include/ATen/ops/copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.9882881Z adding 'torch/include/ATen/ops/copy_meta_dispatch.h' 2025-06-01T21:27:41.9885999Z adding 'torch/include/ATen/ops/copy_native.h' 2025-06-01T21:27:41.9889255Z adding 'torch/include/ATen/ops/copy_ops.h' 2025-06-01T21:27:41.9892428Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse.h' 2025-06-01T21:27:41.9895788Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.9898720Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_meta_dispatch.h' 2025-06-01T21:27:41.9901686Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_native.h' 2025-06-01T21:27:41.9904978Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_ops.h' 2025-06-01T21:27:41.9908138Z adding 'torch/include/ATen/ops/copysign.h' 2025-06-01T21:27:41.9911560Z adding 'torch/include/ATen/ops/copysign_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:41.9914815Z adding 'torch/include/ATen/ops/copysign_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.9917763Z adding 'torch/include/ATen/ops/copysign_cpu_dispatch.h' 2025-06-01T21:27:41.9920795Z adding 'torch/include/ATen/ops/copysign_cuda_dispatch.h' 2025-06-01T21:27:41.9923805Z adding 'torch/include/ATen/ops/copysign_meta.h' 2025-06-01T21:27:41.9926917Z adding 'torch/include/ATen/ops/copysign_meta_dispatch.h' 2025-06-01T21:27:41.9929939Z adding 'torch/include/ATen/ops/copysign_native.h' 2025-06-01T21:27:41.9933321Z adding 'torch/include/ATen/ops/copysign_ops.h' 2025-06-01T21:27:41.9936379Z adding 'torch/include/ATen/ops/corrcoef.h' 2025-06-01T21:27:41.9939647Z adding 'torch/include/ATen/ops/corrcoef_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:41.9942552Z adding 'torch/include/ATen/ops/corrcoef_native.h' 2025-06-01T21:27:41.9945773Z adding 'torch/include/ATen/ops/corrcoef_ops.h' 2025-06-01T21:27:41.9948971Z adding 'torch/include/ATen/ops/cos.h' 2025-06-01T21:27:41.9952381Z adding 'torch/include/ATen/ops/cos_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.9955372Z adding 'torch/include/ATen/ops/cos_cpu_dispatch.h' 2025-06-01T21:27:41.9958345Z adding 'torch/include/ATen/ops/cos_cuda_dispatch.h' 2025-06-01T21:27:41.9961309Z adding 'torch/include/ATen/ops/cos_meta.h' 2025-06-01T21:27:41.9964344Z adding 'torch/include/ATen/ops/cos_meta_dispatch.h' 2025-06-01T21:27:41.9967319Z adding 'torch/include/ATen/ops/cos_native.h' 2025-06-01T21:27:41.9970649Z adding 'torch/include/ATen/ops/cos_ops.h' 2025-06-01T21:27:41.9974220Z adding 'torch/include/ATen/ops/cosh.h' 2025-06-01T21:27:41.9977544Z adding 'torch/include/ATen/ops/cosh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:41.9980711Z adding 'torch/include/ATen/ops/cosh_cpu_dispatch.h' 2025-06-01T21:27:41.9984167Z adding 'torch/include/ATen/ops/cosh_cuda_dispatch.h' 2025-06-01T21:27:41.9987582Z adding 'torch/include/ATen/ops/cosh_meta.h' 2025-06-01T21:27:41.9991220Z adding 'torch/include/ATen/ops/cosh_meta_dispatch.h' 2025-06-01T21:27:41.9994706Z adding 'torch/include/ATen/ops/cosh_native.h' 2025-06-01T21:27:41.9998362Z adding 'torch/include/ATen/ops/cosh_ops.h' 2025-06-01T21:27:42.0002012Z adding 'torch/include/ATen/ops/cosine_embedding_loss.h' 2025-06-01T21:27:42.0005726Z adding 'torch/include/ATen/ops/cosine_embedding_loss_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.0008778Z adding 'torch/include/ATen/ops/cosine_embedding_loss_native.h' 2025-06-01T21:27:42.0012047Z adding 'torch/include/ATen/ops/cosine_embedding_loss_ops.h' 2025-06-01T21:27:42.0015199Z adding 'torch/include/ATen/ops/cosine_similarity.h' 2025-06-01T21:27:42.0018493Z adding 'torch/include/ATen/ops/cosine_similarity_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.0021433Z adding 'torch/include/ATen/ops/cosine_similarity_native.h' 2025-06-01T21:27:42.0024711Z adding 'torch/include/ATen/ops/cosine_similarity_ops.h' 2025-06-01T21:27:42.0027967Z adding 'torch/include/ATen/ops/count_nonzero.h' 2025-06-01T21:27:42.0031552Z adding 'torch/include/ATen/ops/count_nonzero_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.0034710Z adding 'torch/include/ATen/ops/count_nonzero_cpu_dispatch.h' 2025-06-01T21:27:42.0037783Z adding 'torch/include/ATen/ops/count_nonzero_cuda_dispatch.h' 2025-06-01T21:27:42.0041051Z adding 'torch/include/ATen/ops/count_nonzero_native.h' 2025-06-01T21:27:42.0044626Z adding 'torch/include/ATen/ops/count_nonzero_ops.h' 2025-06-01T21:27:42.0047883Z adding 'torch/include/ATen/ops/cov.h' 2025-06-01T21:27:42.0051284Z adding 'torch/include/ATen/ops/cov_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.0054324Z adding 'torch/include/ATen/ops/cov_native.h' 2025-06-01T21:27:42.0057626Z adding 'torch/include/ATen/ops/cov_ops.h' 2025-06-01T21:27:42.0060745Z adding 'torch/include/ATen/ops/cross.h' 2025-06-01T21:27:42.0064132Z adding 'torch/include/ATen/ops/cross_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.0067288Z adding 'torch/include/ATen/ops/cross_entropy_loss.h' 2025-06-01T21:27:42.0070850Z adding 'torch/include/ATen/ops/cross_entropy_loss_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.0073925Z adding 'torch/include/ATen/ops/cross_entropy_loss_native.h' 2025-06-01T21:27:42.0077227Z adding 'torch/include/ATen/ops/cross_entropy_loss_ops.h' 2025-06-01T21:27:42.0080361Z adding 'torch/include/ATen/ops/cross_native.h' 2025-06-01T21:27:42.0083589Z adding 'torch/include/ATen/ops/cross_ops.h' 2025-06-01T21:27:42.0086711Z adding 'torch/include/ATen/ops/crow_indices.h' 2025-06-01T21:27:42.0089959Z adding 'torch/include/ATen/ops/crow_indices_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.0092982Z adding 'torch/include/ATen/ops/crow_indices_copy.h' 2025-06-01T21:27:42.0096259Z adding 'torch/include/ATen/ops/crow_indices_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.0099632Z adding 'torch/include/ATen/ops/crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.0102457Z adding 'torch/include/ATen/ops/crow_indices_copy_native.h' 2025-06-01T21:27:42.0105797Z adding 'torch/include/ATen/ops/crow_indices_copy_ops.h' 2025-06-01T21:27:42.0108957Z adding 'torch/include/ATen/ops/crow_indices_native.h' 2025-06-01T21:27:42.0112192Z adding 'torch/include/ATen/ops/crow_indices_ops.h' 2025-06-01T21:27:42.0115405Z adding 'torch/include/ATen/ops/ctc_loss.h' 2025-06-01T21:27:42.0118743Z adding 'torch/include/ATen/ops/ctc_loss_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.0121916Z adding 'torch/include/ATen/ops/ctc_loss_native.h' 2025-06-01T21:27:42.0125231Z adding 'torch/include/ATen/ops/ctc_loss_ops.h' 2025-06-01T21:27:42.0128520Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator.h' 2025-06-01T21:27:42.0131724Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward.h' 2025-06-01T21:27:42.0135100Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.0138280Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_cuda_dispatch.h' 2025-06-01T21:27:42.0141248Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_native.h' 2025-06-01T21:27:42.0144455Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_ops.h' 2025-06-01T21:27:42.0147708Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.0150794Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_cuda_dispatch.h' 2025-06-01T21:27:42.0153852Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_native.h' 2025-06-01T21:27:42.0157025Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_ops.h' 2025-06-01T21:27:42.0160287Z adding 'torch/include/ATen/ops/cudnn_batch_norm.h' 2025-06-01T21:27:42.0163672Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward.h' 2025-06-01T21:27:42.0167258Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.0170342Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_cuda_dispatch.h' 2025-06-01T21:27:42.0173457Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_native.h' 2025-06-01T21:27:42.0176853Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_ops.h' 2025-06-01T21:27:42.0180285Z adding 'torch/include/ATen/ops/cudnn_batch_norm_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.0183354Z adding 'torch/include/ATen/ops/cudnn_batch_norm_cuda_dispatch.h' 2025-06-01T21:27:42.0186319Z adding 'torch/include/ATen/ops/cudnn_batch_norm_native.h' 2025-06-01T21:27:42.0189703Z adding 'torch/include/ATen/ops/cudnn_batch_norm_ops.h' 2025-06-01T21:27:42.0193467Z adding 'torch/include/ATen/ops/cudnn_convolution.h' 2025-06-01T21:27:42.0197301Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu.h' 2025-06-01T21:27:42.0201078Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.0204184Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_cuda_dispatch.h' 2025-06-01T21:27:42.0207224Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_native.h' 2025-06-01T21:27:42.0210566Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_ops.h' 2025-06-01T21:27:42.0213887Z adding 'torch/include/ATen/ops/cudnn_convolution_cuda_dispatch.h' 2025-06-01T21:27:42.0216928Z adding 'torch/include/ATen/ops/cudnn_convolution_native.h' 2025-06-01T21:27:42.0220226Z adding 'torch/include/ATen/ops/cudnn_convolution_ops.h' 2025-06-01T21:27:42.0223947Z adding 'torch/include/ATen/ops/cudnn_convolution_relu.h' 2025-06-01T21:27:42.0227482Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.0230574Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_cuda_dispatch.h' 2025-06-01T21:27:42.0233745Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_native.h' 2025-06-01T21:27:42.0237011Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_ops.h' 2025-06-01T21:27:42.0240776Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose.h' 2025-06-01T21:27:42.0244374Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.0247477Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_cuda_dispatch.h' 2025-06-01T21:27:42.0250525Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_native.h' 2025-06-01T21:27:42.0253869Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_ops.h' 2025-06-01T21:27:42.0257000Z adding 'torch/include/ATen/ops/cudnn_grid_sampler.h' 2025-06-01T21:27:42.0260193Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward.h' 2025-06-01T21:27:42.0263479Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.0266475Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_cuda_dispatch.h' 2025-06-01T21:27:42.0269431Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_native.h' 2025-06-01T21:27:42.0272765Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_ops.h' 2025-06-01T21:27:42.0276099Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.0279182Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_cuda_dispatch.h' 2025-06-01T21:27:42.0282145Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_native.h' 2025-06-01T21:27:42.0285326Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_ops.h' 2025-06-01T21:27:42.0288388Z adding 'torch/include/ATen/ops/cudnn_is_acceptable.h' 2025-06-01T21:27:42.0291619Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.0294490Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_native.h' 2025-06-01T21:27:42.0297560Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_ops.h' 2025-06-01T21:27:42.0300795Z adding 'torch/include/ATen/ops/cummax.h' 2025-06-01T21:27:42.0304107Z adding 'torch/include/ATen/ops/cummax_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.0307292Z adding 'torch/include/ATen/ops/cummax_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.0310218Z adding 'torch/include/ATen/ops/cummax_native.h' 2025-06-01T21:27:42.0313698Z adding 'torch/include/ATen/ops/cummax_ops.h' 2025-06-01T21:27:42.0316971Z adding 'torch/include/ATen/ops/cummaxmin_backward.h' 2025-06-01T21:27:42.0320207Z adding 'torch/include/ATen/ops/cummaxmin_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.0323738Z adding 'torch/include/ATen/ops/cummaxmin_backward_native.h' 2025-06-01T21:27:42.0326427Z adding 'torch/include/ATen/ops/cummaxmin_backward_ops.h' 2025-06-01T21:27:42.0329740Z adding 'torch/include/ATen/ops/cummin.h' 2025-06-01T21:27:42.0333155Z adding 'torch/include/ATen/ops/cummin_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.0336441Z adding 'torch/include/ATen/ops/cummin_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.0339375Z adding 'torch/include/ATen/ops/cummin_native.h' 2025-06-01T21:27:42.0342901Z adding 'torch/include/ATen/ops/cummin_ops.h' 2025-06-01T21:27:42.0346410Z adding 'torch/include/ATen/ops/cumprod.h' 2025-06-01T21:27:42.0349607Z adding 'torch/include/ATen/ops/cumprod_backward.h' 2025-06-01T21:27:42.0353225Z adding 'torch/include/ATen/ops/cumprod_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.0356124Z adding 'torch/include/ATen/ops/cumprod_backward_native.h' 2025-06-01T21:27:42.0359737Z adding 'torch/include/ATen/ops/cumprod_backward_ops.h' 2025-06-01T21:27:42.0363080Z adding 'torch/include/ATen/ops/cumprod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.0366333Z adding 'torch/include/ATen/ops/cumprod_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.0369840Z adding 'torch/include/ATen/ops/cumprod_cpu_dispatch.h' 2025-06-01T21:27:42.0373388Z adding 'torch/include/ATen/ops/cumprod_cuda_dispatch.h' 2025-06-01T21:27:42.0376941Z adding 'torch/include/ATen/ops/cumprod_meta.h' 2025-06-01T21:27:42.0380550Z adding 'torch/include/ATen/ops/cumprod_meta_dispatch.h' 2025-06-01T21:27:42.0384155Z adding 'torch/include/ATen/ops/cumprod_native.h' 2025-06-01T21:27:42.0388149Z adding 'torch/include/ATen/ops/cumprod_ops.h' 2025-06-01T21:27:42.0391971Z adding 'torch/include/ATen/ops/cumsum.h' 2025-06-01T21:27:42.0395926Z adding 'torch/include/ATen/ops/cumsum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.0399429Z adding 'torch/include/ATen/ops/cumsum_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.0402885Z adding 'torch/include/ATen/ops/cumsum_cpu_dispatch.h' 2025-06-01T21:27:42.0406088Z adding 'torch/include/ATen/ops/cumsum_cuda_dispatch.h' 2025-06-01T21:27:42.0409339Z adding 'torch/include/ATen/ops/cumsum_meta.h' 2025-06-01T21:27:42.0412484Z adding 'torch/include/ATen/ops/cumsum_meta_dispatch.h' 2025-06-01T21:27:42.0415762Z adding 'torch/include/ATen/ops/cumsum_native.h' 2025-06-01T21:27:42.0419272Z adding 'torch/include/ATen/ops/cumsum_ops.h' 2025-06-01T21:27:42.0423489Z adding 'torch/include/ATen/ops/cumulative_trapezoid.h' 2025-06-01T21:27:42.0427057Z adding 'torch/include/ATen/ops/cumulative_trapezoid_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.0430015Z adding 'torch/include/ATen/ops/cumulative_trapezoid_native.h' 2025-06-01T21:27:42.0433386Z adding 'torch/include/ATen/ops/cumulative_trapezoid_ops.h' 2025-06-01T21:27:42.0436366Z adding 'torch/include/ATen/ops/data.h' 2025-06-01T21:27:42.0439795Z adding 'torch/include/ATen/ops/data_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.0442659Z adding 'torch/include/ATen/ops/data_native.h' 2025-06-01T21:27:42.0445734Z adding 'torch/include/ATen/ops/data_ops.h' 2025-06-01T21:27:42.0448917Z adding 'torch/include/ATen/ops/deg2rad.h' 2025-06-01T21:27:42.0452189Z adding 'torch/include/ATen/ops/deg2rad_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.0455357Z adding 'torch/include/ATen/ops/deg2rad_native.h' 2025-06-01T21:27:42.0458602Z adding 'torch/include/ATen/ops/deg2rad_ops.h' 2025-06-01T21:27:42.0461729Z adding 'torch/include/ATen/ops/dense_dim.h' 2025-06-01T21:27:42.0464925Z adding 'torch/include/ATen/ops/dense_dim_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.0467830Z adding 'torch/include/ATen/ops/dense_dim_native.h' 2025-06-01T21:27:42.0471006Z adding 'torch/include/ATen/ops/dense_dim_ops.h' 2025-06-01T21:27:42.0474263Z adding 'torch/include/ATen/ops/dequantize.h' 2025-06-01T21:27:42.0477535Z adding 'torch/include/ATen/ops/dequantize_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.0480474Z adding 'torch/include/ATen/ops/dequantize_cpu_dispatch.h' 2025-06-01T21:27:42.0483570Z adding 'torch/include/ATen/ops/dequantize_cuda_dispatch.h' 2025-06-01T21:27:42.0486755Z adding 'torch/include/ATen/ops/dequantize_native.h' 2025-06-01T21:27:42.0490099Z adding 'torch/include/ATen/ops/dequantize_ops.h' 2025-06-01T21:27:42.0493213Z adding 'torch/include/ATen/ops/det.h' 2025-06-01T21:27:42.0496377Z adding 'torch/include/ATen/ops/det_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.0499247Z adding 'torch/include/ATen/ops/det_native.h' 2025-06-01T21:27:42.0502339Z adding 'torch/include/ATen/ops/det_ops.h' 2025-06-01T21:27:42.0505349Z adding 'torch/include/ATen/ops/detach.h' 2025-06-01T21:27:42.0508559Z adding 'torch/include/ATen/ops/detach_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.0511648Z adding 'torch/include/ATen/ops/detach_copy.h' 2025-06-01T21:27:42.0515049Z adding 'torch/include/ATen/ops/detach_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.0518231Z adding 'torch/include/ATen/ops/detach_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.0521081Z adding 'torch/include/ATen/ops/detach_copy_native.h' 2025-06-01T21:27:42.0524273Z adding 'torch/include/ATen/ops/detach_copy_ops.h' 2025-06-01T21:27:42.0527272Z adding 'torch/include/ATen/ops/detach_native.h' 2025-06-01T21:27:42.0530402Z adding 'torch/include/ATen/ops/detach_ops.h' 2025-06-01T21:27:42.0533487Z adding 'torch/include/ATen/ops/diag.h' 2025-06-01T21:27:42.0537264Z adding 'torch/include/ATen/ops/diag_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.0540360Z adding 'torch/include/ATen/ops/diag_embed.h' 2025-06-01T21:27:42.0543609Z adding 'torch/include/ATen/ops/diag_embed_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.0546765Z adding 'torch/include/ATen/ops/diag_embed_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.0549604Z adding 'torch/include/ATen/ops/diag_embed_native.h' 2025-06-01T21:27:42.0552900Z adding 'torch/include/ATen/ops/diag_embed_ops.h' 2025-06-01T21:27:42.0555942Z adding 'torch/include/ATen/ops/diag_native.h' 2025-06-01T21:27:42.0559118Z adding 'torch/include/ATen/ops/diag_ops.h' 2025-06-01T21:27:42.0562244Z adding 'torch/include/ATen/ops/diagflat.h' 2025-06-01T21:27:42.0565532Z adding 'torch/include/ATen/ops/diagflat_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.0568425Z adding 'torch/include/ATen/ops/diagflat_native.h' 2025-06-01T21:27:42.0571539Z adding 'torch/include/ATen/ops/diagflat_ops.h' 2025-06-01T21:27:42.0574663Z adding 'torch/include/ATen/ops/diagonal.h' 2025-06-01T21:27:42.0578119Z adding 'torch/include/ATen/ops/diagonal_backward.h' 2025-06-01T21:27:42.0581583Z adding 'torch/include/ATen/ops/diagonal_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.0584513Z adding 'torch/include/ATen/ops/diagonal_backward_native.h' 2025-06-01T21:27:42.0587820Z adding 'torch/include/ATen/ops/diagonal_backward_ops.h' 2025-06-01T21:27:42.0591226Z adding 'torch/include/ATen/ops/diagonal_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.0594335Z adding 'torch/include/ATen/ops/diagonal_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.0597357Z adding 'torch/include/ATen/ops/diagonal_copy.h' 2025-06-01T21:27:42.0600642Z adding 'torch/include/ATen/ops/diagonal_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.0603850Z adding 'torch/include/ATen/ops/diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.0606646Z adding 'torch/include/ATen/ops/diagonal_copy_native.h' 2025-06-01T21:27:42.0609834Z adding 'torch/include/ATen/ops/diagonal_copy_ops.h' 2025-06-01T21:27:42.0612872Z adding 'torch/include/ATen/ops/diagonal_native.h' 2025-06-01T21:27:42.0616079Z adding 'torch/include/ATen/ops/diagonal_ops.h' 2025-06-01T21:27:42.0619795Z adding 'torch/include/ATen/ops/diagonal_scatter.h' 2025-06-01T21:27:42.0622650Z adding 'torch/include/ATen/ops/diagonal_scatter_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.0625969Z adding 'torch/include/ATen/ops/diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.0628771Z adding 'torch/include/ATen/ops/diagonal_scatter_native.h' 2025-06-01T21:27:42.0632116Z adding 'torch/include/ATen/ops/diagonal_scatter_ops.h' 2025-06-01T21:27:42.0635325Z adding 'torch/include/ATen/ops/diff.h' 2025-06-01T21:27:42.0638663Z adding 'torch/include/ATen/ops/diff_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.0641609Z adding 'torch/include/ATen/ops/diff_native.h' 2025-06-01T21:27:42.0644903Z adding 'torch/include/ATen/ops/diff_ops.h' 2025-06-01T21:27:42.0648005Z adding 'torch/include/ATen/ops/digamma.h' 2025-06-01T21:27:42.0651304Z adding 'torch/include/ATen/ops/digamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.0654175Z adding 'torch/include/ATen/ops/digamma_cpu_dispatch.h' 2025-06-01T21:27:42.0657261Z adding 'torch/include/ATen/ops/digamma_cuda_dispatch.h' 2025-06-01T21:27:42.0660319Z adding 'torch/include/ATen/ops/digamma_meta.h' 2025-06-01T21:27:42.0663468Z adding 'torch/include/ATen/ops/digamma_meta_dispatch.h' 2025-06-01T21:27:42.0666395Z adding 'torch/include/ATen/ops/digamma_native.h' 2025-06-01T21:27:42.0669574Z adding 'torch/include/ATen/ops/digamma_ops.h' 2025-06-01T21:27:42.0672945Z adding 'torch/include/ATen/ops/dist.h' 2025-06-01T21:27:42.0676250Z adding 'torch/include/ATen/ops/dist_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.0679128Z adding 'torch/include/ATen/ops/dist_native.h' 2025-06-01T21:27:42.0682371Z adding 'torch/include/ATen/ops/dist_ops.h' 2025-06-01T21:27:42.0685760Z adding 'torch/include/ATen/ops/div.h' 2025-06-01T21:27:42.0689210Z adding 'torch/include/ATen/ops/div_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.0692602Z adding 'torch/include/ATen/ops/div_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.0695528Z adding 'torch/include/ATen/ops/div_cpu_dispatch.h' 2025-06-01T21:27:42.0698667Z adding 'torch/include/ATen/ops/div_cuda_dispatch.h' 2025-06-01T21:27:42.0701696Z adding 'torch/include/ATen/ops/div_meta.h' 2025-06-01T21:27:42.0704841Z adding 'torch/include/ATen/ops/div_meta_dispatch.h' 2025-06-01T21:27:42.0708015Z adding 'torch/include/ATen/ops/div_native.h' 2025-06-01T21:27:42.0711925Z adding 'torch/include/ATen/ops/div_ops.h' 2025-06-01T21:27:42.0715447Z adding 'torch/include/ATen/ops/divide.h' 2025-06-01T21:27:42.0718867Z adding 'torch/include/ATen/ops/divide_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.0721869Z adding 'torch/include/ATen/ops/divide_native.h' 2025-06-01T21:27:42.0725498Z adding 'torch/include/ATen/ops/divide_ops.h' 2025-06-01T21:27:42.0728765Z adding 'torch/include/ATen/ops/dot.h' 2025-06-01T21:27:42.0732118Z adding 'torch/include/ATen/ops/dot_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.0735168Z adding 'torch/include/ATen/ops/dot_cpu_dispatch.h' 2025-06-01T21:27:42.0738190Z adding 'torch/include/ATen/ops/dot_cuda_dispatch.h' 2025-06-01T21:27:42.0741195Z adding 'torch/include/ATen/ops/dot_native.h' 2025-06-01T21:27:42.0744480Z adding 'torch/include/ATen/ops/dot_ops.h' 2025-06-01T21:27:42.0747564Z adding 'torch/include/ATen/ops/dropout.h' 2025-06-01T21:27:42.0750862Z adding 'torch/include/ATen/ops/dropout_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.0753829Z adding 'torch/include/ATen/ops/dropout_native.h' 2025-06-01T21:27:42.0757076Z adding 'torch/include/ATen/ops/dropout_ops.h' 2025-06-01T21:27:42.0760196Z adding 'torch/include/ATen/ops/dsplit.h' 2025-06-01T21:27:42.0763471Z adding 'torch/include/ATen/ops/dsplit_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.0766344Z adding 'torch/include/ATen/ops/dsplit_native.h' 2025-06-01T21:27:42.0769548Z adding 'torch/include/ATen/ops/dsplit_ops.h' 2025-06-01T21:27:42.0772892Z adding 'torch/include/ATen/ops/dstack.h' 2025-06-01T21:27:42.0777157Z adding 'torch/include/ATen/ops/dstack_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.0780637Z adding 'torch/include/ATen/ops/dstack_native.h' 2025-06-01T21:27:42.0783750Z adding 'torch/include/ATen/ops/dstack_ops.h' 2025-06-01T21:27:42.0787007Z adding 'torch/include/ATen/ops/einsum.h' 2025-06-01T21:27:42.0790347Z adding 'torch/include/ATen/ops/einsum_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.0793369Z adding 'torch/include/ATen/ops/einsum_native.h' 2025-06-01T21:27:42.0796634Z adding 'torch/include/ATen/ops/einsum_ops.h' 2025-06-01T21:27:42.0799795Z adding 'torch/include/ATen/ops/elu.h' 2025-06-01T21:27:42.0803208Z adding 'torch/include/ATen/ops/elu_backward.h' 2025-06-01T21:27:42.0806679Z adding 'torch/include/ATen/ops/elu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.0809826Z adding 'torch/include/ATen/ops/elu_backward_cpu_dispatch.h' 2025-06-01T21:27:42.0813157Z adding 'torch/include/ATen/ops/elu_backward_cuda_dispatch.h' 2025-06-01T21:27:42.0816278Z adding 'torch/include/ATen/ops/elu_backward_meta.h' 2025-06-01T21:27:42.0819597Z adding 'torch/include/ATen/ops/elu_backward_meta_dispatch.h' 2025-06-01T21:27:42.0822691Z adding 'torch/include/ATen/ops/elu_backward_native.h' 2025-06-01T21:27:42.0826125Z adding 'torch/include/ATen/ops/elu_backward_ops.h' 2025-06-01T21:27:42.0829566Z adding 'torch/include/ATen/ops/elu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.0832820Z adding 'torch/include/ATen/ops/elu_cpu_dispatch.h' 2025-06-01T21:27:42.0836072Z adding 'torch/include/ATen/ops/elu_cuda_dispatch.h' 2025-06-01T21:27:42.0839167Z adding 'torch/include/ATen/ops/elu_meta.h' 2025-06-01T21:27:42.0842429Z adding 'torch/include/ATen/ops/elu_meta_dispatch.h' 2025-06-01T21:27:42.0845548Z adding 'torch/include/ATen/ops/elu_native.h' 2025-06-01T21:27:42.0848960Z adding 'torch/include/ATen/ops/elu_ops.h' 2025-06-01T21:27:42.0852404Z adding 'torch/include/ATen/ops/embedding.h' 2025-06-01T21:27:42.0855943Z adding 'torch/include/ATen/ops/embedding_backward.h' 2025-06-01T21:27:42.0859319Z adding 'torch/include/ATen/ops/embedding_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.0862484Z adding 'torch/include/ATen/ops/embedding_backward_native.h' 2025-06-01T21:27:42.0865755Z adding 'torch/include/ATen/ops/embedding_backward_ops.h' 2025-06-01T21:27:42.0869080Z adding 'torch/include/ATen/ops/embedding_bag.h' 2025-06-01T21:27:42.0872854Z adding 'torch/include/ATen/ops/embedding_bag_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.0876070Z adding 'torch/include/ATen/ops/embedding_bag_native.h' 2025-06-01T21:27:42.0879404Z adding 'torch/include/ATen/ops/embedding_bag_ops.h' 2025-06-01T21:27:42.0883210Z adding 'torch/include/ATen/ops/embedding_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.0886820Z adding 'torch/include/ATen/ops/embedding_dense_backward.h' 2025-06-01T21:27:42.0890425Z adding 'torch/include/ATen/ops/embedding_dense_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.0893838Z adding 'torch/include/ATen/ops/embedding_dense_backward_cpu_dispatch.h' 2025-06-01T21:27:42.0897034Z adding 'torch/include/ATen/ops/embedding_dense_backward_cuda_dispatch.h' 2025-06-01T21:27:42.0900268Z adding 'torch/include/ATen/ops/embedding_dense_backward_native.h' 2025-06-01T21:27:42.0903527Z adding 'torch/include/ATen/ops/embedding_dense_backward_ops.h' 2025-06-01T21:27:42.0906909Z adding 'torch/include/ATen/ops/embedding_native.h' 2025-06-01T21:27:42.0910401Z adding 'torch/include/ATen/ops/embedding_ops.h' 2025-06-01T21:27:42.0913984Z adding 'torch/include/ATen/ops/embedding_renorm.h' 2025-06-01T21:27:42.0917714Z adding 'torch/include/ATen/ops/embedding_renorm_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.0920740Z adding 'torch/include/ATen/ops/embedding_renorm_cpu_dispatch.h' 2025-06-01T21:27:42.0923942Z adding 'torch/include/ATen/ops/embedding_renorm_cuda_dispatch.h' 2025-06-01T21:27:42.0927114Z adding 'torch/include/ATen/ops/embedding_renorm_meta_dispatch.h' 2025-06-01T21:27:42.0930368Z adding 'torch/include/ATen/ops/embedding_renorm_native.h' 2025-06-01T21:27:42.0933804Z adding 'torch/include/ATen/ops/embedding_renorm_ops.h' 2025-06-01T21:27:42.0937182Z adding 'torch/include/ATen/ops/embedding_sparse_backward.h' 2025-06-01T21:27:42.0940522Z adding 'torch/include/ATen/ops/embedding_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.0943735Z adding 'torch/include/ATen/ops/embedding_sparse_backward_native.h' 2025-06-01T21:27:42.0946948Z adding 'torch/include/ATen/ops/embedding_sparse_backward_ops.h' 2025-06-01T21:27:42.0951001Z adding 'torch/include/ATen/ops/empty.h' 2025-06-01T21:27:42.0954791Z adding 'torch/include/ATen/ops/empty_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.0958180Z adding 'torch/include/ATen/ops/empty_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.0961368Z adding 'torch/include/ATen/ops/empty_cpu_dispatch.h' 2025-06-01T21:27:42.0964646Z adding 'torch/include/ATen/ops/empty_cuda_dispatch.h' 2025-06-01T21:27:42.0968076Z adding 'torch/include/ATen/ops/empty_like.h' 2025-06-01T21:27:42.0971533Z adding 'torch/include/ATen/ops/empty_like_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.0974673Z adding 'torch/include/ATen/ops/empty_like_native.h' 2025-06-01T21:27:42.0978158Z adding 'torch/include/ATen/ops/empty_like_ops.h' 2025-06-01T21:27:42.0981450Z adding 'torch/include/ATen/ops/empty_meta_dispatch.h' 2025-06-01T21:27:42.0985006Z adding 'torch/include/ATen/ops/empty_native.h' 2025-06-01T21:27:42.0988508Z adding 'torch/include/ATen/ops/empty_ops.h' 2025-06-01T21:27:42.0992497Z adding 'torch/include/ATen/ops/empty_permuted.h' 2025-06-01T21:27:42.0996090Z adding 'torch/include/ATen/ops/empty_permuted_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.0999109Z adding 'torch/include/ATen/ops/empty_permuted_native.h' 2025-06-01T21:27:42.1003311Z adding 'torch/include/ATen/ops/empty_permuted_ops.h' 2025-06-01T21:27:42.1006663Z adding 'torch/include/ATen/ops/empty_quantized.h' 2025-06-01T21:27:42.1010000Z adding 'torch/include/ATen/ops/empty_quantized_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.1012971Z adding 'torch/include/ATen/ops/empty_quantized_native.h' 2025-06-01T21:27:42.1016287Z adding 'torch/include/ATen/ops/empty_quantized_ops.h' 2025-06-01T21:27:42.1020158Z adding 'torch/include/ATen/ops/empty_strided.h' 2025-06-01T21:27:42.1023675Z adding 'torch/include/ATen/ops/empty_strided_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.1026821Z adding 'torch/include/ATen/ops/empty_strided_cpu_dispatch.h' 2025-06-01T21:27:42.1029925Z adding 'torch/include/ATen/ops/empty_strided_cuda_dispatch.h' 2025-06-01T21:27:42.1033220Z adding 'torch/include/ATen/ops/empty_strided_meta_dispatch.h' 2025-06-01T21:27:42.1036320Z adding 'torch/include/ATen/ops/empty_strided_native.h' 2025-06-01T21:27:42.1039643Z adding 'torch/include/ATen/ops/empty_strided_ops.h' 2025-06-01T21:27:42.1042870Z adding 'torch/include/ATen/ops/eq.h' 2025-06-01T21:27:42.1046267Z adding 'torch/include/ATen/ops/eq_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.1049385Z adding 'torch/include/ATen/ops/eq_cpu_dispatch.h' 2025-06-01T21:27:42.1052577Z adding 'torch/include/ATen/ops/eq_cuda_dispatch.h' 2025-06-01T21:27:42.1055609Z adding 'torch/include/ATen/ops/eq_meta.h' 2025-06-01T21:27:42.1058825Z adding 'torch/include/ATen/ops/eq_meta_dispatch.h' 2025-06-01T21:27:42.1061867Z adding 'torch/include/ATen/ops/eq_native.h' 2025-06-01T21:27:42.1065279Z adding 'torch/include/ATen/ops/eq_ops.h' 2025-06-01T21:27:42.1068442Z adding 'torch/include/ATen/ops/equal.h' 2025-06-01T21:27:42.1071669Z adding 'torch/include/ATen/ops/equal_cpu_dispatch.h' 2025-06-01T21:27:42.1074782Z adding 'torch/include/ATen/ops/equal_cuda_dispatch.h' 2025-06-01T21:27:42.1077769Z adding 'torch/include/ATen/ops/equal_native.h' 2025-06-01T21:27:42.1080889Z adding 'torch/include/ATen/ops/equal_ops.h' 2025-06-01T21:27:42.1084037Z adding 'torch/include/ATen/ops/erf.h' 2025-06-01T21:27:42.1087458Z adding 'torch/include/ATen/ops/erf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.1090367Z adding 'torch/include/ATen/ops/erf_cpu_dispatch.h' 2025-06-01T21:27:42.1093382Z adding 'torch/include/ATen/ops/erf_cuda_dispatch.h' 2025-06-01T21:27:42.1096351Z adding 'torch/include/ATen/ops/erf_meta.h' 2025-06-01T21:27:42.1099488Z adding 'torch/include/ATen/ops/erf_meta_dispatch.h' 2025-06-01T21:27:42.1102492Z adding 'torch/include/ATen/ops/erf_native.h' 2025-06-01T21:27:42.1105880Z adding 'torch/include/ATen/ops/erf_ops.h' 2025-06-01T21:27:42.1109058Z adding 'torch/include/ATen/ops/erfc.h' 2025-06-01T21:27:42.1112480Z adding 'torch/include/ATen/ops/erfc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.1115447Z adding 'torch/include/ATen/ops/erfc_cpu_dispatch.h' 2025-06-01T21:27:42.1118514Z adding 'torch/include/ATen/ops/erfc_cuda_dispatch.h' 2025-06-01T21:27:42.1121488Z adding 'torch/include/ATen/ops/erfc_meta.h' 2025-06-01T21:27:42.1124621Z adding 'torch/include/ATen/ops/erfc_meta_dispatch.h' 2025-06-01T21:27:42.1127582Z adding 'torch/include/ATen/ops/erfc_native.h' 2025-06-01T21:27:42.1130782Z adding 'torch/include/ATen/ops/erfc_ops.h' 2025-06-01T21:27:42.1133867Z adding 'torch/include/ATen/ops/erfinv.h' 2025-06-01T21:27:42.1137199Z adding 'torch/include/ATen/ops/erfinv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.1140090Z adding 'torch/include/ATen/ops/erfinv_cpu_dispatch.h' 2025-06-01T21:27:42.1143151Z adding 'torch/include/ATen/ops/erfinv_cuda_dispatch.h' 2025-06-01T21:27:42.1146157Z adding 'torch/include/ATen/ops/erfinv_meta.h' 2025-06-01T21:27:42.1149211Z adding 'torch/include/ATen/ops/erfinv_meta_dispatch.h' 2025-06-01T21:27:42.1152359Z adding 'torch/include/ATen/ops/erfinv_native.h' 2025-06-01T21:27:42.1155564Z adding 'torch/include/ATen/ops/erfinv_ops.h' 2025-06-01T21:27:42.1158666Z adding 'torch/include/ATen/ops/exp.h' 2025-06-01T21:27:42.1161748Z adding 'torch/include/ATen/ops/exp2.h' 2025-06-01T21:27:42.1165981Z adding 'torch/include/ATen/ops/exp2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.1169063Z adding 'torch/include/ATen/ops/exp2_cpu_dispatch.h' 2025-06-01T21:27:42.1172112Z adding 'torch/include/ATen/ops/exp2_cuda_dispatch.h' 2025-06-01T21:27:42.1175132Z adding 'torch/include/ATen/ops/exp2_meta.h' 2025-06-01T21:27:42.1178231Z adding 'torch/include/ATen/ops/exp2_meta_dispatch.h' 2025-06-01T21:27:42.1181203Z adding 'torch/include/ATen/ops/exp2_native.h' 2025-06-01T21:27:42.1184381Z adding 'torch/include/ATen/ops/exp2_ops.h' 2025-06-01T21:27:42.1187694Z adding 'torch/include/ATen/ops/exp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.1190600Z adding 'torch/include/ATen/ops/exp_cpu_dispatch.h' 2025-06-01T21:27:42.1193794Z adding 'torch/include/ATen/ops/exp_cuda_dispatch.h' 2025-06-01T21:27:42.1196762Z adding 'torch/include/ATen/ops/exp_meta.h' 2025-06-01T21:27:42.1199842Z adding 'torch/include/ATen/ops/exp_meta_dispatch.h' 2025-06-01T21:27:42.1202826Z adding 'torch/include/ATen/ops/exp_native.h' 2025-06-01T21:27:42.1206226Z adding 'torch/include/ATen/ops/exp_ops.h' 2025-06-01T21:27:42.1209358Z adding 'torch/include/ATen/ops/expand.h' 2025-06-01T21:27:42.1212462Z adding 'torch/include/ATen/ops/expand_as.h' 2025-06-01T21:27:42.1215691Z adding 'torch/include/ATen/ops/expand_as_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.1218676Z adding 'torch/include/ATen/ops/expand_as_native.h' 2025-06-01T21:27:42.1221808Z adding 'torch/include/ATen/ops/expand_as_ops.h' 2025-06-01T21:27:42.1225230Z adding 'torch/include/ATen/ops/expand_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.1228458Z adding 'torch/include/ATen/ops/expand_copy.h' 2025-06-01T21:27:42.1232183Z adding 'torch/include/ATen/ops/expand_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.1235564Z adding 'torch/include/ATen/ops/expand_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.1238495Z adding 'torch/include/ATen/ops/expand_copy_native.h' 2025-06-01T21:27:42.1241774Z adding 'torch/include/ATen/ops/expand_copy_ops.h' 2025-06-01T21:27:42.1244927Z adding 'torch/include/ATen/ops/expand_native.h' 2025-06-01T21:27:42.1248122Z adding 'torch/include/ATen/ops/expand_ops.h' 2025-06-01T21:27:42.1251233Z adding 'torch/include/ATen/ops/expm1.h' 2025-06-01T21:27:42.1254768Z adding 'torch/include/ATen/ops/expm1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.1257804Z adding 'torch/include/ATen/ops/expm1_cpu_dispatch.h' 2025-06-01T21:27:42.1261082Z adding 'torch/include/ATen/ops/expm1_cuda_dispatch.h' 2025-06-01T21:27:42.1264120Z adding 'torch/include/ATen/ops/expm1_meta.h' 2025-06-01T21:27:42.1267385Z adding 'torch/include/ATen/ops/expm1_meta_dispatch.h' 2025-06-01T21:27:42.1270584Z adding 'torch/include/ATen/ops/expm1_native.h' 2025-06-01T21:27:42.1274065Z adding 'torch/include/ATen/ops/expm1_ops.h' 2025-06-01T21:27:42.1277322Z adding 'torch/include/ATen/ops/exponential.h' 2025-06-01T21:27:42.1280750Z adding 'torch/include/ATen/ops/exponential_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.1283958Z adding 'torch/include/ATen/ops/exponential_cpu_dispatch.h' 2025-06-01T21:27:42.1287059Z adding 'torch/include/ATen/ops/exponential_cuda_dispatch.h' 2025-06-01T21:27:42.1290276Z adding 'torch/include/ATen/ops/exponential_meta_dispatch.h' 2025-06-01T21:27:42.1293324Z adding 'torch/include/ATen/ops/exponential_native.h' 2025-06-01T21:27:42.1296687Z adding 'torch/include/ATen/ops/exponential_ops.h' 2025-06-01T21:27:42.1300617Z adding 'torch/include/ATen/ops/eye.h' 2025-06-01T21:27:42.1304314Z adding 'torch/include/ATen/ops/eye_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.1307537Z adding 'torch/include/ATen/ops/eye_cpu_dispatch.h' 2025-06-01T21:27:42.1310677Z adding 'torch/include/ATen/ops/eye_cuda_dispatch.h' 2025-06-01T21:27:42.1313974Z adding 'torch/include/ATen/ops/eye_meta_dispatch.h' 2025-06-01T21:27:42.1317057Z adding 'torch/include/ATen/ops/eye_native.h' 2025-06-01T21:27:42.1320535Z adding 'torch/include/ATen/ops/eye_ops.h' 2025-06-01T21:27:42.1323996Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine.h' 2025-06-01T21:27:42.1327585Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask.h' 2025-06-01T21:27:42.1330935Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward.h' 2025-06-01T21:27:42.1334750Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.1337687Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_native.h' 2025-06-01T21:27:42.1341022Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_ops.h' 2025-06-01T21:27:42.1344448Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.1347606Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cpu_dispatch.h' 2025-06-01T21:27:42.1350807Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cuda_dispatch.h' 2025-06-01T21:27:42.1354072Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_native.h' 2025-06-01T21:27:42.1357391Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_ops.h' 2025-06-01T21:27:42.1360850Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.1363736Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_native.h' 2025-06-01T21:27:42.1367311Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_ops.h' 2025-06-01T21:27:42.1370857Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine.h' 2025-06-01T21:27:42.1374620Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask.h' 2025-06-01T21:27:42.1378308Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward.h' 2025-06-01T21:27:42.1382267Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.1385427Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_native.h' 2025-06-01T21:27:42.1388911Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_ops.h' 2025-06-01T21:27:42.1392686Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.1395922Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cpu_dispatch.h' 2025-06-01T21:27:42.1399202Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cuda_dispatch.h' 2025-06-01T21:27:42.1402321Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_native.h' 2025-06-01T21:27:42.1405931Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_ops.h' 2025-06-01T21:27:42.1409198Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.1412277Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_native.h' 2025-06-01T21:27:42.1415568Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_ops.h' 2025-06-01T21:27:42.1418794Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight.h' 2025-06-01T21:27:42.1422074Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.1425089Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation.h' 2025-06-01T21:27:42.1428432Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.1431582Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_native.h' 2025-06-01T21:27:42.1434770Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_ops.h' 2025-06-01T21:27:42.1437804Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_native.h' 2025-06-01T21:27:42.1440895Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_ops.h' 2025-06-01T21:27:42.1444075Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight.h' 2025-06-01T21:27:42.1447564Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.1450627Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation.h' 2025-06-01T21:27:42.1453984Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.1456966Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_native.h' 2025-06-01T21:27:42.1460216Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_ops.h' 2025-06-01T21:27:42.1463257Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_native.h' 2025-06-01T21:27:42.1466492Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_ops.h' 2025-06-01T21:27:42.1469626Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight.h' 2025-06-01T21:27:42.1473115Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.1476006Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_native.h' 2025-06-01T21:27:42.1479340Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_ops.h' 2025-06-01T21:27:42.1482426Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16.h' 2025-06-01T21:27:42.1485655Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.1488566Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_native.h' 2025-06-01T21:27:42.1491631Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_ops.h' 2025-06-01T21:27:42.1494705Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix.h' 2025-06-01T21:27:42.1498096Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.1500900Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_native.h' 2025-06-01T21:27:42.1504133Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_ops.h' 2025-06-01T21:27:42.1507110Z adding 'torch/include/ATen/ops/feature_alpha_dropout.h' 2025-06-01T21:27:42.1510483Z adding 'torch/include/ATen/ops/feature_alpha_dropout_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.1513447Z adding 'torch/include/ATen/ops/feature_alpha_dropout_native.h' 2025-06-01T21:27:42.1516560Z adding 'torch/include/ATen/ops/feature_alpha_dropout_ops.h' 2025-06-01T21:27:42.1519635Z adding 'torch/include/ATen/ops/feature_dropout.h' 2025-06-01T21:27:42.1523055Z adding 'torch/include/ATen/ops/feature_dropout_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.1525963Z adding 'torch/include/ATen/ops/feature_dropout_native.h' 2025-06-01T21:27:42.1529118Z adding 'torch/include/ATen/ops/feature_dropout_ops.h' 2025-06-01T21:27:42.1532522Z adding 'torch/include/ATen/ops/fft_fft.h' 2025-06-01T21:27:42.1536124Z adding 'torch/include/ATen/ops/fft_fft2.h' 2025-06-01T21:27:42.1539591Z adding 'torch/include/ATen/ops/fft_fft2_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.1542537Z adding 'torch/include/ATen/ops/fft_fft2_native.h' 2025-06-01T21:27:42.1545806Z adding 'torch/include/ATen/ops/fft_fft2_ops.h' 2025-06-01T21:27:42.1549218Z adding 'torch/include/ATen/ops/fft_fft_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.1552306Z adding 'torch/include/ATen/ops/fft_fft_native.h' 2025-06-01T21:27:42.1555529Z adding 'torch/include/ATen/ops/fft_fft_ops.h' 2025-06-01T21:27:42.1558726Z adding 'torch/include/ATen/ops/fft_fftfreq.h' 2025-06-01T21:27:42.1562141Z adding 'torch/include/ATen/ops/fft_fftfreq_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.1565042Z adding 'torch/include/ATen/ops/fft_fftfreq_native.h' 2025-06-01T21:27:42.1568234Z adding 'torch/include/ATen/ops/fft_fftfreq_ops.h' 2025-06-01T21:27:42.1571764Z adding 'torch/include/ATen/ops/fft_fftn.h' 2025-06-01T21:27:42.1575303Z adding 'torch/include/ATen/ops/fft_fftn_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.1578258Z adding 'torch/include/ATen/ops/fft_fftn_native.h' 2025-06-01T21:27:42.1581519Z adding 'torch/include/ATen/ops/fft_fftn_ops.h' 2025-06-01T21:27:42.1584628Z adding 'torch/include/ATen/ops/fft_fftshift.h' 2025-06-01T21:27:42.1587883Z adding 'torch/include/ATen/ops/fft_fftshift_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.1590785Z adding 'torch/include/ATen/ops/fft_fftshift_native.h' 2025-06-01T21:27:42.1593978Z adding 'torch/include/ATen/ops/fft_fftshift_ops.h' 2025-06-01T21:27:42.1597385Z adding 'torch/include/ATen/ops/fft_hfft.h' 2025-06-01T21:27:42.1600970Z adding 'torch/include/ATen/ops/fft_hfft2.h' 2025-06-01T21:27:42.1604450Z adding 'torch/include/ATen/ops/fft_hfft2_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.1607419Z adding 'torch/include/ATen/ops/fft_hfft2_native.h' 2025-06-01T21:27:42.1610656Z adding 'torch/include/ATen/ops/fft_hfft2_ops.h' 2025-06-01T21:27:42.1614000Z adding 'torch/include/ATen/ops/fft_hfft_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.1616961Z adding 'torch/include/ATen/ops/fft_hfft_native.h' 2025-06-01T21:27:42.1620210Z adding 'torch/include/ATen/ops/fft_hfft_ops.h' 2025-06-01T21:27:42.1623692Z adding 'torch/include/ATen/ops/fft_hfftn.h' 2025-06-01T21:27:42.1627294Z adding 'torch/include/ATen/ops/fft_hfftn_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.1630221Z adding 'torch/include/ATen/ops/fft_hfftn_native.h' 2025-06-01T21:27:42.1633532Z adding 'torch/include/ATen/ops/fft_hfftn_ops.h' 2025-06-01T21:27:42.1636988Z adding 'torch/include/ATen/ops/fft_ifft.h' 2025-06-01T21:27:42.1640552Z adding 'torch/include/ATen/ops/fft_ifft2.h' 2025-06-01T21:27:42.1644040Z adding 'torch/include/ATen/ops/fft_ifft2_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.1646997Z adding 'torch/include/ATen/ops/fft_ifft2_native.h' 2025-06-01T21:27:42.1650351Z adding 'torch/include/ATen/ops/fft_ifft2_ops.h' 2025-06-01T21:27:42.1653608Z adding 'torch/include/ATen/ops/fft_ifft_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.1656627Z adding 'torch/include/ATen/ops/fft_ifft_native.h' 2025-06-01T21:27:42.1659863Z adding 'torch/include/ATen/ops/fft_ifft_ops.h' 2025-06-01T21:27:42.1663341Z adding 'torch/include/ATen/ops/fft_ifftn.h' 2025-06-01T21:27:42.1666862Z adding 'torch/include/ATen/ops/fft_ifftn_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.1669781Z adding 'torch/include/ATen/ops/fft_ifftn_native.h' 2025-06-01T21:27:42.1673325Z adding 'torch/include/ATen/ops/fft_ifftn_ops.h' 2025-06-01T21:27:42.1676383Z adding 'torch/include/ATen/ops/fft_ifftshift.h' 2025-06-01T21:27:42.1679696Z adding 'torch/include/ATen/ops/fft_ifftshift_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.1682647Z adding 'torch/include/ATen/ops/fft_ifftshift_native.h' 2025-06-01T21:27:42.1685798Z adding 'torch/include/ATen/ops/fft_ifftshift_ops.h' 2025-06-01T21:27:42.1689235Z adding 'torch/include/ATen/ops/fft_ihfft.h' 2025-06-01T21:27:42.1692821Z adding 'torch/include/ATen/ops/fft_ihfft2.h' 2025-06-01T21:27:42.1696277Z adding 'torch/include/ATen/ops/fft_ihfft2_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.1699183Z adding 'torch/include/ATen/ops/fft_ihfft2_native.h' 2025-06-01T21:27:42.1702466Z adding 'torch/include/ATen/ops/fft_ihfft2_ops.h' 2025-06-01T21:27:42.1705790Z adding 'torch/include/ATen/ops/fft_ihfft_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.1708798Z adding 'torch/include/ATen/ops/fft_ihfft_native.h' 2025-06-01T21:27:42.1712083Z adding 'torch/include/ATen/ops/fft_ihfft_ops.h' 2025-06-01T21:27:42.1715545Z adding 'torch/include/ATen/ops/fft_ihfftn.h' 2025-06-01T21:27:42.1719039Z adding 'torch/include/ATen/ops/fft_ihfftn_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.1722094Z adding 'torch/include/ATen/ops/fft_ihfftn_native.h' 2025-06-01T21:27:42.1725310Z adding 'torch/include/ATen/ops/fft_ihfftn_ops.h' 2025-06-01T21:27:42.1728722Z adding 'torch/include/ATen/ops/fft_irfft.h' 2025-06-01T21:27:42.1732499Z adding 'torch/include/ATen/ops/fft_irfft2.h' 2025-06-01T21:27:42.1736022Z adding 'torch/include/ATen/ops/fft_irfft2_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.1738997Z adding 'torch/include/ATen/ops/fft_irfft2_native.h' 2025-06-01T21:27:42.1742219Z adding 'torch/include/ATen/ops/fft_irfft2_ops.h' 2025-06-01T21:27:42.1745891Z adding 'torch/include/ATen/ops/fft_irfft_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.1748895Z adding 'torch/include/ATen/ops/fft_irfft_native.h' 2025-06-01T21:27:42.1752260Z adding 'torch/include/ATen/ops/fft_irfft_ops.h' 2025-06-01T21:27:42.1755786Z adding 'torch/include/ATen/ops/fft_irfftn.h' 2025-06-01T21:27:42.1759291Z adding 'torch/include/ATen/ops/fft_irfftn_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.1762229Z adding 'torch/include/ATen/ops/fft_irfftn_native.h' 2025-06-01T21:27:42.1765425Z adding 'torch/include/ATen/ops/fft_irfftn_ops.h' 2025-06-01T21:27:42.1768957Z adding 'torch/include/ATen/ops/fft_rfft.h' 2025-06-01T21:27:42.1772510Z adding 'torch/include/ATen/ops/fft_rfft2.h' 2025-06-01T21:27:42.1776031Z adding 'torch/include/ATen/ops/fft_rfft2_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.1778941Z adding 'torch/include/ATen/ops/fft_rfft2_native.h' 2025-06-01T21:27:42.1782328Z adding 'torch/include/ATen/ops/fft_rfft2_ops.h' 2025-06-01T21:27:42.1785705Z adding 'torch/include/ATen/ops/fft_rfft_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.1788751Z adding 'torch/include/ATen/ops/fft_rfft_native.h' 2025-06-01T21:27:42.1792055Z adding 'torch/include/ATen/ops/fft_rfft_ops.h' 2025-06-01T21:27:42.1795280Z adding 'torch/include/ATen/ops/fft_rfftfreq.h' 2025-06-01T21:27:42.1798635Z adding 'torch/include/ATen/ops/fft_rfftfreq_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.1801597Z adding 'torch/include/ATen/ops/fft_rfftfreq_native.h' 2025-06-01T21:27:42.1804950Z adding 'torch/include/ATen/ops/fft_rfftfreq_ops.h' 2025-06-01T21:27:42.1808456Z adding 'torch/include/ATen/ops/fft_rfftn.h' 2025-06-01T21:27:42.1811890Z adding 'torch/include/ATen/ops/fft_rfftn_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.1814761Z adding 'torch/include/ATen/ops/fft_rfftn_native.h' 2025-06-01T21:27:42.1818005Z adding 'torch/include/ATen/ops/fft_rfftn_ops.h' 2025-06-01T21:27:42.1821300Z adding 'torch/include/ATen/ops/fill.h' 2025-06-01T21:27:42.1824639Z adding 'torch/include/ATen/ops/fill_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.1827569Z adding 'torch/include/ATen/ops/fill_cpu_dispatch.h' 2025-06-01T21:27:42.1830589Z adding 'torch/include/ATen/ops/fill_cuda_dispatch.h' 2025-06-01T21:27:42.1833658Z adding 'torch/include/ATen/ops/fill_diagonal.h' 2025-06-01T21:27:42.1836862Z adding 'torch/include/ATen/ops/fill_diagonal_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.1839724Z adding 'torch/include/ATen/ops/fill_diagonal_native.h' 2025-06-01T21:27:42.1842843Z adding 'torch/include/ATen/ops/fill_diagonal_ops.h' 2025-06-01T21:27:42.1846048Z adding 'torch/include/ATen/ops/fill_meta_dispatch.h' 2025-06-01T21:27:42.1849117Z adding 'torch/include/ATen/ops/fill_native.h' 2025-06-01T21:27:42.1852533Z adding 'torch/include/ATen/ops/fill_ops.h' 2025-06-01T21:27:42.1855745Z adding 'torch/include/ATen/ops/fix.h' 2025-06-01T21:27:42.1859012Z adding 'torch/include/ATen/ops/fix_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.1861866Z adding 'torch/include/ATen/ops/fix_native.h' 2025-06-01T21:27:42.1865015Z adding 'torch/include/ATen/ops/fix_ops.h' 2025-06-01T21:27:42.1868167Z adding 'torch/include/ATen/ops/flatten.h' 2025-06-01T21:27:42.1871604Z adding 'torch/include/ATen/ops/flatten_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.1874590Z adding 'torch/include/ATen/ops/flatten_dense_tensors.h' 2025-06-01T21:27:42.1877854Z adding 'torch/include/ATen/ops/flatten_dense_tensors_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.1880721Z adding 'torch/include/ATen/ops/flatten_dense_tensors_native.h' 2025-06-01T21:27:42.1884297Z adding 'torch/include/ATen/ops/flatten_dense_tensors_ops.h' 2025-06-01T21:27:42.1887515Z adding 'torch/include/ATen/ops/flatten_native.h' 2025-06-01T21:27:42.1890812Z adding 'torch/include/ATen/ops/flatten_ops.h' 2025-06-01T21:27:42.1894670Z adding 'torch/include/ATen/ops/flip.h' 2025-06-01T21:27:42.1898455Z adding 'torch/include/ATen/ops/flip_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.1901847Z adding 'torch/include/ATen/ops/flip_cpu_dispatch.h' 2025-06-01T21:27:42.1905312Z adding 'torch/include/ATen/ops/flip_cuda_dispatch.h' 2025-06-01T21:27:42.1908722Z adding 'torch/include/ATen/ops/flip_native.h' 2025-06-01T21:27:42.1913395Z adding 'torch/include/ATen/ops/flip_ops.h' 2025-06-01T21:27:42.1916995Z adding 'torch/include/ATen/ops/fliplr.h' 2025-06-01T21:27:42.1920802Z adding 'torch/include/ATen/ops/fliplr_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.1924067Z adding 'torch/include/ATen/ops/fliplr_native.h' 2025-06-01T21:27:42.1927650Z adding 'torch/include/ATen/ops/fliplr_ops.h' 2025-06-01T21:27:42.1930807Z adding 'torch/include/ATen/ops/flipud.h' 2025-06-01T21:27:42.1934173Z adding 'torch/include/ATen/ops/flipud_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.1937410Z adding 'torch/include/ATen/ops/flipud_native.h' 2025-06-01T21:27:42.1940694Z adding 'torch/include/ATen/ops/flipud_ops.h' 2025-06-01T21:27:42.1943989Z adding 'torch/include/ATen/ops/float_power.h' 2025-06-01T21:27:42.1947580Z adding 'torch/include/ATen/ops/float_power_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.1950535Z adding 'torch/include/ATen/ops/float_power_native.h' 2025-06-01T21:27:42.1954401Z adding 'torch/include/ATen/ops/float_power_ops.h' 2025-06-01T21:27:42.1957668Z adding 'torch/include/ATen/ops/floor.h' 2025-06-01T21:27:42.1961036Z adding 'torch/include/ATen/ops/floor_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.1964144Z adding 'torch/include/ATen/ops/floor_cpu_dispatch.h' 2025-06-01T21:27:42.1973542Z adding 'torch/include/ATen/ops/floor_cuda_dispatch.h' 2025-06-01T21:27:42.1973952Z adding 'torch/include/ATen/ops/floor_divide.h' 2025-06-01T21:27:42.1977652Z adding 'torch/include/ATen/ops/floor_divide_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.1980701Z adding 'torch/include/ATen/ops/floor_divide_cpu_dispatch.h' 2025-06-01T21:27:42.1983777Z adding 'torch/include/ATen/ops/floor_divide_cuda_dispatch.h' 2025-06-01T21:27:42.1987028Z adding 'torch/include/ATen/ops/floor_divide_meta_dispatch.h' 2025-06-01T21:27:42.1990088Z adding 'torch/include/ATen/ops/floor_divide_native.h' 2025-06-01T21:27:42.1993725Z adding 'torch/include/ATen/ops/floor_divide_ops.h' 2025-06-01T21:27:42.1996889Z adding 'torch/include/ATen/ops/floor_meta.h' 2025-06-01T21:27:42.2000037Z adding 'torch/include/ATen/ops/floor_meta_dispatch.h' 2025-06-01T21:27:42.2003100Z adding 'torch/include/ATen/ops/floor_native.h' 2025-06-01T21:27:42.2006415Z adding 'torch/include/ATen/ops/floor_ops.h' 2025-06-01T21:27:42.2009612Z adding 'torch/include/ATen/ops/fmax.h' 2025-06-01T21:27:42.2013268Z adding 'torch/include/ATen/ops/fmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.2016281Z adding 'torch/include/ATen/ops/fmax_cpu_dispatch.h' 2025-06-01T21:27:42.2019427Z adding 'torch/include/ATen/ops/fmax_cuda_dispatch.h' 2025-06-01T21:27:42.2022462Z adding 'torch/include/ATen/ops/fmax_meta.h' 2025-06-01T21:27:42.2025790Z adding 'torch/include/ATen/ops/fmax_meta_dispatch.h' 2025-06-01T21:27:42.2028869Z adding 'torch/include/ATen/ops/fmax_native.h' 2025-06-01T21:27:42.2032262Z adding 'torch/include/ATen/ops/fmax_ops.h' 2025-06-01T21:27:42.2035443Z adding 'torch/include/ATen/ops/fmin.h' 2025-06-01T21:27:42.2038857Z adding 'torch/include/ATen/ops/fmin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.2041876Z adding 'torch/include/ATen/ops/fmin_cpu_dispatch.h' 2025-06-01T21:27:42.2045023Z adding 'torch/include/ATen/ops/fmin_cuda_dispatch.h' 2025-06-01T21:27:42.2048076Z adding 'torch/include/ATen/ops/fmin_meta.h' 2025-06-01T21:27:42.2051259Z adding 'torch/include/ATen/ops/fmin_meta_dispatch.h' 2025-06-01T21:27:42.2054265Z adding 'torch/include/ATen/ops/fmin_native.h' 2025-06-01T21:27:42.2057450Z adding 'torch/include/ATen/ops/fmin_ops.h' 2025-06-01T21:27:42.2060662Z adding 'torch/include/ATen/ops/fmod.h' 2025-06-01T21:27:42.2063988Z adding 'torch/include/ATen/ops/fmod_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.2068036Z adding 'torch/include/ATen/ops/fmod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.2070605Z adding 'torch/include/ATen/ops/fmod_cpu_dispatch.h' 2025-06-01T21:27:42.2073874Z adding 'torch/include/ATen/ops/fmod_cuda_dispatch.h' 2025-06-01T21:27:42.2076895Z adding 'torch/include/ATen/ops/fmod_meta.h' 2025-06-01T21:27:42.2080099Z adding 'torch/include/ATen/ops/fmod_meta_dispatch.h' 2025-06-01T21:27:42.2083171Z adding 'torch/include/ATen/ops/fmod_native.h' 2025-06-01T21:27:42.2086639Z adding 'torch/include/ATen/ops/fmod_ops.h' 2025-06-01T21:27:42.2089920Z adding 'torch/include/ATen/ops/frac.h' 2025-06-01T21:27:42.2093330Z adding 'torch/include/ATen/ops/frac_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.2096316Z adding 'torch/include/ATen/ops/frac_cpu_dispatch.h' 2025-06-01T21:27:42.2099426Z adding 'torch/include/ATen/ops/frac_cuda_dispatch.h' 2025-06-01T21:27:42.2102500Z adding 'torch/include/ATen/ops/frac_meta.h' 2025-06-01T21:27:42.2105705Z adding 'torch/include/ATen/ops/frac_meta_dispatch.h' 2025-06-01T21:27:42.2108856Z adding 'torch/include/ATen/ops/frac_native.h' 2025-06-01T21:27:42.2112232Z adding 'torch/include/ATen/ops/frac_ops.h' 2025-06-01T21:27:42.2115604Z adding 'torch/include/ATen/ops/fractional_max_pool2d.h' 2025-06-01T21:27:42.2118966Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward.h' 2025-06-01T21:27:42.2122474Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.2125815Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_cpu_dispatch.h' 2025-06-01T21:27:42.2129004Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_cuda_dispatch.h' 2025-06-01T21:27:42.2132055Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_meta.h' 2025-06-01T21:27:42.2135301Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_meta_dispatch.h' 2025-06-01T21:27:42.2139393Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_native.h' 2025-06-01T21:27:42.2145844Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_ops.h' 2025-06-01T21:27:42.2149334Z adding 'torch/include/ATen/ops/fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.2152569Z adding 'torch/include/ATen/ops/fractional_max_pool2d_cpu_dispatch.h' 2025-06-01T21:27:42.2155814Z adding 'torch/include/ATen/ops/fractional_max_pool2d_cuda_dispatch.h' 2025-06-01T21:27:42.2158849Z adding 'torch/include/ATen/ops/fractional_max_pool2d_meta.h' 2025-06-01T21:27:42.2162034Z adding 'torch/include/ATen/ops/fractional_max_pool2d_meta_dispatch.h' 2025-06-01T21:27:42.2165110Z adding 'torch/include/ATen/ops/fractional_max_pool2d_native.h' 2025-06-01T21:27:42.2168440Z adding 'torch/include/ATen/ops/fractional_max_pool2d_ops.h' 2025-06-01T21:27:42.2171939Z adding 'torch/include/ATen/ops/fractional_max_pool3d.h' 2025-06-01T21:27:42.2175788Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward.h' 2025-06-01T21:27:42.2178793Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_cpu_dispatch.h' 2025-06-01T21:27:42.2182271Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_cuda_dispatch.h' 2025-06-01T21:27:42.2185855Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_native.h' 2025-06-01T21:27:42.2189782Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_ops.h' 2025-06-01T21:27:42.2193867Z adding 'torch/include/ATen/ops/fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.2197483Z adding 'torch/include/ATen/ops/fractional_max_pool3d_cpu_dispatch.h' 2025-06-01T21:27:42.2201185Z adding 'torch/include/ATen/ops/fractional_max_pool3d_cuda_dispatch.h' 2025-06-01T21:27:42.2205767Z adding 'torch/include/ATen/ops/fractional_max_pool3d_meta.h' 2025-06-01T21:27:42.2209796Z adding 'torch/include/ATen/ops/fractional_max_pool3d_meta_dispatch.h' 2025-06-01T21:27:42.2213419Z adding 'torch/include/ATen/ops/fractional_max_pool3d_native.h' 2025-06-01T21:27:42.2217341Z adding 'torch/include/ATen/ops/fractional_max_pool3d_ops.h' 2025-06-01T21:27:42.2220752Z adding 'torch/include/ATen/ops/frexp.h' 2025-06-01T21:27:42.2224238Z adding 'torch/include/ATen/ops/frexp_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.2227418Z adding 'torch/include/ATen/ops/frexp_cpu_dispatch.h' 2025-06-01T21:27:42.2230804Z adding 'torch/include/ATen/ops/frexp_cuda_dispatch.h' 2025-06-01T21:27:42.2233919Z adding 'torch/include/ATen/ops/frexp_native.h' 2025-06-01T21:27:42.2237412Z adding 'torch/include/ATen/ops/frexp_ops.h' 2025-06-01T21:27:42.2240642Z adding 'torch/include/ATen/ops/frobenius_norm.h' 2025-06-01T21:27:42.2244232Z adding 'torch/include/ATen/ops/frobenius_norm_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.2247179Z adding 'torch/include/ATen/ops/frobenius_norm_native.h' 2025-06-01T21:27:42.2250412Z adding 'torch/include/ATen/ops/frobenius_norm_ops.h' 2025-06-01T21:27:42.2254291Z adding 'torch/include/ATen/ops/from_blob.h' 2025-06-01T21:27:42.2257723Z adding 'torch/include/ATen/ops/from_file.h' 2025-06-01T21:27:42.2261125Z adding 'torch/include/ATen/ops/from_file_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.2264225Z adding 'torch/include/ATen/ops/from_file_cpu_dispatch.h' 2025-06-01T21:27:42.2267336Z adding 'torch/include/ATen/ops/from_file_native.h' 2025-06-01T21:27:42.2270994Z adding 'torch/include/ATen/ops/from_file_ops.h' 2025-06-01T21:27:42.2275214Z adding 'torch/include/ATen/ops/full.h' 2025-06-01T21:27:42.2278941Z adding 'torch/include/ATen/ops/full_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.2282240Z adding 'torch/include/ATen/ops/full_like.h' 2025-06-01T21:27:42.2285763Z adding 'torch/include/ATen/ops/full_like_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.2288717Z adding 'torch/include/ATen/ops/full_like_native.h' 2025-06-01T21:27:42.2292056Z adding 'torch/include/ATen/ops/full_like_ops.h' 2025-06-01T21:27:42.2295356Z adding 'torch/include/ATen/ops/full_native.h' 2025-06-01T21:27:42.2298847Z adding 'torch/include/ATen/ops/full_ops.h' 2025-06-01T21:27:42.2302454Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant.h' 2025-06-01T21:27:42.2305872Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.2308907Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_native.h' 2025-06-01T21:27:42.2312307Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_ops.h' 2025-06-01T21:27:42.2315571Z adding 'torch/include/ATen/ops/gather.h' 2025-06-01T21:27:42.2318754Z adding 'torch/include/ATen/ops/gather_backward.h' 2025-06-01T21:27:42.2322112Z adding 'torch/include/ATen/ops/gather_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.2324972Z adding 'torch/include/ATen/ops/gather_backward_native.h' 2025-06-01T21:27:42.2328170Z adding 'torch/include/ATen/ops/gather_backward_ops.h' 2025-06-01T21:27:42.2331509Z adding 'torch/include/ATen/ops/gather_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.2334631Z adding 'torch/include/ATen/ops/gather_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.2337688Z adding 'torch/include/ATen/ops/gather_cpu_dispatch.h' 2025-06-01T21:27:42.2340825Z adding 'torch/include/ATen/ops/gather_cuda_dispatch.h' 2025-06-01T21:27:42.2343821Z adding 'torch/include/ATen/ops/gather_meta.h' 2025-06-01T21:27:42.2347142Z adding 'torch/include/ATen/ops/gather_meta_dispatch.h' 2025-06-01T21:27:42.2350229Z adding 'torch/include/ATen/ops/gather_native.h' 2025-06-01T21:27:42.2353779Z adding 'torch/include/ATen/ops/gather_ops.h' 2025-06-01T21:27:42.2357150Z adding 'torch/include/ATen/ops/gcd.h' 2025-06-01T21:27:42.2360550Z adding 'torch/include/ATen/ops/gcd_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.2363522Z adding 'torch/include/ATen/ops/gcd_cpu_dispatch.h' 2025-06-01T21:27:42.2366604Z adding 'torch/include/ATen/ops/gcd_cuda_dispatch.h' 2025-06-01T21:27:42.2369582Z adding 'torch/include/ATen/ops/gcd_meta.h' 2025-06-01T21:27:42.2372707Z adding 'torch/include/ATen/ops/gcd_meta_dispatch.h' 2025-06-01T21:27:42.2375705Z adding 'torch/include/ATen/ops/gcd_native.h' 2025-06-01T21:27:42.2379019Z adding 'torch/include/ATen/ops/gcd_ops.h' 2025-06-01T21:27:42.2382306Z adding 'torch/include/ATen/ops/ge.h' 2025-06-01T21:27:42.2385673Z adding 'torch/include/ATen/ops/ge_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.2388693Z adding 'torch/include/ATen/ops/ge_cpu_dispatch.h' 2025-06-01T21:27:42.2391965Z adding 'torch/include/ATen/ops/ge_cuda_dispatch.h' 2025-06-01T21:27:42.2395033Z adding 'torch/include/ATen/ops/ge_meta.h' 2025-06-01T21:27:42.2398269Z adding 'torch/include/ATen/ops/ge_meta_dispatch.h' 2025-06-01T21:27:42.2401352Z adding 'torch/include/ATen/ops/ge_native.h' 2025-06-01T21:27:42.2404794Z adding 'torch/include/ATen/ops/ge_ops.h' 2025-06-01T21:27:42.2408034Z adding 'torch/include/ATen/ops/gelu.h' 2025-06-01T21:27:42.2411291Z adding 'torch/include/ATen/ops/gelu_backward.h' 2025-06-01T21:27:42.2414696Z adding 'torch/include/ATen/ops/gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.2417639Z adding 'torch/include/ATen/ops/gelu_backward_cpu_dispatch.h' 2025-06-01T21:27:42.2420866Z adding 'torch/include/ATen/ops/gelu_backward_cuda_dispatch.h' 2025-06-01T21:27:42.2424009Z adding 'torch/include/ATen/ops/gelu_backward_meta.h' 2025-06-01T21:27:42.2427145Z adding 'torch/include/ATen/ops/gelu_backward_meta_dispatch.h' 2025-06-01T21:27:42.2430478Z adding 'torch/include/ATen/ops/gelu_backward_native.h' 2025-06-01T21:27:42.2433789Z adding 'torch/include/ATen/ops/gelu_backward_ops.h' 2025-06-01T21:27:42.2437247Z adding 'torch/include/ATen/ops/gelu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.2440107Z adding 'torch/include/ATen/ops/gelu_cpu_dispatch.h' 2025-06-01T21:27:42.2443247Z adding 'torch/include/ATen/ops/gelu_cuda_dispatch.h' 2025-06-01T21:27:42.2446275Z adding 'torch/include/ATen/ops/gelu_meta.h' 2025-06-01T21:27:42.2449382Z adding 'torch/include/ATen/ops/gelu_meta_dispatch.h' 2025-06-01T21:27:42.2452595Z adding 'torch/include/ATen/ops/gelu_native.h' 2025-06-01T21:27:42.2455927Z adding 'torch/include/ATen/ops/gelu_ops.h' 2025-06-01T21:27:42.2459843Z adding 'torch/include/ATen/ops/geometric.h' 2025-06-01T21:27:42.2464601Z adding 'torch/include/ATen/ops/geometric_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.2468800Z adding 'torch/include/ATen/ops/geometric_cpu_dispatch.h' 2025-06-01T21:27:42.2473182Z adding 'torch/include/ATen/ops/geometric_cuda_dispatch.h' 2025-06-01T21:27:42.2477088Z adding 'torch/include/ATen/ops/geometric_meta_dispatch.h' 2025-06-01T21:27:42.2481184Z adding 'torch/include/ATen/ops/geometric_native.h' 2025-06-01T21:27:42.2485634Z adding 'torch/include/ATen/ops/geometric_ops.h' 2025-06-01T21:27:42.2489437Z adding 'torch/include/ATen/ops/geqrf.h' 2025-06-01T21:27:42.2493164Z adding 'torch/include/ATen/ops/geqrf_cpu_dispatch.h' 2025-06-01T21:27:42.2496897Z adding 'torch/include/ATen/ops/geqrf_cuda_dispatch.h' 2025-06-01T21:27:42.2500445Z adding 'torch/include/ATen/ops/geqrf_native.h' 2025-06-01T21:27:42.2504170Z adding 'torch/include/ATen/ops/geqrf_ops.h' 2025-06-01T21:27:42.2507372Z adding 'torch/include/ATen/ops/ger.h' 2025-06-01T21:27:42.2510935Z adding 'torch/include/ATen/ops/ger_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.2513935Z adding 'torch/include/ATen/ops/ger_native.h' 2025-06-01T21:27:42.2517418Z adding 'torch/include/ATen/ops/ger_ops.h' 2025-06-01T21:27:42.2520679Z adding 'torch/include/ATen/ops/glu.h' 2025-06-01T21:27:42.2524065Z adding 'torch/include/ATen/ops/glu_backward.h' 2025-06-01T21:27:42.2527414Z adding 'torch/include/ATen/ops/glu_backward_cpu_dispatch.h' 2025-06-01T21:27:42.2530616Z adding 'torch/include/ATen/ops/glu_backward_cuda_dispatch.h' 2025-06-01T21:27:42.2534086Z adding 'torch/include/ATen/ops/glu_backward_jvp.h' 2025-06-01T21:27:42.2537167Z adding 'torch/include/ATen/ops/glu_backward_jvp_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.2540464Z adding 'torch/include/ATen/ops/glu_backward_jvp_cpu_dispatch.h' 2025-06-01T21:27:42.2543582Z adding 'torch/include/ATen/ops/glu_backward_jvp_cuda_dispatch.h' 2025-06-01T21:27:42.2546773Z adding 'torch/include/ATen/ops/glu_backward_jvp_native.h' 2025-06-01T21:27:42.2550051Z adding 'torch/include/ATen/ops/glu_backward_jvp_ops.h' 2025-06-01T21:27:42.2554312Z adding 'torch/include/ATen/ops/glu_backward_native.h' 2025-06-01T21:27:42.2556768Z adding 'torch/include/ATen/ops/glu_backward_ops.h' 2025-06-01T21:27:42.2560132Z adding 'torch/include/ATen/ops/glu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.2563095Z adding 'torch/include/ATen/ops/glu_cpu_dispatch.h' 2025-06-01T21:27:42.2566179Z adding 'torch/include/ATen/ops/glu_cuda_dispatch.h' 2025-06-01T21:27:42.2569351Z adding 'torch/include/ATen/ops/glu_jvp.h' 2025-06-01T21:27:42.2572712Z adding 'torch/include/ATen/ops/glu_jvp_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.2575732Z adding 'torch/include/ATen/ops/glu_jvp_cpu_dispatch.h' 2025-06-01T21:27:42.2578798Z adding 'torch/include/ATen/ops/glu_jvp_cuda_dispatch.h' 2025-06-01T21:27:42.2581834Z adding 'torch/include/ATen/ops/glu_jvp_native.h' 2025-06-01T21:27:42.2585461Z adding 'torch/include/ATen/ops/glu_jvp_ops.h' 2025-06-01T21:27:42.2588309Z adding 'torch/include/ATen/ops/glu_meta.h' 2025-06-01T21:27:42.2591828Z adding 'torch/include/ATen/ops/glu_meta_dispatch.h' 2025-06-01T21:27:42.2594662Z adding 'torch/include/ATen/ops/glu_native.h' 2025-06-01T21:27:42.2597988Z adding 'torch/include/ATen/ops/glu_ops.h' 2025-06-01T21:27:42.2601282Z adding 'torch/include/ATen/ops/gradient.h' 2025-06-01T21:27:42.2604836Z adding 'torch/include/ATen/ops/gradient_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.2608045Z adding 'torch/include/ATen/ops/gradient_native.h' 2025-06-01T21:27:42.2611413Z adding 'torch/include/ATen/ops/gradient_ops.h' 2025-06-01T21:27:42.2614748Z adding 'torch/include/ATen/ops/greater.h' 2025-06-01T21:27:42.2618170Z adding 'torch/include/ATen/ops/greater_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.2621266Z adding 'torch/include/ATen/ops/greater_equal.h' 2025-06-01T21:27:42.2624642Z adding 'torch/include/ATen/ops/greater_equal_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.2627653Z adding 'torch/include/ATen/ops/greater_equal_native.h' 2025-06-01T21:27:42.2631149Z adding 'torch/include/ATen/ops/greater_equal_ops.h' 2025-06-01T21:27:42.2634318Z adding 'torch/include/ATen/ops/greater_native.h' 2025-06-01T21:27:42.2637770Z adding 'torch/include/ATen/ops/greater_ops.h' 2025-06-01T21:27:42.2641338Z adding 'torch/include/ATen/ops/grid_sampler.h' 2025-06-01T21:27:42.2644446Z adding 'torch/include/ATen/ops/grid_sampler_2d.h' 2025-06-01T21:27:42.2647846Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward.h' 2025-06-01T21:27:42.2651240Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.2654299Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_cpu_dispatch.h' 2025-06-01T21:27:42.2657445Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_cuda_dispatch.h' 2025-06-01T21:27:42.2660709Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_native.h' 2025-06-01T21:27:42.2664405Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_ops.h' 2025-06-01T21:27:42.2667565Z adding 'torch/include/ATen/ops/grid_sampler_2d_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.2670593Z adding 'torch/include/ATen/ops/grid_sampler_2d_cpu_dispatch.h' 2025-06-01T21:27:42.2674133Z adding 'torch/include/ATen/ops/grid_sampler_2d_cuda_dispatch.h' 2025-06-01T21:27:42.2677188Z adding 'torch/include/ATen/ops/grid_sampler_2d_native.h' 2025-06-01T21:27:42.2680520Z adding 'torch/include/ATen/ops/grid_sampler_2d_ops.h' 2025-06-01T21:27:42.2684797Z adding 'torch/include/ATen/ops/grid_sampler_3d.h' 2025-06-01T21:27:42.2687948Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward.h' 2025-06-01T21:27:42.2691432Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.2694536Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_cpu_dispatch.h' 2025-06-01T21:27:42.2697698Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_cuda_dispatch.h' 2025-06-01T21:27:42.2700808Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_native.h' 2025-06-01T21:27:42.2704181Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_ops.h' 2025-06-01T21:27:42.2707561Z adding 'torch/include/ATen/ops/grid_sampler_3d_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.2710627Z adding 'torch/include/ATen/ops/grid_sampler_3d_cpu_dispatch.h' 2025-06-01T21:27:42.2713924Z adding 'torch/include/ATen/ops/grid_sampler_3d_cuda_dispatch.h' 2025-06-01T21:27:42.2716899Z adding 'torch/include/ATen/ops/grid_sampler_3d_native.h' 2025-06-01T21:27:42.2720149Z adding 'torch/include/ATen/ops/grid_sampler_3d_ops.h' 2025-06-01T21:27:42.2723465Z adding 'torch/include/ATen/ops/grid_sampler_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.2726358Z adding 'torch/include/ATen/ops/grid_sampler_native.h' 2025-06-01T21:27:42.2729530Z adding 'torch/include/ATen/ops/grid_sampler_ops.h' 2025-06-01T21:27:42.2732678Z adding 'torch/include/ATen/ops/group_norm.h' 2025-06-01T21:27:42.2736007Z adding 'torch/include/ATen/ops/group_norm_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.2738890Z adding 'torch/include/ATen/ops/group_norm_native.h' 2025-06-01T21:27:42.2742565Z adding 'torch/include/ATen/ops/group_norm_ops.h' 2025-06-01T21:27:42.2745569Z adding 'torch/include/ATen/ops/gru.h' 2025-06-01T21:27:42.2749011Z adding 'torch/include/ATen/ops/gru_cell.h' 2025-06-01T21:27:42.2752789Z adding 'torch/include/ATen/ops/gru_cell_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.2755277Z adding 'torch/include/ATen/ops/gru_cell_native.h' 2025-06-01T21:27:42.2758483Z adding 'torch/include/ATen/ops/gru_cell_ops.h' 2025-06-01T21:27:42.2762003Z adding 'torch/include/ATen/ops/gru_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.2765096Z adding 'torch/include/ATen/ops/gru_native.h' 2025-06-01T21:27:42.2768508Z adding 'torch/include/ATen/ops/gru_ops.h' 2025-06-01T21:27:42.2771864Z adding 'torch/include/ATen/ops/gt.h' 2025-06-01T21:27:42.2775235Z adding 'torch/include/ATen/ops/gt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.2778372Z adding 'torch/include/ATen/ops/gt_cpu_dispatch.h' 2025-06-01T21:27:42.2781523Z adding 'torch/include/ATen/ops/gt_cuda_dispatch.h' 2025-06-01T21:27:42.2784740Z adding 'torch/include/ATen/ops/gt_meta.h' 2025-06-01T21:27:42.2788047Z adding 'torch/include/ATen/ops/gt_meta_dispatch.h' 2025-06-01T21:27:42.2791286Z adding 'torch/include/ATen/ops/gt_native.h' 2025-06-01T21:27:42.2794829Z adding 'torch/include/ATen/ops/gt_ops.h' 2025-06-01T21:27:42.2798535Z adding 'torch/include/ATen/ops/hamming_window.h' 2025-06-01T21:27:42.2802352Z adding 'torch/include/ATen/ops/hamming_window_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.2805484Z adding 'torch/include/ATen/ops/hamming_window_native.h' 2025-06-01T21:27:42.2809266Z adding 'torch/include/ATen/ops/hamming_window_ops.h' 2025-06-01T21:27:42.2812947Z adding 'torch/include/ATen/ops/hann_window.h' 2025-06-01T21:27:42.2816544Z adding 'torch/include/ATen/ops/hann_window_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.2819581Z adding 'torch/include/ATen/ops/hann_window_native.h' 2025-06-01T21:27:42.2823058Z adding 'torch/include/ATen/ops/hann_window_ops.h' 2025-06-01T21:27:42.2826279Z adding 'torch/include/ATen/ops/hardshrink.h' 2025-06-01T21:27:42.2829609Z adding 'torch/include/ATen/ops/hardshrink_backward.h' 2025-06-01T21:27:42.2833271Z adding 'torch/include/ATen/ops/hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.2836326Z adding 'torch/include/ATen/ops/hardshrink_backward_cpu_dispatch.h' 2025-06-01T21:27:42.2839549Z adding 'torch/include/ATen/ops/hardshrink_backward_cuda_dispatch.h' 2025-06-01T21:27:42.2842595Z adding 'torch/include/ATen/ops/hardshrink_backward_meta.h' 2025-06-01T21:27:42.2845844Z adding 'torch/include/ATen/ops/hardshrink_backward_meta_dispatch.h' 2025-06-01T21:27:42.2849104Z adding 'torch/include/ATen/ops/hardshrink_backward_native.h' 2025-06-01T21:27:42.2852736Z adding 'torch/include/ATen/ops/hardshrink_backward_ops.h' 2025-06-01T21:27:42.2855890Z adding 'torch/include/ATen/ops/hardshrink_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.2859052Z adding 'torch/include/ATen/ops/hardshrink_cpu_dispatch.h' 2025-06-01T21:27:42.2862129Z adding 'torch/include/ATen/ops/hardshrink_cuda_dispatch.h' 2025-06-01T21:27:42.2865230Z adding 'torch/include/ATen/ops/hardshrink_meta.h' 2025-06-01T21:27:42.2868442Z adding 'torch/include/ATen/ops/hardshrink_meta_dispatch.h' 2025-06-01T21:27:42.2871553Z adding 'torch/include/ATen/ops/hardshrink_native.h' 2025-06-01T21:27:42.2874936Z adding 'torch/include/ATen/ops/hardshrink_ops.h' 2025-06-01T21:27:42.2878121Z adding 'torch/include/ATen/ops/hardsigmoid.h' 2025-06-01T21:27:42.2881552Z adding 'torch/include/ATen/ops/hardsigmoid_backward.h' 2025-06-01T21:27:42.2885485Z adding 'torch/include/ATen/ops/hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.2888924Z adding 'torch/include/ATen/ops/hardsigmoid_backward_cpu_dispatch.h' 2025-06-01T21:27:42.2892545Z adding 'torch/include/ATen/ops/hardsigmoid_backward_cuda_dispatch.h' 2025-06-01T21:27:42.2896110Z adding 'torch/include/ATen/ops/hardsigmoid_backward_meta.h' 2025-06-01T21:27:42.2899859Z adding 'torch/include/ATen/ops/hardsigmoid_backward_meta_dispatch.h' 2025-06-01T21:27:42.2902960Z adding 'torch/include/ATen/ops/hardsigmoid_backward_native.h' 2025-06-01T21:27:42.2906243Z adding 'torch/include/ATen/ops/hardsigmoid_backward_ops.h' 2025-06-01T21:27:42.2910069Z adding 'torch/include/ATen/ops/hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.2913363Z adding 'torch/include/ATen/ops/hardsigmoid_cpu_dispatch.h' 2025-06-01T21:27:42.2916485Z adding 'torch/include/ATen/ops/hardsigmoid_cuda_dispatch.h' 2025-06-01T21:27:42.2919653Z adding 'torch/include/ATen/ops/hardsigmoid_meta.h' 2025-06-01T21:27:42.2922778Z adding 'torch/include/ATen/ops/hardsigmoid_meta_dispatch.h' 2025-06-01T21:27:42.2926046Z adding 'torch/include/ATen/ops/hardsigmoid_native.h' 2025-06-01T21:27:42.2929206Z adding 'torch/include/ATen/ops/hardsigmoid_ops.h' 2025-06-01T21:27:42.2932354Z adding 'torch/include/ATen/ops/hardswish.h' 2025-06-01T21:27:42.2935612Z adding 'torch/include/ATen/ops/hardswish_backward.h' 2025-06-01T21:27:42.2938943Z adding 'torch/include/ATen/ops/hardswish_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.2941906Z adding 'torch/include/ATen/ops/hardswish_backward_cpu_dispatch.h' 2025-06-01T21:27:42.2944906Z adding 'torch/include/ATen/ops/hardswish_backward_cuda_dispatch.h' 2025-06-01T21:27:42.2947862Z adding 'torch/include/ATen/ops/hardswish_backward_native.h' 2025-06-01T21:27:42.2951274Z adding 'torch/include/ATen/ops/hardswish_backward_ops.h' 2025-06-01T21:27:42.2954473Z adding 'torch/include/ATen/ops/hardswish_cpu_dispatch.h' 2025-06-01T21:27:42.2957604Z adding 'torch/include/ATen/ops/hardswish_cuda_dispatch.h' 2025-06-01T21:27:42.2960669Z adding 'torch/include/ATen/ops/hardswish_meta_dispatch.h' 2025-06-01T21:27:42.2963603Z adding 'torch/include/ATen/ops/hardswish_native.h' 2025-06-01T21:27:42.2966761Z adding 'torch/include/ATen/ops/hardswish_ops.h' 2025-06-01T21:27:42.2969906Z adding 'torch/include/ATen/ops/hardtanh.h' 2025-06-01T21:27:42.2973087Z adding 'torch/include/ATen/ops/hardtanh_backward.h' 2025-06-01T21:27:42.2976271Z adding 'torch/include/ATen/ops/hardtanh_backward_cpu_dispatch.h' 2025-06-01T21:27:42.2979371Z adding 'torch/include/ATen/ops/hardtanh_backward_cuda_dispatch.h' 2025-06-01T21:27:42.2982454Z adding 'torch/include/ATen/ops/hardtanh_backward_native.h' 2025-06-01T21:27:42.2985752Z adding 'torch/include/ATen/ops/hardtanh_backward_ops.h' 2025-06-01T21:27:42.2988908Z adding 'torch/include/ATen/ops/hardtanh_cpu_dispatch.h' 2025-06-01T21:27:42.2992065Z adding 'torch/include/ATen/ops/hardtanh_cuda_dispatch.h' 2025-06-01T21:27:42.2995132Z adding 'torch/include/ATen/ops/hardtanh_meta_dispatch.h' 2025-06-01T21:27:42.2998168Z adding 'torch/include/ATen/ops/hardtanh_native.h' 2025-06-01T21:27:42.3001415Z adding 'torch/include/ATen/ops/hardtanh_ops.h' 2025-06-01T21:27:42.3004526Z adding 'torch/include/ATen/ops/heaviside.h' 2025-06-01T21:27:42.3007844Z adding 'torch/include/ATen/ops/heaviside_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.3010782Z adding 'torch/include/ATen/ops/heaviside_cpu_dispatch.h' 2025-06-01T21:27:42.3013917Z adding 'torch/include/ATen/ops/heaviside_cuda_dispatch.h' 2025-06-01T21:27:42.3016861Z adding 'torch/include/ATen/ops/heaviside_meta.h' 2025-06-01T21:27:42.3020058Z adding 'torch/include/ATen/ops/heaviside_meta_dispatch.h' 2025-06-01T21:27:42.3022975Z adding 'torch/include/ATen/ops/heaviside_native.h' 2025-06-01T21:27:42.3026194Z adding 'torch/include/ATen/ops/heaviside_ops.h' 2025-06-01T21:27:42.3029312Z adding 'torch/include/ATen/ops/hinge_embedding_loss.h' 2025-06-01T21:27:42.3033100Z adding 'torch/include/ATen/ops/hinge_embedding_loss_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.3035983Z adding 'torch/include/ATen/ops/hinge_embedding_loss_native.h' 2025-06-01T21:27:42.3039261Z adding 'torch/include/ATen/ops/hinge_embedding_loss_ops.h' 2025-06-01T21:27:42.3042396Z adding 'torch/include/ATen/ops/histc.h' 2025-06-01T21:27:42.3046465Z adding 'torch/include/ATen/ops/histc_cpu_dispatch.h' 2025-06-01T21:27:42.3048739Z adding 'torch/include/ATen/ops/histc_cuda_dispatch.h' 2025-06-01T21:27:42.3051764Z adding 'torch/include/ATen/ops/histc_native.h' 2025-06-01T21:27:42.3054822Z adding 'torch/include/ATen/ops/histc_ops.h' 2025-06-01T21:27:42.3058101Z adding 'torch/include/ATen/ops/histogram.h' 2025-06-01T21:27:42.3061451Z adding 'torch/include/ATen/ops/histogram_cpu_dispatch.h' 2025-06-01T21:27:42.3064568Z adding 'torch/include/ATen/ops/histogram_native.h' 2025-06-01T21:27:42.3068157Z adding 'torch/include/ATen/ops/histogram_ops.h' 2025-06-01T21:27:42.3071377Z adding 'torch/include/ATen/ops/histogramdd.h' 2025-06-01T21:27:42.3074799Z adding 'torch/include/ATen/ops/histogramdd_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.3077735Z adding 'torch/include/ATen/ops/histogramdd_native.h' 2025-06-01T21:27:42.3081113Z adding 'torch/include/ATen/ops/histogramdd_ops.h' 2025-06-01T21:27:42.3084251Z adding 'torch/include/ATen/ops/hsplit.h' 2025-06-01T21:27:42.3087474Z adding 'torch/include/ATen/ops/hsplit_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.3090298Z adding 'torch/include/ATen/ops/hsplit_native.h' 2025-06-01T21:27:42.3093439Z adding 'torch/include/ATen/ops/hsplit_ops.h' 2025-06-01T21:27:42.3096499Z adding 'torch/include/ATen/ops/hspmm.h' 2025-06-01T21:27:42.3099593Z adding 'torch/include/ATen/ops/hspmm_native.h' 2025-06-01T21:27:42.3102808Z adding 'torch/include/ATen/ops/hspmm_ops.h' 2025-06-01T21:27:42.3105813Z adding 'torch/include/ATen/ops/hstack.h' 2025-06-01T21:27:42.3109090Z adding 'torch/include/ATen/ops/hstack_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.3112108Z adding 'torch/include/ATen/ops/hstack_native.h' 2025-06-01T21:27:42.3115337Z adding 'torch/include/ATen/ops/hstack_ops.h' 2025-06-01T21:27:42.3118405Z adding 'torch/include/ATen/ops/huber_loss.h' 2025-06-01T21:27:42.3121606Z adding 'torch/include/ATen/ops/huber_loss_backward.h' 2025-06-01T21:27:42.3124884Z adding 'torch/include/ATen/ops/huber_loss_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.3127881Z adding 'torch/include/ATen/ops/huber_loss_backward_cpu_dispatch.h' 2025-06-01T21:27:42.3131057Z adding 'torch/include/ATen/ops/huber_loss_backward_cuda_dispatch.h' 2025-06-01T21:27:42.3134110Z adding 'torch/include/ATen/ops/huber_loss_backward_native.h' 2025-06-01T21:27:42.3137510Z adding 'torch/include/ATen/ops/huber_loss_backward_ops.h' 2025-06-01T21:27:42.3140844Z adding 'torch/include/ATen/ops/huber_loss_cpu_dispatch.h' 2025-06-01T21:27:42.3143934Z adding 'torch/include/ATen/ops/huber_loss_cuda_dispatch.h' 2025-06-01T21:27:42.3147199Z adding 'torch/include/ATen/ops/huber_loss_native.h' 2025-06-01T21:27:42.3150513Z adding 'torch/include/ATen/ops/huber_loss_ops.h' 2025-06-01T21:27:42.3153900Z adding 'torch/include/ATen/ops/hypot.h' 2025-06-01T21:27:42.3157822Z adding 'torch/include/ATen/ops/hypot_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.3160400Z adding 'torch/include/ATen/ops/hypot_cpu_dispatch.h' 2025-06-01T21:27:42.3163616Z adding 'torch/include/ATen/ops/hypot_cuda_dispatch.h' 2025-06-01T21:27:42.3166606Z adding 'torch/include/ATen/ops/hypot_meta.h' 2025-06-01T21:27:42.3169880Z adding 'torch/include/ATen/ops/hypot_meta_dispatch.h' 2025-06-01T21:27:42.3182285Z adding 'torch/include/ATen/ops/hypot_native.h' 2025-06-01T21:27:42.3182476Z adding 'torch/include/ATen/ops/hypot_ops.h' 2025-06-01T21:27:42.3182573Z adding 'torch/include/ATen/ops/i0.h' 2025-06-01T21:27:42.3182884Z adding 'torch/include/ATen/ops/i0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.3186011Z adding 'torch/include/ATen/ops/i0_cpu_dispatch.h' 2025-06-01T21:27:42.3189064Z adding 'torch/include/ATen/ops/i0_cuda_dispatch.h' 2025-06-01T21:27:42.3192296Z adding 'torch/include/ATen/ops/i0_meta.h' 2025-06-01T21:27:42.3195406Z adding 'torch/include/ATen/ops/i0_meta_dispatch.h' 2025-06-01T21:27:42.3198560Z adding 'torch/include/ATen/ops/i0_native.h' 2025-06-01T21:27:42.3201949Z adding 'torch/include/ATen/ops/i0_ops.h' 2025-06-01T21:27:42.3205157Z adding 'torch/include/ATen/ops/igamma.h' 2025-06-01T21:27:42.3208686Z adding 'torch/include/ATen/ops/igamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.3211599Z adding 'torch/include/ATen/ops/igamma_cpu_dispatch.h' 2025-06-01T21:27:42.3214851Z adding 'torch/include/ATen/ops/igamma_cuda_dispatch.h' 2025-06-01T21:27:42.3217868Z adding 'torch/include/ATen/ops/igamma_meta.h' 2025-06-01T21:27:42.3221436Z adding 'torch/include/ATen/ops/igamma_meta_dispatch.h' 2025-06-01T21:27:42.3224472Z adding 'torch/include/ATen/ops/igamma_native.h' 2025-06-01T21:27:42.3227860Z adding 'torch/include/ATen/ops/igamma_ops.h' 2025-06-01T21:27:42.3231132Z adding 'torch/include/ATen/ops/igammac.h' 2025-06-01T21:27:42.3234552Z adding 'torch/include/ATen/ops/igammac_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.3237595Z adding 'torch/include/ATen/ops/igammac_cpu_dispatch.h' 2025-06-01T21:27:42.3240738Z adding 'torch/include/ATen/ops/igammac_cuda_dispatch.h' 2025-06-01T21:27:42.3243862Z adding 'torch/include/ATen/ops/igammac_meta.h' 2025-06-01T21:27:42.3246981Z adding 'torch/include/ATen/ops/igammac_meta_dispatch.h' 2025-06-01T21:27:42.3250124Z adding 'torch/include/ATen/ops/igammac_native.h' 2025-06-01T21:27:42.3253356Z adding 'torch/include/ATen/ops/igammac_ops.h' 2025-06-01T21:27:42.3256659Z adding 'torch/include/ATen/ops/im2col.h' 2025-06-01T21:27:42.3259982Z adding 'torch/include/ATen/ops/im2col_cpu_dispatch.h' 2025-06-01T21:27:42.3263118Z adding 'torch/include/ATen/ops/im2col_cuda_dispatch.h' 2025-06-01T21:27:42.3266372Z adding 'torch/include/ATen/ops/im2col_native.h' 2025-06-01T21:27:42.3269640Z adding 'torch/include/ATen/ops/im2col_ops.h' 2025-06-01T21:27:42.3272955Z adding 'torch/include/ATen/ops/imag.h' 2025-06-01T21:27:42.3276173Z adding 'torch/include/ATen/ops/imag_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.3279209Z adding 'torch/include/ATen/ops/imag_native.h' 2025-06-01T21:27:42.3282367Z adding 'torch/include/ATen/ops/imag_ops.h' 2025-06-01T21:27:42.3285602Z adding 'torch/include/ATen/ops/index.h' 2025-06-01T21:27:42.3288928Z adding 'torch/include/ATen/ops/index_add.h' 2025-06-01T21:27:42.3292323Z adding 'torch/include/ATen/ops/index_add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.3295539Z adding 'torch/include/ATen/ops/index_add_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.3298618Z adding 'torch/include/ATen/ops/index_add_cpu_dispatch.h' 2025-06-01T21:27:42.3301858Z adding 'torch/include/ATen/ops/index_add_cuda_dispatch.h' 2025-06-01T21:27:42.3305035Z adding 'torch/include/ATen/ops/index_add_meta.h' 2025-06-01T21:27:42.3308290Z adding 'torch/include/ATen/ops/index_add_meta_dispatch.h' 2025-06-01T21:27:42.3311556Z adding 'torch/include/ATen/ops/index_add_native.h' 2025-06-01T21:27:42.3315023Z adding 'torch/include/ATen/ops/index_add_ops.h' 2025-06-01T21:27:42.3318592Z adding 'torch/include/ATen/ops/index_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.3321569Z adding 'torch/include/ATen/ops/index_copy.h' 2025-06-01T21:27:42.3325101Z adding 'torch/include/ATen/ops/index_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.3328337Z adding 'torch/include/ATen/ops/index_copy_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.3331387Z adding 'torch/include/ATen/ops/index_copy_cpu_dispatch.h' 2025-06-01T21:27:42.3334610Z adding 'torch/include/ATen/ops/index_copy_cuda_dispatch.h' 2025-06-01T21:27:42.3337725Z adding 'torch/include/ATen/ops/index_copy_meta.h' 2025-06-01T21:27:42.3341017Z adding 'torch/include/ATen/ops/index_copy_meta_dispatch.h' 2025-06-01T21:27:42.3344088Z adding 'torch/include/ATen/ops/index_copy_native.h' 2025-06-01T21:27:42.3347786Z adding 'torch/include/ATen/ops/index_copy_ops.h' 2025-06-01T21:27:42.3351035Z adding 'torch/include/ATen/ops/index_cpu_dispatch.h' 2025-06-01T21:27:42.3354272Z adding 'torch/include/ATen/ops/index_cuda_dispatch.h' 2025-06-01T21:27:42.3357734Z adding 'torch/include/ATen/ops/index_fill.h' 2025-06-01T21:27:42.3361036Z adding 'torch/include/ATen/ops/index_fill_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.3364402Z adding 'torch/include/ATen/ops/index_fill_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.3367375Z adding 'torch/include/ATen/ops/index_fill_cpu_dispatch.h' 2025-06-01T21:27:42.3370642Z adding 'torch/include/ATen/ops/index_fill_cuda_dispatch.h' 2025-06-01T21:27:42.3373793Z adding 'torch/include/ATen/ops/index_fill_meta_dispatch.h' 2025-06-01T21:27:42.3376948Z adding 'torch/include/ATen/ops/index_fill_native.h' 2025-06-01T21:27:42.3380879Z adding 'torch/include/ATen/ops/index_fill_ops.h' 2025-06-01T21:27:42.3384315Z adding 'torch/include/ATen/ops/index_meta.h' 2025-06-01T21:27:42.3387941Z adding 'torch/include/ATen/ops/index_meta_dispatch.h' 2025-06-01T21:27:42.3394260Z adding 'torch/include/ATen/ops/index_native.h' 2025-06-01T21:27:42.3395377Z adding 'torch/include/ATen/ops/index_ops.h' 2025-06-01T21:27:42.3398515Z adding 'torch/include/ATen/ops/index_put.h' 2025-06-01T21:27:42.3402108Z adding 'torch/include/ATen/ops/index_put_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.3405163Z adding 'torch/include/ATen/ops/index_put_native.h' 2025-06-01T21:27:42.3408525Z adding 'torch/include/ATen/ops/index_put_ops.h' 2025-06-01T21:27:42.3412132Z adding 'torch/include/ATen/ops/index_reduce.h' 2025-06-01T21:27:42.3415637Z adding 'torch/include/ATen/ops/index_reduce_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.3418795Z adding 'torch/include/ATen/ops/index_reduce_cpu_dispatch.h' 2025-06-01T21:27:42.3422030Z adding 'torch/include/ATen/ops/index_reduce_cuda_dispatch.h' 2025-06-01T21:27:42.3425125Z adding 'torch/include/ATen/ops/index_reduce_meta.h' 2025-06-01T21:27:42.3429337Z adding 'torch/include/ATen/ops/index_reduce_meta_dispatch.h' 2025-06-01T21:27:42.3432644Z adding 'torch/include/ATen/ops/index_reduce_native.h' 2025-06-01T21:27:42.3435979Z adding 'torch/include/ATen/ops/index_reduce_ops.h' 2025-06-01T21:27:42.3439255Z adding 'torch/include/ATen/ops/index_select.h' 2025-06-01T21:27:42.3442521Z adding 'torch/include/ATen/ops/index_select_backward.h' 2025-06-01T21:27:42.3446032Z adding 'torch/include/ATen/ops/index_select_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.3448971Z adding 'torch/include/ATen/ops/index_select_backward_native.h' 2025-06-01T21:27:42.3452150Z adding 'torch/include/ATen/ops/index_select_backward_ops.h' 2025-06-01T21:27:42.3455383Z adding 'torch/include/ATen/ops/index_select_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.3458374Z adding 'torch/include/ATen/ops/index_select_cpu_dispatch.h' 2025-06-01T21:27:42.3461600Z adding 'torch/include/ATen/ops/index_select_cuda_dispatch.h' 2025-06-01T21:27:42.3464614Z adding 'torch/include/ATen/ops/index_select_native.h' 2025-06-01T21:27:42.3467924Z adding 'torch/include/ATen/ops/index_select_ops.h' 2025-06-01T21:27:42.3471008Z adding 'torch/include/ATen/ops/indices.h' 2025-06-01T21:27:42.3474265Z adding 'torch/include/ATen/ops/indices_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.3477440Z adding 'torch/include/ATen/ops/indices_copy.h' 2025-06-01T21:27:42.3480732Z adding 'torch/include/ATen/ops/indices_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.3483884Z adding 'torch/include/ATen/ops/indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.3486757Z adding 'torch/include/ATen/ops/indices_copy_native.h' 2025-06-01T21:27:42.3489912Z adding 'torch/include/ATen/ops/indices_copy_ops.h' 2025-06-01T21:27:42.3492911Z adding 'torch/include/ATen/ops/indices_native.h' 2025-06-01T21:27:42.3495995Z adding 'torch/include/ATen/ops/indices_ops.h' 2025-06-01T21:27:42.3499170Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward.h' 2025-06-01T21:27:42.3502510Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.3505490Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_native.h' 2025-06-01T21:27:42.3508625Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_ops.h' 2025-06-01T21:27:42.3511590Z adding 'torch/include/ATen/ops/inner.h' 2025-06-01T21:27:42.3514923Z adding 'torch/include/ATen/ops/inner_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.3517780Z adding 'torch/include/ATen/ops/inner_native.h' 2025-06-01T21:27:42.3520922Z adding 'torch/include/ATen/ops/inner_ops.h' 2025-06-01T21:27:42.3524044Z adding 'torch/include/ATen/ops/instance_norm.h' 2025-06-01T21:27:42.3527320Z adding 'torch/include/ATen/ops/instance_norm_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.3530193Z adding 'torch/include/ATen/ops/instance_norm_native.h' 2025-06-01T21:27:42.3533586Z adding 'torch/include/ATen/ops/instance_norm_ops.h' 2025-06-01T21:27:42.3536702Z adding 'torch/include/ATen/ops/int_repr.h' 2025-06-01T21:27:42.3540173Z adding 'torch/include/ATen/ops/int_repr_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.3543109Z adding 'torch/include/ATen/ops/int_repr_native.h' 2025-06-01T21:27:42.3547441Z adding 'torch/include/ATen/ops/int_repr_ops.h' 2025-06-01T21:27:42.3552975Z adding 'torch/include/ATen/ops/inverse.h' 2025-06-01T21:27:42.3557744Z adding 'torch/include/ATen/ops/inverse_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.3560898Z adding 'torch/include/ATen/ops/inverse_native.h' 2025-06-01T21:27:42.3563882Z adding 'torch/include/ATen/ops/inverse_ops.h' 2025-06-01T21:27:42.3566893Z adding 'torch/include/ATen/ops/is_coalesced.h' 2025-06-01T21:27:42.3570182Z adding 'torch/include/ATen/ops/is_coalesced_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.3573016Z adding 'torch/include/ATen/ops/is_coalesced_native.h' 2025-06-01T21:27:42.3576092Z adding 'torch/include/ATen/ops/is_coalesced_ops.h' 2025-06-01T21:27:42.3579057Z adding 'torch/include/ATen/ops/is_complex.h' 2025-06-01T21:27:42.3582260Z adding 'torch/include/ATen/ops/is_complex_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.3585106Z adding 'torch/include/ATen/ops/is_complex_native.h' 2025-06-01T21:27:42.3588131Z adding 'torch/include/ATen/ops/is_complex_ops.h' 2025-06-01T21:27:42.3591210Z adding 'torch/include/ATen/ops/is_conj.h' 2025-06-01T21:27:42.3594418Z adding 'torch/include/ATen/ops/is_conj_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.3597192Z adding 'torch/include/ATen/ops/is_conj_native.h' 2025-06-01T21:27:42.3600487Z adding 'torch/include/ATen/ops/is_conj_ops.h' 2025-06-01T21:27:42.3603603Z adding 'torch/include/ATen/ops/is_distributed.h' 2025-06-01T21:27:42.3606786Z adding 'torch/include/ATen/ops/is_distributed_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.3609576Z adding 'torch/include/ATen/ops/is_distributed_native.h' 2025-06-01T21:27:42.3612644Z adding 'torch/include/ATen/ops/is_distributed_ops.h' 2025-06-01T21:27:42.3615604Z adding 'torch/include/ATen/ops/is_floating_point.h' 2025-06-01T21:27:42.3618920Z adding 'torch/include/ATen/ops/is_floating_point_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.3621737Z adding 'torch/include/ATen/ops/is_floating_point_native.h' 2025-06-01T21:27:42.3624795Z adding 'torch/include/ATen/ops/is_floating_point_ops.h' 2025-06-01T21:27:42.3627767Z adding 'torch/include/ATen/ops/is_inference.h' 2025-06-01T21:27:42.3631064Z adding 'torch/include/ATen/ops/is_inference_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.3633946Z adding 'torch/include/ATen/ops/is_inference_native.h' 2025-06-01T21:27:42.3636946Z adding 'torch/include/ATen/ops/is_inference_ops.h' 2025-06-01T21:27:42.3639849Z adding 'torch/include/ATen/ops/is_leaf.h' 2025-06-01T21:27:42.3643012Z adding 'torch/include/ATen/ops/is_leaf_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.3645764Z adding 'torch/include/ATen/ops/is_leaf_native.h' 2025-06-01T21:27:42.3648791Z adding 'torch/include/ATen/ops/is_leaf_ops.h' 2025-06-01T21:27:42.3651857Z adding 'torch/include/ATen/ops/is_neg.h' 2025-06-01T21:27:42.3655101Z adding 'torch/include/ATen/ops/is_neg_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.3657862Z adding 'torch/include/ATen/ops/is_neg_native.h' 2025-06-01T21:27:42.3661014Z adding 'torch/include/ATen/ops/is_neg_ops.h' 2025-06-01T21:27:42.3663880Z adding 'torch/include/ATen/ops/is_nonzero.h' 2025-06-01T21:27:42.3667010Z adding 'torch/include/ATen/ops/is_nonzero_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.3669810Z adding 'torch/include/ATen/ops/is_nonzero_native.h' 2025-06-01T21:27:42.3672959Z adding 'torch/include/ATen/ops/is_nonzero_ops.h' 2025-06-01T21:27:42.3675857Z adding 'torch/include/ATen/ops/is_pinned.h' 2025-06-01T21:27:42.3679030Z adding 'torch/include/ATen/ops/is_pinned_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.3681850Z adding 'torch/include/ATen/ops/is_pinned_native.h' 2025-06-01T21:27:42.3684974Z adding 'torch/include/ATen/ops/is_pinned_ops.h' 2025-06-01T21:27:42.3688021Z adding 'torch/include/ATen/ops/is_same_size.h' 2025-06-01T21:27:42.3691228Z adding 'torch/include/ATen/ops/is_same_size_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.3694031Z adding 'torch/include/ATen/ops/is_same_size_native.h' 2025-06-01T21:27:42.3697287Z adding 'torch/include/ATen/ops/is_same_size_ops.h' 2025-06-01T21:27:42.3700216Z adding 'torch/include/ATen/ops/is_set_to.h' 2025-06-01T21:27:42.3703303Z adding 'torch/include/ATen/ops/is_set_to_cpu_dispatch.h' 2025-06-01T21:27:42.3706504Z adding 'torch/include/ATen/ops/is_set_to_cuda_dispatch.h' 2025-06-01T21:27:42.3709331Z adding 'torch/include/ATen/ops/is_set_to_native.h' 2025-06-01T21:27:42.3712570Z adding 'torch/include/ATen/ops/is_set_to_ops.h' 2025-06-01T21:27:42.3715542Z adding 'torch/include/ATen/ops/is_signed.h' 2025-06-01T21:27:42.3718730Z adding 'torch/include/ATen/ops/is_signed_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.3721502Z adding 'torch/include/ATen/ops/is_signed_native.h' 2025-06-01T21:27:42.3724557Z adding 'torch/include/ATen/ops/is_signed_ops.h' 2025-06-01T21:27:42.3727565Z adding 'torch/include/ATen/ops/is_vulkan_available.h' 2025-06-01T21:27:42.3730669Z adding 'torch/include/ATen/ops/is_vulkan_available_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.3733499Z adding 'torch/include/ATen/ops/is_vulkan_available_native.h' 2025-06-01T21:27:42.3736475Z adding 'torch/include/ATen/ops/is_vulkan_available_ops.h' 2025-06-01T21:27:42.3739471Z adding 'torch/include/ATen/ops/isclose.h' 2025-06-01T21:27:42.3742711Z adding 'torch/include/ATen/ops/isclose_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.3745533Z adding 'torch/include/ATen/ops/isclose_native.h' 2025-06-01T21:27:42.3748569Z adding 'torch/include/ATen/ops/isclose_ops.h' 2025-06-01T21:27:42.3751635Z adding 'torch/include/ATen/ops/isfinite.h' 2025-06-01T21:27:42.3754796Z adding 'torch/include/ATen/ops/isfinite_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.3757589Z adding 'torch/include/ATen/ops/isfinite_native.h' 2025-06-01T21:27:42.3760666Z adding 'torch/include/ATen/ops/isfinite_ops.h' 2025-06-01T21:27:42.3763969Z adding 'torch/include/ATen/ops/isin.h' 2025-06-01T21:27:42.3767503Z adding 'torch/include/ATen/ops/isin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.3770450Z adding 'torch/include/ATen/ops/isin_cpu_dispatch.h' 2025-06-01T21:27:42.3773595Z adding 'torch/include/ATen/ops/isin_cuda_dispatch.h' 2025-06-01T21:27:42.3776930Z adding 'torch/include/ATen/ops/isin_meta.h' 2025-06-01T21:27:42.3780061Z adding 'torch/include/ATen/ops/isin_meta_dispatch.h' 2025-06-01T21:27:42.3783041Z adding 'torch/include/ATen/ops/isin_native.h' 2025-06-01T21:27:42.3786515Z adding 'torch/include/ATen/ops/isin_ops.h' 2025-06-01T21:27:42.3789781Z adding 'torch/include/ATen/ops/isinf.h' 2025-06-01T21:27:42.3793176Z adding 'torch/include/ATen/ops/isinf_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.3797087Z adding 'torch/include/ATen/ops/isinf_native.h' 2025-06-01T21:27:42.3800560Z adding 'torch/include/ATen/ops/isinf_ops.h' 2025-06-01T21:27:42.3803650Z adding 'torch/include/ATen/ops/isnan.h' 2025-06-01T21:27:42.3806696Z adding 'torch/include/ATen/ops/isnan_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.3809818Z adding 'torch/include/ATen/ops/isnan_cpu_dispatch.h' 2025-06-01T21:27:42.3812929Z adding 'torch/include/ATen/ops/isnan_cuda_dispatch.h' 2025-06-01T21:27:42.3815934Z adding 'torch/include/ATen/ops/isnan_native.h' 2025-06-01T21:27:42.3819125Z adding 'torch/include/ATen/ops/isnan_ops.h' 2025-06-01T21:27:42.3822334Z adding 'torch/include/ATen/ops/isneginf.h' 2025-06-01T21:27:42.3825842Z adding 'torch/include/ATen/ops/isneginf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.3828945Z adding 'torch/include/ATen/ops/isneginf_cpu_dispatch.h' 2025-06-01T21:27:42.3832086Z adding 'torch/include/ATen/ops/isneginf_cuda_dispatch.h' 2025-06-01T21:27:42.3835193Z adding 'torch/include/ATen/ops/isneginf_meta.h' 2025-06-01T21:27:42.3838309Z adding 'torch/include/ATen/ops/isneginf_meta_dispatch.h' 2025-06-01T21:27:42.3841515Z adding 'torch/include/ATen/ops/isneginf_native.h' 2025-06-01T21:27:42.3844775Z adding 'torch/include/ATen/ops/isneginf_ops.h' 2025-06-01T21:27:42.3848261Z adding 'torch/include/ATen/ops/isposinf.h' 2025-06-01T21:27:42.3852032Z adding 'torch/include/ATen/ops/isposinf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.3854944Z adding 'torch/include/ATen/ops/isposinf_cpu_dispatch.h' 2025-06-01T21:27:42.3858219Z adding 'torch/include/ATen/ops/isposinf_cuda_dispatch.h' 2025-06-01T21:27:42.3861410Z adding 'torch/include/ATen/ops/isposinf_meta.h' 2025-06-01T21:27:42.3864710Z adding 'torch/include/ATen/ops/isposinf_meta_dispatch.h' 2025-06-01T21:27:42.3867979Z adding 'torch/include/ATen/ops/isposinf_native.h' 2025-06-01T21:27:42.3871484Z adding 'torch/include/ATen/ops/isposinf_ops.h' 2025-06-01T21:27:42.3875227Z adding 'torch/include/ATen/ops/isreal.h' 2025-06-01T21:27:42.3878698Z adding 'torch/include/ATen/ops/isreal_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.3881809Z adding 'torch/include/ATen/ops/isreal_native.h' 2025-06-01T21:27:42.3885078Z adding 'torch/include/ATen/ops/isreal_ops.h' 2025-06-01T21:27:42.3888594Z adding 'torch/include/ATen/ops/istft.h' 2025-06-01T21:27:42.3892226Z adding 'torch/include/ATen/ops/istft_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.3895752Z adding 'torch/include/ATen/ops/istft_native.h' 2025-06-01T21:27:42.3899555Z adding 'torch/include/ATen/ops/istft_ops.h' 2025-06-01T21:27:42.3902783Z adding 'torch/include/ATen/ops/item.h' 2025-06-01T21:27:42.3906214Z adding 'torch/include/ATen/ops/item_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.3909308Z adding 'torch/include/ATen/ops/item_native.h' 2025-06-01T21:27:42.3912884Z adding 'torch/include/ATen/ops/item_ops.h' 2025-06-01T21:27:42.3916770Z adding 'torch/include/ATen/ops/kaiser_window.h' 2025-06-01T21:27:42.3920486Z adding 'torch/include/ATen/ops/kaiser_window_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.3923767Z adding 'torch/include/ATen/ops/kaiser_window_native.h' 2025-06-01T21:27:42.3927663Z adding 'torch/include/ATen/ops/kaiser_window_ops.h' 2025-06-01T21:27:42.3931129Z adding 'torch/include/ATen/ops/kl_div.h' 2025-06-01T21:27:42.3934571Z adding 'torch/include/ATen/ops/kl_div_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.3937398Z adding 'torch/include/ATen/ops/kl_div_native.h' 2025-06-01T21:27:42.3940562Z adding 'torch/include/ATen/ops/kl_div_ops.h' 2025-06-01T21:27:42.3943620Z adding 'torch/include/ATen/ops/kron.h' 2025-06-01T21:27:42.3946840Z adding 'torch/include/ATen/ops/kron_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.3949813Z adding 'torch/include/ATen/ops/kron_native.h' 2025-06-01T21:27:42.3953113Z adding 'torch/include/ATen/ops/kron_ops.h' 2025-06-01T21:27:42.3956799Z adding 'torch/include/ATen/ops/kthvalue.h' 2025-06-01T21:27:42.3960343Z adding 'torch/include/ATen/ops/kthvalue_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.3963470Z adding 'torch/include/ATen/ops/kthvalue_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.3966619Z adding 'torch/include/ATen/ops/kthvalue_cpu_dispatch.h' 2025-06-01T21:27:42.3969700Z adding 'torch/include/ATen/ops/kthvalue_cuda_dispatch.h' 2025-06-01T21:27:42.3972643Z adding 'torch/include/ATen/ops/kthvalue_native.h' 2025-06-01T21:27:42.3976001Z adding 'torch/include/ATen/ops/kthvalue_ops.h' 2025-06-01T21:27:42.3979089Z adding 'torch/include/ATen/ops/l1_loss.h' 2025-06-01T21:27:42.3982296Z adding 'torch/include/ATen/ops/l1_loss_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.3985181Z adding 'torch/include/ATen/ops/l1_loss_native.h' 2025-06-01T21:27:42.3988209Z adding 'torch/include/ATen/ops/l1_loss_ops.h' 2025-06-01T21:27:42.3991551Z adding 'torch/include/ATen/ops/layer_norm.h' 2025-06-01T21:27:42.3994827Z adding 'torch/include/ATen/ops/layer_norm_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.3997774Z adding 'torch/include/ATen/ops/layer_norm_native.h' 2025-06-01T21:27:42.4001450Z adding 'torch/include/ATen/ops/layer_norm_ops.h' 2025-06-01T21:27:42.4032904Z adding 'torch/include/ATen/ops/lcm.h' 2025-06-01T21:27:42.4033237Z adding 'torch/include/ATen/ops/lcm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.4033378Z adding 'torch/include/ATen/ops/lcm_cpu_dispatch.h' 2025-06-01T21:27:42.4033503Z adding 'torch/include/ATen/ops/lcm_cuda_dispatch.h' 2025-06-01T21:27:42.4033606Z adding 'torch/include/ATen/ops/lcm_meta.h' 2025-06-01T21:27:42.4033731Z adding 'torch/include/ATen/ops/lcm_meta_dispatch.h' 2025-06-01T21:27:42.4033837Z adding 'torch/include/ATen/ops/lcm_native.h' 2025-06-01T21:27:42.4033933Z adding 'torch/include/ATen/ops/lcm_ops.h' 2025-06-01T21:27:42.4034043Z adding 'torch/include/ATen/ops/ldexp.h' 2025-06-01T21:27:42.4036841Z adding 'torch/include/ATen/ops/ldexp_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.4039688Z adding 'torch/include/ATen/ops/ldexp_native.h' 2025-06-01T21:27:42.4043289Z adding 'torch/include/ATen/ops/ldexp_ops.h' 2025-06-01T21:27:42.4046266Z adding 'torch/include/ATen/ops/le.h' 2025-06-01T21:27:42.4049702Z adding 'torch/include/ATen/ops/le_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.4052660Z adding 'torch/include/ATen/ops/le_cpu_dispatch.h' 2025-06-01T21:27:42.4055950Z adding 'torch/include/ATen/ops/le_cuda_dispatch.h' 2025-06-01T21:27:42.4058985Z adding 'torch/include/ATen/ops/le_meta.h' 2025-06-01T21:27:42.4062276Z adding 'torch/include/ATen/ops/le_meta_dispatch.h' 2025-06-01T21:27:42.4065308Z adding 'torch/include/ATen/ops/le_native.h' 2025-06-01T21:27:42.4068851Z adding 'torch/include/ATen/ops/le_ops.h' 2025-06-01T21:27:42.4072318Z adding 'torch/include/ATen/ops/leaky_relu.h' 2025-06-01T21:27:42.4075532Z adding 'torch/include/ATen/ops/leaky_relu_backward.h' 2025-06-01T21:27:42.4079148Z adding 'torch/include/ATen/ops/leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.4082136Z adding 'torch/include/ATen/ops/leaky_relu_backward_cpu_dispatch.h' 2025-06-01T21:27:42.4085397Z adding 'torch/include/ATen/ops/leaky_relu_backward_cuda_dispatch.h' 2025-06-01T21:27:42.4088492Z adding 'torch/include/ATen/ops/leaky_relu_backward_meta.h' 2025-06-01T21:27:42.4091776Z adding 'torch/include/ATen/ops/leaky_relu_backward_meta_dispatch.h' 2025-06-01T21:27:42.4094839Z adding 'torch/include/ATen/ops/leaky_relu_backward_native.h' 2025-06-01T21:27:42.4098058Z adding 'torch/include/ATen/ops/leaky_relu_backward_ops.h' 2025-06-01T21:27:42.4101524Z adding 'torch/include/ATen/ops/leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.4104513Z adding 'torch/include/ATen/ops/leaky_relu_cpu_dispatch.h' 2025-06-01T21:27:42.4107787Z adding 'torch/include/ATen/ops/leaky_relu_cuda_dispatch.h' 2025-06-01T21:27:42.4110849Z adding 'torch/include/ATen/ops/leaky_relu_meta.h' 2025-06-01T21:27:42.4114181Z adding 'torch/include/ATen/ops/leaky_relu_meta_dispatch.h' 2025-06-01T21:27:42.4117570Z adding 'torch/include/ATen/ops/leaky_relu_native.h' 2025-06-01T21:27:42.4120949Z adding 'torch/include/ATen/ops/leaky_relu_ops.h' 2025-06-01T21:27:42.4124178Z adding 'torch/include/ATen/ops/lerp.h' 2025-06-01T21:27:42.4127651Z adding 'torch/include/ATen/ops/lerp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.4130792Z adding 'torch/include/ATen/ops/lerp_cpu_dispatch.h' 2025-06-01T21:27:42.4134012Z adding 'torch/include/ATen/ops/lerp_cuda_dispatch.h' 2025-06-01T21:27:42.4137209Z adding 'torch/include/ATen/ops/lerp_meta.h' 2025-06-01T21:27:42.4140405Z adding 'torch/include/ATen/ops/lerp_meta_dispatch.h' 2025-06-01T21:27:42.4143507Z adding 'torch/include/ATen/ops/lerp_native.h' 2025-06-01T21:27:42.4147073Z adding 'torch/include/ATen/ops/lerp_ops.h' 2025-06-01T21:27:42.4150376Z adding 'torch/include/ATen/ops/less.h' 2025-06-01T21:27:42.4153961Z adding 'torch/include/ATen/ops/less_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.4157049Z adding 'torch/include/ATen/ops/less_equal.h' 2025-06-01T21:27:42.4160589Z adding 'torch/include/ATen/ops/less_equal_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.4163602Z adding 'torch/include/ATen/ops/less_equal_native.h' 2025-06-01T21:27:42.4167818Z adding 'torch/include/ATen/ops/less_equal_ops.h' 2025-06-01T21:27:42.4171224Z adding 'torch/include/ATen/ops/less_native.h' 2025-06-01T21:27:42.4174738Z adding 'torch/include/ATen/ops/less_ops.h' 2025-06-01T21:27:42.4177958Z adding 'torch/include/ATen/ops/lgamma.h' 2025-06-01T21:27:42.4181449Z adding 'torch/include/ATen/ops/lgamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.4184406Z adding 'torch/include/ATen/ops/lgamma_cpu_dispatch.h' 2025-06-01T21:27:42.4187740Z adding 'torch/include/ATen/ops/lgamma_cuda_dispatch.h' 2025-06-01T21:27:42.4190751Z adding 'torch/include/ATen/ops/lgamma_meta.h' 2025-06-01T21:27:42.4194122Z adding 'torch/include/ATen/ops/lgamma_meta_dispatch.h' 2025-06-01T21:27:42.4197174Z adding 'torch/include/ATen/ops/lgamma_native.h' 2025-06-01T21:27:42.4200771Z adding 'torch/include/ATen/ops/lgamma_ops.h' 2025-06-01T21:27:42.4204104Z adding 'torch/include/ATen/ops/lift.h' 2025-06-01T21:27:42.4207128Z adding 'torch/include/ATen/ops/lift_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.4210155Z adding 'torch/include/ATen/ops/lift_fresh.h' 2025-06-01T21:27:42.4213225Z adding 'torch/include/ATen/ops/lift_fresh_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.4216329Z adding 'torch/include/ATen/ops/lift_fresh_copy.h' 2025-06-01T21:27:42.4219568Z adding 'torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.4222698Z adding 'torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.4225488Z adding 'torch/include/ATen/ops/lift_fresh_copy_native.h' 2025-06-01T21:27:42.4228586Z adding 'torch/include/ATen/ops/lift_fresh_copy_ops.h' 2025-06-01T21:27:42.4231800Z adding 'torch/include/ATen/ops/lift_fresh_native.h' 2025-06-01T21:27:42.4234928Z adding 'torch/include/ATen/ops/lift_fresh_ops.h' 2025-06-01T21:27:42.4237953Z adding 'torch/include/ATen/ops/lift_native.h' 2025-06-01T21:27:42.4241075Z adding 'torch/include/ATen/ops/lift_ops.h' 2025-06-01T21:27:42.4244179Z adding 'torch/include/ATen/ops/linalg_cholesky.h' 2025-06-01T21:27:42.4247399Z adding 'torch/include/ATen/ops/linalg_cholesky_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.4250384Z adding 'torch/include/ATen/ops/linalg_cholesky_ex.h' 2025-06-01T21:27:42.4253764Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.4256705Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_cpu_dispatch.h' 2025-06-01T21:27:42.4259824Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_cuda_dispatch.h' 2025-06-01T21:27:42.4263011Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_meta.h' 2025-06-01T21:27:42.4266134Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_meta_dispatch.h' 2025-06-01T21:27:42.4269425Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_native.h' 2025-06-01T21:27:42.4272507Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_ops.h' 2025-06-01T21:27:42.4275395Z adding 'torch/include/ATen/ops/linalg_cholesky_native.h' 2025-06-01T21:27:42.4278618Z adding 'torch/include/ATen/ops/linalg_cholesky_ops.h' 2025-06-01T21:27:42.4281702Z adding 'torch/include/ATen/ops/linalg_cond.h' 2025-06-01T21:27:42.4285086Z adding 'torch/include/ATen/ops/linalg_cond_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.4287957Z adding 'torch/include/ATen/ops/linalg_cond_native.h' 2025-06-01T21:27:42.4291213Z adding 'torch/include/ATen/ops/linalg_cond_ops.h' 2025-06-01T21:27:42.4294320Z adding 'torch/include/ATen/ops/linalg_cross.h' 2025-06-01T21:27:42.4297651Z adding 'torch/include/ATen/ops/linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.4300571Z adding 'torch/include/ATen/ops/linalg_cross_cpu_dispatch.h' 2025-06-01T21:27:42.4303879Z adding 'torch/include/ATen/ops/linalg_cross_cuda_dispatch.h' 2025-06-01T21:27:42.4306853Z adding 'torch/include/ATen/ops/linalg_cross_meta.h' 2025-06-01T21:27:42.4310142Z adding 'torch/include/ATen/ops/linalg_cross_meta_dispatch.h' 2025-06-01T21:27:42.4313322Z adding 'torch/include/ATen/ops/linalg_cross_native.h' 2025-06-01T21:27:42.4316507Z adding 'torch/include/ATen/ops/linalg_cross_ops.h' 2025-06-01T21:27:42.4319812Z adding 'torch/include/ATen/ops/linalg_det.h' 2025-06-01T21:27:42.4323194Z adding 'torch/include/ATen/ops/linalg_det_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.4326162Z adding 'torch/include/ATen/ops/linalg_det_native.h' 2025-06-01T21:27:42.4329607Z adding 'torch/include/ATen/ops/linalg_det_ops.h' 2025-06-01T21:27:42.4332825Z adding 'torch/include/ATen/ops/linalg_diagonal.h' 2025-06-01T21:27:42.4336373Z adding 'torch/include/ATen/ops/linalg_diagonal_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.4339249Z adding 'torch/include/ATen/ops/linalg_diagonal_native.h' 2025-06-01T21:27:42.4342471Z adding 'torch/include/ATen/ops/linalg_diagonal_ops.h' 2025-06-01T21:27:42.4345559Z adding 'torch/include/ATen/ops/linalg_eig.h' 2025-06-01T21:27:42.4348858Z adding 'torch/include/ATen/ops/linalg_eig_cpu_dispatch.h' 2025-06-01T21:27:42.4352106Z adding 'torch/include/ATen/ops/linalg_eig_cuda_dispatch.h' 2025-06-01T21:27:42.4355524Z adding 'torch/include/ATen/ops/linalg_eig_native.h' 2025-06-01T21:27:42.4359195Z adding 'torch/include/ATen/ops/linalg_eig_ops.h' 2025-06-01T21:27:42.4361897Z adding 'torch/include/ATen/ops/linalg_eigh.h' 2025-06-01T21:27:42.4365502Z adding 'torch/include/ATen/ops/linalg_eigh_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.4368388Z adding 'torch/include/ATen/ops/linalg_eigh_native.h' 2025-06-01T21:27:42.4371808Z adding 'torch/include/ATen/ops/linalg_eigh_ops.h' 2025-06-01T21:27:42.4374970Z adding 'torch/include/ATen/ops/linalg_eigvals.h' 2025-06-01T21:27:42.4378448Z adding 'torch/include/ATen/ops/linalg_eigvals_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.4382114Z adding 'torch/include/ATen/ops/linalg_eigvals_cpu_dispatch.h' 2025-06-01T21:27:42.4384659Z adding 'torch/include/ATen/ops/linalg_eigvals_cuda_dispatch.h' 2025-06-01T21:27:42.4387861Z adding 'torch/include/ATen/ops/linalg_eigvals_native.h' 2025-06-01T21:27:42.4390971Z adding 'torch/include/ATen/ops/linalg_eigvals_ops.h' 2025-06-01T21:27:42.4395809Z adding 'torch/include/ATen/ops/linalg_eigvalsh.h' 2025-06-01T21:27:42.4397845Z adding 'torch/include/ATen/ops/linalg_eigvalsh_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.4408246Z adding 'torch/include/ATen/ops/linalg_eigvalsh_native.h' 2025-06-01T21:27:42.4408417Z adding 'torch/include/ATen/ops/linalg_eigvalsh_ops.h' 2025-06-01T21:27:42.4408590Z adding 'torch/include/ATen/ops/linalg_householder_product.h' 2025-06-01T21:27:42.4411282Z adding 'torch/include/ATen/ops/linalg_householder_product_cpu_dispatch.h' 2025-06-01T21:27:42.4414564Z adding 'torch/include/ATen/ops/linalg_householder_product_cuda_dispatch.h' 2025-06-01T21:27:42.4417555Z adding 'torch/include/ATen/ops/linalg_householder_product_native.h' 2025-06-01T21:27:42.4421143Z adding 'torch/include/ATen/ops/linalg_householder_product_ops.h' 2025-06-01T21:27:42.4424138Z adding 'torch/include/ATen/ops/linalg_inv.h' 2025-06-01T21:27:42.4433737Z adding 'torch/include/ATen/ops/linalg_inv_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.4433867Z adding 'torch/include/ATen/ops/linalg_inv_ex.h' 2025-06-01T21:27:42.4435036Z adding 'torch/include/ATen/ops/linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.4438984Z adding 'torch/include/ATen/ops/linalg_inv_ex_cpu_dispatch.h' 2025-06-01T21:27:42.4441325Z adding 'torch/include/ATen/ops/linalg_inv_ex_cuda_dispatch.h' 2025-06-01T21:27:42.4448586Z adding 'torch/include/ATen/ops/linalg_inv_ex_meta.h' 2025-06-01T21:27:42.4448776Z adding 'torch/include/ATen/ops/linalg_inv_ex_meta_dispatch.h' 2025-06-01T21:27:42.4451200Z adding 'torch/include/ATen/ops/linalg_inv_ex_native.h' 2025-06-01T21:27:42.4460628Z adding 'torch/include/ATen/ops/linalg_inv_ex_ops.h' 2025-06-01T21:27:42.4460771Z adding 'torch/include/ATen/ops/linalg_inv_native.h' 2025-06-01T21:27:42.4461340Z adding 'torch/include/ATen/ops/linalg_inv_ops.h' 2025-06-01T21:27:42.4464541Z adding 'torch/include/ATen/ops/linalg_ldl_factor.h' 2025-06-01T21:27:42.4468047Z adding 'torch/include/ATen/ops/linalg_ldl_factor_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.4472318Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex.h' 2025-06-01T21:27:42.4474809Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.4478368Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_cpu_dispatch.h' 2025-06-01T21:27:42.4481057Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_cuda_dispatch.h' 2025-06-01T21:27:42.4484362Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_meta.h' 2025-06-01T21:27:42.4487549Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_meta_dispatch.h' 2025-06-01T21:27:42.4490597Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_native.h' 2025-06-01T21:27:42.4495411Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_ops.h' 2025-06-01T21:27:42.4497278Z adding 'torch/include/ATen/ops/linalg_ldl_factor_native.h' 2025-06-01T21:27:42.4500441Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ops.h' 2025-06-01T21:27:42.4503523Z adding 'torch/include/ATen/ops/linalg_ldl_solve.h' 2025-06-01T21:27:42.4506865Z adding 'torch/include/ATen/ops/linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.4509767Z adding 'torch/include/ATen/ops/linalg_ldl_solve_cpu_dispatch.h' 2025-06-01T21:27:42.4513235Z adding 'torch/include/ATen/ops/linalg_ldl_solve_cuda_dispatch.h' 2025-06-01T21:27:42.4516213Z adding 'torch/include/ATen/ops/linalg_ldl_solve_meta.h' 2025-06-01T21:27:42.4519288Z adding 'torch/include/ATen/ops/linalg_ldl_solve_meta_dispatch.h' 2025-06-01T21:27:42.4522268Z adding 'torch/include/ATen/ops/linalg_ldl_solve_native.h' 2025-06-01T21:27:42.4525421Z adding 'torch/include/ATen/ops/linalg_ldl_solve_ops.h' 2025-06-01T21:27:42.4528639Z adding 'torch/include/ATen/ops/linalg_lstsq.h' 2025-06-01T21:27:42.4531897Z adding 'torch/include/ATen/ops/linalg_lstsq_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.4534928Z adding 'torch/include/ATen/ops/linalg_lstsq_cpu_dispatch.h' 2025-06-01T21:27:42.4538112Z adding 'torch/include/ATen/ops/linalg_lstsq_cuda_dispatch.h' 2025-06-01T21:27:42.4542203Z adding 'torch/include/ATen/ops/linalg_lstsq_native.h' 2025-06-01T21:27:42.4544676Z adding 'torch/include/ATen/ops/linalg_lstsq_ops.h' 2025-06-01T21:27:42.4548002Z adding 'torch/include/ATen/ops/linalg_lu.h' 2025-06-01T21:27:42.4551460Z adding 'torch/include/ATen/ops/linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.4554397Z adding 'torch/include/ATen/ops/linalg_lu_cpu_dispatch.h' 2025-06-01T21:27:42.4557478Z adding 'torch/include/ATen/ops/linalg_lu_cuda_dispatch.h' 2025-06-01T21:27:42.4561613Z adding 'torch/include/ATen/ops/linalg_lu_factor.h' 2025-06-01T21:27:42.4565134Z adding 'torch/include/ATen/ops/linalg_lu_factor_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.4568067Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex.h' 2025-06-01T21:27:42.4571509Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.4574400Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_cpu_dispatch.h' 2025-06-01T21:27:42.4577475Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_cuda_dispatch.h' 2025-06-01T21:27:42.4580423Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_meta.h' 2025-06-01T21:27:42.4583625Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_meta_dispatch.h' 2025-06-01T21:27:42.4586650Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_native.h' 2025-06-01T21:27:42.4589846Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_ops.h' 2025-06-01T21:27:42.4593002Z adding 'torch/include/ATen/ops/linalg_lu_factor_native.h' 2025-06-01T21:27:42.4596230Z adding 'torch/include/ATen/ops/linalg_lu_factor_ops.h' 2025-06-01T21:27:42.4599876Z adding 'torch/include/ATen/ops/linalg_lu_meta.h' 2025-06-01T21:27:42.4602716Z adding 'torch/include/ATen/ops/linalg_lu_meta_dispatch.h' 2025-06-01T21:27:42.4605703Z adding 'torch/include/ATen/ops/linalg_lu_native.h' 2025-06-01T21:27:42.4608888Z adding 'torch/include/ATen/ops/linalg_lu_ops.h' 2025-06-01T21:27:42.4612038Z adding 'torch/include/ATen/ops/linalg_lu_solve.h' 2025-06-01T21:27:42.4615370Z adding 'torch/include/ATen/ops/linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.4618253Z adding 'torch/include/ATen/ops/linalg_lu_solve_cpu_dispatch.h' 2025-06-01T21:27:42.4621326Z adding 'torch/include/ATen/ops/linalg_lu_solve_cuda_dispatch.h' 2025-06-01T21:27:42.4624279Z adding 'torch/include/ATen/ops/linalg_lu_solve_meta.h' 2025-06-01T21:27:42.4627349Z adding 'torch/include/ATen/ops/linalg_lu_solve_meta_dispatch.h' 2025-06-01T21:27:42.4630282Z adding 'torch/include/ATen/ops/linalg_lu_solve_native.h' 2025-06-01T21:27:42.4633649Z adding 'torch/include/ATen/ops/linalg_lu_solve_ops.h' 2025-06-01T21:27:42.4636754Z adding 'torch/include/ATen/ops/linalg_matmul.h' 2025-06-01T21:27:42.4639973Z adding 'torch/include/ATen/ops/linalg_matmul_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.4642826Z adding 'torch/include/ATen/ops/linalg_matmul_native.h' 2025-06-01T21:27:42.4645959Z adding 'torch/include/ATen/ops/linalg_matmul_ops.h' 2025-06-01T21:27:42.4649021Z adding 'torch/include/ATen/ops/linalg_matrix_exp.h' 2025-06-01T21:27:42.4652297Z adding 'torch/include/ATen/ops/linalg_matrix_exp_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.4655214Z adding 'torch/include/ATen/ops/linalg_matrix_exp_cpu_dispatch.h' 2025-06-01T21:27:42.4658230Z adding 'torch/include/ATen/ops/linalg_matrix_exp_cuda_dispatch.h' 2025-06-01T21:27:42.4661186Z adding 'torch/include/ATen/ops/linalg_matrix_exp_native.h' 2025-06-01T21:27:42.4664293Z adding 'torch/include/ATen/ops/linalg_matrix_exp_ops.h' 2025-06-01T21:27:42.4667553Z adding 'torch/include/ATen/ops/linalg_matrix_norm.h' 2025-06-01T21:27:42.4671038Z adding 'torch/include/ATen/ops/linalg_matrix_norm_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.4674084Z adding 'torch/include/ATen/ops/linalg_matrix_norm_native.h' 2025-06-01T21:27:42.4677750Z adding 'torch/include/ATen/ops/linalg_matrix_norm_ops.h' 2025-06-01T21:27:42.4680927Z adding 'torch/include/ATen/ops/linalg_matrix_power.h' 2025-06-01T21:27:42.4684239Z adding 'torch/include/ATen/ops/linalg_matrix_power_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.4687102Z adding 'torch/include/ATen/ops/linalg_matrix_power_native.h' 2025-06-01T21:27:42.4690242Z adding 'torch/include/ATen/ops/linalg_matrix_power_ops.h' 2025-06-01T21:27:42.4693652Z adding 'torch/include/ATen/ops/linalg_matrix_rank.h' 2025-06-01T21:27:42.4697151Z adding 'torch/include/ATen/ops/linalg_matrix_rank_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.4700293Z adding 'torch/include/ATen/ops/linalg_matrix_rank_native.h' 2025-06-01T21:27:42.4704415Z adding 'torch/include/ATen/ops/linalg_matrix_rank_ops.h' 2025-06-01T21:27:42.4707232Z adding 'torch/include/ATen/ops/linalg_multi_dot.h' 2025-06-01T21:27:42.4710541Z adding 'torch/include/ATen/ops/linalg_multi_dot_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.4713460Z adding 'torch/include/ATen/ops/linalg_multi_dot_native.h' 2025-06-01T21:27:42.4716587Z adding 'torch/include/ATen/ops/linalg_multi_dot_ops.h' 2025-06-01T21:27:42.4719865Z adding 'torch/include/ATen/ops/linalg_norm.h' 2025-06-01T21:27:42.4723299Z adding 'torch/include/ATen/ops/linalg_norm_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.4726346Z adding 'torch/include/ATen/ops/linalg_norm_native.h' 2025-06-01T21:27:42.4729703Z adding 'torch/include/ATen/ops/linalg_norm_ops.h' 2025-06-01T21:27:42.4733196Z adding 'torch/include/ATen/ops/linalg_pinv.h' 2025-06-01T21:27:42.4736578Z adding 'torch/include/ATen/ops/linalg_pinv_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.4739737Z adding 'torch/include/ATen/ops/linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.4742772Z adding 'torch/include/ATen/ops/linalg_pinv_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.4745815Z adding 'torch/include/ATen/ops/linalg_pinv_native.h' 2025-06-01T21:27:42.4749450Z adding 'torch/include/ATen/ops/linalg_pinv_ops.h' 2025-06-01T21:27:42.4752790Z adding 'torch/include/ATen/ops/linalg_qr.h' 2025-06-01T21:27:42.4756143Z adding 'torch/include/ATen/ops/linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.4759058Z adding 'torch/include/ATen/ops/linalg_qr_cpu_dispatch.h' 2025-06-01T21:27:42.4762178Z adding 'torch/include/ATen/ops/linalg_qr_cuda_dispatch.h' 2025-06-01T21:27:42.4765152Z adding 'torch/include/ATen/ops/linalg_qr_meta.h' 2025-06-01T21:27:42.4768308Z adding 'torch/include/ATen/ops/linalg_qr_meta_dispatch.h' 2025-06-01T21:27:42.4771300Z adding 'torch/include/ATen/ops/linalg_qr_native.h' 2025-06-01T21:27:42.4774501Z adding 'torch/include/ATen/ops/linalg_qr_ops.h' 2025-06-01T21:27:42.4777613Z adding 'torch/include/ATen/ops/linalg_slogdet.h' 2025-06-01T21:27:42.4780858Z adding 'torch/include/ATen/ops/linalg_slogdet_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.4783741Z adding 'torch/include/ATen/ops/linalg_slogdet_native.h' 2025-06-01T21:27:42.4786887Z adding 'torch/include/ATen/ops/linalg_slogdet_ops.h' 2025-06-01T21:27:42.4789992Z adding 'torch/include/ATen/ops/linalg_solve.h' 2025-06-01T21:27:42.4793401Z adding 'torch/include/ATen/ops/linalg_solve_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.4796432Z adding 'torch/include/ATen/ops/linalg_solve_ex.h' 2025-06-01T21:27:42.4799741Z adding 'torch/include/ATen/ops/linalg_solve_ex_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.4802900Z adding 'torch/include/ATen/ops/linalg_solve_ex_native.h' 2025-06-01T21:27:42.4807070Z adding 'torch/include/ATen/ops/linalg_solve_ex_ops.h' 2025-06-01T21:27:42.4809310Z adding 'torch/include/ATen/ops/linalg_solve_native.h' 2025-06-01T21:27:42.4813080Z adding 'torch/include/ATen/ops/linalg_solve_ops.h' 2025-06-01T21:27:42.4815801Z adding 'torch/include/ATen/ops/linalg_solve_triangular.h' 2025-06-01T21:27:42.4819177Z adding 'torch/include/ATen/ops/linalg_solve_triangular_cpu_dispatch.h' 2025-06-01T21:27:42.4822316Z adding 'torch/include/ATen/ops/linalg_solve_triangular_cuda_dispatch.h' 2025-06-01T21:27:42.4825482Z adding 'torch/include/ATen/ops/linalg_solve_triangular_native.h' 2025-06-01T21:27:42.4828712Z adding 'torch/include/ATen/ops/linalg_solve_triangular_ops.h' 2025-06-01T21:27:42.4832144Z adding 'torch/include/ATen/ops/linalg_svd.h' 2025-06-01T21:27:42.4836049Z adding 'torch/include/ATen/ops/linalg_svd_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.4838559Z adding 'torch/include/ATen/ops/linalg_svd_native.h' 2025-06-01T21:27:42.4841989Z adding 'torch/include/ATen/ops/linalg_svd_ops.h' 2025-06-01T21:27:42.4845160Z adding 'torch/include/ATen/ops/linalg_svdvals.h' 2025-06-01T21:27:42.4848694Z adding 'torch/include/ATen/ops/linalg_svdvals_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.4851496Z adding 'torch/include/ATen/ops/linalg_svdvals_native.h' 2025-06-01T21:27:42.4855143Z adding 'torch/include/ATen/ops/linalg_svdvals_ops.h' 2025-06-01T21:27:42.4858814Z adding 'torch/include/ATen/ops/linalg_tensorinv.h' 2025-06-01T21:27:42.4861615Z adding 'torch/include/ATen/ops/linalg_tensorinv_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.4864993Z adding 'torch/include/ATen/ops/linalg_tensorinv_native.h' 2025-06-01T21:27:42.4868167Z adding 'torch/include/ATen/ops/linalg_tensorinv_ops.h' 2025-06-01T21:27:42.4871596Z adding 'torch/include/ATen/ops/linalg_tensorsolve.h' 2025-06-01T21:27:42.4875481Z adding 'torch/include/ATen/ops/linalg_tensorsolve_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.4877947Z adding 'torch/include/ATen/ops/linalg_tensorsolve_native.h' 2025-06-01T21:27:42.4881946Z adding 'torch/include/ATen/ops/linalg_tensorsolve_ops.h' 2025-06-01T21:27:42.4884501Z adding 'torch/include/ATen/ops/linalg_vander.h' 2025-06-01T21:27:42.4887906Z adding 'torch/include/ATen/ops/linalg_vander_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.4890859Z adding 'torch/include/ATen/ops/linalg_vander_native.h' 2025-06-01T21:27:42.4895627Z adding 'torch/include/ATen/ops/linalg_vander_ops.h' 2025-06-01T21:27:42.4897528Z adding 'torch/include/ATen/ops/linalg_vecdot.h' 2025-06-01T21:27:42.4933816Z adding 'torch/include/ATen/ops/linalg_vecdot_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.4933990Z adding 'torch/include/ATen/ops/linalg_vecdot_native.h' 2025-06-01T21:27:42.4934124Z adding 'torch/include/ATen/ops/linalg_vecdot_ops.h' 2025-06-01T21:27:42.4934250Z adding 'torch/include/ATen/ops/linalg_vector_norm.h' 2025-06-01T21:27:42.4934605Z adding 'torch/include/ATen/ops/linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.4934794Z adding 'torch/include/ATen/ops/linalg_vector_norm_cpu_dispatch.h' 2025-06-01T21:27:42.4934997Z adding 'torch/include/ATen/ops/linalg_vector_norm_cuda_dispatch.h' 2025-06-01T21:27:42.4935255Z adding 'torch/include/ATen/ops/linalg_vector_norm_meta.h' 2025-06-01T21:27:42.4935452Z adding 'torch/include/ATen/ops/linalg_vector_norm_meta_dispatch.h' 2025-06-01T21:27:42.4935621Z adding 'torch/include/ATen/ops/linalg_vector_norm_native.h' 2025-06-01T21:27:42.4937222Z adding 'torch/include/ATen/ops/linalg_vector_norm_ops.h' 2025-06-01T21:27:42.4940551Z adding 'torch/include/ATen/ops/linear.h' 2025-06-01T21:27:42.4943785Z adding 'torch/include/ATen/ops/linear_backward.h' 2025-06-01T21:27:42.4947346Z adding 'torch/include/ATen/ops/linear_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.4951720Z adding 'torch/include/ATen/ops/linear_backward_native.h' 2025-06-01T21:27:42.4953942Z adding 'torch/include/ATen/ops/linear_backward_ops.h' 2025-06-01T21:27:42.4958006Z adding 'torch/include/ATen/ops/linear_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.4960491Z adding 'torch/include/ATen/ops/linear_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.4963367Z adding 'torch/include/ATen/ops/linear_native.h' 2025-06-01T21:27:42.4966532Z adding 'torch/include/ATen/ops/linear_ops.h' 2025-06-01T21:27:42.4970356Z adding 'torch/include/ATen/ops/linspace.h' 2025-06-01T21:27:42.4973973Z adding 'torch/include/ATen/ops/linspace_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.4977000Z adding 'torch/include/ATen/ops/linspace_cpu_dispatch.h' 2025-06-01T21:27:42.4980068Z adding 'torch/include/ATen/ops/linspace_cuda_dispatch.h' 2025-06-01T21:27:42.4983104Z adding 'torch/include/ATen/ops/linspace_meta_dispatch.h' 2025-06-01T21:27:42.4986717Z adding 'torch/include/ATen/ops/linspace_native.h' 2025-06-01T21:27:42.4990190Z adding 'torch/include/ATen/ops/linspace_ops.h' 2025-06-01T21:27:42.4993611Z adding 'torch/include/ATen/ops/log.h' 2025-06-01T21:27:42.4996684Z adding 'torch/include/ATen/ops/log10.h' 2025-06-01T21:27:42.5000148Z adding 'torch/include/ATen/ops/log10_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.5002919Z adding 'torch/include/ATen/ops/log10_cpu_dispatch.h' 2025-06-01T21:27:42.5006014Z adding 'torch/include/ATen/ops/log10_cuda_dispatch.h' 2025-06-01T21:27:42.5008944Z adding 'torch/include/ATen/ops/log10_meta.h' 2025-06-01T21:27:42.5011981Z adding 'torch/include/ATen/ops/log10_meta_dispatch.h' 2025-06-01T21:27:42.5014935Z adding 'torch/include/ATen/ops/log10_native.h' 2025-06-01T21:27:42.5018257Z adding 'torch/include/ATen/ops/log10_ops.h' 2025-06-01T21:27:42.5021395Z adding 'torch/include/ATen/ops/log1p.h' 2025-06-01T21:27:42.5024658Z adding 'torch/include/ATen/ops/log1p_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.5027539Z adding 'torch/include/ATen/ops/log1p_cpu_dispatch.h' 2025-06-01T21:27:42.5030608Z adding 'torch/include/ATen/ops/log1p_cuda_dispatch.h' 2025-06-01T21:27:42.5033664Z adding 'torch/include/ATen/ops/log1p_meta.h' 2025-06-01T21:27:42.5036707Z adding 'torch/include/ATen/ops/log1p_meta_dispatch.h' 2025-06-01T21:27:42.5039785Z adding 'torch/include/ATen/ops/log1p_native.h' 2025-06-01T21:27:42.5042928Z adding 'torch/include/ATen/ops/log1p_ops.h' 2025-06-01T21:27:42.5046043Z adding 'torch/include/ATen/ops/log2.h' 2025-06-01T21:27:42.5049361Z adding 'torch/include/ATen/ops/log2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.5052371Z adding 'torch/include/ATen/ops/log2_cpu_dispatch.h' 2025-06-01T21:27:42.5055801Z adding 'torch/include/ATen/ops/log2_cuda_dispatch.h' 2025-06-01T21:27:42.5058757Z adding 'torch/include/ATen/ops/log2_meta.h' 2025-06-01T21:27:42.5061841Z adding 'torch/include/ATen/ops/log2_meta_dispatch.h' 2025-06-01T21:27:42.5064809Z adding 'torch/include/ATen/ops/log2_native.h' 2025-06-01T21:27:42.5067969Z adding 'torch/include/ATen/ops/log2_ops.h' 2025-06-01T21:27:42.5071395Z adding 'torch/include/ATen/ops/log_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.5074334Z adding 'torch/include/ATen/ops/log_cpu_dispatch.h' 2025-06-01T21:27:42.5077415Z adding 'torch/include/ATen/ops/log_cuda_dispatch.h' 2025-06-01T21:27:42.5080340Z adding 'torch/include/ATen/ops/log_meta.h' 2025-06-01T21:27:42.5083369Z adding 'torch/include/ATen/ops/log_meta_dispatch.h' 2025-06-01T21:27:42.5086333Z adding 'torch/include/ATen/ops/log_native.h' 2025-06-01T21:27:42.5089453Z adding 'torch/include/ATen/ops/log_normal.h' 2025-06-01T21:27:42.5092735Z adding 'torch/include/ATen/ops/log_normal_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.5095780Z adding 'torch/include/ATen/ops/log_normal_cpu_dispatch.h' 2025-06-01T21:27:42.5098866Z adding 'torch/include/ATen/ops/log_normal_cuda_dispatch.h' 2025-06-01T21:27:42.5102279Z adding 'torch/include/ATen/ops/log_normal_meta_dispatch.h' 2025-06-01T21:27:42.5105286Z adding 'torch/include/ATen/ops/log_normal_native.h' 2025-06-01T21:27:42.5108570Z adding 'torch/include/ATen/ops/log_normal_ops.h' 2025-06-01T21:27:42.5111871Z adding 'torch/include/ATen/ops/log_ops.h' 2025-06-01T21:27:42.5115024Z adding 'torch/include/ATen/ops/log_sigmoid.h' 2025-06-01T21:27:42.5118186Z adding 'torch/include/ATen/ops/log_sigmoid_backward.h' 2025-06-01T21:27:42.5121474Z adding 'torch/include/ATen/ops/log_sigmoid_backward_cpu_dispatch.h' 2025-06-01T21:27:42.5124581Z adding 'torch/include/ATen/ops/log_sigmoid_backward_cuda_dispatch.h' 2025-06-01T21:27:42.5127614Z adding 'torch/include/ATen/ops/log_sigmoid_backward_native.h' 2025-06-01T21:27:42.5130821Z adding 'torch/include/ATen/ops/log_sigmoid_backward_ops.h' 2025-06-01T21:27:42.5134072Z adding 'torch/include/ATen/ops/log_sigmoid_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.5137013Z adding 'torch/include/ATen/ops/log_sigmoid_forward.h' 2025-06-01T21:27:42.5140161Z adding 'torch/include/ATen/ops/log_sigmoid_forward_cpu_dispatch.h' 2025-06-01T21:27:42.5143299Z adding 'torch/include/ATen/ops/log_sigmoid_forward_cuda_dispatch.h' 2025-06-01T21:27:42.5146338Z adding 'torch/include/ATen/ops/log_sigmoid_forward_native.h' 2025-06-01T21:27:42.5149605Z adding 'torch/include/ATen/ops/log_sigmoid_forward_ops.h' 2025-06-01T21:27:42.5152663Z adding 'torch/include/ATen/ops/log_sigmoid_native.h' 2025-06-01T21:27:42.5156365Z adding 'torch/include/ATen/ops/log_sigmoid_ops.h' 2025-06-01T21:27:42.5158985Z adding 'torch/include/ATen/ops/log_softmax.h' 2025-06-01T21:27:42.5162291Z adding 'torch/include/ATen/ops/log_softmax_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.5165383Z adding 'torch/include/ATen/ops/log_softmax_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.5168706Z adding 'torch/include/ATen/ops/log_softmax_native.h' 2025-06-01T21:27:42.5171613Z adding 'torch/include/ATen/ops/log_softmax_ops.h' 2025-06-01T21:27:42.5174742Z adding 'torch/include/ATen/ops/logaddexp.h' 2025-06-01T21:27:42.5177864Z adding 'torch/include/ATen/ops/logaddexp2.h' 2025-06-01T21:27:42.5181124Z adding 'torch/include/ATen/ops/logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.5184102Z adding 'torch/include/ATen/ops/logaddexp2_cpu_dispatch.h' 2025-06-01T21:27:42.5187122Z adding 'torch/include/ATen/ops/logaddexp2_cuda_dispatch.h' 2025-06-01T21:27:42.5190063Z adding 'torch/include/ATen/ops/logaddexp2_meta.h' 2025-06-01T21:27:42.5193385Z adding 'torch/include/ATen/ops/logaddexp2_meta_dispatch.h' 2025-06-01T21:27:42.5196381Z adding 'torch/include/ATen/ops/logaddexp2_native.h' 2025-06-01T21:27:42.5199529Z adding 'torch/include/ATen/ops/logaddexp2_ops.h' 2025-06-01T21:27:42.5202847Z adding 'torch/include/ATen/ops/logaddexp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.5205849Z adding 'torch/include/ATen/ops/logaddexp_cpu_dispatch.h' 2025-06-01T21:27:42.5209233Z adding 'torch/include/ATen/ops/logaddexp_cuda_dispatch.h' 2025-06-01T21:27:42.5212012Z adding 'torch/include/ATen/ops/logaddexp_meta.h' 2025-06-01T21:27:42.5215149Z adding 'torch/include/ATen/ops/logaddexp_meta_dispatch.h' 2025-06-01T21:27:42.5218050Z adding 'torch/include/ATen/ops/logaddexp_native.h' 2025-06-01T21:27:42.5221255Z adding 'torch/include/ATen/ops/logaddexp_ops.h' 2025-06-01T21:27:42.5224462Z adding 'torch/include/ATen/ops/logcumsumexp.h' 2025-06-01T21:27:42.5227697Z adding 'torch/include/ATen/ops/logcumsumexp_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.5230901Z adding 'torch/include/ATen/ops/logcumsumexp_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.5233815Z adding 'torch/include/ATen/ops/logcumsumexp_native.h' 2025-06-01T21:27:42.5237484Z adding 'torch/include/ATen/ops/logcumsumexp_ops.h' 2025-06-01T21:27:42.5240549Z adding 'torch/include/ATen/ops/logdet.h' 2025-06-01T21:27:42.5243769Z adding 'torch/include/ATen/ops/logdet_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.5246595Z adding 'torch/include/ATen/ops/logdet_native.h' 2025-06-01T21:27:42.5249663Z adding 'torch/include/ATen/ops/logdet_ops.h' 2025-06-01T21:27:42.5252730Z adding 'torch/include/ATen/ops/logical_and.h' 2025-06-01T21:27:42.5255949Z adding 'torch/include/ATen/ops/logical_and_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.5258895Z adding 'torch/include/ATen/ops/logical_and_cpu_dispatch.h' 2025-06-01T21:27:42.5261928Z adding 'torch/include/ATen/ops/logical_and_cuda_dispatch.h' 2025-06-01T21:27:42.5264856Z adding 'torch/include/ATen/ops/logical_and_native.h' 2025-06-01T21:27:42.5268045Z adding 'torch/include/ATen/ops/logical_and_ops.h' 2025-06-01T21:27:42.5271308Z adding 'torch/include/ATen/ops/logical_not.h' 2025-06-01T21:27:42.5274563Z adding 'torch/include/ATen/ops/logical_not_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.5277477Z adding 'torch/include/ATen/ops/logical_not_cpu_dispatch.h' 2025-06-01T21:27:42.5280548Z adding 'torch/include/ATen/ops/logical_not_cuda_dispatch.h' 2025-06-01T21:27:42.5283524Z adding 'torch/include/ATen/ops/logical_not_native.h' 2025-06-01T21:27:42.5286729Z adding 'torch/include/ATen/ops/logical_not_ops.h' 2025-06-01T21:27:42.5289912Z adding 'torch/include/ATen/ops/logical_or.h' 2025-06-01T21:27:42.5293132Z adding 'torch/include/ATen/ops/logical_or_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.5296183Z adding 'torch/include/ATen/ops/logical_or_cpu_dispatch.h' 2025-06-01T21:27:42.5299254Z adding 'torch/include/ATen/ops/logical_or_cuda_dispatch.h' 2025-06-01T21:27:42.5302102Z adding 'torch/include/ATen/ops/logical_or_native.h' 2025-06-01T21:27:42.5305292Z adding 'torch/include/ATen/ops/logical_or_ops.h' 2025-06-01T21:27:42.5308378Z adding 'torch/include/ATen/ops/logical_xor.h' 2025-06-01T21:27:42.5311973Z adding 'torch/include/ATen/ops/logical_xor_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.5314977Z adding 'torch/include/ATen/ops/logical_xor_cpu_dispatch.h' 2025-06-01T21:27:42.5318457Z adding 'torch/include/ATen/ops/logical_xor_cuda_dispatch.h' 2025-06-01T21:27:42.5321899Z adding 'torch/include/ATen/ops/logical_xor_native.h' 2025-06-01T21:27:42.5324570Z adding 'torch/include/ATen/ops/logical_xor_ops.h' 2025-06-01T21:27:42.5327908Z adding 'torch/include/ATen/ops/logit.h' 2025-06-01T21:27:42.5331072Z adding 'torch/include/ATen/ops/logit_backward.h' 2025-06-01T21:27:42.5334782Z adding 'torch/include/ATen/ops/logit_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.5337676Z adding 'torch/include/ATen/ops/logit_backward_cpu_dispatch.h' 2025-06-01T21:27:42.5341038Z adding 'torch/include/ATen/ops/logit_backward_cuda_dispatch.h' 2025-06-01T21:27:42.5344841Z adding 'torch/include/ATen/ops/logit_backward_meta.h' 2025-06-01T21:27:42.5347463Z adding 'torch/include/ATen/ops/logit_backward_meta_dispatch.h' 2025-06-01T21:27:42.5350625Z adding 'torch/include/ATen/ops/logit_backward_native.h' 2025-06-01T21:27:42.5353948Z adding 'torch/include/ATen/ops/logit_backward_ops.h' 2025-06-01T21:27:42.5357216Z adding 'torch/include/ATen/ops/logit_cpu_dispatch.h' 2025-06-01T21:27:42.5360273Z adding 'torch/include/ATen/ops/logit_cuda_dispatch.h' 2025-06-01T21:27:42.5363475Z adding 'torch/include/ATen/ops/logit_meta_dispatch.h' 2025-06-01T21:27:42.5366470Z adding 'torch/include/ATen/ops/logit_native.h' 2025-06-01T21:27:42.5369908Z adding 'torch/include/ATen/ops/logit_ops.h' 2025-06-01T21:27:42.5373788Z adding 'torch/include/ATen/ops/logspace.h' 2025-06-01T21:27:42.5377448Z adding 'torch/include/ATen/ops/logspace_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.5380713Z adding 'torch/include/ATen/ops/logspace_cpu_dispatch.h' 2025-06-01T21:27:42.5384772Z adding 'torch/include/ATen/ops/logspace_cuda_dispatch.h' 2025-06-01T21:27:42.5387055Z adding 'torch/include/ATen/ops/logspace_meta_dispatch.h' 2025-06-01T21:27:42.5390649Z adding 'torch/include/ATen/ops/logspace_native.h' 2025-06-01T21:27:42.5394278Z adding 'torch/include/ATen/ops/logspace_ops.h' 2025-06-01T21:27:42.5408404Z adding 'torch/include/ATen/ops/logsumexp.h' 2025-06-01T21:27:42.5408693Z adding 'torch/include/ATen/ops/logsumexp_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.5409022Z adding 'torch/include/ATen/ops/logsumexp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.5409283Z adding 'torch/include/ATen/ops/logsumexp_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.5412053Z adding 'torch/include/ATen/ops/logsumexp_native.h' 2025-06-01T21:27:42.5415537Z adding 'torch/include/ATen/ops/logsumexp_ops.h' 2025-06-01T21:27:42.5426319Z adding 'torch/include/ATen/ops/lshift.h' 2025-06-01T21:27:42.5426924Z adding 'torch/include/ATen/ops/lshift_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.5427076Z adding 'torch/include/ATen/ops/lshift_cpu_dispatch.h' 2025-06-01T21:27:42.5429842Z adding 'torch/include/ATen/ops/lshift_cuda_dispatch.h' 2025-06-01T21:27:42.5433072Z adding 'torch/include/ATen/ops/lshift_meta_dispatch.h' 2025-06-01T21:27:42.5436387Z adding 'torch/include/ATen/ops/lshift_native.h' 2025-06-01T21:27:42.5439909Z adding 'torch/include/ATen/ops/lshift_ops.h' 2025-06-01T21:27:42.5443185Z adding 'torch/include/ATen/ops/lstm.h' 2025-06-01T21:27:42.5448462Z adding 'torch/include/ATen/ops/lstm_cell.h' 2025-06-01T21:27:42.5450255Z adding 'torch/include/ATen/ops/lstm_cell_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.5455225Z adding 'torch/include/ATen/ops/lstm_cell_native.h' 2025-06-01T21:27:42.5456659Z adding 'torch/include/ATen/ops/lstm_cell_ops.h' 2025-06-01T21:27:42.5460823Z adding 'torch/include/ATen/ops/lstm_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.5463438Z adding 'torch/include/ATen/ops/lstm_mps_backward.h' 2025-06-01T21:27:42.5467068Z adding 'torch/include/ATen/ops/lstm_mps_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.5470131Z adding 'torch/include/ATen/ops/lstm_mps_backward_native.h' 2025-06-01T21:27:42.5473959Z adding 'torch/include/ATen/ops/lstm_mps_backward_ops.h' 2025-06-01T21:27:42.5477136Z adding 'torch/include/ATen/ops/lstm_native.h' 2025-06-01T21:27:42.5480446Z adding 'torch/include/ATen/ops/lstm_ops.h' 2025-06-01T21:27:42.5483840Z adding 'torch/include/ATen/ops/lt.h' 2025-06-01T21:27:42.5487213Z adding 'torch/include/ATen/ops/lt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.5490140Z adding 'torch/include/ATen/ops/lt_cpu_dispatch.h' 2025-06-01T21:27:42.5493311Z adding 'torch/include/ATen/ops/lt_cuda_dispatch.h' 2025-06-01T21:27:42.5496338Z adding 'torch/include/ATen/ops/lt_meta.h' 2025-06-01T21:27:42.5499772Z adding 'torch/include/ATen/ops/lt_meta_dispatch.h' 2025-06-01T21:27:42.5502797Z adding 'torch/include/ATen/ops/lt_native.h' 2025-06-01T21:27:42.5506198Z adding 'torch/include/ATen/ops/lt_ops.h' 2025-06-01T21:27:42.5509362Z adding 'torch/include/ATen/ops/lu_solve.h' 2025-06-01T21:27:42.5512676Z adding 'torch/include/ATen/ops/lu_solve_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.5515542Z adding 'torch/include/ATen/ops/lu_solve_native.h' 2025-06-01T21:27:42.5518745Z adding 'torch/include/ATen/ops/lu_solve_ops.h' 2025-06-01T21:27:42.5521980Z adding 'torch/include/ATen/ops/lu_unpack.h' 2025-06-01T21:27:42.5525298Z adding 'torch/include/ATen/ops/lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.5528299Z adding 'torch/include/ATen/ops/lu_unpack_cpu_dispatch.h' 2025-06-01T21:27:42.5531686Z adding 'torch/include/ATen/ops/lu_unpack_cuda_dispatch.h' 2025-06-01T21:27:42.5534640Z adding 'torch/include/ATen/ops/lu_unpack_meta.h' 2025-06-01T21:27:42.5537793Z adding 'torch/include/ATen/ops/lu_unpack_meta_dispatch.h' 2025-06-01T21:27:42.5540815Z adding 'torch/include/ATen/ops/lu_unpack_native.h' 2025-06-01T21:27:42.5544150Z adding 'torch/include/ATen/ops/lu_unpack_ops.h' 2025-06-01T21:27:42.5547188Z adding 'torch/include/ATen/ops/mH.h' 2025-06-01T21:27:42.5550412Z adding 'torch/include/ATen/ops/mH_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.5553323Z adding 'torch/include/ATen/ops/mH_native.h' 2025-06-01T21:27:42.5556521Z adding 'torch/include/ATen/ops/mH_ops.h' 2025-06-01T21:27:42.5559494Z adding 'torch/include/ATen/ops/mT.h' 2025-06-01T21:27:42.5562653Z adding 'torch/include/ATen/ops/mT_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.5565479Z adding 'torch/include/ATen/ops/mT_native.h' 2025-06-01T21:27:42.5568527Z adding 'torch/include/ATen/ops/mT_ops.h' 2025-06-01T21:27:42.5571661Z adding 'torch/include/ATen/ops/margin_ranking_loss.h' 2025-06-01T21:27:42.5574922Z adding 'torch/include/ATen/ops/margin_ranking_loss_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.5577837Z adding 'torch/include/ATen/ops/margin_ranking_loss_native.h' 2025-06-01T21:27:42.5580938Z adding 'torch/include/ATen/ops/margin_ranking_loss_ops.h' 2025-06-01T21:27:42.5584207Z adding 'torch/include/ATen/ops/masked_fill.h' 2025-06-01T21:27:42.5587544Z adding 'torch/include/ATen/ops/masked_fill_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.5590500Z adding 'torch/include/ATen/ops/masked_fill_cpu_dispatch.h' 2025-06-01T21:27:42.5593657Z adding 'torch/include/ATen/ops/masked_fill_cuda_dispatch.h' 2025-06-01T21:27:42.5596694Z adding 'torch/include/ATen/ops/masked_fill_meta_dispatch.h' 2025-06-01T21:27:42.5599802Z adding 'torch/include/ATen/ops/masked_fill_native.h' 2025-06-01T21:27:42.5603261Z adding 'torch/include/ATen/ops/masked_fill_ops.h' 2025-06-01T21:27:42.5607167Z adding 'torch/include/ATen/ops/masked_scatter.h' 2025-06-01T21:27:42.5609660Z adding 'torch/include/ATen/ops/masked_scatter_backward.h' 2025-06-01T21:27:42.5613397Z adding 'torch/include/ATen/ops/masked_scatter_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.5616139Z adding 'torch/include/ATen/ops/masked_scatter_backward_native.h' 2025-06-01T21:27:42.5619228Z adding 'torch/include/ATen/ops/masked_scatter_backward_ops.h' 2025-06-01T21:27:42.5622475Z adding 'torch/include/ATen/ops/masked_scatter_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.5625406Z adding 'torch/include/ATen/ops/masked_scatter_cpu_dispatch.h' 2025-06-01T21:27:42.5628412Z adding 'torch/include/ATen/ops/masked_scatter_cuda_dispatch.h' 2025-06-01T21:27:42.5631524Z adding 'torch/include/ATen/ops/masked_scatter_meta_dispatch.h' 2025-06-01T21:27:42.5634488Z adding 'torch/include/ATen/ops/masked_scatter_native.h' 2025-06-01T21:27:42.5637728Z adding 'torch/include/ATen/ops/masked_scatter_ops.h' 2025-06-01T21:27:42.5641688Z adding 'torch/include/ATen/ops/masked_select.h' 2025-06-01T21:27:42.5644852Z adding 'torch/include/ATen/ops/masked_select_backward.h' 2025-06-01T21:27:42.5648087Z adding 'torch/include/ATen/ops/masked_select_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.5650943Z adding 'torch/include/ATen/ops/masked_select_backward_native.h' 2025-06-01T21:27:42.5654001Z adding 'torch/include/ATen/ops/masked_select_backward_ops.h' 2025-06-01T21:27:42.5657070Z adding 'torch/include/ATen/ops/masked_select_cpu_dispatch.h' 2025-06-01T21:27:42.5660145Z adding 'torch/include/ATen/ops/masked_select_cuda_dispatch.h' 2025-06-01T21:27:42.5663109Z adding 'torch/include/ATen/ops/masked_select_native.h' 2025-06-01T21:27:42.5666232Z adding 'torch/include/ATen/ops/masked_select_ops.h' 2025-06-01T21:27:42.5669304Z adding 'torch/include/ATen/ops/matmul.h' 2025-06-01T21:27:42.5672550Z adding 'torch/include/ATen/ops/matmul_backward.h' 2025-06-01T21:27:42.5675847Z adding 'torch/include/ATen/ops/matmul_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.5678745Z adding 'torch/include/ATen/ops/matmul_backward_native.h' 2025-06-01T21:27:42.5681950Z adding 'torch/include/ATen/ops/matmul_backward_ops.h' 2025-06-01T21:27:42.5685163Z adding 'torch/include/ATen/ops/matmul_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.5688017Z adding 'torch/include/ATen/ops/matmul_native.h' 2025-06-01T21:27:42.5691133Z adding 'torch/include/ATen/ops/matmul_ops.h' 2025-06-01T21:27:42.5694133Z adding 'torch/include/ATen/ops/matrix_H.h' 2025-06-01T21:27:42.5697360Z adding 'torch/include/ATen/ops/matrix_H_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.5700150Z adding 'torch/include/ATen/ops/matrix_H_native.h' 2025-06-01T21:27:42.5703229Z adding 'torch/include/ATen/ops/matrix_H_ops.h' 2025-06-01T21:27:42.5706240Z adding 'torch/include/ATen/ops/matrix_exp.h' 2025-06-01T21:27:42.5709329Z adding 'torch/include/ATen/ops/matrix_exp_backward.h' 2025-06-01T21:27:42.5713330Z adding 'torch/include/ATen/ops/matrix_exp_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.5715623Z adding 'torch/include/ATen/ops/matrix_exp_backward_native.h' 2025-06-01T21:27:42.5719038Z adding 'torch/include/ATen/ops/matrix_exp_backward_ops.h' 2025-06-01T21:27:42.5722046Z adding 'torch/include/ATen/ops/matrix_exp_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.5725054Z adding 'torch/include/ATen/ops/matrix_exp_native.h' 2025-06-01T21:27:42.5728083Z adding 'torch/include/ATen/ops/matrix_exp_ops.h' 2025-06-01T21:27:42.5731327Z adding 'torch/include/ATen/ops/matrix_power.h' 2025-06-01T21:27:42.5734580Z adding 'torch/include/ATen/ops/matrix_power_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.5737521Z adding 'torch/include/ATen/ops/matrix_power_native.h' 2025-06-01T21:27:42.5740654Z adding 'torch/include/ATen/ops/matrix_power_ops.h' 2025-06-01T21:27:42.5744214Z adding 'torch/include/ATen/ops/max.h' 2025-06-01T21:27:42.5748058Z adding 'torch/include/ATen/ops/max_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.5750951Z adding 'torch/include/ATen/ops/max_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.5754273Z adding 'torch/include/ATen/ops/max_cpu_dispatch.h' 2025-06-01T21:27:42.5757316Z adding 'torch/include/ATen/ops/max_cuda_dispatch.h' 2025-06-01T21:27:42.5760586Z adding 'torch/include/ATen/ops/max_meta.h' 2025-06-01T21:27:42.5763695Z adding 'torch/include/ATen/ops/max_meta_dispatch.h' 2025-06-01T21:27:42.5767013Z adding 'torch/include/ATen/ops/max_native.h' 2025-06-01T21:27:42.5770791Z adding 'torch/include/ATen/ops/max_ops.h' 2025-06-01T21:27:42.5774067Z adding 'torch/include/ATen/ops/max_pool1d.h' 2025-06-01T21:27:42.5777769Z adding 'torch/include/ATen/ops/max_pool1d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.5780733Z adding 'torch/include/ATen/ops/max_pool1d_native.h' 2025-06-01T21:27:42.5783896Z adding 'torch/include/ATen/ops/max_pool1d_ops.h' 2025-06-01T21:27:42.5786971Z adding 'torch/include/ATen/ops/max_pool1d_with_indices.h' 2025-06-01T21:27:42.5791974Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.5795096Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_native.h' 2025-06-01T21:27:42.5798814Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_ops.h' 2025-06-01T21:27:42.5801938Z adding 'torch/include/ATen/ops/max_pool2d.h' 2025-06-01T21:27:42.5805304Z adding 'torch/include/ATen/ops/max_pool2d_backward.h' 2025-06-01T21:27:42.5808679Z adding 'torch/include/ATen/ops/max_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.5811738Z adding 'torch/include/ATen/ops/max_pool2d_backward_native.h' 2025-06-01T21:27:42.5815130Z adding 'torch/include/ATen/ops/max_pool2d_backward_ops.h' 2025-06-01T21:27:42.5818654Z adding 'torch/include/ATen/ops/max_pool2d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.5821651Z adding 'torch/include/ATen/ops/max_pool2d_native.h' 2025-06-01T21:27:42.5824876Z adding 'torch/include/ATen/ops/max_pool2d_ops.h' 2025-06-01T21:27:42.5828256Z adding 'torch/include/ATen/ops/max_pool2d_with_indices.h' 2025-06-01T21:27:42.5831637Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward.h' 2025-06-01T21:27:42.5835256Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.5838266Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_cpu_dispatch.h' 2025-06-01T21:27:42.5841552Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_cuda_dispatch.h' 2025-06-01T21:27:42.5844725Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_meta.h' 2025-06-01T21:27:42.5847947Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_meta_dispatch.h' 2025-06-01T21:27:42.5851132Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_native.h' 2025-06-01T21:27:42.5854409Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_ops.h' 2025-06-01T21:27:42.5857918Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.5860972Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_cpu_dispatch.h' 2025-06-01T21:27:42.5864252Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_cuda_dispatch.h' 2025-06-01T21:27:42.5867635Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_meta.h' 2025-06-01T21:27:42.5870778Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_meta_dispatch.h' 2025-06-01T21:27:42.5873999Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_native.h' 2025-06-01T21:27:42.5877310Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_ops.h' 2025-06-01T21:27:42.5880544Z adding 'torch/include/ATen/ops/max_pool3d.h' 2025-06-01T21:27:42.5883922Z adding 'torch/include/ATen/ops/max_pool3d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.5886867Z adding 'torch/include/ATen/ops/max_pool3d_native.h' 2025-06-01T21:27:42.5890187Z adding 'torch/include/ATen/ops/max_pool3d_ops.h' 2025-06-01T21:27:42.5893398Z adding 'torch/include/ATen/ops/max_pool3d_with_indices.h' 2025-06-01T21:27:42.5896860Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward.h' 2025-06-01T21:27:42.5900029Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_cpu_dispatch.h' 2025-06-01T21:27:42.5903544Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_cuda_dispatch.h' 2025-06-01T21:27:42.5907060Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_native.h' 2025-06-01T21:27:42.5910922Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_ops.h' 2025-06-01T21:27:42.5914768Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_cpu_dispatch.h' 2025-06-01T21:27:42.5918215Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_cuda_dispatch.h' 2025-06-01T21:27:42.5921296Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_native.h' 2025-06-01T21:27:42.5924795Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_ops.h' 2025-06-01T21:27:42.5928270Z adding 'torch/include/ATen/ops/max_unpool2d.h' 2025-06-01T21:27:42.5931630Z adding 'torch/include/ATen/ops/max_unpool2d_cpu_dispatch.h' 2025-06-01T21:27:42.5935154Z adding 'torch/include/ATen/ops/max_unpool2d_cuda_dispatch.h' 2025-06-01T21:27:42.5938184Z adding 'torch/include/ATen/ops/max_unpool2d_native.h' 2025-06-01T21:27:42.5941571Z adding 'torch/include/ATen/ops/max_unpool2d_ops.h' 2025-06-01T21:27:42.5945012Z adding 'torch/include/ATen/ops/max_unpool3d.h' 2025-06-01T21:27:42.5948326Z adding 'torch/include/ATen/ops/max_unpool3d_cpu_dispatch.h' 2025-06-01T21:27:42.5951767Z adding 'torch/include/ATen/ops/max_unpool3d_cuda_dispatch.h' 2025-06-01T21:27:42.5954855Z adding 'torch/include/ATen/ops/max_unpool3d_native.h' 2025-06-01T21:27:42.5958097Z adding 'torch/include/ATen/ops/max_unpool3d_ops.h' 2025-06-01T21:27:42.5961263Z adding 'torch/include/ATen/ops/maximum.h' 2025-06-01T21:27:42.5964602Z adding 'torch/include/ATen/ops/maximum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.5967633Z adding 'torch/include/ATen/ops/maximum_cpu_dispatch.h' 2025-06-01T21:27:42.5970765Z adding 'torch/include/ATen/ops/maximum_cuda_dispatch.h' 2025-06-01T21:27:42.5973703Z adding 'torch/include/ATen/ops/maximum_meta.h' 2025-06-01T21:27:42.5976733Z adding 'torch/include/ATen/ops/maximum_meta_dispatch.h' 2025-06-01T21:27:42.5979646Z adding 'torch/include/ATen/ops/maximum_native.h' 2025-06-01T21:27:42.5982753Z adding 'torch/include/ATen/ops/maximum_ops.h' 2025-06-01T21:27:42.5986057Z adding 'torch/include/ATen/ops/mean.h' 2025-06-01T21:27:42.5989938Z adding 'torch/include/ATen/ops/mean_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.5993296Z adding 'torch/include/ATen/ops/mean_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.5996325Z adding 'torch/include/ATen/ops/mean_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.5999476Z adding 'torch/include/ATen/ops/mean_cpu_dispatch.h' 2025-06-01T21:27:42.6002609Z adding 'torch/include/ATen/ops/mean_cuda_dispatch.h' 2025-06-01T21:27:42.6005593Z adding 'torch/include/ATen/ops/mean_meta.h' 2025-06-01T21:27:42.6008790Z adding 'torch/include/ATen/ops/mean_meta_dispatch.h' 2025-06-01T21:27:42.6011850Z adding 'torch/include/ATen/ops/mean_native.h' 2025-06-01T21:27:42.6015324Z adding 'torch/include/ATen/ops/mean_ops.h' 2025-06-01T21:27:42.6018657Z adding 'torch/include/ATen/ops/median.h' 2025-06-01T21:27:42.6021963Z adding 'torch/include/ATen/ops/median_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.6025085Z adding 'torch/include/ATen/ops/median_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.6028088Z adding 'torch/include/ATen/ops/median_cpu_dispatch.h' 2025-06-01T21:27:42.6031243Z adding 'torch/include/ATen/ops/median_cuda_dispatch.h' 2025-06-01T21:27:42.6034306Z adding 'torch/include/ATen/ops/median_native.h' 2025-06-01T21:27:42.6037726Z adding 'torch/include/ATen/ops/median_ops.h' 2025-06-01T21:27:42.6040876Z adding 'torch/include/ATen/ops/meshgrid.h' 2025-06-01T21:27:42.6044179Z adding 'torch/include/ATen/ops/meshgrid_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.6047004Z adding 'torch/include/ATen/ops/meshgrid_native.h' 2025-06-01T21:27:42.6050062Z adding 'torch/include/ATen/ops/meshgrid_ops.h' 2025-06-01T21:27:42.6053545Z adding 'torch/include/ATen/ops/min.h' 2025-06-01T21:27:42.6057146Z adding 'torch/include/ATen/ops/min_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.6060342Z adding 'torch/include/ATen/ops/min_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.6063410Z adding 'torch/include/ATen/ops/min_cpu_dispatch.h' 2025-06-01T21:27:42.6066640Z adding 'torch/include/ATen/ops/min_cuda_dispatch.h' 2025-06-01T21:27:42.6069733Z adding 'torch/include/ATen/ops/min_meta.h' 2025-06-01T21:27:42.6073095Z adding 'torch/include/ATen/ops/min_meta_dispatch.h' 2025-06-01T21:27:42.6076212Z adding 'torch/include/ATen/ops/min_native.h' 2025-06-01T21:27:42.6079938Z adding 'torch/include/ATen/ops/min_ops.h' 2025-06-01T21:27:42.6083219Z adding 'torch/include/ATen/ops/minimum.h' 2025-06-01T21:27:42.6086696Z adding 'torch/include/ATen/ops/minimum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.6089657Z adding 'torch/include/ATen/ops/minimum_cpu_dispatch.h' 2025-06-01T21:27:42.6092790Z adding 'torch/include/ATen/ops/minimum_cuda_dispatch.h' 2025-06-01T21:27:42.6095884Z adding 'torch/include/ATen/ops/minimum_meta.h' 2025-06-01T21:27:42.6099009Z adding 'torch/include/ATen/ops/minimum_meta_dispatch.h' 2025-06-01T21:27:42.6102097Z adding 'torch/include/ATen/ops/minimum_native.h' 2025-06-01T21:27:42.6105258Z adding 'torch/include/ATen/ops/minimum_ops.h' 2025-06-01T21:27:42.6108624Z adding 'torch/include/ATen/ops/miopen_batch_norm.h' 2025-06-01T21:27:42.6112097Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward.h' 2025-06-01T21:27:42.6115735Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.6118860Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_cuda_dispatch.h' 2025-06-01T21:27:42.6121921Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_native.h' 2025-06-01T21:27:42.6125857Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_ops.h' 2025-06-01T21:27:42.6129133Z adding 'torch/include/ATen/ops/miopen_batch_norm_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.6132322Z adding 'torch/include/ATen/ops/miopen_batch_norm_cuda_dispatch.h' 2025-06-01T21:27:42.6135373Z adding 'torch/include/ATen/ops/miopen_batch_norm_native.h' 2025-06-01T21:27:42.6138800Z adding 'torch/include/ATen/ops/miopen_batch_norm_ops.h' 2025-06-01T21:27:42.6142585Z adding 'torch/include/ATen/ops/miopen_convolution.h' 2025-06-01T21:27:42.6146148Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu.h' 2025-06-01T21:27:42.6149572Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_cuda_dispatch.h' 2025-06-01T21:27:42.6152725Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_native.h' 2025-06-01T21:27:42.6156100Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_ops.h' 2025-06-01T21:27:42.6159463Z adding 'torch/include/ATen/ops/miopen_convolution_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.6162746Z adding 'torch/include/ATen/ops/miopen_convolution_cuda_dispatch.h' 2025-06-01T21:27:42.6165897Z adding 'torch/include/ATen/ops/miopen_convolution_native.h' 2025-06-01T21:27:42.6169226Z adding 'torch/include/ATen/ops/miopen_convolution_ops.h' 2025-06-01T21:27:42.6172685Z adding 'torch/include/ATen/ops/miopen_convolution_relu.h' 2025-06-01T21:27:42.6175925Z adding 'torch/include/ATen/ops/miopen_convolution_relu_cuda_dispatch.h' 2025-06-01T21:27:42.6179562Z adding 'torch/include/ATen/ops/miopen_convolution_relu_native.h' 2025-06-01T21:27:42.6182774Z adding 'torch/include/ATen/ops/miopen_convolution_relu_ops.h' 2025-06-01T21:27:42.6186652Z adding 'torch/include/ATen/ops/miopen_convolution_transpose.h' 2025-06-01T21:27:42.6190577Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.6193730Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_cuda_dispatch.h' 2025-06-01T21:27:42.6197102Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_native.h' 2025-06-01T21:27:42.6200457Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_ops.h' 2025-06-01T21:27:42.6204128Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution.h' 2025-06-01T21:27:42.6207839Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.6210997Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_cuda_dispatch.h' 2025-06-01T21:27:42.6214218Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_native.h' 2025-06-01T21:27:42.6217647Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_ops.h' 2025-06-01T21:27:42.6221140Z adding 'torch/include/ATen/ops/miopen_rnn.h' 2025-06-01T21:27:42.6224771Z adding 'torch/include/ATen/ops/miopen_rnn_backward.h' 2025-06-01T21:27:42.6228404Z adding 'torch/include/ATen/ops/miopen_rnn_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.6231786Z adding 'torch/include/ATen/ops/miopen_rnn_backward_cuda_dispatch.h' 2025-06-01T21:27:42.6235107Z adding 'torch/include/ATen/ops/miopen_rnn_backward_native.h' 2025-06-01T21:27:42.6238748Z adding 'torch/include/ATen/ops/miopen_rnn_backward_ops.h' 2025-06-01T21:27:42.6242357Z adding 'torch/include/ATen/ops/miopen_rnn_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.6245457Z adding 'torch/include/ATen/ops/miopen_rnn_cuda_dispatch.h' 2025-06-01T21:27:42.6248729Z adding 'torch/include/ATen/ops/miopen_rnn_native.h' 2025-06-01T21:27:42.6252326Z adding 'torch/include/ATen/ops/miopen_rnn_ops.h' 2025-06-01T21:27:42.6255517Z adding 'torch/include/ATen/ops/mish.h' 2025-06-01T21:27:42.6258719Z adding 'torch/include/ATen/ops/mish_backward.h' 2025-06-01T21:27:42.6262392Z adding 'torch/include/ATen/ops/mish_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.6273377Z adding 'torch/include/ATen/ops/mish_backward_cpu_dispatch.h' 2025-06-01T21:27:42.6276821Z adding 'torch/include/ATen/ops/mish_backward_cuda_dispatch.h' 2025-06-01T21:27:42.6279922Z adding 'torch/include/ATen/ops/mish_backward_native.h' 2025-06-01T21:27:42.6283275Z adding 'torch/include/ATen/ops/mish_backward_ops.h' 2025-06-01T21:27:42.6286673Z adding 'torch/include/ATen/ops/mish_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.6289712Z adding 'torch/include/ATen/ops/mish_cpu_dispatch.h' 2025-06-01T21:27:42.6292899Z adding 'torch/include/ATen/ops/mish_cuda_dispatch.h' 2025-06-01T21:27:42.6296009Z adding 'torch/include/ATen/ops/mish_meta.h' 2025-06-01T21:27:42.6299236Z adding 'torch/include/ATen/ops/mish_meta_dispatch.h' 2025-06-01T21:27:42.6302367Z adding 'torch/include/ATen/ops/mish_native.h' 2025-06-01T21:27:42.6305665Z adding 'torch/include/ATen/ops/mish_ops.h' 2025-06-01T21:27:42.6308983Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d.h' 2025-06-01T21:27:42.6312456Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward.h' 2025-06-01T21:27:42.6315971Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.6319004Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_native.h' 2025-06-01T21:27:42.6322386Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_ops.h' 2025-06-01T21:27:42.6325483Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_native.h' 2025-06-01T21:27:42.6328888Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_ops.h' 2025-06-01T21:27:42.6332458Z adding 'torch/include/ATen/ops/mkldnn_convolution.h' 2025-06-01T21:27:42.6336297Z adding 'torch/include/ATen/ops/mkldnn_convolution_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.6339354Z adding 'torch/include/ATen/ops/mkldnn_convolution_native.h' 2025-06-01T21:27:42.6342749Z adding 'torch/include/ATen/ops/mkldnn_convolution_ops.h' 2025-06-01T21:27:42.6346285Z adding 'torch/include/ATen/ops/mkldnn_linear.h' 2025-06-01T21:27:42.6349571Z adding 'torch/include/ATen/ops/mkldnn_linear_backward.h' 2025-06-01T21:27:42.6353125Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.6356277Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input.h' 2025-06-01T21:27:42.6359757Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.6362825Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_native.h' 2025-06-01T21:27:42.6366181Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_ops.h' 2025-06-01T21:27:42.6369402Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_native.h' 2025-06-01T21:27:42.6372771Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_ops.h' 2025-06-01T21:27:42.6376195Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights.h' 2025-06-01T21:27:42.6379582Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.6383036Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_native.h' 2025-06-01T21:27:42.6386491Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_ops.h' 2025-06-01T21:27:42.6389833Z adding 'torch/include/ATen/ops/mkldnn_linear_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.6393071Z adding 'torch/include/ATen/ops/mkldnn_linear_native.h' 2025-06-01T21:27:42.6396165Z adding 'torch/include/ATen/ops/mkldnn_linear_ops.h' 2025-06-01T21:27:42.6399377Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d.h' 2025-06-01T21:27:42.6403669Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward.h' 2025-06-01T21:27:42.6407264Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.6410291Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_native.h' 2025-06-01T21:27:42.6413626Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_ops.h' 2025-06-01T21:27:42.6416944Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.6419960Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_native.h' 2025-06-01T21:27:42.6423240Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_ops.h' 2025-06-01T21:27:42.6426471Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d.h' 2025-06-01T21:27:42.6429833Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward.h' 2025-06-01T21:27:42.6433565Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.6436617Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_native.h' 2025-06-01T21:27:42.6439956Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_ops.h' 2025-06-01T21:27:42.6443287Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.6446285Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_native.h' 2025-06-01T21:27:42.6449530Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_ops.h' 2025-06-01T21:27:42.6453309Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight.h' 2025-06-01T21:27:42.6456931Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.6459913Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_native.h' 2025-06-01T21:27:42.6463200Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_ops.h' 2025-06-01T21:27:42.6466853Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight.h' 2025-06-01T21:27:42.6470467Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.6473687Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_native.h' 2025-06-01T21:27:42.6477006Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_ops.h' 2025-06-01T21:27:42.6480367Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer.h' 2025-06-01T21:27:42.6484150Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward.h' 2025-06-01T21:27:42.6487689Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.6491191Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_cpu_dispatch.h' 2025-06-01T21:27:42.6494426Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_native.h' 2025-06-01T21:27:42.6498497Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_ops.h' 2025-06-01T21:27:42.6502179Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.6505339Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_cpu_dispatch.h' 2025-06-01T21:27:42.6508863Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_native.h' 2025-06-01T21:27:42.6513011Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_ops.h' 2025-06-01T21:27:42.6516400Z adding 'torch/include/ATen/ops/mm.h' 2025-06-01T21:27:42.6519960Z adding 'torch/include/ATen/ops/mm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.6523276Z adding 'torch/include/ATen/ops/mm_cpu_dispatch.h' 2025-06-01T21:27:42.6526753Z adding 'torch/include/ATen/ops/mm_cuda_dispatch.h' 2025-06-01T21:27:42.6530213Z adding 'torch/include/ATen/ops/mm_meta.h' 2025-06-01T21:27:42.6533641Z adding 'torch/include/ATen/ops/mm_meta_dispatch.h' 2025-06-01T21:27:42.6537222Z adding 'torch/include/ATen/ops/mm_native.h' 2025-06-01T21:27:42.6541035Z adding 'torch/include/ATen/ops/mm_ops.h' 2025-06-01T21:27:42.6544733Z adding 'torch/include/ATen/ops/mode.h' 2025-06-01T21:27:42.6548176Z adding 'torch/include/ATen/ops/mode_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.6551689Z adding 'torch/include/ATen/ops/mode_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.6554889Z adding 'torch/include/ATen/ops/mode_cpu_dispatch.h' 2025-06-01T21:27:42.6558143Z adding 'torch/include/ATen/ops/mode_cuda_dispatch.h' 2025-06-01T21:27:42.6561365Z adding 'torch/include/ATen/ops/mode_native.h' 2025-06-01T21:27:42.6564783Z adding 'torch/include/ATen/ops/mode_ops.h' 2025-06-01T21:27:42.6568121Z adding 'torch/include/ATen/ops/moveaxis.h' 2025-06-01T21:27:42.6571474Z adding 'torch/include/ATen/ops/moveaxis_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.6574367Z adding 'torch/include/ATen/ops/moveaxis_native.h' 2025-06-01T21:27:42.6577648Z adding 'torch/include/ATen/ops/moveaxis_ops.h' 2025-06-01T21:27:42.6581337Z adding 'torch/include/ATen/ops/movedim.h' 2025-06-01T21:27:42.6584682Z adding 'torch/include/ATen/ops/movedim_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.6587577Z adding 'torch/include/ATen/ops/movedim_native.h' 2025-06-01T21:27:42.6590891Z adding 'torch/include/ATen/ops/movedim_ops.h' 2025-06-01T21:27:42.6594933Z adding 'torch/include/ATen/ops/mps_convolution_backward.h' 2025-06-01T21:27:42.6598681Z adding 'torch/include/ATen/ops/mps_convolution_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.6601690Z adding 'torch/include/ATen/ops/mps_convolution_backward_native.h' 2025-06-01T21:27:42.6605094Z adding 'torch/include/ATen/ops/mps_convolution_backward_ops.h' 2025-06-01T21:27:42.6609028Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward.h' 2025-06-01T21:27:42.6612806Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.6615851Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_native.h' 2025-06-01T21:27:42.6619242Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_ops.h' 2025-06-01T21:27:42.6622364Z adding 'torch/include/ATen/ops/mse_loss.h' 2025-06-01T21:27:42.6625729Z adding 'torch/include/ATen/ops/mse_loss_backward.h' 2025-06-01T21:27:42.6628976Z adding 'torch/include/ATen/ops/mse_loss_backward_cpu_dispatch.h' 2025-06-01T21:27:42.6632260Z adding 'torch/include/ATen/ops/mse_loss_backward_cuda_dispatch.h' 2025-06-01T21:27:42.6635259Z adding 'torch/include/ATen/ops/mse_loss_backward_native.h' 2025-06-01T21:27:42.6638679Z adding 'torch/include/ATen/ops/mse_loss_backward_ops.h' 2025-06-01T21:27:42.6642024Z adding 'torch/include/ATen/ops/mse_loss_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.6644915Z adding 'torch/include/ATen/ops/mse_loss_cpu_dispatch.h' 2025-06-01T21:27:42.6648036Z adding 'torch/include/ATen/ops/mse_loss_cuda_dispatch.h' 2025-06-01T21:27:42.6651050Z adding 'torch/include/ATen/ops/mse_loss_meta.h' 2025-06-01T21:27:42.6654229Z adding 'torch/include/ATen/ops/mse_loss_meta_dispatch.h' 2025-06-01T21:27:42.6657285Z adding 'torch/include/ATen/ops/mse_loss_native.h' 2025-06-01T21:27:42.6660566Z adding 'torch/include/ATen/ops/mse_loss_ops.h' 2025-06-01T21:27:42.6663707Z adding 'torch/include/ATen/ops/msort.h' 2025-06-01T21:27:42.6667052Z adding 'torch/include/ATen/ops/msort_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.6669991Z adding 'torch/include/ATen/ops/msort_native.h' 2025-06-01T21:27:42.6673327Z adding 'torch/include/ATen/ops/msort_ops.h' 2025-06-01T21:27:42.6676568Z adding 'torch/include/ATen/ops/mul.h' 2025-06-01T21:27:42.6679926Z adding 'torch/include/ATen/ops/mul_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.6683335Z adding 'torch/include/ATen/ops/mul_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.6686323Z adding 'torch/include/ATen/ops/mul_cpu_dispatch.h' 2025-06-01T21:27:42.6689554Z adding 'torch/include/ATen/ops/mul_cuda_dispatch.h' 2025-06-01T21:27:42.6692499Z adding 'torch/include/ATen/ops/mul_meta.h' 2025-06-01T21:27:42.6695635Z adding 'torch/include/ATen/ops/mul_meta_dispatch.h' 2025-06-01T21:27:42.6698832Z adding 'torch/include/ATen/ops/mul_native.h' 2025-06-01T21:27:42.6702301Z adding 'torch/include/ATen/ops/mul_ops.h' 2025-06-01T21:27:42.6705600Z adding 'torch/include/ATen/ops/multi_margin_loss.h' 2025-06-01T21:27:42.6708960Z adding 'torch/include/ATen/ops/multi_margin_loss_backward.h' 2025-06-01T21:27:42.6712436Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_cpu_dispatch.h' 2025-06-01T21:27:42.6715690Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_cuda_dispatch.h' 2025-06-01T21:27:42.6718806Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_native.h' 2025-06-01T21:27:42.6722108Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_ops.h' 2025-06-01T21:27:42.6725346Z adding 'torch/include/ATen/ops/multi_margin_loss_cpu_dispatch.h' 2025-06-01T21:27:42.6728542Z adding 'torch/include/ATen/ops/multi_margin_loss_cuda_dispatch.h' 2025-06-01T21:27:42.6731687Z adding 'torch/include/ATen/ops/multi_margin_loss_native.h' 2025-06-01T21:27:42.6735001Z adding 'torch/include/ATen/ops/multi_margin_loss_ops.h' 2025-06-01T21:27:42.6738225Z adding 'torch/include/ATen/ops/multilabel_margin_loss.h' 2025-06-01T21:27:42.6741513Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward.h' 2025-06-01T21:27:42.6744790Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_cpu_dispatch.h' 2025-06-01T21:27:42.6747973Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_cuda_dispatch.h' 2025-06-01T21:27:42.6751049Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_native.h' 2025-06-01T21:27:42.6754451Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_ops.h' 2025-06-01T21:27:42.6757777Z adding 'torch/include/ATen/ops/multilabel_margin_loss_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.6760843Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward.h' 2025-06-01T21:27:42.6764067Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_cpu_dispatch.h' 2025-06-01T21:27:42.6767217Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_cuda_dispatch.h' 2025-06-01T21:27:42.6770673Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_native.h' 2025-06-01T21:27:42.6773923Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_ops.h' 2025-06-01T21:27:42.6777039Z adding 'torch/include/ATen/ops/multilabel_margin_loss_native.h' 2025-06-01T21:27:42.6780344Z adding 'torch/include/ATen/ops/multilabel_margin_loss_ops.h' 2025-06-01T21:27:42.6783912Z adding 'torch/include/ATen/ops/multinomial.h' 2025-06-01T21:27:42.6787338Z adding 'torch/include/ATen/ops/multinomial_cpu_dispatch.h' 2025-06-01T21:27:42.6790636Z adding 'torch/include/ATen/ops/multinomial_cuda_dispatch.h' 2025-06-01T21:27:42.6793896Z adding 'torch/include/ATen/ops/multinomial_native.h' 2025-06-01T21:27:42.6797317Z adding 'torch/include/ATen/ops/multinomial_ops.h' 2025-06-01T21:27:42.6800652Z adding 'torch/include/ATen/ops/multiply.h' 2025-06-01T21:27:42.6804099Z adding 'torch/include/ATen/ops/multiply_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.6807223Z adding 'torch/include/ATen/ops/multiply_native.h' 2025-06-01T21:27:42.6810645Z adding 'torch/include/ATen/ops/multiply_ops.h' 2025-06-01T21:27:42.6813973Z adding 'torch/include/ATen/ops/mv.h' 2025-06-01T21:27:42.6817290Z adding 'torch/include/ATen/ops/mv_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.6820456Z adding 'torch/include/ATen/ops/mv_native.h' 2025-06-01T21:27:42.6823749Z adding 'torch/include/ATen/ops/mv_ops.h' 2025-06-01T21:27:42.6826956Z adding 'torch/include/ATen/ops/mvlgamma.h' 2025-06-01T21:27:42.6830384Z adding 'torch/include/ATen/ops/mvlgamma_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.6833581Z adding 'torch/include/ATen/ops/mvlgamma_cpu_dispatch.h' 2025-06-01T21:27:42.6836840Z adding 'torch/include/ATen/ops/mvlgamma_cuda_dispatch.h' 2025-06-01T21:27:42.6839830Z adding 'torch/include/ATen/ops/mvlgamma_native.h' 2025-06-01T21:27:42.6843219Z adding 'torch/include/ATen/ops/mvlgamma_ops.h' 2025-06-01T21:27:42.6846557Z adding 'torch/include/ATen/ops/nan_to_num.h' 2025-06-01T21:27:42.6849909Z adding 'torch/include/ATen/ops/nan_to_num_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.6853097Z adding 'torch/include/ATen/ops/nan_to_num_cpu_dispatch.h' 2025-06-01T21:27:42.6856234Z adding 'torch/include/ATen/ops/nan_to_num_cuda_dispatch.h' 2025-06-01T21:27:42.6859459Z adding 'torch/include/ATen/ops/nan_to_num_native.h' 2025-06-01T21:27:42.6862784Z adding 'torch/include/ATen/ops/nan_to_num_ops.h' 2025-06-01T21:27:42.6866138Z adding 'torch/include/ATen/ops/nanmean.h' 2025-06-01T21:27:42.6869527Z adding 'torch/include/ATen/ops/nanmean_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.6872702Z adding 'torch/include/ATen/ops/nanmean_native.h' 2025-06-01T21:27:42.6876185Z adding 'torch/include/ATen/ops/nanmean_ops.h' 2025-06-01T21:27:42.6879583Z adding 'torch/include/ATen/ops/nanmedian.h' 2025-06-01T21:27:42.6883137Z adding 'torch/include/ATen/ops/nanmedian_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.6886375Z adding 'torch/include/ATen/ops/nanmedian_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.6889550Z adding 'torch/include/ATen/ops/nanmedian_cpu_dispatch.h' 2025-06-01T21:27:42.6892706Z adding 'torch/include/ATen/ops/nanmedian_cuda_dispatch.h' 2025-06-01T21:27:42.6895940Z adding 'torch/include/ATen/ops/nanmedian_native.h' 2025-06-01T21:27:42.6899645Z adding 'torch/include/ATen/ops/nanmedian_ops.h' 2025-06-01T21:27:42.6903156Z adding 'torch/include/ATen/ops/nanquantile.h' 2025-06-01T21:27:42.6906754Z adding 'torch/include/ATen/ops/nanquantile_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.6909787Z adding 'torch/include/ATen/ops/nanquantile_native.h' 2025-06-01T21:27:42.6913573Z adding 'torch/include/ATen/ops/nanquantile_ops.h' 2025-06-01T21:27:42.6916843Z adding 'torch/include/ATen/ops/nansum.h' 2025-06-01T21:27:42.6920465Z adding 'torch/include/ATen/ops/nansum_cpu_dispatch.h' 2025-06-01T21:27:42.6924120Z adding 'torch/include/ATen/ops/nansum_cuda_dispatch.h' 2025-06-01T21:27:42.6927663Z adding 'torch/include/ATen/ops/nansum_native.h' 2025-06-01T21:27:42.6931349Z adding 'torch/include/ATen/ops/nansum_ops.h' 2025-06-01T21:27:42.6935058Z adding 'torch/include/ATen/ops/narrow.h' 2025-06-01T21:27:42.6938894Z adding 'torch/include/ATen/ops/narrow_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.6942563Z adding 'torch/include/ATen/ops/narrow_copy.h' 2025-06-01T21:27:42.6946669Z adding 'torch/include/ATen/ops/narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.6950161Z adding 'torch/include/ATen/ops/narrow_copy_cpu_dispatch.h' 2025-06-01T21:27:42.6953698Z adding 'torch/include/ATen/ops/narrow_copy_native.h' 2025-06-01T21:27:42.6957253Z adding 'torch/include/ATen/ops/narrow_copy_ops.h' 2025-06-01T21:27:42.6960341Z adding 'torch/include/ATen/ops/narrow_native.h' 2025-06-01T21:27:42.6963815Z adding 'torch/include/ATen/ops/narrow_ops.h' 2025-06-01T21:27:42.6968160Z adding 'torch/include/ATen/ops/native_batch_norm.h' 2025-06-01T21:27:42.6971275Z adding 'torch/include/ATen/ops/native_batch_norm_backward.h' 2025-06-01T21:27:42.6974976Z adding 'torch/include/ATen/ops/native_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.6978223Z adding 'torch/include/ATen/ops/native_batch_norm_backward_cpu_dispatch.h' 2025-06-01T21:27:42.6981580Z adding 'torch/include/ATen/ops/native_batch_norm_backward_cuda_dispatch.h' 2025-06-01T21:27:42.6984893Z adding 'torch/include/ATen/ops/native_batch_norm_backward_native.h' 2025-06-01T21:27:42.6988324Z adding 'torch/include/ATen/ops/native_batch_norm_backward_ops.h' 2025-06-01T21:27:42.6991941Z adding 'torch/include/ATen/ops/native_batch_norm_cpu_dispatch.h' 2025-06-01T21:27:42.6995181Z adding 'torch/include/ATen/ops/native_batch_norm_cuda_dispatch.h' 2025-06-01T21:27:42.6998382Z adding 'torch/include/ATen/ops/native_batch_norm_native.h' 2025-06-01T21:27:42.7001826Z adding 'torch/include/ATen/ops/native_batch_norm_ops.h' 2025-06-01T21:27:42.7005103Z adding 'torch/include/ATen/ops/native_channel_shuffle.h' 2025-06-01T21:27:42.7008741Z adding 'torch/include/ATen/ops/native_channel_shuffle_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.7011821Z adding 'torch/include/ATen/ops/native_channel_shuffle_cpu_dispatch.h' 2025-06-01T21:27:42.7014828Z adding 'torch/include/ATen/ops/native_channel_shuffle_native.h' 2025-06-01T21:27:42.7017953Z adding 'torch/include/ATen/ops/native_channel_shuffle_ops.h' 2025-06-01T21:27:42.7021096Z adding 'torch/include/ATen/ops/native_dropout.h' 2025-06-01T21:27:42.7024321Z adding 'torch/include/ATen/ops/native_dropout_backward.h' 2025-06-01T21:27:42.7027609Z adding 'torch/include/ATen/ops/native_dropout_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.7030616Z adding 'torch/include/ATen/ops/native_dropout_backward_cpu_dispatch.h' 2025-06-01T21:27:42.7033924Z adding 'torch/include/ATen/ops/native_dropout_backward_cuda_dispatch.h' 2025-06-01T21:27:42.7036871Z adding 'torch/include/ATen/ops/native_dropout_backward_native.h' 2025-06-01T21:27:42.7040580Z adding 'torch/include/ATen/ops/native_dropout_backward_ops.h' 2025-06-01T21:27:42.7043525Z adding 'torch/include/ATen/ops/native_dropout_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.7046554Z adding 'torch/include/ATen/ops/native_dropout_cpu_dispatch.h' 2025-06-01T21:27:42.7049924Z adding 'torch/include/ATen/ops/native_dropout_cuda_dispatch.h' 2025-06-01T21:27:42.7052711Z adding 'torch/include/ATen/ops/native_dropout_native.h' 2025-06-01T21:27:42.7055902Z adding 'torch/include/ATen/ops/native_dropout_ops.h' 2025-06-01T21:27:42.7059510Z adding 'torch/include/ATen/ops/native_group_norm.h' 2025-06-01T21:27:42.7063550Z adding 'torch/include/ATen/ops/native_group_norm_backward.h' 2025-06-01T21:27:42.7067296Z adding 'torch/include/ATen/ops/native_group_norm_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.7070464Z adding 'torch/include/ATen/ops/native_group_norm_backward_cpu_dispatch.h' 2025-06-01T21:27:42.7073851Z adding 'torch/include/ATen/ops/native_group_norm_backward_cuda_dispatch.h' 2025-06-01T21:27:42.7076947Z adding 'torch/include/ATen/ops/native_group_norm_backward_native.h' 2025-06-01T21:27:42.7080367Z adding 'torch/include/ATen/ops/native_group_norm_backward_ops.h' 2025-06-01T21:27:42.7083802Z adding 'torch/include/ATen/ops/native_group_norm_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.7087140Z adding 'torch/include/ATen/ops/native_group_norm_cpu_dispatch.h' 2025-06-01T21:27:42.7090365Z adding 'torch/include/ATen/ops/native_group_norm_cuda_dispatch.h' 2025-06-01T21:27:42.7093410Z adding 'torch/include/ATen/ops/native_group_norm_native.h' 2025-06-01T21:27:42.7096690Z adding 'torch/include/ATen/ops/native_group_norm_ops.h' 2025-06-01T21:27:42.7100279Z adding 'torch/include/ATen/ops/native_layer_norm.h' 2025-06-01T21:27:42.7104192Z adding 'torch/include/ATen/ops/native_layer_norm_backward.h' 2025-06-01T21:27:42.7107919Z adding 'torch/include/ATen/ops/native_layer_norm_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.7111149Z adding 'torch/include/ATen/ops/native_layer_norm_backward_cpu_dispatch.h' 2025-06-01T21:27:42.7114466Z adding 'torch/include/ATen/ops/native_layer_norm_backward_cuda_dispatch.h' 2025-06-01T21:27:42.7117500Z adding 'torch/include/ATen/ops/native_layer_norm_backward_native.h' 2025-06-01T21:27:42.7120914Z adding 'torch/include/ATen/ops/native_layer_norm_backward_ops.h' 2025-06-01T21:27:42.7124375Z adding 'torch/include/ATen/ops/native_layer_norm_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.7127560Z adding 'torch/include/ATen/ops/native_layer_norm_cpu_dispatch.h' 2025-06-01T21:27:42.7130778Z adding 'torch/include/ATen/ops/native_layer_norm_cuda_dispatch.h' 2025-06-01T21:27:42.7133874Z adding 'torch/include/ATen/ops/native_layer_norm_native.h' 2025-06-01T21:27:42.7137236Z adding 'torch/include/ATen/ops/native_layer_norm_ops.h' 2025-06-01T21:27:42.7140573Z adding 'torch/include/ATen/ops/native_norm.h' 2025-06-01T21:27:42.7143935Z adding 'torch/include/ATen/ops/native_norm_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.7146932Z adding 'torch/include/ATen/ops/native_norm_native.h' 2025-06-01T21:27:42.7150312Z adding 'torch/include/ATen/ops/native_norm_ops.h' 2025-06-01T21:27:42.7153751Z adding 'torch/include/ATen/ops/ne.h' 2025-06-01T21:27:42.7157195Z adding 'torch/include/ATen/ops/ne_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.7160589Z adding 'torch/include/ATen/ops/ne_cpu_dispatch.h' 2025-06-01T21:27:42.7163809Z adding 'torch/include/ATen/ops/ne_cuda_dispatch.h' 2025-06-01T21:27:42.7166854Z adding 'torch/include/ATen/ops/ne_meta.h' 2025-06-01T21:27:42.7170903Z adding 'torch/include/ATen/ops/ne_meta_dispatch.h' 2025-06-01T21:27:42.7174068Z adding 'torch/include/ATen/ops/ne_native.h' 2025-06-01T21:27:42.7177487Z adding 'torch/include/ATen/ops/ne_ops.h' 2025-06-01T21:27:42.7180725Z adding 'torch/include/ATen/ops/neg.h' 2025-06-01T21:27:42.7184085Z adding 'torch/include/ATen/ops/neg_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.7187009Z adding 'torch/include/ATen/ops/neg_cpu_dispatch.h' 2025-06-01T21:27:42.7190097Z adding 'torch/include/ATen/ops/neg_cuda_dispatch.h' 2025-06-01T21:27:42.7193290Z adding 'torch/include/ATen/ops/neg_meta.h' 2025-06-01T21:27:42.7196507Z adding 'torch/include/ATen/ops/neg_meta_dispatch.h' 2025-06-01T21:27:42.7199453Z adding 'torch/include/ATen/ops/neg_native.h' 2025-06-01T21:27:42.7202735Z adding 'torch/include/ATen/ops/neg_ops.h' 2025-06-01T21:27:42.7205931Z adding 'torch/include/ATen/ops/negative.h' 2025-06-01T21:27:42.7209282Z adding 'torch/include/ATen/ops/negative_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.7212198Z adding 'torch/include/ATen/ops/negative_native.h' 2025-06-01T21:27:42.7215421Z adding 'torch/include/ATen/ops/negative_ops.h' 2025-06-01T21:27:42.7218656Z adding 'torch/include/ATen/ops/nested_to_padded_tensor.h' 2025-06-01T21:27:42.7222168Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.7225088Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_native.h' 2025-06-01T21:27:42.7234509Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_ops.h' 2025-06-01T21:27:42.7234913Z adding 'torch/include/ATen/ops/new_empty.h' 2025-06-01T21:27:42.7235562Z adding 'torch/include/ATen/ops/new_empty_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.7238932Z adding 'torch/include/ATen/ops/new_empty_native.h' 2025-06-01T21:27:42.7242174Z adding 'torch/include/ATen/ops/new_empty_ops.h' 2025-06-01T21:27:42.7245955Z adding 'torch/include/ATen/ops/new_empty_strided.h' 2025-06-01T21:27:42.7249466Z adding 'torch/include/ATen/ops/new_empty_strided_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.7253245Z adding 'torch/include/ATen/ops/new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.7256021Z adding 'torch/include/ATen/ops/new_empty_strided_native.h' 2025-06-01T21:27:42.7259337Z adding 'torch/include/ATen/ops/new_empty_strided_ops.h' 2025-06-01T21:27:42.7263013Z adding 'torch/include/ATen/ops/new_full.h' 2025-06-01T21:27:42.7266750Z adding 'torch/include/ATen/ops/new_full_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.7269734Z adding 'torch/include/ATen/ops/new_full_native.h' 2025-06-01T21:27:42.7273649Z adding 'torch/include/ATen/ops/new_full_ops.h' 2025-06-01T21:27:42.7276881Z adding 'torch/include/ATen/ops/new_ones.h' 2025-06-01T21:27:42.7280605Z adding 'torch/include/ATen/ops/new_ones_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.7283696Z adding 'torch/include/ATen/ops/new_ones_native.h' 2025-06-01T21:27:42.7286995Z adding 'torch/include/ATen/ops/new_ones_ops.h' 2025-06-01T21:27:42.7290592Z adding 'torch/include/ATen/ops/new_zeros.h' 2025-06-01T21:27:42.7294134Z adding 'torch/include/ATen/ops/new_zeros_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.7297400Z adding 'torch/include/ATen/ops/new_zeros_native.h' 2025-06-01T21:27:42.7300852Z adding 'torch/include/ATen/ops/new_zeros_ops.h' 2025-06-01T21:27:42.7304021Z adding 'torch/include/ATen/ops/nextafter.h' 2025-06-01T21:27:42.7307555Z adding 'torch/include/ATen/ops/nextafter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.7310508Z adding 'torch/include/ATen/ops/nextafter_cpu_dispatch.h' 2025-06-01T21:27:42.7313906Z adding 'torch/include/ATen/ops/nextafter_cuda_dispatch.h' 2025-06-01T21:27:42.7317010Z adding 'torch/include/ATen/ops/nextafter_meta.h' 2025-06-01T21:27:42.7320317Z adding 'torch/include/ATen/ops/nextafter_meta_dispatch.h' 2025-06-01T21:27:42.7323477Z adding 'torch/include/ATen/ops/nextafter_native.h' 2025-06-01T21:27:42.7326805Z adding 'torch/include/ATen/ops/nextafter_ops.h' 2025-06-01T21:27:42.7330461Z adding 'torch/include/ATen/ops/nll_loss.h' 2025-06-01T21:27:42.7334156Z adding 'torch/include/ATen/ops/nll_loss2d.h' 2025-06-01T21:27:42.7337945Z adding 'torch/include/ATen/ops/nll_loss2d_backward.h' 2025-06-01T21:27:42.7341577Z adding 'torch/include/ATen/ops/nll_loss2d_backward_cpu_dispatch.h' 2025-06-01T21:27:42.7344878Z adding 'torch/include/ATen/ops/nll_loss2d_backward_cuda_dispatch.h' 2025-06-01T21:27:42.7348182Z adding 'torch/include/ATen/ops/nll_loss2d_backward_native.h' 2025-06-01T21:27:42.7351637Z adding 'torch/include/ATen/ops/nll_loss2d_backward_ops.h' 2025-06-01T21:27:42.7355489Z adding 'torch/include/ATen/ops/nll_loss2d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.7359034Z adding 'torch/include/ATen/ops/nll_loss2d_forward.h' 2025-06-01T21:27:42.7362491Z adding 'torch/include/ATen/ops/nll_loss2d_forward_cpu_dispatch.h' 2025-06-01T21:27:42.7365964Z adding 'torch/include/ATen/ops/nll_loss2d_forward_cuda_dispatch.h' 2025-06-01T21:27:42.7369212Z adding 'torch/include/ATen/ops/nll_loss2d_forward_native.h' 2025-06-01T21:27:42.7372592Z adding 'torch/include/ATen/ops/nll_loss2d_forward_ops.h' 2025-06-01T21:27:42.7375829Z adding 'torch/include/ATen/ops/nll_loss2d_native.h' 2025-06-01T21:27:42.7379160Z adding 'torch/include/ATen/ops/nll_loss2d_ops.h' 2025-06-01T21:27:42.7382883Z adding 'torch/include/ATen/ops/nll_loss_backward.h' 2025-06-01T21:27:42.7386627Z adding 'torch/include/ATen/ops/nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.7389859Z adding 'torch/include/ATen/ops/nll_loss_backward_cpu_dispatch.h' 2025-06-01T21:27:42.7393401Z adding 'torch/include/ATen/ops/nll_loss_backward_cuda_dispatch.h' 2025-06-01T21:27:42.7396766Z adding 'torch/include/ATen/ops/nll_loss_backward_meta.h' 2025-06-01T21:27:42.7400045Z adding 'torch/include/ATen/ops/nll_loss_backward_meta_dispatch.h' 2025-06-01T21:27:42.7403270Z adding 'torch/include/ATen/ops/nll_loss_backward_native.h' 2025-06-01T21:27:42.7406616Z adding 'torch/include/ATen/ops/nll_loss_backward_ops.h' 2025-06-01T21:27:42.7410287Z adding 'torch/include/ATen/ops/nll_loss_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.7414169Z adding 'torch/include/ATen/ops/nll_loss_forward.h' 2025-06-01T21:27:42.7418245Z adding 'torch/include/ATen/ops/nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.7421825Z adding 'torch/include/ATen/ops/nll_loss_forward_cpu_dispatch.h' 2025-06-01T21:27:42.7425338Z adding 'torch/include/ATen/ops/nll_loss_forward_cuda_dispatch.h' 2025-06-01T21:27:42.7428538Z adding 'torch/include/ATen/ops/nll_loss_forward_meta.h' 2025-06-01T21:27:42.7432106Z adding 'torch/include/ATen/ops/nll_loss_forward_meta_dispatch.h' 2025-06-01T21:27:42.7435439Z adding 'torch/include/ATen/ops/nll_loss_forward_native.h' 2025-06-01T21:27:42.7438868Z adding 'torch/include/ATen/ops/nll_loss_forward_ops.h' 2025-06-01T21:27:42.7442142Z adding 'torch/include/ATen/ops/nll_loss_native.h' 2025-06-01T21:27:42.7445381Z adding 'torch/include/ATen/ops/nll_loss_nd.h' 2025-06-01T21:27:42.7448939Z adding 'torch/include/ATen/ops/nll_loss_nd_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.7451979Z adding 'torch/include/ATen/ops/nll_loss_nd_native.h' 2025-06-01T21:27:42.7455190Z adding 'torch/include/ATen/ops/nll_loss_nd_ops.h' 2025-06-01T21:27:42.7458726Z adding 'torch/include/ATen/ops/nll_loss_ops.h' 2025-06-01T21:27:42.7461910Z adding 'torch/include/ATen/ops/nonzero.h' 2025-06-01T21:27:42.7465051Z adding 'torch/include/ATen/ops/nonzero_cpu_dispatch.h' 2025-06-01T21:27:42.7468167Z adding 'torch/include/ATen/ops/nonzero_cuda_dispatch.h' 2025-06-01T21:27:42.7471282Z adding 'torch/include/ATen/ops/nonzero_native.h' 2025-06-01T21:27:42.7474519Z adding 'torch/include/ATen/ops/nonzero_numpy.h' 2025-06-01T21:27:42.7477861Z adding 'torch/include/ATen/ops/nonzero_numpy_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.7480739Z adding 'torch/include/ATen/ops/nonzero_numpy_native.h' 2025-06-01T21:27:42.7483860Z adding 'torch/include/ATen/ops/nonzero_numpy_ops.h' 2025-06-01T21:27:42.7487101Z adding 'torch/include/ATen/ops/nonzero_ops.h' 2025-06-01T21:27:42.7490512Z adding 'torch/include/ATen/ops/nonzero_static.h' 2025-06-01T21:27:42.7493797Z adding 'torch/include/ATen/ops/nonzero_static_cpu_dispatch.h' 2025-06-01T21:27:42.7496987Z adding 'torch/include/ATen/ops/nonzero_static_cuda_dispatch.h' 2025-06-01T21:27:42.7500042Z adding 'torch/include/ATen/ops/nonzero_static_native.h' 2025-06-01T21:27:42.7503346Z adding 'torch/include/ATen/ops/nonzero_static_ops.h' 2025-06-01T21:27:42.7507062Z adding 'torch/include/ATen/ops/norm.h' 2025-06-01T21:27:42.7510677Z adding 'torch/include/ATen/ops/norm_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.7514112Z adding 'torch/include/ATen/ops/norm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.7517281Z adding 'torch/include/ATen/ops/norm_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.7520373Z adding 'torch/include/ATen/ops/norm_cpu_dispatch.h' 2025-06-01T21:27:42.7523564Z adding 'torch/include/ATen/ops/norm_cuda_dispatch.h' 2025-06-01T21:27:42.7526640Z adding 'torch/include/ATen/ops/norm_except_dim.h' 2025-06-01T21:27:42.7529938Z adding 'torch/include/ATen/ops/norm_except_dim_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.7532932Z adding 'torch/include/ATen/ops/norm_except_dim_native.h' 2025-06-01T21:27:42.7536159Z adding 'torch/include/ATen/ops/norm_except_dim_ops.h' 2025-06-01T21:27:42.7539197Z adding 'torch/include/ATen/ops/norm_meta.h' 2025-06-01T21:27:42.7542385Z adding 'torch/include/ATen/ops/norm_meta_dispatch.h' 2025-06-01T21:27:42.7545597Z adding 'torch/include/ATen/ops/norm_native.h' 2025-06-01T21:27:42.7550060Z adding 'torch/include/ATen/ops/norm_ops.h' 2025-06-01T21:27:42.7554455Z adding 'torch/include/ATen/ops/normal.h' 2025-06-01T21:27:42.7558893Z adding 'torch/include/ATen/ops/normal_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.7561670Z adding 'torch/include/ATen/ops/normal_cpu_dispatch.h' 2025-06-01T21:27:42.7564991Z adding 'torch/include/ATen/ops/normal_cuda_dispatch.h' 2025-06-01T21:27:42.7568323Z adding 'torch/include/ATen/ops/normal_meta_dispatch.h' 2025-06-01T21:27:42.7571674Z adding 'torch/include/ATen/ops/normal_native.h' 2025-06-01T21:27:42.7575734Z adding 'torch/include/ATen/ops/normal_ops.h' 2025-06-01T21:27:42.7579202Z adding 'torch/include/ATen/ops/not_equal.h' 2025-06-01T21:27:42.7582695Z adding 'torch/include/ATen/ops/not_equal_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.7585518Z adding 'torch/include/ATen/ops/not_equal_native.h' 2025-06-01T21:27:42.7588899Z adding 'torch/include/ATen/ops/not_equal_ops.h' 2025-06-01T21:27:42.7592322Z adding 'torch/include/ATen/ops/nuclear_norm.h' 2025-06-01T21:27:42.7595735Z adding 'torch/include/ATen/ops/nuclear_norm_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.7598721Z adding 'torch/include/ATen/ops/nuclear_norm_native.h' 2025-06-01T21:27:42.7602042Z adding 'torch/include/ATen/ops/nuclear_norm_ops.h' 2025-06-01T21:27:42.7605131Z adding 'torch/include/ATen/ops/numpy_T.h' 2025-06-01T21:27:42.7608348Z adding 'torch/include/ATen/ops/numpy_T_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.7611217Z adding 'torch/include/ATen/ops/numpy_T_native.h' 2025-06-01T21:27:42.7614375Z adding 'torch/include/ATen/ops/numpy_T_ops.h' 2025-06-01T21:27:42.7617436Z adding 'torch/include/ATen/ops/one_hot.h' 2025-06-01T21:27:42.7620689Z adding 'torch/include/ATen/ops/one_hot_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.7623571Z adding 'torch/include/ATen/ops/one_hot_native.h' 2025-06-01T21:27:42.7626988Z adding 'torch/include/ATen/ops/one_hot_ops.h' 2025-06-01T21:27:42.7630658Z adding 'torch/include/ATen/ops/ones.h' 2025-06-01T21:27:42.7634409Z adding 'torch/include/ATen/ops/ones_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.7637615Z adding 'torch/include/ATen/ops/ones_like.h' 2025-06-01T21:27:42.7641012Z adding 'torch/include/ATen/ops/ones_like_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.7643944Z adding 'torch/include/ATen/ops/ones_like_native.h' 2025-06-01T21:27:42.7647254Z adding 'torch/include/ATen/ops/ones_like_ops.h' 2025-06-01T21:27:42.7650380Z adding 'torch/include/ATen/ops/ones_native.h' 2025-06-01T21:27:42.7653798Z adding 'torch/include/ATen/ops/ones_ops.h' 2025-06-01T21:27:42.7656968Z adding 'torch/include/ATen/ops/or.h' 2025-06-01T21:27:42.7660253Z adding 'torch/include/ATen/ops/or_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.7663319Z adding 'torch/include/ATen/ops/or_native.h' 2025-06-01T21:27:42.7666644Z adding 'torch/include/ATen/ops/or_ops.h' 2025-06-01T21:27:42.7669802Z adding 'torch/include/ATen/ops/orgqr.h' 2025-06-01T21:27:42.7673217Z adding 'torch/include/ATen/ops/orgqr_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.7676123Z adding 'torch/include/ATen/ops/orgqr_native.h' 2025-06-01T21:27:42.7679303Z adding 'torch/include/ATen/ops/orgqr_ops.h' 2025-06-01T21:27:42.7682471Z adding 'torch/include/ATen/ops/ormqr.h' 2025-06-01T21:27:42.7685641Z adding 'torch/include/ATen/ops/ormqr_cpu_dispatch.h' 2025-06-01T21:27:42.7688742Z adding 'torch/include/ATen/ops/ormqr_cuda_dispatch.h' 2025-06-01T21:27:42.7691809Z adding 'torch/include/ATen/ops/ormqr_native.h' 2025-06-01T21:27:42.7695000Z adding 'torch/include/ATen/ops/ormqr_ops.h' 2025-06-01T21:27:42.7698139Z adding 'torch/include/ATen/ops/outer.h' 2025-06-01T21:27:42.7701420Z adding 'torch/include/ATen/ops/outer_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.7704299Z adding 'torch/include/ATen/ops/outer_native.h' 2025-06-01T21:27:42.7707449Z adding 'torch/include/ATen/ops/outer_ops.h' 2025-06-01T21:27:42.7710420Z adding 'torch/include/ATen/ops/output_nr.h' 2025-06-01T21:27:42.7713886Z adding 'torch/include/ATen/ops/output_nr_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.7716609Z adding 'torch/include/ATen/ops/output_nr_native.h' 2025-06-01T21:27:42.7720198Z adding 'torch/include/ATen/ops/output_nr_ops.h' 2025-06-01T21:27:42.7722948Z adding 'torch/include/ATen/ops/pad.h' 2025-06-01T21:27:42.7726161Z adding 'torch/include/ATen/ops/pad_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.7729064Z adding 'torch/include/ATen/ops/pad_native.h' 2025-06-01T21:27:42.7732198Z adding 'torch/include/ATen/ops/pad_ops.h' 2025-06-01T21:27:42.7735287Z adding 'torch/include/ATen/ops/pad_sequence.h' 2025-06-01T21:27:42.7738964Z adding 'torch/include/ATen/ops/pad_sequence_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.7741890Z adding 'torch/include/ATen/ops/pad_sequence_native.h' 2025-06-01T21:27:42.7745091Z adding 'torch/include/ATen/ops/pad_sequence_ops.h' 2025-06-01T21:27:42.7748183Z adding 'torch/include/ATen/ops/pairwise_distance.h' 2025-06-01T21:27:42.7751667Z adding 'torch/include/ATen/ops/pairwise_distance_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.7754591Z adding 'torch/include/ATen/ops/pairwise_distance_native.h' 2025-06-01T21:27:42.7757718Z adding 'torch/include/ATen/ops/pairwise_distance_ops.h' 2025-06-01T21:27:42.7760712Z adding 'torch/include/ATen/ops/pdist.h' 2025-06-01T21:27:42.7764391Z adding 'torch/include/ATen/ops/pdist_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.7767048Z adding 'torch/include/ATen/ops/pdist_native.h' 2025-06-01T21:27:42.7770041Z adding 'torch/include/ATen/ops/pdist_ops.h' 2025-06-01T21:27:42.7773061Z adding 'torch/include/ATen/ops/permute.h' 2025-06-01T21:27:42.7776342Z adding 'torch/include/ATen/ops/permute_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.7779280Z adding 'torch/include/ATen/ops/permute_copy.h' 2025-06-01T21:27:42.7782540Z adding 'torch/include/ATen/ops/permute_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.7785737Z adding 'torch/include/ATen/ops/permute_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.7788506Z adding 'torch/include/ATen/ops/permute_copy_native.h' 2025-06-01T21:27:42.7791829Z adding 'torch/include/ATen/ops/permute_copy_ops.h' 2025-06-01T21:27:42.7794925Z adding 'torch/include/ATen/ops/permute_native.h' 2025-06-01T21:27:42.7798042Z adding 'torch/include/ATen/ops/permute_ops.h' 2025-06-01T21:27:42.7801050Z adding 'torch/include/ATen/ops/pin_memory.h' 2025-06-01T21:27:42.7804453Z adding 'torch/include/ATen/ops/pin_memory_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.7807311Z adding 'torch/include/ATen/ops/pin_memory_native.h' 2025-06-01T21:27:42.7810570Z adding 'torch/include/ATen/ops/pin_memory_ops.h' 2025-06-01T21:27:42.7813550Z adding 'torch/include/ATen/ops/pinverse.h' 2025-06-01T21:27:42.7816773Z adding 'torch/include/ATen/ops/pinverse_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.7819646Z adding 'torch/include/ATen/ops/pinverse_native.h' 2025-06-01T21:27:42.7822795Z adding 'torch/include/ATen/ops/pinverse_ops.h' 2025-06-01T21:27:42.7825870Z adding 'torch/include/ATen/ops/pixel_shuffle.h' 2025-06-01T21:27:42.7829248Z adding 'torch/include/ATen/ops/pixel_shuffle_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.7832521Z adding 'torch/include/ATen/ops/pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.7835534Z adding 'torch/include/ATen/ops/pixel_shuffle_cpu_dispatch.h' 2025-06-01T21:27:42.7838548Z adding 'torch/include/ATen/ops/pixel_shuffle_native.h' 2025-06-01T21:27:42.7841806Z adding 'torch/include/ATen/ops/pixel_shuffle_ops.h' 2025-06-01T21:27:42.7844951Z adding 'torch/include/ATen/ops/pixel_unshuffle.h' 2025-06-01T21:27:42.7848231Z adding 'torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.7851431Z adding 'torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.7854442Z adding 'torch/include/ATen/ops/pixel_unshuffle_cpu_dispatch.h' 2025-06-01T21:27:42.7857706Z adding 'torch/include/ATen/ops/pixel_unshuffle_native.h' 2025-06-01T21:27:42.7860877Z adding 'torch/include/ATen/ops/pixel_unshuffle_ops.h' 2025-06-01T21:27:42.7864448Z adding 'torch/include/ATen/ops/poisson.h' 2025-06-01T21:27:42.7867452Z adding 'torch/include/ATen/ops/poisson_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.7870477Z adding 'torch/include/ATen/ops/poisson_cpu_dispatch.h' 2025-06-01T21:27:42.7874213Z adding 'torch/include/ATen/ops/poisson_cuda_dispatch.h' 2025-06-01T21:27:42.7877327Z adding 'torch/include/ATen/ops/poisson_native.h' 2025-06-01T21:27:42.7880538Z adding 'torch/include/ATen/ops/poisson_nll_loss.h' 2025-06-01T21:27:42.7883921Z adding 'torch/include/ATen/ops/poisson_nll_loss_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.7886871Z adding 'torch/include/ATen/ops/poisson_nll_loss_native.h' 2025-06-01T21:27:42.7890165Z adding 'torch/include/ATen/ops/poisson_nll_loss_ops.h' 2025-06-01T21:27:42.7893469Z adding 'torch/include/ATen/ops/poisson_ops.h' 2025-06-01T21:27:42.7896768Z adding 'torch/include/ATen/ops/polar.h' 2025-06-01T21:27:42.7899967Z adding 'torch/include/ATen/ops/polar_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.7903170Z adding 'torch/include/ATen/ops/polar_cpu_dispatch.h' 2025-06-01T21:27:42.7906362Z adding 'torch/include/ATen/ops/polar_cuda_dispatch.h' 2025-06-01T21:27:42.7909543Z adding 'torch/include/ATen/ops/polar_native.h' 2025-06-01T21:27:42.7912999Z adding 'torch/include/ATen/ops/polar_ops.h' 2025-06-01T21:27:42.7916479Z adding 'torch/include/ATen/ops/polygamma.h' 2025-06-01T21:27:42.7920303Z adding 'torch/include/ATen/ops/polygamma_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.7925394Z adding 'torch/include/ATen/ops/polygamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.7928987Z adding 'torch/include/ATen/ops/polygamma_cpu_dispatch.h' 2025-06-01T21:27:42.7932575Z adding 'torch/include/ATen/ops/polygamma_cuda_dispatch.h' 2025-06-01T21:27:42.7935987Z adding 'torch/include/ATen/ops/polygamma_meta.h' 2025-06-01T21:27:42.7939596Z adding 'torch/include/ATen/ops/polygamma_meta_dispatch.h' 2025-06-01T21:27:42.7943177Z adding 'torch/include/ATen/ops/polygamma_native.h' 2025-06-01T21:27:42.7946978Z adding 'torch/include/ATen/ops/polygamma_ops.h' 2025-06-01T21:27:42.7950125Z adding 'torch/include/ATen/ops/positive.h' 2025-06-01T21:27:42.7953640Z adding 'torch/include/ATen/ops/positive_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.7956577Z adding 'torch/include/ATen/ops/positive_native.h' 2025-06-01T21:27:42.7959953Z adding 'torch/include/ATen/ops/positive_ops.h' 2025-06-01T21:27:42.7963146Z adding 'torch/include/ATen/ops/pow.h' 2025-06-01T21:27:42.7966768Z adding 'torch/include/ATen/ops/pow_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.7969911Z adding 'torch/include/ATen/ops/pow_cpu_dispatch.h' 2025-06-01T21:27:42.7973315Z adding 'torch/include/ATen/ops/pow_cuda_dispatch.h' 2025-06-01T21:27:42.7976416Z adding 'torch/include/ATen/ops/pow_meta.h' 2025-06-01T21:27:42.7979613Z adding 'torch/include/ATen/ops/pow_meta_dispatch.h' 2025-06-01T21:27:42.7982884Z adding 'torch/include/ATen/ops/pow_native.h' 2025-06-01T21:27:42.7986454Z adding 'torch/include/ATen/ops/pow_ops.h' 2025-06-01T21:27:42.7989664Z adding 'torch/include/ATen/ops/prelu.h' 2025-06-01T21:27:42.7993092Z adding 'torch/include/ATen/ops/prelu_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.7996011Z adding 'torch/include/ATen/ops/prelu_native.h' 2025-06-01T21:27:42.7999358Z adding 'torch/include/ATen/ops/prelu_ops.h' 2025-06-01T21:27:42.8002629Z adding 'torch/include/ATen/ops/prod.h' 2025-06-01T21:27:42.8005990Z adding 'torch/include/ATen/ops/prod_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.8009232Z adding 'torch/include/ATen/ops/prod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.8012326Z adding 'torch/include/ATen/ops/prod_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.8015547Z adding 'torch/include/ATen/ops/prod_cpu_dispatch.h' 2025-06-01T21:27:42.8018629Z adding 'torch/include/ATen/ops/prod_cuda_dispatch.h' 2025-06-01T21:27:42.8021729Z adding 'torch/include/ATen/ops/prod_meta.h' 2025-06-01T21:27:42.8024803Z adding 'torch/include/ATen/ops/prod_meta_dispatch.h' 2025-06-01T21:27:42.8027920Z adding 'torch/include/ATen/ops/prod_native.h' 2025-06-01T21:27:42.8031636Z adding 'torch/include/ATen/ops/prod_ops.h' 2025-06-01T21:27:42.8034872Z adding 'torch/include/ATen/ops/promote_types.h' 2025-06-01T21:27:42.8038153Z adding 'torch/include/ATen/ops/promote_types_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.8041174Z adding 'torch/include/ATen/ops/promote_types_native.h' 2025-06-01T21:27:42.8044331Z adding 'torch/include/ATen/ops/promote_types_ops.h' 2025-06-01T21:27:42.8047554Z adding 'torch/include/ATen/ops/put.h' 2025-06-01T21:27:42.8050883Z adding 'torch/include/ATen/ops/put_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.8053873Z adding 'torch/include/ATen/ops/put_cpu_dispatch.h' 2025-06-01T21:27:42.8056945Z adding 'torch/include/ATen/ops/put_cuda_dispatch.h' 2025-06-01T21:27:42.8059970Z adding 'torch/include/ATen/ops/put_meta_dispatch.h' 2025-06-01T21:27:42.8062975Z adding 'torch/include/ATen/ops/put_native.h' 2025-06-01T21:27:42.8066286Z adding 'torch/include/ATen/ops/put_ops.h' 2025-06-01T21:27:42.8069482Z adding 'torch/include/ATen/ops/q_per_channel_axis.h' 2025-06-01T21:27:42.8072754Z adding 'torch/include/ATen/ops/q_per_channel_axis_native.h' 2025-06-01T21:27:42.8075922Z adding 'torch/include/ATen/ops/q_per_channel_axis_ops.h' 2025-06-01T21:27:42.8079029Z adding 'torch/include/ATen/ops/q_per_channel_scales.h' 2025-06-01T21:27:42.8082330Z adding 'torch/include/ATen/ops/q_per_channel_scales_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.8085243Z adding 'torch/include/ATen/ops/q_per_channel_scales_native.h' 2025-06-01T21:27:42.8088873Z adding 'torch/include/ATen/ops/q_per_channel_scales_ops.h' 2025-06-01T21:27:42.8092510Z adding 'torch/include/ATen/ops/q_per_channel_zero_points.h' 2025-06-01T21:27:42.8096312Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.8099716Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_native.h' 2025-06-01T21:27:42.8103338Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_ops.h' 2025-06-01T21:27:42.8106803Z adding 'torch/include/ATen/ops/q_scale.h' 2025-06-01T21:27:42.8110254Z adding 'torch/include/ATen/ops/q_scale_native.h' 2025-06-01T21:27:42.8113972Z adding 'torch/include/ATen/ops/q_scale_ops.h' 2025-06-01T21:27:42.8117951Z adding 'torch/include/ATen/ops/q_zero_point.h' 2025-06-01T21:27:42.8121420Z adding 'torch/include/ATen/ops/q_zero_point_native.h' 2025-06-01T21:27:42.8125133Z adding 'torch/include/ATen/ops/q_zero_point_ops.h' 2025-06-01T21:27:42.8128763Z adding 'torch/include/ATen/ops/qr.h' 2025-06-01T21:27:42.8132523Z adding 'torch/include/ATen/ops/qr_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.8135504Z adding 'torch/include/ATen/ops/qr_native.h' 2025-06-01T21:27:42.8138911Z adding 'torch/include/ATen/ops/qr_ops.h' 2025-06-01T21:27:42.8142095Z adding 'torch/include/ATen/ops/qscheme.h' 2025-06-01T21:27:42.8145215Z adding 'torch/include/ATen/ops/qscheme_native.h' 2025-06-01T21:27:42.8148409Z adding 'torch/include/ATen/ops/qscheme_ops.h' 2025-06-01T21:27:42.8151929Z adding 'torch/include/ATen/ops/quantile.h' 2025-06-01T21:27:42.8155573Z adding 'torch/include/ATen/ops/quantile_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.8158693Z adding 'torch/include/ATen/ops/quantile_native.h' 2025-06-01T21:27:42.8162083Z adding 'torch/include/ATen/ops/quantile_ops.h' 2025-06-01T21:27:42.8165412Z adding 'torch/include/ATen/ops/quantize_per_channel.h' 2025-06-01T21:27:42.8168987Z adding 'torch/include/ATen/ops/quantize_per_channel_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.8172040Z adding 'torch/include/ATen/ops/quantize_per_channel_cpu_dispatch.h' 2025-06-01T21:27:42.8175415Z adding 'torch/include/ATen/ops/quantize_per_channel_cuda_dispatch.h' 2025-06-01T21:27:42.8178289Z adding 'torch/include/ATen/ops/quantize_per_channel_native.h' 2025-06-01T21:27:42.8181612Z adding 'torch/include/ATen/ops/quantize_per_channel_ops.h' 2025-06-01T21:27:42.8185251Z adding 'torch/include/ATen/ops/quantize_per_tensor.h' 2025-06-01T21:27:42.8188770Z adding 'torch/include/ATen/ops/quantize_per_tensor_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.8191948Z adding 'torch/include/ATen/ops/quantize_per_tensor_cpu_dispatch.h' 2025-06-01T21:27:42.8195107Z adding 'torch/include/ATen/ops/quantize_per_tensor_cuda_dispatch.h' 2025-06-01T21:27:42.8198280Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic.h' 2025-06-01T21:27:42.8201615Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.8204738Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_cpu_dispatch.h' 2025-06-01T21:27:42.8207972Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_cuda_dispatch.h' 2025-06-01T21:27:42.8211027Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_native.h' 2025-06-01T21:27:42.8214487Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_ops.h' 2025-06-01T21:27:42.8217636Z adding 'torch/include/ATen/ops/quantize_per_tensor_native.h' 2025-06-01T21:27:42.8221214Z adding 'torch/include/ATen/ops/quantize_per_tensor_ops.h' 2025-06-01T21:27:42.8224572Z adding 'torch/include/ATen/ops/quantized_batch_norm.h' 2025-06-01T21:27:42.8228013Z adding 'torch/include/ATen/ops/quantized_batch_norm_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.8231075Z adding 'torch/include/ATen/ops/quantized_batch_norm_native.h' 2025-06-01T21:27:42.8234418Z adding 'torch/include/ATen/ops/quantized_batch_norm_ops.h' 2025-06-01T21:27:42.8237692Z adding 'torch/include/ATen/ops/quantized_gru_cell.h' 2025-06-01T21:27:42.8241020Z adding 'torch/include/ATen/ops/quantized_gru_cell_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.8243967Z adding 'torch/include/ATen/ops/quantized_gru_cell_native.h' 2025-06-01T21:27:42.8247258Z adding 'torch/include/ATen/ops/quantized_gru_cell_ops.h' 2025-06-01T21:27:42.8250487Z adding 'torch/include/ATen/ops/quantized_lstm_cell.h' 2025-06-01T21:27:42.8253871Z adding 'torch/include/ATen/ops/quantized_lstm_cell_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.8256820Z adding 'torch/include/ATen/ops/quantized_lstm_cell_native.h' 2025-06-01T21:27:42.8260080Z adding 'torch/include/ATen/ops/quantized_lstm_cell_ops.h' 2025-06-01T21:27:42.8263256Z adding 'torch/include/ATen/ops/quantized_max_pool1d.h' 2025-06-01T21:27:42.8266644Z adding 'torch/include/ATen/ops/quantized_max_pool1d_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.8269697Z adding 'torch/include/ATen/ops/quantized_max_pool1d_native.h' 2025-06-01T21:27:42.8273157Z adding 'torch/include/ATen/ops/quantized_max_pool1d_ops.h' 2025-06-01T21:27:42.8276412Z adding 'torch/include/ATen/ops/quantized_max_pool2d.h' 2025-06-01T21:27:42.8279769Z adding 'torch/include/ATen/ops/quantized_max_pool2d_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.8282745Z adding 'torch/include/ATen/ops/quantized_max_pool2d_native.h' 2025-06-01T21:27:42.8286036Z adding 'torch/include/ATen/ops/quantized_max_pool2d_ops.h' 2025-06-01T21:27:42.8289245Z adding 'torch/include/ATen/ops/quantized_max_pool3d.h' 2025-06-01T21:27:42.8292568Z adding 'torch/include/ATen/ops/quantized_max_pool3d_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.8295550Z adding 'torch/include/ATen/ops/quantized_max_pool3d_native.h' 2025-06-01T21:27:42.8298792Z adding 'torch/include/ATen/ops/quantized_max_pool3d_ops.h' 2025-06-01T21:27:42.8301993Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell.h' 2025-06-01T21:27:42.8305466Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.8308916Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_native.h' 2025-06-01T21:27:42.8312419Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_ops.h' 2025-06-01T21:27:42.8315596Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell.h' 2025-06-01T21:27:42.8319003Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.8321903Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_native.h' 2025-06-01T21:27:42.8325184Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_ops.h' 2025-06-01T21:27:42.8328244Z adding 'torch/include/ATen/ops/rad2deg.h' 2025-06-01T21:27:42.8331535Z adding 'torch/include/ATen/ops/rad2deg_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.8334478Z adding 'torch/include/ATen/ops/rad2deg_native.h' 2025-06-01T21:27:42.8337686Z adding 'torch/include/ATen/ops/rad2deg_ops.h' 2025-06-01T21:27:42.8342899Z adding 'torch/include/ATen/ops/rand.h' 2025-06-01T21:27:42.8346882Z adding 'torch/include/ATen/ops/rand_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.8350037Z adding 'torch/include/ATen/ops/rand_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.8353409Z adding 'torch/include/ATen/ops/rand_like.h' 2025-06-01T21:27:42.8356848Z adding 'torch/include/ATen/ops/rand_like_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.8359857Z adding 'torch/include/ATen/ops/rand_like_native.h' 2025-06-01T21:27:42.8363157Z adding 'torch/include/ATen/ops/rand_like_ops.h' 2025-06-01T21:27:42.8366410Z adding 'torch/include/ATen/ops/rand_native.h' 2025-06-01T21:27:42.8370305Z adding 'torch/include/ATen/ops/rand_ops.h' 2025-06-01T21:27:42.8375239Z adding 'torch/include/ATen/ops/randint.h' 2025-06-01T21:27:42.8380239Z adding 'torch/include/ATen/ops/randint_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.8384889Z adding 'torch/include/ATen/ops/randint_like.h' 2025-06-01T21:27:42.8388858Z adding 'torch/include/ATen/ops/randint_like_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.8392479Z adding 'torch/include/ATen/ops/randint_like_native.h' 2025-06-01T21:27:42.8396041Z adding 'torch/include/ATen/ops/randint_like_ops.h' 2025-06-01T21:27:42.8399640Z adding 'torch/include/ATen/ops/randint_native.h' 2025-06-01T21:27:42.8403499Z adding 'torch/include/ATen/ops/randint_ops.h' 2025-06-01T21:27:42.8408517Z adding 'torch/include/ATen/ops/randn.h' 2025-06-01T21:27:42.8413106Z adding 'torch/include/ATen/ops/randn_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.8416536Z adding 'torch/include/ATen/ops/randn_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.8419791Z adding 'torch/include/ATen/ops/randn_like.h' 2025-06-01T21:27:42.8423225Z adding 'torch/include/ATen/ops/randn_like_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.8426929Z adding 'torch/include/ATen/ops/randn_like_compositeimplicitautogradnestedtensor_dispatch.h' 2025-06-01T21:27:42.8429850Z adding 'torch/include/ATen/ops/randn_like_native.h' 2025-06-01T21:27:42.8433632Z adding 'torch/include/ATen/ops/randn_like_ops.h' 2025-06-01T21:27:42.8436831Z adding 'torch/include/ATen/ops/randn_native.h' 2025-06-01T21:27:42.8440863Z adding 'torch/include/ATen/ops/randn_ops.h' 2025-06-01T21:27:42.8444458Z adding 'torch/include/ATen/ops/random.h' 2025-06-01T21:27:42.8448507Z adding 'torch/include/ATen/ops/random_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.8451724Z adding 'torch/include/ATen/ops/random_cpu_dispatch.h' 2025-06-01T21:27:42.8454851Z adding 'torch/include/ATen/ops/random_cuda_dispatch.h' 2025-06-01T21:27:42.8458138Z adding 'torch/include/ATen/ops/random_meta_dispatch.h' 2025-06-01T21:27:42.8461340Z adding 'torch/include/ATen/ops/random_native.h' 2025-06-01T21:27:42.8465004Z adding 'torch/include/ATen/ops/random_ops.h' 2025-06-01T21:27:42.8469432Z adding 'torch/include/ATen/ops/randperm.h' 2025-06-01T21:27:42.8473748Z adding 'torch/include/ATen/ops/randperm_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.8477404Z adding 'torch/include/ATen/ops/randperm_cpu_dispatch.h' 2025-06-01T21:27:42.8481008Z adding 'torch/include/ATen/ops/randperm_cuda_dispatch.h' 2025-06-01T21:27:42.8484240Z adding 'torch/include/ATen/ops/randperm_native.h' 2025-06-01T21:27:42.8487772Z adding 'torch/include/ATen/ops/randperm_ops.h' 2025-06-01T21:27:42.8491378Z adding 'torch/include/ATen/ops/range.h' 2025-06-01T21:27:42.8495001Z adding 'torch/include/ATen/ops/range_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.8498139Z adding 'torch/include/ATen/ops/range_cpu_dispatch.h' 2025-06-01T21:27:42.8501390Z adding 'torch/include/ATen/ops/range_cuda_dispatch.h' 2025-06-01T21:27:42.8504560Z adding 'torch/include/ATen/ops/range_meta_dispatch.h' 2025-06-01T21:27:42.8507809Z adding 'torch/include/ATen/ops/range_native.h' 2025-06-01T21:27:42.8511466Z adding 'torch/include/ATen/ops/range_ops.h' 2025-06-01T21:27:42.8514658Z adding 'torch/include/ATen/ops/ravel.h' 2025-06-01T21:27:42.8518597Z adding 'torch/include/ATen/ops/ravel_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.8521570Z adding 'torch/include/ATen/ops/ravel_native.h' 2025-06-01T21:27:42.8524612Z adding 'torch/include/ATen/ops/ravel_ops.h' 2025-06-01T21:27:42.8527645Z adding 'torch/include/ATen/ops/real.h' 2025-06-01T21:27:42.8530926Z adding 'torch/include/ATen/ops/real_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.8534252Z adding 'torch/include/ATen/ops/real_native.h' 2025-06-01T21:27:42.8537744Z adding 'torch/include/ATen/ops/real_ops.h' 2025-06-01T21:27:42.8540966Z adding 'torch/include/ATen/ops/reciprocal.h' 2025-06-01T21:27:42.8544500Z adding 'torch/include/ATen/ops/reciprocal_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.8548105Z adding 'torch/include/ATen/ops/reciprocal_cpu_dispatch.h' 2025-06-01T21:27:42.8551170Z adding 'torch/include/ATen/ops/reciprocal_cuda_dispatch.h' 2025-06-01T21:27:42.8554122Z adding 'torch/include/ATen/ops/reciprocal_meta.h' 2025-06-01T21:27:42.8560592Z adding 'torch/include/ATen/ops/reciprocal_meta_dispatch.h' 2025-06-01T21:27:42.8560748Z adding 'torch/include/ATen/ops/reciprocal_native.h' 2025-06-01T21:27:42.8563857Z adding 'torch/include/ATen/ops/reciprocal_ops.h' 2025-06-01T21:27:42.8566993Z adding 'torch/include/ATen/ops/record_stream.h' 2025-06-01T21:27:42.8570363Z adding 'torch/include/ATen/ops/record_stream_cuda_dispatch.h' 2025-06-01T21:27:42.8573655Z adding 'torch/include/ATen/ops/record_stream_native.h' 2025-06-01T21:27:42.8577039Z adding 'torch/include/ATen/ops/record_stream_ops.h' 2025-06-01T21:27:42.8580313Z adding 'torch/include/ATen/ops/refine_names.h' 2025-06-01T21:27:42.8584070Z adding 'torch/include/ATen/ops/refine_names_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.8587373Z adding 'torch/include/ATen/ops/refine_names_native.h' 2025-06-01T21:27:42.8591015Z adding 'torch/include/ATen/ops/refine_names_ops.h' 2025-06-01T21:27:42.8594873Z adding 'torch/include/ATen/ops/reflection_pad1d.h' 2025-06-01T21:27:42.8598948Z adding 'torch/include/ATen/ops/reflection_pad1d_backward.h' 2025-06-01T21:27:42.8602899Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.8606033Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_cpu_dispatch.h' 2025-06-01T21:27:42.8609431Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_cuda_dispatch.h' 2025-06-01T21:27:42.8612478Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_meta.h' 2025-06-01T21:27:42.8615851Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_meta_dispatch.h' 2025-06-01T21:27:42.8619020Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_native.h' 2025-06-01T21:27:42.8622569Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_ops.h' 2025-06-01T21:27:42.8625929Z adding 'torch/include/ATen/ops/reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.8628915Z adding 'torch/include/ATen/ops/reflection_pad1d_cpu_dispatch.h' 2025-06-01T21:27:42.8632376Z adding 'torch/include/ATen/ops/reflection_pad1d_cuda_dispatch.h' 2025-06-01T21:27:42.8636379Z adding 'torch/include/ATen/ops/reflection_pad1d_meta.h' 2025-06-01T21:27:42.8638940Z adding 'torch/include/ATen/ops/reflection_pad1d_meta_dispatch.h' 2025-06-01T21:27:42.8641885Z adding 'torch/include/ATen/ops/reflection_pad1d_native.h' 2025-06-01T21:27:42.8645128Z adding 'torch/include/ATen/ops/reflection_pad1d_ops.h' 2025-06-01T21:27:42.8648577Z adding 'torch/include/ATen/ops/reflection_pad2d.h' 2025-06-01T21:27:42.8653023Z adding 'torch/include/ATen/ops/reflection_pad2d_backward.h' 2025-06-01T21:27:42.8655636Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_cpu_dispatch.h' 2025-06-01T21:27:42.8658894Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_cuda_dispatch.h' 2025-06-01T21:27:42.8661875Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_native.h' 2025-06-01T21:27:42.8665123Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_ops.h' 2025-06-01T21:27:42.8668307Z adding 'torch/include/ATen/ops/reflection_pad2d_cpu_dispatch.h' 2025-06-01T21:27:42.8671485Z adding 'torch/include/ATen/ops/reflection_pad2d_cuda_dispatch.h' 2025-06-01T21:27:42.8674715Z adding 'torch/include/ATen/ops/reflection_pad2d_native.h' 2025-06-01T21:27:42.8677943Z adding 'torch/include/ATen/ops/reflection_pad2d_ops.h' 2025-06-01T21:27:42.8681525Z adding 'torch/include/ATen/ops/reflection_pad3d.h' 2025-06-01T21:27:42.8685016Z adding 'torch/include/ATen/ops/reflection_pad3d_backward.h' 2025-06-01T21:27:42.8688523Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.8691508Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_cpu_dispatch.h' 2025-06-01T21:27:42.8694642Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_cuda_dispatch.h' 2025-06-01T21:27:42.8697724Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_meta.h' 2025-06-01T21:27:42.8707892Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_meta_dispatch.h' 2025-06-01T21:27:42.8711536Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_native.h' 2025-06-01T21:27:42.8715880Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_ops.h' 2025-06-01T21:27:42.8718528Z adding 'torch/include/ATen/ops/reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.8721682Z adding 'torch/include/ATen/ops/reflection_pad3d_cpu_dispatch.h' 2025-06-01T21:27:42.8724680Z adding 'torch/include/ATen/ops/reflection_pad3d_cuda_dispatch.h' 2025-06-01T21:27:42.8728001Z adding 'torch/include/ATen/ops/reflection_pad3d_meta.h' 2025-06-01T21:27:42.8731360Z adding 'torch/include/ATen/ops/reflection_pad3d_meta_dispatch.h' 2025-06-01T21:27:42.8734634Z adding 'torch/include/ATen/ops/reflection_pad3d_native.h' 2025-06-01T21:27:42.8738771Z adding 'torch/include/ATen/ops/reflection_pad3d_ops.h' 2025-06-01T21:27:42.8741058Z adding 'torch/include/ATen/ops/relu.h' 2025-06-01T21:27:42.8744646Z adding 'torch/include/ATen/ops/relu6.h' 2025-06-01T21:27:42.8747611Z adding 'torch/include/ATen/ops/relu6_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.8750609Z adding 'torch/include/ATen/ops/relu6_native.h' 2025-06-01T21:27:42.8753937Z adding 'torch/include/ATen/ops/relu6_ops.h' 2025-06-01T21:27:42.8757373Z adding 'torch/include/ATen/ops/relu_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.8760403Z adding 'torch/include/ATen/ops/relu_cpu_dispatch.h' 2025-06-01T21:27:42.8763621Z adding 'torch/include/ATen/ops/relu_cuda_dispatch.h' 2025-06-01T21:27:42.8766680Z adding 'torch/include/ATen/ops/relu_meta_dispatch.h' 2025-06-01T21:27:42.8769896Z adding 'torch/include/ATen/ops/relu_native.h' 2025-06-01T21:27:42.8773217Z adding 'torch/include/ATen/ops/relu_ops.h' 2025-06-01T21:27:42.8776534Z adding 'torch/include/ATen/ops/remainder.h' 2025-06-01T21:27:42.8780060Z adding 'torch/include/ATen/ops/remainder_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.8783311Z adding 'torch/include/ATen/ops/remainder_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.8786379Z adding 'torch/include/ATen/ops/remainder_cpu_dispatch.h' 2025-06-01T21:27:42.8789518Z adding 'torch/include/ATen/ops/remainder_cuda_dispatch.h' 2025-06-01T21:27:42.8792902Z adding 'torch/include/ATen/ops/remainder_meta.h' 2025-06-01T21:27:42.8796090Z adding 'torch/include/ATen/ops/remainder_meta_dispatch.h' 2025-06-01T21:27:42.8799190Z adding 'torch/include/ATen/ops/remainder_native.h' 2025-06-01T21:27:42.8802909Z adding 'torch/include/ATen/ops/remainder_ops.h' 2025-06-01T21:27:42.8806044Z adding 'torch/include/ATen/ops/rename.h' 2025-06-01T21:27:42.8809498Z adding 'torch/include/ATen/ops/rename_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.8812445Z adding 'torch/include/ATen/ops/rename_native.h' 2025-06-01T21:27:42.8815849Z adding 'torch/include/ATen/ops/rename_ops.h' 2025-06-01T21:27:42.8819056Z adding 'torch/include/ATen/ops/renorm.h' 2025-06-01T21:27:42.8822587Z adding 'torch/include/ATen/ops/renorm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.8825609Z adding 'torch/include/ATen/ops/renorm_cpu_dispatch.h' 2025-06-01T21:27:42.8828821Z adding 'torch/include/ATen/ops/renorm_cuda_dispatch.h' 2025-06-01T21:27:42.8832271Z adding 'torch/include/ATen/ops/renorm_meta.h' 2025-06-01T21:27:42.8835501Z adding 'torch/include/ATen/ops/renorm_meta_dispatch.h' 2025-06-01T21:27:42.8838670Z adding 'torch/include/ATen/ops/renorm_native.h' 2025-06-01T21:27:42.8841987Z adding 'torch/include/ATen/ops/renorm_ops.h' 2025-06-01T21:27:42.8845491Z adding 'torch/include/ATen/ops/repeat.h' 2025-06-01T21:27:42.8848930Z adding 'torch/include/ATen/ops/repeat_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.8852594Z adding 'torch/include/ATen/ops/repeat_interleave.h' 2025-06-01T21:27:42.8856326Z adding 'torch/include/ATen/ops/repeat_interleave_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.8859606Z adding 'torch/include/ATen/ops/repeat_interleave_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.8862835Z adding 'torch/include/ATen/ops/repeat_interleave_cpu_dispatch.h' 2025-06-01T21:27:42.8865960Z adding 'torch/include/ATen/ops/repeat_interleave_cuda_dispatch.h' 2025-06-01T21:27:42.8869217Z adding 'torch/include/ATen/ops/repeat_interleave_native.h' 2025-06-01T21:27:42.8872751Z adding 'torch/include/ATen/ops/repeat_interleave_ops.h' 2025-06-01T21:27:42.8875884Z adding 'torch/include/ATen/ops/repeat_native.h' 2025-06-01T21:27:42.8879231Z adding 'torch/include/ATen/ops/repeat_ops.h' 2025-06-01T21:27:42.8882635Z adding 'torch/include/ATen/ops/replication_pad1d.h' 2025-06-01T21:27:42.8886409Z adding 'torch/include/ATen/ops/replication_pad1d_backward.h' 2025-06-01T21:27:42.8890067Z adding 'torch/include/ATen/ops/replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.8893132Z adding 'torch/include/ATen/ops/replication_pad1d_backward_cpu_dispatch.h' 2025-06-01T21:27:42.8896454Z adding 'torch/include/ATen/ops/replication_pad1d_backward_cuda_dispatch.h' 2025-06-01T21:27:42.8899541Z adding 'torch/include/ATen/ops/replication_pad1d_backward_meta.h' 2025-06-01T21:27:42.8903338Z adding 'torch/include/ATen/ops/replication_pad1d_backward_meta_dispatch.h' 2025-06-01T21:27:42.8906509Z adding 'torch/include/ATen/ops/replication_pad1d_backward_native.h' 2025-06-01T21:27:42.8909953Z adding 'torch/include/ATen/ops/replication_pad1d_backward_ops.h' 2025-06-01T21:27:42.8913524Z adding 'torch/include/ATen/ops/replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.8916554Z adding 'torch/include/ATen/ops/replication_pad1d_cpu_dispatch.h' 2025-06-01T21:27:42.8920079Z adding 'torch/include/ATen/ops/replication_pad1d_cuda_dispatch.h' 2025-06-01T21:27:42.8923580Z adding 'torch/include/ATen/ops/replication_pad1d_meta.h' 2025-06-01T21:27:42.8927267Z adding 'torch/include/ATen/ops/replication_pad1d_meta_dispatch.h' 2025-06-01T21:27:42.8930789Z adding 'torch/include/ATen/ops/replication_pad1d_native.h' 2025-06-01T21:27:42.8934473Z adding 'torch/include/ATen/ops/replication_pad1d_ops.h' 2025-06-01T21:27:42.8937973Z adding 'torch/include/ATen/ops/replication_pad2d.h' 2025-06-01T21:27:42.8941801Z adding 'torch/include/ATen/ops/replication_pad2d_backward.h' 2025-06-01T21:27:42.8945139Z adding 'torch/include/ATen/ops/replication_pad2d_backward_cpu_dispatch.h' 2025-06-01T21:27:42.8948570Z adding 'torch/include/ATen/ops/replication_pad2d_backward_cuda_dispatch.h' 2025-06-01T21:27:42.8951756Z adding 'torch/include/ATen/ops/replication_pad2d_backward_native.h' 2025-06-01T21:27:42.8955126Z adding 'torch/include/ATen/ops/replication_pad2d_backward_ops.h' 2025-06-01T21:27:42.8958667Z adding 'torch/include/ATen/ops/replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.8961748Z adding 'torch/include/ATen/ops/replication_pad2d_cpu_dispatch.h' 2025-06-01T21:27:42.8964935Z adding 'torch/include/ATen/ops/replication_pad2d_cuda_dispatch.h' 2025-06-01T21:27:42.8967945Z adding 'torch/include/ATen/ops/replication_pad2d_meta.h' 2025-06-01T21:27:42.8971277Z adding 'torch/include/ATen/ops/replication_pad2d_meta_dispatch.h' 2025-06-01T21:27:42.8974341Z adding 'torch/include/ATen/ops/replication_pad2d_native.h' 2025-06-01T21:27:42.8977576Z adding 'torch/include/ATen/ops/replication_pad2d_ops.h' 2025-06-01T21:27:42.8980915Z adding 'torch/include/ATen/ops/replication_pad3d.h' 2025-06-01T21:27:42.8984473Z adding 'torch/include/ATen/ops/replication_pad3d_backward.h' 2025-06-01T21:27:42.8988054Z adding 'torch/include/ATen/ops/replication_pad3d_backward_cpu_dispatch.h' 2025-06-01T21:27:42.8991387Z adding 'torch/include/ATen/ops/replication_pad3d_backward_cuda_dispatch.h' 2025-06-01T21:27:42.8994529Z adding 'torch/include/ATen/ops/replication_pad3d_backward_native.h' 2025-06-01T21:27:42.8997770Z adding 'torch/include/ATen/ops/replication_pad3d_backward_ops.h' 2025-06-01T21:27:42.9001175Z adding 'torch/include/ATen/ops/replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.9004171Z adding 'torch/include/ATen/ops/replication_pad3d_cpu_dispatch.h' 2025-06-01T21:27:42.9007317Z adding 'torch/include/ATen/ops/replication_pad3d_cuda_dispatch.h' 2025-06-01T21:27:42.9010386Z adding 'torch/include/ATen/ops/replication_pad3d_meta.h' 2025-06-01T21:27:42.9013526Z adding 'torch/include/ATen/ops/replication_pad3d_meta_dispatch.h' 2025-06-01T21:27:42.9016585Z adding 'torch/include/ATen/ops/replication_pad3d_native.h' 2025-06-01T21:27:42.9019947Z adding 'torch/include/ATen/ops/replication_pad3d_ops.h' 2025-06-01T21:27:42.9022987Z adding 'torch/include/ATen/ops/requires_grad.h' 2025-06-01T21:27:42.9026339Z adding 'torch/include/ATen/ops/requires_grad_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.9029253Z adding 'torch/include/ATen/ops/requires_grad_native.h' 2025-06-01T21:27:42.9032495Z adding 'torch/include/ATen/ops/requires_grad_ops.h' 2025-06-01T21:27:42.9035699Z adding 'torch/include/ATen/ops/reshape.h' 2025-06-01T21:27:42.9038679Z adding 'torch/include/ATen/ops/reshape_as.h' 2025-06-01T21:27:42.9041958Z adding 'torch/include/ATen/ops/reshape_as_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.9045125Z adding 'torch/include/ATen/ops/reshape_as_compositeimplicitautogradnestedtensor_dispatch.h' 2025-06-01T21:27:42.9047913Z adding 'torch/include/ATen/ops/reshape_as_native.h' 2025-06-01T21:27:42.9051014Z adding 'torch/include/ATen/ops/reshape_as_ops.h' 2025-06-01T21:27:42.9054290Z adding 'torch/include/ATen/ops/reshape_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.9057525Z adding 'torch/include/ATen/ops/reshape_compositeimplicitautogradnestedtensor_dispatch.h' 2025-06-01T21:27:42.9060349Z adding 'torch/include/ATen/ops/reshape_native.h' 2025-06-01T21:27:42.9063490Z adding 'torch/include/ATen/ops/reshape_ops.h' 2025-06-01T21:27:42.9066997Z adding 'torch/include/ATen/ops/resize.h' 2025-06-01T21:27:42.9070316Z adding 'torch/include/ATen/ops/resize_as.h' 2025-06-01T21:27:42.9073934Z adding 'torch/include/ATen/ops/resize_as_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.9077013Z adding 'torch/include/ATen/ops/resize_as_native.h' 2025-06-01T21:27:42.9080572Z adding 'torch/include/ATen/ops/resize_as_ops.h' 2025-06-01T21:27:42.9083924Z adding 'torch/include/ATen/ops/resize_as_sparse.h' 2025-06-01T21:27:42.9087337Z adding 'torch/include/ATen/ops/resize_as_sparse_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.9090569Z adding 'torch/include/ATen/ops/resize_as_sparse_meta_dispatch.h' 2025-06-01T21:27:42.9093985Z adding 'torch/include/ATen/ops/resize_as_sparse_native.h' 2025-06-01T21:27:42.9097388Z adding 'torch/include/ATen/ops/resize_as_sparse_ops.h' 2025-06-01T21:27:42.9100789Z adding 'torch/include/ATen/ops/resize_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.9104160Z adding 'torch/include/ATen/ops/resize_cpu_dispatch.h' 2025-06-01T21:27:42.9107357Z adding 'torch/include/ATen/ops/resize_cuda_dispatch.h' 2025-06-01T21:27:42.9110541Z adding 'torch/include/ATen/ops/resize_meta_dispatch.h' 2025-06-01T21:27:42.9113942Z adding 'torch/include/ATen/ops/resize_native.h' 2025-06-01T21:27:42.9117326Z adding 'torch/include/ATen/ops/resize_ops.h' 2025-06-01T21:27:42.9120649Z adding 'torch/include/ATen/ops/resolve_conj.h' 2025-06-01T21:27:42.9124061Z adding 'torch/include/ATen/ops/resolve_conj_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.9127085Z adding 'torch/include/ATen/ops/resolve_conj_native.h' 2025-06-01T21:27:42.9130373Z adding 'torch/include/ATen/ops/resolve_conj_ops.h' 2025-06-01T21:27:42.9133587Z adding 'torch/include/ATen/ops/resolve_neg.h' 2025-06-01T21:27:42.9136934Z adding 'torch/include/ATen/ops/resolve_neg_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.9139878Z adding 'torch/include/ATen/ops/resolve_neg_native.h' 2025-06-01T21:27:42.9143158Z adding 'torch/include/ATen/ops/resolve_neg_ops.h' 2025-06-01T21:27:42.9146321Z adding 'torch/include/ATen/ops/result_type.h' 2025-06-01T21:27:42.9149838Z adding 'torch/include/ATen/ops/result_type_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.9153004Z adding 'torch/include/ATen/ops/result_type_native.h' 2025-06-01T21:27:42.9156432Z adding 'torch/include/ATen/ops/result_type_ops.h' 2025-06-01T21:27:42.9159689Z adding 'torch/include/ATen/ops/retain_grad.h' 2025-06-01T21:27:42.9163010Z adding 'torch/include/ATen/ops/retain_grad_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.9165996Z adding 'torch/include/ATen/ops/retain_grad_native.h' 2025-06-01T21:27:42.9169161Z adding 'torch/include/ATen/ops/retain_grad_ops.h' 2025-06-01T21:27:42.9172279Z adding 'torch/include/ATen/ops/retains_grad.h' 2025-06-01T21:27:42.9175553Z adding 'torch/include/ATen/ops/retains_grad_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.9178587Z adding 'torch/include/ATen/ops/retains_grad_native.h' 2025-06-01T21:27:42.9181792Z adding 'torch/include/ATen/ops/retains_grad_ops.h' 2025-06-01T21:27:42.9185017Z adding 'torch/include/ATen/ops/rms_norm.h' 2025-06-01T21:27:42.9188551Z adding 'torch/include/ATen/ops/rms_norm_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.9191657Z adding 'torch/include/ATen/ops/rms_norm_native.h' 2025-06-01T21:27:42.9194991Z adding 'torch/include/ATen/ops/rms_norm_ops.h' 2025-06-01T21:27:42.9198211Z adding 'torch/include/ATen/ops/rnn_relu.h' 2025-06-01T21:27:42.9201456Z adding 'torch/include/ATen/ops/rnn_relu_cell.h' 2025-06-01T21:27:42.9204935Z adding 'torch/include/ATen/ops/rnn_relu_cell_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.9207818Z adding 'torch/include/ATen/ops/rnn_relu_cell_native.h' 2025-06-01T21:27:42.9211245Z adding 'torch/include/ATen/ops/rnn_relu_cell_ops.h' 2025-06-01T21:27:42.9214609Z adding 'torch/include/ATen/ops/rnn_relu_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.9217713Z adding 'torch/include/ATen/ops/rnn_relu_native.h' 2025-06-01T21:27:42.9221077Z adding 'torch/include/ATen/ops/rnn_relu_ops.h' 2025-06-01T21:27:42.9224409Z adding 'torch/include/ATen/ops/rnn_tanh.h' 2025-06-01T21:27:42.9227672Z adding 'torch/include/ATen/ops/rnn_tanh_cell.h' 2025-06-01T21:27:42.9231115Z adding 'torch/include/ATen/ops/rnn_tanh_cell_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.9234195Z adding 'torch/include/ATen/ops/rnn_tanh_cell_native.h' 2025-06-01T21:27:42.9237839Z adding 'torch/include/ATen/ops/rnn_tanh_cell_ops.h' 2025-06-01T21:27:42.9241357Z adding 'torch/include/ATen/ops/rnn_tanh_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.9244358Z adding 'torch/include/ATen/ops/rnn_tanh_native.h' 2025-06-01T21:27:42.9247732Z adding 'torch/include/ATen/ops/rnn_tanh_ops.h' 2025-06-01T21:27:42.9251302Z adding 'torch/include/ATen/ops/roll.h' 2025-06-01T21:27:42.9254818Z adding 'torch/include/ATen/ops/roll_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.9257892Z adding 'torch/include/ATen/ops/roll_cpu_dispatch.h' 2025-06-01T21:27:42.9261049Z adding 'torch/include/ATen/ops/roll_cuda_dispatch.h' 2025-06-01T21:27:42.9264162Z adding 'torch/include/ATen/ops/roll_native.h' 2025-06-01T21:27:42.9267504Z adding 'torch/include/ATen/ops/roll_ops.h' 2025-06-01T21:27:42.9270743Z adding 'torch/include/ATen/ops/rot90.h' 2025-06-01T21:27:42.9274275Z adding 'torch/include/ATen/ops/rot90_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.9277212Z adding 'torch/include/ATen/ops/rot90_native.h' 2025-06-01T21:27:42.9280589Z adding 'torch/include/ATen/ops/rot90_ops.h' 2025-06-01T21:27:42.9284393Z adding 'torch/include/ATen/ops/round.h' 2025-06-01T21:27:42.9287908Z adding 'torch/include/ATen/ops/round_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.9291008Z adding 'torch/include/ATen/ops/round_cpu_dispatch.h' 2025-06-01T21:27:42.9294177Z adding 'torch/include/ATen/ops/round_cuda_dispatch.h' 2025-06-01T21:27:42.9297361Z adding 'torch/include/ATen/ops/round_meta.h' 2025-06-01T21:27:42.9300522Z adding 'torch/include/ATen/ops/round_meta_dispatch.h' 2025-06-01T21:27:42.9303820Z adding 'torch/include/ATen/ops/round_native.h' 2025-06-01T21:27:42.9307321Z adding 'torch/include/ATen/ops/round_ops.h' 2025-06-01T21:27:42.9310484Z adding 'torch/include/ATen/ops/row_indices.h' 2025-06-01T21:27:42.9313963Z adding 'torch/include/ATen/ops/row_indices_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.9316968Z adding 'torch/include/ATen/ops/row_indices_copy.h' 2025-06-01T21:27:42.9327362Z adding 'torch/include/ATen/ops/row_indices_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.9328013Z adding 'torch/include/ATen/ops/row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.9329700Z adding 'torch/include/ATen/ops/row_indices_copy_native.h' 2025-06-01T21:27:42.9333142Z adding 'torch/include/ATen/ops/row_indices_copy_ops.h' 2025-06-01T21:27:42.9336509Z adding 'torch/include/ATen/ops/row_indices_native.h' 2025-06-01T21:27:42.9339549Z adding 'torch/include/ATen/ops/row_indices_ops.h' 2025-06-01T21:27:42.9342664Z adding 'torch/include/ATen/ops/row_stack.h' 2025-06-01T21:27:42.9346308Z adding 'torch/include/ATen/ops/row_stack_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.9349395Z adding 'torch/include/ATen/ops/row_stack_native.h' 2025-06-01T21:27:42.9352723Z adding 'torch/include/ATen/ops/row_stack_ops.h' 2025-06-01T21:27:42.9355913Z adding 'torch/include/ATen/ops/rrelu.h' 2025-06-01T21:27:42.9359258Z adding 'torch/include/ATen/ops/rrelu_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.9362361Z adding 'torch/include/ATen/ops/rrelu_native.h' 2025-06-01T21:27:42.9365621Z adding 'torch/include/ATen/ops/rrelu_ops.h' 2025-06-01T21:27:42.9369207Z adding 'torch/include/ATen/ops/rrelu_with_noise.h' 2025-06-01T21:27:42.9372792Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward.h' 2025-06-01T21:27:42.9376062Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.9379221Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_native.h' 2025-06-01T21:27:42.9382555Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_ops.h' 2025-06-01T21:27:42.9386039Z adding 'torch/include/ATen/ops/rrelu_with_noise_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.9389998Z adding 'torch/include/ATen/ops/rrelu_with_noise_cpu_dispatch.h' 2025-06-01T21:27:42.9392807Z adding 'torch/include/ATen/ops/rrelu_with_noise_cuda_dispatch.h' 2025-06-01T21:27:42.9396032Z adding 'torch/include/ATen/ops/rrelu_with_noise_meta_dispatch.h' 2025-06-01T21:27:42.9399304Z adding 'torch/include/ATen/ops/rrelu_with_noise_native.h' 2025-06-01T21:27:42.9402699Z adding 'torch/include/ATen/ops/rrelu_with_noise_ops.h' 2025-06-01T21:27:42.9406442Z adding 'torch/include/ATen/ops/rshift.h' 2025-06-01T21:27:42.9409513Z adding 'torch/include/ATen/ops/rshift_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.9412514Z adding 'torch/include/ATen/ops/rshift_cpu_dispatch.h' 2025-06-01T21:27:42.9415614Z adding 'torch/include/ATen/ops/rshift_cuda_dispatch.h' 2025-06-01T21:27:42.9418705Z adding 'torch/include/ATen/ops/rshift_meta_dispatch.h' 2025-06-01T21:27:42.9422122Z adding 'torch/include/ATen/ops/rshift_native.h' 2025-06-01T21:27:42.9425325Z adding 'torch/include/ATen/ops/rshift_ops.h' 2025-06-01T21:27:42.9428536Z adding 'torch/include/ATen/ops/rsqrt.h' 2025-06-01T21:27:42.9432018Z adding 'torch/include/ATen/ops/rsqrt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.9434970Z adding 'torch/include/ATen/ops/rsqrt_cpu_dispatch.h' 2025-06-01T21:27:42.9438095Z adding 'torch/include/ATen/ops/rsqrt_cuda_dispatch.h' 2025-06-01T21:27:42.9441145Z adding 'torch/include/ATen/ops/rsqrt_meta.h' 2025-06-01T21:27:42.9444272Z adding 'torch/include/ATen/ops/rsqrt_meta_dispatch.h' 2025-06-01T21:27:42.9447333Z adding 'torch/include/ATen/ops/rsqrt_native.h' 2025-06-01T21:27:42.9450562Z adding 'torch/include/ATen/ops/rsqrt_ops.h' 2025-06-01T21:27:42.9454000Z adding 'torch/include/ATen/ops/rsub.h' 2025-06-01T21:27:42.9457383Z adding 'torch/include/ATen/ops/rsub_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.9460377Z adding 'torch/include/ATen/ops/rsub_cpu_dispatch.h' 2025-06-01T21:27:42.9464289Z adding 'torch/include/ATen/ops/rsub_cuda_dispatch.h' 2025-06-01T21:27:42.9467442Z adding 'torch/include/ATen/ops/rsub_native.h' 2025-06-01T21:27:42.9470864Z adding 'torch/include/ATen/ops/rsub_ops.h' 2025-06-01T21:27:42.9474312Z adding 'torch/include/ATen/ops/scalar_tensor.h' 2025-06-01T21:27:42.9477675Z adding 'torch/include/ATen/ops/scalar_tensor_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.9480677Z adding 'torch/include/ATen/ops/scalar_tensor_native.h' 2025-06-01T21:27:42.9483941Z adding 'torch/include/ATen/ops/scalar_tensor_ops.h' 2025-06-01T21:27:42.9487269Z adding 'torch/include/ATen/ops/scaled_dot_product_attention.h' 2025-06-01T21:27:42.9490661Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.9493687Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_native.h' 2025-06-01T21:27:42.9496916Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_ops.h' 2025-06-01T21:27:42.9500444Z adding 'torch/include/ATen/ops/scatter.h' 2025-06-01T21:27:42.9503651Z adding 'torch/include/ATen/ops/scatter_add.h' 2025-06-01T21:27:42.9507082Z adding 'torch/include/ATen/ops/scatter_add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.9510289Z adding 'torch/include/ATen/ops/scatter_add_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.9513591Z adding 'torch/include/ATen/ops/scatter_add_cpu_dispatch.h' 2025-06-01T21:27:42.9516676Z adding 'torch/include/ATen/ops/scatter_add_cuda_dispatch.h' 2025-06-01T21:27:42.9520077Z adding 'torch/include/ATen/ops/scatter_add_meta.h' 2025-06-01T21:27:42.9522920Z adding 'torch/include/ATen/ops/scatter_add_meta_dispatch.h' 2025-06-01T21:27:42.9525914Z adding 'torch/include/ATen/ops/scatter_add_native.h' 2025-06-01T21:27:42.9529246Z adding 'torch/include/ATen/ops/scatter_add_ops.h' 2025-06-01T21:27:42.9532718Z adding 'torch/include/ATen/ops/scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.9535775Z adding 'torch/include/ATen/ops/scatter_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.9538972Z adding 'torch/include/ATen/ops/scatter_cpu_dispatch.h' 2025-06-01T21:27:42.9542329Z adding 'torch/include/ATen/ops/scatter_cuda_dispatch.h' 2025-06-01T21:27:42.9545576Z adding 'torch/include/ATen/ops/scatter_meta.h' 2025-06-01T21:27:42.9548750Z adding 'torch/include/ATen/ops/scatter_meta_dispatch.h' 2025-06-01T21:27:42.9552082Z adding 'torch/include/ATen/ops/scatter_native.h' 2025-06-01T21:27:42.9556033Z adding 'torch/include/ATen/ops/scatter_ops.h' 2025-06-01T21:27:42.9559515Z adding 'torch/include/ATen/ops/scatter_reduce.h' 2025-06-01T21:27:42.9563021Z adding 'torch/include/ATen/ops/scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.9566075Z adding 'torch/include/ATen/ops/scatter_reduce_cpu_dispatch.h' 2025-06-01T21:27:42.9569224Z adding 'torch/include/ATen/ops/scatter_reduce_cuda_dispatch.h' 2025-06-01T21:27:42.9572260Z adding 'torch/include/ATen/ops/scatter_reduce_meta.h' 2025-06-01T21:27:42.9575504Z adding 'torch/include/ATen/ops/scatter_reduce_meta_dispatch.h' 2025-06-01T21:27:42.9578515Z adding 'torch/include/ATen/ops/scatter_reduce_native.h' 2025-06-01T21:27:42.9582020Z adding 'torch/include/ATen/ops/scatter_reduce_ops.h' 2025-06-01T21:27:42.9585354Z adding 'torch/include/ATen/ops/searchsorted.h' 2025-06-01T21:27:42.9588678Z adding 'torch/include/ATen/ops/searchsorted_cpu_dispatch.h' 2025-06-01T21:27:42.9592091Z adding 'torch/include/ATen/ops/searchsorted_cuda_dispatch.h' 2025-06-01T21:27:42.9595206Z adding 'torch/include/ATen/ops/searchsorted_native.h' 2025-06-01T21:27:42.9598675Z adding 'torch/include/ATen/ops/searchsorted_ops.h' 2025-06-01T21:27:42.9602005Z adding 'torch/include/ATen/ops/segment_reduce.h' 2025-06-01T21:27:42.9605423Z adding 'torch/include/ATen/ops/segment_reduce_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.9608482Z adding 'torch/include/ATen/ops/segment_reduce_cpu_dispatch.h' 2025-06-01T21:27:42.9611605Z adding 'torch/include/ATen/ops/segment_reduce_cuda_dispatch.h' 2025-06-01T21:27:42.9614647Z adding 'torch/include/ATen/ops/segment_reduce_native.h' 2025-06-01T21:27:42.9617942Z adding 'torch/include/ATen/ops/segment_reduce_ops.h' 2025-06-01T21:27:42.9621142Z adding 'torch/include/ATen/ops/select.h' 2025-06-01T21:27:42.9624592Z adding 'torch/include/ATen/ops/select_backward.h' 2025-06-01T21:27:42.9628053Z adding 'torch/include/ATen/ops/select_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.9631337Z adding 'torch/include/ATen/ops/select_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.9634220Z adding 'torch/include/ATen/ops/select_backward_native.h' 2025-06-01T21:27:42.9637445Z adding 'torch/include/ATen/ops/select_backward_ops.h' 2025-06-01T21:27:42.9640712Z adding 'torch/include/ATen/ops/select_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.9643807Z adding 'torch/include/ATen/ops/select_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.9646981Z adding 'torch/include/ATen/ops/select_copy.h' 2025-06-01T21:27:42.9650428Z adding 'torch/include/ATen/ops/select_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.9653628Z adding 'torch/include/ATen/ops/select_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.9656535Z adding 'torch/include/ATen/ops/select_copy_native.h' 2025-06-01T21:27:42.9659711Z adding 'torch/include/ATen/ops/select_copy_ops.h' 2025-06-01T21:27:42.9662789Z adding 'torch/include/ATen/ops/select_native.h' 2025-06-01T21:27:42.9666029Z adding 'torch/include/ATen/ops/select_ops.h' 2025-06-01T21:27:42.9669391Z adding 'torch/include/ATen/ops/select_scatter.h' 2025-06-01T21:27:42.9672916Z adding 'torch/include/ATen/ops/select_scatter_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.9676177Z adding 'torch/include/ATen/ops/select_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.9679045Z adding 'torch/include/ATen/ops/select_scatter_native.h' 2025-06-01T21:27:42.9682251Z adding 'torch/include/ATen/ops/select_scatter_ops.h' 2025-06-01T21:27:42.9685298Z adding 'torch/include/ATen/ops/selu.h' 2025-06-01T21:27:42.9688531Z adding 'torch/include/ATen/ops/selu_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.9691499Z adding 'torch/include/ATen/ops/selu_native.h' 2025-06-01T21:27:42.9694564Z adding 'torch/include/ATen/ops/selu_ops.h' 2025-06-01T21:27:42.9698391Z adding 'torch/include/ATen/ops/set.h' 2025-06-01T21:27:42.9702034Z adding 'torch/include/ATen/ops/set_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:42.9705336Z adding 'torch/include/ATen/ops/set_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.9708312Z adding 'torch/include/ATen/ops/set_cpu_dispatch.h' 2025-06-01T21:27:42.9711518Z adding 'torch/include/ATen/ops/set_cuda_dispatch.h' 2025-06-01T21:27:42.9714548Z adding 'torch/include/ATen/ops/set_data.h' 2025-06-01T21:27:42.9717713Z adding 'torch/include/ATen/ops/set_data_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.9720610Z adding 'torch/include/ATen/ops/set_data_native.h' 2025-06-01T21:27:42.9723769Z adding 'torch/include/ATen/ops/set_data_ops.h' 2025-06-01T21:27:42.9726927Z adding 'torch/include/ATen/ops/set_meta_dispatch.h' 2025-06-01T21:27:42.9730118Z adding 'torch/include/ATen/ops/set_native.h' 2025-06-01T21:27:42.9734156Z adding 'torch/include/ATen/ops/set_ops.h' 2025-06-01T21:27:42.9737616Z adding 'torch/include/ATen/ops/sgn.h' 2025-06-01T21:27:42.9741363Z adding 'torch/include/ATen/ops/sgn_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.9744187Z adding 'torch/include/ATen/ops/sgn_cpu_dispatch.h' 2025-06-01T21:27:42.9747316Z adding 'torch/include/ATen/ops/sgn_cuda_dispatch.h' 2025-06-01T21:27:42.9750581Z adding 'torch/include/ATen/ops/sgn_meta.h' 2025-06-01T21:27:42.9753876Z adding 'torch/include/ATen/ops/sgn_meta_dispatch.h' 2025-06-01T21:27:42.9757164Z adding 'torch/include/ATen/ops/sgn_native.h' 2025-06-01T21:27:42.9761279Z adding 'torch/include/ATen/ops/sgn_ops.h' 2025-06-01T21:27:42.9763740Z adding 'torch/include/ATen/ops/sigmoid.h' 2025-06-01T21:27:42.9767136Z adding 'torch/include/ATen/ops/sigmoid_backward.h' 2025-06-01T21:27:42.9770402Z adding 'torch/include/ATen/ops/sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.9773505Z adding 'torch/include/ATen/ops/sigmoid_backward_cpu_dispatch.h' 2025-06-01T21:27:42.9776657Z adding 'torch/include/ATen/ops/sigmoid_backward_cuda_dispatch.h' 2025-06-01T21:27:42.9779860Z adding 'torch/include/ATen/ops/sigmoid_backward_meta.h' 2025-06-01T21:27:42.9782975Z adding 'torch/include/ATen/ops/sigmoid_backward_meta_dispatch.h' 2025-06-01T21:27:42.9786171Z adding 'torch/include/ATen/ops/sigmoid_backward_native.h' 2025-06-01T21:27:42.9790014Z adding 'torch/include/ATen/ops/sigmoid_backward_ops.h' 2025-06-01T21:27:42.9792915Z adding 'torch/include/ATen/ops/sigmoid_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.9796006Z adding 'torch/include/ATen/ops/sigmoid_cpu_dispatch.h' 2025-06-01T21:27:42.9799144Z adding 'torch/include/ATen/ops/sigmoid_cuda_dispatch.h' 2025-06-01T21:27:42.9802392Z adding 'torch/include/ATen/ops/sigmoid_meta.h' 2025-06-01T21:27:42.9805507Z adding 'torch/include/ATen/ops/sigmoid_meta_dispatch.h' 2025-06-01T21:27:42.9808714Z adding 'torch/include/ATen/ops/sigmoid_native.h' 2025-06-01T21:27:42.9812840Z adding 'torch/include/ATen/ops/sigmoid_ops.h' 2025-06-01T21:27:42.9815218Z adding 'torch/include/ATen/ops/sign.h' 2025-06-01T21:27:42.9818827Z adding 'torch/include/ATen/ops/sign_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.9821626Z adding 'torch/include/ATen/ops/sign_cpu_dispatch.h' 2025-06-01T21:27:42.9824809Z adding 'torch/include/ATen/ops/sign_cuda_dispatch.h' 2025-06-01T21:27:42.9827818Z adding 'torch/include/ATen/ops/sign_meta.h' 2025-06-01T21:27:42.9831201Z adding 'torch/include/ATen/ops/sign_meta_dispatch.h' 2025-06-01T21:27:42.9834285Z adding 'torch/include/ATen/ops/sign_native.h' 2025-06-01T21:27:42.9837663Z adding 'torch/include/ATen/ops/sign_ops.h' 2025-06-01T21:27:42.9841458Z adding 'torch/include/ATen/ops/signbit.h' 2025-06-01T21:27:42.9844291Z adding 'torch/include/ATen/ops/signbit_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.9847424Z adding 'torch/include/ATen/ops/signbit_cpu_dispatch.h' 2025-06-01T21:27:42.9850423Z adding 'torch/include/ATen/ops/signbit_cuda_dispatch.h' 2025-06-01T21:27:42.9853963Z adding 'torch/include/ATen/ops/signbit_meta.h' 2025-06-01T21:27:42.9857080Z adding 'torch/include/ATen/ops/signbit_meta_dispatch.h' 2025-06-01T21:27:42.9860303Z adding 'torch/include/ATen/ops/signbit_native.h' 2025-06-01T21:27:42.9864021Z adding 'torch/include/ATen/ops/signbit_ops.h' 2025-06-01T21:27:42.9866750Z adding 'torch/include/ATen/ops/silu.h' 2025-06-01T21:27:42.9870393Z adding 'torch/include/ATen/ops/silu_backward.h' 2025-06-01T21:27:42.9873563Z adding 'torch/include/ATen/ops/silu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.9876686Z adding 'torch/include/ATen/ops/silu_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:42.9879774Z adding 'torch/include/ATen/ops/silu_backward_cpu_dispatch.h' 2025-06-01T21:27:42.9883077Z adding 'torch/include/ATen/ops/silu_backward_cuda_dispatch.h' 2025-06-01T21:27:42.9886078Z adding 'torch/include/ATen/ops/silu_backward_meta.h' 2025-06-01T21:27:42.9889450Z adding 'torch/include/ATen/ops/silu_backward_meta_dispatch.h' 2025-06-01T21:27:42.9893268Z adding 'torch/include/ATen/ops/silu_backward_native.h' 2025-06-01T21:27:42.9895857Z adding 'torch/include/ATen/ops/silu_backward_ops.h' 2025-06-01T21:27:42.9899407Z adding 'torch/include/ATen/ops/silu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.9902323Z adding 'torch/include/ATen/ops/silu_cpu_dispatch.h' 2025-06-01T21:27:42.9905582Z adding 'torch/include/ATen/ops/silu_cuda_dispatch.h' 2025-06-01T21:27:42.9908629Z adding 'torch/include/ATen/ops/silu_meta.h' 2025-06-01T21:27:42.9912026Z adding 'torch/include/ATen/ops/silu_meta_dispatch.h' 2025-06-01T21:27:42.9916091Z adding 'torch/include/ATen/ops/silu_native.h' 2025-06-01T21:27:42.9918529Z adding 'torch/include/ATen/ops/silu_ops.h' 2025-06-01T21:27:42.9937803Z adding 'torch/include/ATen/ops/sin.h' 2025-06-01T21:27:42.9938239Z adding 'torch/include/ATen/ops/sin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.9938374Z adding 'torch/include/ATen/ops/sin_cpu_dispatch.h' 2025-06-01T21:27:42.9938502Z adding 'torch/include/ATen/ops/sin_cuda_dispatch.h' 2025-06-01T21:27:42.9938602Z adding 'torch/include/ATen/ops/sin_meta.h' 2025-06-01T21:27:42.9939135Z adding 'torch/include/ATen/ops/sin_meta_dispatch.h' 2025-06-01T21:27:42.9942238Z adding 'torch/include/ATen/ops/sin_native.h' 2025-06-01T21:27:42.9945666Z adding 'torch/include/ATen/ops/sin_ops.h' 2025-06-01T21:27:42.9949958Z adding 'torch/include/ATen/ops/sinc.h' 2025-06-01T21:27:42.9952485Z adding 'torch/include/ATen/ops/sinc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.9956007Z adding 'torch/include/ATen/ops/sinc_cpu_dispatch.h' 2025-06-01T21:27:42.9958792Z adding 'torch/include/ATen/ops/sinc_cuda_dispatch.h' 2025-06-01T21:27:42.9962084Z adding 'torch/include/ATen/ops/sinc_meta.h' 2025-06-01T21:27:42.9965186Z adding 'torch/include/ATen/ops/sinc_meta_dispatch.h' 2025-06-01T21:27:42.9968154Z adding 'torch/include/ATen/ops/sinc_native.h' 2025-06-01T21:27:42.9971352Z adding 'torch/include/ATen/ops/sinc_ops.h' 2025-06-01T21:27:42.9974712Z adding 'torch/include/ATen/ops/sinh.h' 2025-06-01T21:27:42.9978026Z adding 'torch/include/ATen/ops/sinh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:42.9980989Z adding 'torch/include/ATen/ops/sinh_cpu_dispatch.h' 2025-06-01T21:27:42.9984129Z adding 'torch/include/ATen/ops/sinh_cuda_dispatch.h' 2025-06-01T21:27:42.9987091Z adding 'torch/include/ATen/ops/sinh_meta.h' 2025-06-01T21:27:42.9990440Z adding 'torch/include/ATen/ops/sinh_meta_dispatch.h' 2025-06-01T21:27:42.9993648Z adding 'torch/include/ATen/ops/sinh_native.h' 2025-06-01T21:27:42.9996873Z adding 'torch/include/ATen/ops/sinh_ops.h' 2025-06-01T21:27:43.0000044Z adding 'torch/include/ATen/ops/size.h' 2025-06-01T21:27:43.0003222Z adding 'torch/include/ATen/ops/size_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.0006232Z adding 'torch/include/ATen/ops/size_native.h' 2025-06-01T21:27:43.0009313Z adding 'torch/include/ATen/ops/size_ops.h' 2025-06-01T21:27:43.0012648Z adding 'torch/include/ATen/ops/slice.h' 2025-06-01T21:27:43.0016215Z adding 'torch/include/ATen/ops/slice_backward.h' 2025-06-01T21:27:43.0020252Z adding 'torch/include/ATen/ops/slice_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.0022744Z adding 'torch/include/ATen/ops/slice_backward_native.h' 2025-06-01T21:27:43.0025981Z adding 'torch/include/ATen/ops/slice_backward_ops.h' 2025-06-01T21:27:43.0029298Z adding 'torch/include/ATen/ops/slice_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.0032822Z adding 'torch/include/ATen/ops/slice_copy.h' 2025-06-01T21:27:43.0036352Z adding 'torch/include/ATen/ops/slice_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.0039652Z adding 'torch/include/ATen/ops/slice_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.0042810Z adding 'torch/include/ATen/ops/slice_copy_native.h' 2025-06-01T21:27:43.0046059Z adding 'torch/include/ATen/ops/slice_copy_ops.h' 2025-06-01T21:27:43.0049384Z adding 'torch/include/ATen/ops/slice_inverse.h' 2025-06-01T21:27:43.0052737Z adding 'torch/include/ATen/ops/slice_inverse_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.0055668Z adding 'torch/include/ATen/ops/slice_inverse_native.h' 2025-06-01T21:27:43.0058860Z adding 'torch/include/ATen/ops/slice_inverse_ops.h' 2025-06-01T21:27:43.0062018Z adding 'torch/include/ATen/ops/slice_native.h' 2025-06-01T21:27:43.0065216Z adding 'torch/include/ATen/ops/slice_ops.h' 2025-06-01T21:27:43.0068731Z adding 'torch/include/ATen/ops/slice_scatter.h' 2025-06-01T21:27:43.0072320Z adding 'torch/include/ATen/ops/slice_scatter_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.0076221Z adding 'torch/include/ATen/ops/slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.0078630Z adding 'torch/include/ATen/ops/slice_scatter_native.h' 2025-06-01T21:27:43.0082047Z adding 'torch/include/ATen/ops/slice_scatter_ops.h' 2025-06-01T21:27:43.0085223Z adding 'torch/include/ATen/ops/slogdet.h' 2025-06-01T21:27:43.0088671Z adding 'torch/include/ATen/ops/slogdet_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.0091597Z adding 'torch/include/ATen/ops/slogdet_native.h' 2025-06-01T21:27:43.0094996Z adding 'torch/include/ATen/ops/slogdet_ops.h' 2025-06-01T21:27:43.0098956Z adding 'torch/include/ATen/ops/slow_conv3d.h' 2025-06-01T21:27:43.0102304Z adding 'torch/include/ATen/ops/slow_conv3d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.0105861Z adding 'torch/include/ATen/ops/slow_conv3d_forward.h' 2025-06-01T21:27:43.0110000Z adding 'torch/include/ATen/ops/slow_conv3d_forward_cpu_dispatch.h' 2025-06-01T21:27:43.0112716Z adding 'torch/include/ATen/ops/slow_conv3d_forward_native.h' 2025-06-01T21:27:43.0116396Z adding 'torch/include/ATen/ops/slow_conv3d_forward_ops.h' 2025-06-01T21:27:43.0119280Z adding 'torch/include/ATen/ops/slow_conv3d_native.h' 2025-06-01T21:27:43.0122687Z adding 'torch/include/ATen/ops/slow_conv3d_ops.h' 2025-06-01T21:27:43.0126392Z adding 'torch/include/ATen/ops/slow_conv_dilated2d.h' 2025-06-01T21:27:43.0130167Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.0133582Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_cpu_dispatch.h' 2025-06-01T21:27:43.0136587Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_cuda_dispatch.h' 2025-06-01T21:27:43.0139821Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_native.h' 2025-06-01T21:27:43.0143194Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_ops.h' 2025-06-01T21:27:43.0146955Z adding 'torch/include/ATen/ops/slow_conv_dilated3d.h' 2025-06-01T21:27:43.0150904Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.0153973Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_cpu_dispatch.h' 2025-06-01T21:27:43.0157447Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_cuda_dispatch.h' 2025-06-01T21:27:43.0160482Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_native.h' 2025-06-01T21:27:43.0163894Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_ops.h' 2025-06-01T21:27:43.0167892Z adding 'torch/include/ATen/ops/slow_conv_transpose2d.h' 2025-06-01T21:27:43.0171477Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.0174772Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_cpu_dispatch.h' 2025-06-01T21:27:43.0179070Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_cuda_dispatch.h' 2025-06-01T21:27:43.0181398Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_meta.h' 2025-06-01T21:27:43.0185150Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_meta_dispatch.h' 2025-06-01T21:27:43.0187955Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_native.h' 2025-06-01T21:27:43.0191588Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_ops.h' 2025-06-01T21:27:43.0196381Z adding 'torch/include/ATen/ops/slow_conv_transpose3d.h' 2025-06-01T21:27:43.0199206Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_cpu_dispatch.h' 2025-06-01T21:27:43.0202673Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_cuda_dispatch.h' 2025-06-01T21:27:43.0205870Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_native.h' 2025-06-01T21:27:43.0209402Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_ops.h' 2025-06-01T21:27:43.0213585Z adding 'torch/include/ATen/ops/smm.h' 2025-06-01T21:27:43.0216771Z adding 'torch/include/ATen/ops/smm_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.0219937Z adding 'torch/include/ATen/ops/smm_native.h' 2025-06-01T21:27:43.0223075Z adding 'torch/include/ATen/ops/smm_ops.h' 2025-06-01T21:27:43.0226450Z adding 'torch/include/ATen/ops/smooth_l1_loss.h' 2025-06-01T21:27:43.0230767Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward.h' 2025-06-01T21:27:43.0233323Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.0236829Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_cpu_dispatch.h' 2025-06-01T21:27:43.0239959Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_cuda_dispatch.h' 2025-06-01T21:27:43.0243152Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_native.h' 2025-06-01T21:27:43.0246390Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_ops.h' 2025-06-01T21:27:43.0249920Z adding 'torch/include/ATen/ops/smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.0253901Z adding 'torch/include/ATen/ops/smooth_l1_loss_cpu_dispatch.h' 2025-06-01T21:27:43.0256242Z adding 'torch/include/ATen/ops/smooth_l1_loss_cuda_dispatch.h' 2025-06-01T21:27:43.0259644Z adding 'torch/include/ATen/ops/smooth_l1_loss_meta.h' 2025-06-01T21:27:43.0262568Z adding 'torch/include/ATen/ops/smooth_l1_loss_meta_dispatch.h' 2025-06-01T21:27:43.0265761Z adding 'torch/include/ATen/ops/smooth_l1_loss_native.h' 2025-06-01T21:27:43.0269000Z adding 'torch/include/ATen/ops/smooth_l1_loss_ops.h' 2025-06-01T21:27:43.0272431Z adding 'torch/include/ATen/ops/soft_margin_loss.h' 2025-06-01T21:27:43.0275668Z adding 'torch/include/ATen/ops/soft_margin_loss_backward.h' 2025-06-01T21:27:43.0279234Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.0282755Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_native.h' 2025-06-01T21:27:43.0285603Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_ops.h' 2025-06-01T21:27:43.0289071Z adding 'torch/include/ATen/ops/soft_margin_loss_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.0292021Z adding 'torch/include/ATen/ops/soft_margin_loss_native.h' 2025-06-01T21:27:43.0295407Z adding 'torch/include/ATen/ops/soft_margin_loss_ops.h' 2025-06-01T21:27:43.0298577Z adding 'torch/include/ATen/ops/softmax.h' 2025-06-01T21:27:43.0302957Z adding 'torch/include/ATen/ops/softmax_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.0305926Z adding 'torch/include/ATen/ops/softmax_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.0308564Z adding 'torch/include/ATen/ops/softmax_native.h' 2025-06-01T21:27:43.0311980Z adding 'torch/include/ATen/ops/softmax_ops.h' 2025-06-01T21:27:43.0315209Z adding 'torch/include/ATen/ops/softplus.h' 2025-06-01T21:27:43.0318558Z adding 'torch/include/ATen/ops/softplus_backward.h' 2025-06-01T21:27:43.0322909Z adding 'torch/include/ATen/ops/softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.0325133Z adding 'torch/include/ATen/ops/softplus_backward_cpu_dispatch.h' 2025-06-01T21:27:43.0328737Z adding 'torch/include/ATen/ops/softplus_backward_cuda_dispatch.h' 2025-06-01T21:27:43.0331379Z adding 'torch/include/ATen/ops/softplus_backward_meta.h' 2025-06-01T21:27:43.0334673Z adding 'torch/include/ATen/ops/softplus_backward_meta_dispatch.h' 2025-06-01T21:27:43.0337730Z adding 'torch/include/ATen/ops/softplus_backward_native.h' 2025-06-01T21:27:43.0341124Z adding 'torch/include/ATen/ops/softplus_backward_ops.h' 2025-06-01T21:27:43.0344493Z adding 'torch/include/ATen/ops/softplus_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.0347593Z adding 'torch/include/ATen/ops/softplus_cpu_dispatch.h' 2025-06-01T21:27:43.0351532Z adding 'torch/include/ATen/ops/softplus_cuda_dispatch.h' 2025-06-01T21:27:43.0353994Z adding 'torch/include/ATen/ops/softplus_meta.h' 2025-06-01T21:27:43.0357290Z adding 'torch/include/ATen/ops/softplus_meta_dispatch.h' 2025-06-01T21:27:43.0360293Z adding 'torch/include/ATen/ops/softplus_native.h' 2025-06-01T21:27:43.0363673Z adding 'torch/include/ATen/ops/softplus_ops.h' 2025-06-01T21:27:43.0366832Z adding 'torch/include/ATen/ops/softshrink.h' 2025-06-01T21:27:43.0370186Z adding 'torch/include/ATen/ops/softshrink_backward.h' 2025-06-01T21:27:43.0374642Z adding 'torch/include/ATen/ops/softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.0376724Z adding 'torch/include/ATen/ops/softshrink_backward_cpu_dispatch.h' 2025-06-01T21:27:43.0380238Z adding 'torch/include/ATen/ops/softshrink_backward_cuda_dispatch.h' 2025-06-01T21:27:43.0382965Z adding 'torch/include/ATen/ops/softshrink_backward_meta.h' 2025-06-01T21:27:43.0386252Z adding 'torch/include/ATen/ops/softshrink_backward_meta_dispatch.h' 2025-06-01T21:27:43.0389287Z adding 'torch/include/ATen/ops/softshrink_backward_native.h' 2025-06-01T21:27:43.0392815Z adding 'torch/include/ATen/ops/softshrink_backward_ops.h' 2025-06-01T21:27:43.0397187Z adding 'torch/include/ATen/ops/softshrink_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.0399366Z adding 'torch/include/ATen/ops/softshrink_cpu_dispatch.h' 2025-06-01T21:27:43.0403064Z adding 'torch/include/ATen/ops/softshrink_cuda_dispatch.h' 2025-06-01T21:27:43.0405598Z adding 'torch/include/ATen/ops/softshrink_meta.h' 2025-06-01T21:27:43.0408864Z adding 'torch/include/ATen/ops/softshrink_meta_dispatch.h' 2025-06-01T21:27:43.0411916Z adding 'torch/include/ATen/ops/softshrink_native.h' 2025-06-01T21:27:43.0415356Z adding 'torch/include/ATen/ops/softshrink_ops.h' 2025-06-01T21:27:43.0418831Z adding 'torch/include/ATen/ops/sort.h' 2025-06-01T21:27:43.0422469Z adding 'torch/include/ATen/ops/sort_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.0425686Z adding 'torch/include/ATen/ops/sort_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.0429077Z adding 'torch/include/ATen/ops/sort_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.0432531Z adding 'torch/include/ATen/ops/sort_cpu_dispatch.h' 2025-06-01T21:27:43.0435699Z adding 'torch/include/ATen/ops/sort_cuda_dispatch.h' 2025-06-01T21:27:43.0438767Z adding 'torch/include/ATen/ops/sort_meta.h' 2025-06-01T21:27:43.0441956Z adding 'torch/include/ATen/ops/sort_meta_dispatch.h' 2025-06-01T21:27:43.0445118Z adding 'torch/include/ATen/ops/sort_native.h' 2025-06-01T21:27:43.0449058Z adding 'torch/include/ATen/ops/sort_ops.h' 2025-06-01T21:27:43.0452709Z adding 'torch/include/ATen/ops/sparse_bsc_tensor.h' 2025-06-01T21:27:43.0456169Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.0459085Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_native.h' 2025-06-01T21:27:43.0462452Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_ops.h' 2025-06-01T21:27:43.0465829Z adding 'torch/include/ATen/ops/sparse_bsr_tensor.h' 2025-06-01T21:27:43.0469267Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.0472357Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_native.h' 2025-06-01T21:27:43.0475666Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_ops.h' 2025-06-01T21:27:43.0485913Z adding 'torch/include/ATen/ops/sparse_compressed_tensor.h' 2025-06-01T21:27:43.0486241Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.0487098Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_native.h' 2025-06-01T21:27:43.0529306Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_ops.h' 2025-06-01T21:27:43.0529472Z adding 'torch/include/ATen/ops/sparse_coo_tensor.h' 2025-06-01T21:27:43.0529760Z adding 'torch/include/ATen/ops/sparse_coo_tensor_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.0530029Z adding 'torch/include/ATen/ops/sparse_coo_tensor_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.0530196Z adding 'torch/include/ATen/ops/sparse_coo_tensor_native.h' 2025-06-01T21:27:43.0530333Z adding 'torch/include/ATen/ops/sparse_coo_tensor_ops.h' 2025-06-01T21:27:43.0530463Z adding 'torch/include/ATen/ops/sparse_csc_tensor.h' 2025-06-01T21:27:43.0530747Z adding 'torch/include/ATen/ops/sparse_csc_tensor_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.0530897Z adding 'torch/include/ATen/ops/sparse_csc_tensor_native.h' 2025-06-01T21:27:43.0531038Z adding 'torch/include/ATen/ops/sparse_csc_tensor_ops.h' 2025-06-01T21:27:43.0531166Z adding 'torch/include/ATen/ops/sparse_csr_tensor.h' 2025-06-01T21:27:43.0532114Z adding 'torch/include/ATen/ops/sparse_csr_tensor_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.0535296Z adding 'torch/include/ATen/ops/sparse_csr_tensor_native.h' 2025-06-01T21:27:43.0538659Z adding 'torch/include/ATen/ops/sparse_csr_tensor_ops.h' 2025-06-01T21:27:43.0541871Z adding 'torch/include/ATen/ops/sparse_dim.h' 2025-06-01T21:27:43.0545093Z adding 'torch/include/ATen/ops/sparse_dim_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.0548168Z adding 'torch/include/ATen/ops/sparse_dim_native.h' 2025-06-01T21:27:43.0551391Z adding 'torch/include/ATen/ops/sparse_dim_ops.h' 2025-06-01T21:27:43.0554652Z adding 'torch/include/ATen/ops/sparse_mask.h' 2025-06-01T21:27:43.0558064Z adding 'torch/include/ATen/ops/sparse_mask_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.0561081Z adding 'torch/include/ATen/ops/sparse_mask_native.h' 2025-06-01T21:27:43.0564449Z adding 'torch/include/ATen/ops/sparse_mask_ops.h' 2025-06-01T21:27:43.0567746Z adding 'torch/include/ATen/ops/sparse_resize.h' 2025-06-01T21:27:43.0570973Z adding 'torch/include/ATen/ops/sparse_resize_and_clear.h' 2025-06-01T21:27:43.0574353Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.0577396Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_meta_dispatch.h' 2025-06-01T21:27:43.0580589Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_native.h' 2025-06-01T21:27:43.0583930Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_ops.h' 2025-06-01T21:27:43.0587284Z adding 'torch/include/ATen/ops/sparse_resize_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.0590341Z adding 'torch/include/ATen/ops/sparse_resize_meta_dispatch.h' 2025-06-01T21:27:43.0593455Z adding 'torch/include/ATen/ops/sparse_resize_native.h' 2025-06-01T21:27:43.0596826Z adding 'torch/include/ATen/ops/sparse_resize_ops.h' 2025-06-01T21:27:43.0600040Z adding 'torch/include/ATen/ops/sparse_sampled_addmm.h' 2025-06-01T21:27:43.0603056Z adding 'torch/include/ATen/ops/sparse_sampled_addmm_native.h' 2025-06-01T21:27:43.0606423Z adding 'torch/include/ATen/ops/sparse_sampled_addmm_ops.h' 2025-06-01T21:27:43.0609478Z adding 'torch/include/ATen/ops/special_airy_ai.h' 2025-06-01T21:27:43.0612997Z adding 'torch/include/ATen/ops/special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.0615944Z adding 'torch/include/ATen/ops/special_airy_ai_cpu_dispatch.h' 2025-06-01T21:27:43.0619049Z adding 'torch/include/ATen/ops/special_airy_ai_cuda_dispatch.h' 2025-06-01T21:27:43.0622052Z adding 'torch/include/ATen/ops/special_airy_ai_meta.h' 2025-06-01T21:27:43.0625486Z adding 'torch/include/ATen/ops/special_airy_ai_meta_dispatch.h' 2025-06-01T21:27:43.0628446Z adding 'torch/include/ATen/ops/special_airy_ai_native.h' 2025-06-01T21:27:43.0631750Z adding 'torch/include/ATen/ops/special_airy_ai_ops.h' 2025-06-01T21:27:43.0634894Z adding 'torch/include/ATen/ops/special_bessel_j0.h' 2025-06-01T21:27:43.0638254Z adding 'torch/include/ATen/ops/special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.0641223Z adding 'torch/include/ATen/ops/special_bessel_j0_cpu_dispatch.h' 2025-06-01T21:27:43.0644307Z adding 'torch/include/ATen/ops/special_bessel_j0_cuda_dispatch.h' 2025-06-01T21:27:43.0647255Z adding 'torch/include/ATen/ops/special_bessel_j0_meta.h' 2025-06-01T21:27:43.0650396Z adding 'torch/include/ATen/ops/special_bessel_j0_meta_dispatch.h' 2025-06-01T21:27:43.0653489Z adding 'torch/include/ATen/ops/special_bessel_j0_native.h' 2025-06-01T21:27:43.0656610Z adding 'torch/include/ATen/ops/special_bessel_j0_ops.h' 2025-06-01T21:27:43.0659728Z adding 'torch/include/ATen/ops/special_bessel_j1.h' 2025-06-01T21:27:43.0663077Z adding 'torch/include/ATen/ops/special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.0667094Z adding 'torch/include/ATen/ops/special_bessel_j1_cpu_dispatch.h' 2025-06-01T21:27:43.0669514Z adding 'torch/include/ATen/ops/special_bessel_j1_cuda_dispatch.h' 2025-06-01T21:27:43.0672656Z adding 'torch/include/ATen/ops/special_bessel_j1_meta.h' 2025-06-01T21:27:43.0675822Z adding 'torch/include/ATen/ops/special_bessel_j1_meta_dispatch.h' 2025-06-01T21:27:43.0678820Z adding 'torch/include/ATen/ops/special_bessel_j1_native.h' 2025-06-01T21:27:43.0682000Z adding 'torch/include/ATen/ops/special_bessel_j1_ops.h' 2025-06-01T21:27:43.0685126Z adding 'torch/include/ATen/ops/special_bessel_y0.h' 2025-06-01T21:27:43.0688504Z adding 'torch/include/ATen/ops/special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.0691391Z adding 'torch/include/ATen/ops/special_bessel_y0_cpu_dispatch.h' 2025-06-01T21:27:43.0694493Z adding 'torch/include/ATen/ops/special_bessel_y0_cuda_dispatch.h' 2025-06-01T21:27:43.0697476Z adding 'torch/include/ATen/ops/special_bessel_y0_meta.h' 2025-06-01T21:27:43.0700542Z adding 'torch/include/ATen/ops/special_bessel_y0_meta_dispatch.h' 2025-06-01T21:27:43.0703539Z adding 'torch/include/ATen/ops/special_bessel_y0_native.h' 2025-06-01T21:27:43.0706690Z adding 'torch/include/ATen/ops/special_bessel_y0_ops.h' 2025-06-01T21:27:43.0709846Z adding 'torch/include/ATen/ops/special_bessel_y1.h' 2025-06-01T21:27:43.0713367Z adding 'torch/include/ATen/ops/special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.0716377Z adding 'torch/include/ATen/ops/special_bessel_y1_cpu_dispatch.h' 2025-06-01T21:27:43.0719435Z adding 'torch/include/ATen/ops/special_bessel_y1_cuda_dispatch.h' 2025-06-01T21:27:43.0722418Z adding 'torch/include/ATen/ops/special_bessel_y1_meta.h' 2025-06-01T21:27:43.0725545Z adding 'torch/include/ATen/ops/special_bessel_y1_meta_dispatch.h' 2025-06-01T21:27:43.0728485Z adding 'torch/include/ATen/ops/special_bessel_y1_native.h' 2025-06-01T21:27:43.0731685Z adding 'torch/include/ATen/ops/special_bessel_y1_ops.h' 2025-06-01T21:27:43.0735061Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t.h' 2025-06-01T21:27:43.0738593Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.0741812Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.0744703Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_cpu_dispatch.h' 2025-06-01T21:27:43.0747820Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_cuda_dispatch.h' 2025-06-01T21:27:43.0750866Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_meta.h' 2025-06-01T21:27:43.0754095Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_meta_dispatch.h' 2025-06-01T21:27:43.0757160Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_native.h' 2025-06-01T21:27:43.0760594Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_ops.h' 2025-06-01T21:27:43.0763975Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u.h' 2025-06-01T21:27:43.0768383Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.0770819Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.0774052Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_cpu_dispatch.h' 2025-06-01T21:27:43.0777046Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_cuda_dispatch.h' 2025-06-01T21:27:43.0780213Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_meta.h' 2025-06-01T21:27:43.0783358Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_meta_dispatch.h' 2025-06-01T21:27:43.0786594Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_native.h' 2025-06-01T21:27:43.0791027Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_ops.h' 2025-06-01T21:27:43.0793791Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v.h' 2025-06-01T21:27:43.0797348Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.0800582Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.0803665Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_cpu_dispatch.h' 2025-06-01T21:27:43.0808452Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_cuda_dispatch.h' 2025-06-01T21:27:43.0811561Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_meta.h' 2025-06-01T21:27:43.0814906Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_meta_dispatch.h' 2025-06-01T21:27:43.0817998Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_native.h' 2025-06-01T21:27:43.0821597Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_ops.h' 2025-06-01T21:27:43.0825531Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w.h' 2025-06-01T21:27:43.0828516Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.0832081Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.0835063Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_cpu_dispatch.h' 2025-06-01T21:27:43.0838322Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_cuda_dispatch.h' 2025-06-01T21:27:43.0841345Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_meta.h' 2025-06-01T21:27:43.0844651Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_meta_dispatch.h' 2025-06-01T21:27:43.0848462Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_native.h' 2025-06-01T21:27:43.0851401Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_ops.h' 2025-06-01T21:27:43.0854586Z adding 'torch/include/ATen/ops/special_digamma.h' 2025-06-01T21:27:43.0857972Z adding 'torch/include/ATen/ops/special_digamma_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.0861106Z adding 'torch/include/ATen/ops/special_digamma_native.h' 2025-06-01T21:27:43.0864170Z adding 'torch/include/ATen/ops/special_digamma_ops.h' 2025-06-01T21:27:43.0867556Z adding 'torch/include/ATen/ops/special_entr.h' 2025-06-01T21:27:43.0871512Z adding 'torch/include/ATen/ops/special_entr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.0873926Z adding 'torch/include/ATen/ops/special_entr_cpu_dispatch.h' 2025-06-01T21:27:43.0877166Z adding 'torch/include/ATen/ops/special_entr_cuda_dispatch.h' 2025-06-01T21:27:43.0880151Z adding 'torch/include/ATen/ops/special_entr_meta.h' 2025-06-01T21:27:43.0883458Z adding 'torch/include/ATen/ops/special_entr_meta_dispatch.h' 2025-06-01T21:27:43.0886490Z adding 'torch/include/ATen/ops/special_entr_native.h' 2025-06-01T21:27:43.0889889Z adding 'torch/include/ATen/ops/special_entr_ops.h' 2025-06-01T21:27:43.0893547Z adding 'torch/include/ATen/ops/special_erf.h' 2025-06-01T21:27:43.0896489Z adding 'torch/include/ATen/ops/special_erf_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.0899898Z adding 'torch/include/ATen/ops/special_erf_native.h' 2025-06-01T21:27:43.0902693Z adding 'torch/include/ATen/ops/special_erf_ops.h' 2025-06-01T21:27:43.0905897Z adding 'torch/include/ATen/ops/special_erfc.h' 2025-06-01T21:27:43.0909226Z adding 'torch/include/ATen/ops/special_erfc_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.0912339Z adding 'torch/include/ATen/ops/special_erfc_native.h' 2025-06-01T21:27:43.0915551Z adding 'torch/include/ATen/ops/special_erfc_ops.h' 2025-06-01T21:27:43.0918852Z adding 'torch/include/ATen/ops/special_erfcx.h' 2025-06-01T21:27:43.0923078Z adding 'torch/include/ATen/ops/special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.0925385Z adding 'torch/include/ATen/ops/special_erfcx_cpu_dispatch.h' 2025-06-01T21:27:43.0928713Z adding 'torch/include/ATen/ops/special_erfcx_cuda_dispatch.h' 2025-06-01T21:27:43.0932172Z adding 'torch/include/ATen/ops/special_erfcx_meta.h' 2025-06-01T21:27:43.0935694Z adding 'torch/include/ATen/ops/special_erfcx_meta_dispatch.h' 2025-06-01T21:27:43.0939139Z adding 'torch/include/ATen/ops/special_erfcx_native.h' 2025-06-01T21:27:43.0944045Z adding 'torch/include/ATen/ops/special_erfcx_ops.h' 2025-06-01T21:27:43.0945716Z adding 'torch/include/ATen/ops/special_erfinv.h' 2025-06-01T21:27:43.0952313Z adding 'torch/include/ATen/ops/special_erfinv_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.0952857Z adding 'torch/include/ATen/ops/special_erfinv_native.h' 2025-06-01T21:27:43.0955559Z adding 'torch/include/ATen/ops/special_erfinv_ops.h' 2025-06-01T21:27:43.0958956Z adding 'torch/include/ATen/ops/special_exp2.h' 2025-06-01T21:27:43.0962243Z adding 'torch/include/ATen/ops/special_exp2_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.0972188Z adding 'torch/include/ATen/ops/special_exp2_native.h' 2025-06-01T21:27:43.0972589Z adding 'torch/include/ATen/ops/special_exp2_ops.h' 2025-06-01T21:27:43.0973635Z adding 'torch/include/ATen/ops/special_expit.h' 2025-06-01T21:27:43.0978340Z adding 'torch/include/ATen/ops/special_expit_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.0980065Z adding 'torch/include/ATen/ops/special_expit_native.h' 2025-06-01T21:27:43.0984247Z adding 'torch/include/ATen/ops/special_expit_ops.h' 2025-06-01T21:27:43.0986553Z adding 'torch/include/ATen/ops/special_expm1.h' 2025-06-01T21:27:43.0990397Z adding 'torch/include/ATen/ops/special_expm1_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.0993157Z adding 'torch/include/ATen/ops/special_expm1_native.h' 2025-06-01T21:27:43.0996550Z adding 'torch/include/ATen/ops/special_expm1_ops.h' 2025-06-01T21:27:43.0999704Z adding 'torch/include/ATen/ops/special_gammainc.h' 2025-06-01T21:27:43.1003361Z adding 'torch/include/ATen/ops/special_gammainc_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.1007366Z adding 'torch/include/ATen/ops/special_gammainc_native.h' 2025-06-01T21:27:43.1009661Z adding 'torch/include/ATen/ops/special_gammainc_ops.h' 2025-06-01T21:27:43.1012918Z adding 'torch/include/ATen/ops/special_gammaincc.h' 2025-06-01T21:27:43.1016210Z adding 'torch/include/ATen/ops/special_gammaincc_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.1018987Z adding 'torch/include/ATen/ops/special_gammaincc_native.h' 2025-06-01T21:27:43.1023455Z adding 'torch/include/ATen/ops/special_gammaincc_ops.h' 2025-06-01T21:27:43.1025547Z adding 'torch/include/ATen/ops/special_gammaln.h' 2025-06-01T21:27:43.1028842Z adding 'torch/include/ATen/ops/special_gammaln_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.1031878Z adding 'torch/include/ATen/ops/special_gammaln_native.h' 2025-06-01T21:27:43.1035070Z adding 'torch/include/ATen/ops/special_gammaln_ops.h' 2025-06-01T21:27:43.1038389Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h.h' 2025-06-01T21:27:43.1041836Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.1045181Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.1048261Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_cpu_dispatch.h' 2025-06-01T21:27:43.1051330Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_cuda_dispatch.h' 2025-06-01T21:27:43.1054508Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_meta.h' 2025-06-01T21:27:43.1057635Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_meta_dispatch.h' 2025-06-01T21:27:43.1060647Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_native.h' 2025-06-01T21:27:43.1064080Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_ops.h' 2025-06-01T21:27:43.1067428Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he.h' 2025-06-01T21:27:43.1070911Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.1074262Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.1077218Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_cpu_dispatch.h' 2025-06-01T21:27:43.1080414Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_cuda_dispatch.h' 2025-06-01T21:27:43.1083416Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_meta.h' 2025-06-01T21:27:43.1086711Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_meta_dispatch.h' 2025-06-01T21:27:43.1089822Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_native.h' 2025-06-01T21:27:43.1093266Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_ops.h' 2025-06-01T21:27:43.1096405Z adding 'torch/include/ATen/ops/special_i0.h' 2025-06-01T21:27:43.1099713Z adding 'torch/include/ATen/ops/special_i0_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.1102565Z adding 'torch/include/ATen/ops/special_i0_native.h' 2025-06-01T21:27:43.1105723Z adding 'torch/include/ATen/ops/special_i0_ops.h' 2025-06-01T21:27:43.1108895Z adding 'torch/include/ATen/ops/special_i0e.h' 2025-06-01T21:27:43.1112442Z adding 'torch/include/ATen/ops/special_i0e_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.1115382Z adding 'torch/include/ATen/ops/special_i0e_cpu_dispatch.h' 2025-06-01T21:27:43.1118446Z adding 'torch/include/ATen/ops/special_i0e_cuda_dispatch.h' 2025-06-01T21:27:43.1121486Z adding 'torch/include/ATen/ops/special_i0e_meta.h' 2025-06-01T21:27:43.1124613Z adding 'torch/include/ATen/ops/special_i0e_meta_dispatch.h' 2025-06-01T21:27:43.1127630Z adding 'torch/include/ATen/ops/special_i0e_native.h' 2025-06-01T21:27:43.1130732Z adding 'torch/include/ATen/ops/special_i0e_ops.h' 2025-06-01T21:27:43.1133825Z adding 'torch/include/ATen/ops/special_i1.h' 2025-06-01T21:27:43.1137169Z adding 'torch/include/ATen/ops/special_i1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.1140110Z adding 'torch/include/ATen/ops/special_i1_cpu_dispatch.h' 2025-06-01T21:27:43.1143287Z adding 'torch/include/ATen/ops/special_i1_cuda_dispatch.h' 2025-06-01T21:27:43.1146253Z adding 'torch/include/ATen/ops/special_i1_meta.h' 2025-06-01T21:27:43.1149409Z adding 'torch/include/ATen/ops/special_i1_meta_dispatch.h' 2025-06-01T21:27:43.1152412Z adding 'torch/include/ATen/ops/special_i1_native.h' 2025-06-01T21:27:43.1155574Z adding 'torch/include/ATen/ops/special_i1_ops.h' 2025-06-01T21:27:43.1158632Z adding 'torch/include/ATen/ops/special_i1e.h' 2025-06-01T21:27:43.1161963Z adding 'torch/include/ATen/ops/special_i1e_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.1164881Z adding 'torch/include/ATen/ops/special_i1e_cpu_dispatch.h' 2025-06-01T21:27:43.1167959Z adding 'torch/include/ATen/ops/special_i1e_cuda_dispatch.h' 2025-06-01T21:27:43.1170898Z adding 'torch/include/ATen/ops/special_i1e_meta.h' 2025-06-01T21:27:43.1174013Z adding 'torch/include/ATen/ops/special_i1e_meta_dispatch.h' 2025-06-01T21:27:43.1177023Z adding 'torch/include/ATen/ops/special_i1e_native.h' 2025-06-01T21:27:43.1180192Z adding 'torch/include/ATen/ops/special_i1e_ops.h' 2025-06-01T21:27:43.1183519Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l.h' 2025-06-01T21:27:43.1187317Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.1190568Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.1193666Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_cpu_dispatch.h' 2025-06-01T21:27:43.1196796Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_cuda_dispatch.h' 2025-06-01T21:27:43.1199802Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_meta.h' 2025-06-01T21:27:43.1202922Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_meta_dispatch.h' 2025-06-01T21:27:43.1205981Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_native.h' 2025-06-01T21:27:43.1209396Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_ops.h' 2025-06-01T21:27:43.1212910Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p.h' 2025-06-01T21:27:43.1216336Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.1219821Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.1223468Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_cpu_dispatch.h' 2025-06-01T21:27:43.1226071Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_cuda_dispatch.h' 2025-06-01T21:27:43.1229196Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_meta.h' 2025-06-01T21:27:43.1232529Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_meta_dispatch.h' 2025-06-01T21:27:43.1235699Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_native.h' 2025-06-01T21:27:43.1239143Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_ops.h' 2025-06-01T21:27:43.1242432Z adding 'torch/include/ATen/ops/special_log1p.h' 2025-06-01T21:27:43.1246399Z adding 'torch/include/ATen/ops/special_log1p_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.1248825Z adding 'torch/include/ATen/ops/special_log1p_native.h' 2025-06-01T21:27:43.1252227Z adding 'torch/include/ATen/ops/special_log1p_ops.h' 2025-06-01T21:27:43.1255239Z adding 'torch/include/ATen/ops/special_log_ndtr.h' 2025-06-01T21:27:43.1258745Z adding 'torch/include/ATen/ops/special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.1261678Z adding 'torch/include/ATen/ops/special_log_ndtr_cpu_dispatch.h' 2025-06-01T21:27:43.1264939Z adding 'torch/include/ATen/ops/special_log_ndtr_cuda_dispatch.h' 2025-06-01T21:27:43.1267939Z adding 'torch/include/ATen/ops/special_log_ndtr_meta.h' 2025-06-01T21:27:43.1271358Z adding 'torch/include/ATen/ops/special_log_ndtr_meta_dispatch.h' 2025-06-01T21:27:43.1275054Z adding 'torch/include/ATen/ops/special_log_ndtr_native.h' 2025-06-01T21:27:43.1278017Z adding 'torch/include/ATen/ops/special_log_ndtr_ops.h' 2025-06-01T21:27:43.1281147Z adding 'torch/include/ATen/ops/special_log_softmax.h' 2025-06-01T21:27:43.1284553Z adding 'torch/include/ATen/ops/special_log_softmax_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.1287501Z adding 'torch/include/ATen/ops/special_log_softmax_native.h' 2025-06-01T21:27:43.1290634Z adding 'torch/include/ATen/ops/special_log_softmax_ops.h' 2025-06-01T21:27:43.1294009Z adding 'torch/include/ATen/ops/special_logit.h' 2025-06-01T21:27:43.1298097Z adding 'torch/include/ATen/ops/special_logit_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.1300438Z adding 'torch/include/ATen/ops/special_logit_native.h' 2025-06-01T21:27:43.1303797Z adding 'torch/include/ATen/ops/special_logit_ops.h' 2025-06-01T21:27:43.1306953Z adding 'torch/include/ATen/ops/special_logsumexp.h' 2025-06-01T21:27:43.1310454Z adding 'torch/include/ATen/ops/special_logsumexp_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.1313487Z adding 'torch/include/ATen/ops/special_logsumexp_native.h' 2025-06-01T21:27:43.1316874Z adding 'torch/include/ATen/ops/special_logsumexp_ops.h' 2025-06-01T21:27:43.1321007Z adding 'torch/include/ATen/ops/special_modified_bessel_i0.h' 2025-06-01T21:27:43.1323712Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.1326861Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_cpu_dispatch.h' 2025-06-01T21:27:43.1329959Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_cuda_dispatch.h' 2025-06-01T21:27:43.1333119Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_meta.h' 2025-06-01T21:27:43.1336343Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_meta_dispatch.h' 2025-06-01T21:27:43.1339666Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_native.h' 2025-06-01T21:27:43.1342808Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_ops.h' 2025-06-01T21:27:43.1346173Z adding 'torch/include/ATen/ops/special_modified_bessel_i1.h' 2025-06-01T21:27:43.1350232Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.1352849Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_cpu_dispatch.h' 2025-06-01T21:27:43.1356089Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_cuda_dispatch.h' 2025-06-01T21:27:43.1359101Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_meta.h' 2025-06-01T21:27:43.1362381Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_meta_dispatch.h' 2025-06-01T21:27:43.1365363Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_native.h' 2025-06-01T21:27:43.1368704Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_ops.h' 2025-06-01T21:27:43.1372781Z adding 'torch/include/ATen/ops/special_modified_bessel_k0.h' 2025-06-01T21:27:43.1375796Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.1378958Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_cpu_dispatch.h' 2025-06-01T21:27:43.1382144Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_cuda_dispatch.h' 2025-06-01T21:27:43.1385329Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_meta.h' 2025-06-01T21:27:43.1388488Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_meta_dispatch.h' 2025-06-01T21:27:43.1391779Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_native.h' 2025-06-01T21:27:43.1395856Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_ops.h' 2025-06-01T21:27:43.1398360Z adding 'torch/include/ATen/ops/special_modified_bessel_k1.h' 2025-06-01T21:27:43.1402031Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.1404969Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_cpu_dispatch.h' 2025-06-01T21:27:43.1408358Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_cuda_dispatch.h' 2025-06-01T21:27:43.1411266Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_meta.h' 2025-06-01T21:27:43.1414663Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_meta_dispatch.h' 2025-06-01T21:27:43.1418169Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_native.h' 2025-06-01T21:27:43.1420932Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_ops.h' 2025-06-01T21:27:43.1424561Z adding 'torch/include/ATen/ops/special_multigammaln.h' 2025-06-01T21:27:43.1427566Z adding 'torch/include/ATen/ops/special_multigammaln_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.1439775Z adding 'torch/include/ATen/ops/special_multigammaln_native.h' 2025-06-01T21:27:43.1440239Z adding 'torch/include/ATen/ops/special_multigammaln_ops.h' 2025-06-01T21:27:43.1440620Z adding 'torch/include/ATen/ops/special_ndtr.h' 2025-06-01T21:27:43.1441459Z adding 'torch/include/ATen/ops/special_ndtr_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.1460703Z adding 'torch/include/ATen/ops/special_ndtr_native.h' 2025-06-01T21:27:43.1461121Z adding 'torch/include/ATen/ops/special_ndtr_ops.h' 2025-06-01T21:27:43.1461471Z adding 'torch/include/ATen/ops/special_ndtri.h' 2025-06-01T21:27:43.1462023Z adding 'torch/include/ATen/ops/special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.1462630Z adding 'torch/include/ATen/ops/special_ndtri_cpu_dispatch.h' 2025-06-01T21:27:43.1463073Z adding 'torch/include/ATen/ops/special_ndtri_cuda_dispatch.h' 2025-06-01T21:27:43.1466728Z adding 'torch/include/ATen/ops/special_ndtri_meta.h' 2025-06-01T21:27:43.1468712Z adding 'torch/include/ATen/ops/special_ndtri_meta_dispatch.h' 2025-06-01T21:27:43.1472770Z adding 'torch/include/ATen/ops/special_ndtri_native.h' 2025-06-01T21:27:43.1475174Z adding 'torch/include/ATen/ops/special_ndtri_ops.h' 2025-06-01T21:27:43.1478781Z adding 'torch/include/ATen/ops/special_polygamma.h' 2025-06-01T21:27:43.1481812Z adding 'torch/include/ATen/ops/special_polygamma_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.1484921Z adding 'torch/include/ATen/ops/special_polygamma_native.h' 2025-06-01T21:27:43.1488185Z adding 'torch/include/ATen/ops/special_polygamma_ops.h' 2025-06-01T21:27:43.1491280Z adding 'torch/include/ATen/ops/special_psi.h' 2025-06-01T21:27:43.1495884Z adding 'torch/include/ATen/ops/special_psi_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.1497717Z adding 'torch/include/ATen/ops/special_psi_native.h' 2025-06-01T21:27:43.1500881Z adding 'torch/include/ATen/ops/special_psi_ops.h' 2025-06-01T21:27:43.1503992Z adding 'torch/include/ATen/ops/special_round.h' 2025-06-01T21:27:43.1507327Z adding 'torch/include/ATen/ops/special_round_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.1510212Z adding 'torch/include/ATen/ops/special_round_native.h' 2025-06-01T21:27:43.1513809Z adding 'torch/include/ATen/ops/special_round_ops.h' 2025-06-01T21:27:43.1517108Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0.h' 2025-06-01T21:27:43.1520539Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.1523516Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_cpu_dispatch.h' 2025-06-01T21:27:43.1526591Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_cuda_dispatch.h' 2025-06-01T21:27:43.1529601Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta.h' 2025-06-01T21:27:43.1532698Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta_dispatch.h' 2025-06-01T21:27:43.1535740Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_native.h' 2025-06-01T21:27:43.1538933Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_ops.h' 2025-06-01T21:27:43.1542760Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1.h' 2025-06-01T21:27:43.1545615Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.1548647Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_cpu_dispatch.h' 2025-06-01T21:27:43.1551821Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_cuda_dispatch.h' 2025-06-01T21:27:43.1554784Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta.h' 2025-06-01T21:27:43.1557908Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta_dispatch.h' 2025-06-01T21:27:43.1560933Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_native.h' 2025-06-01T21:27:43.1564514Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_ops.h' 2025-06-01T21:27:43.1567840Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t.h' 2025-06-01T21:27:43.1571246Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.1574481Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.1577442Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cpu_dispatch.h' 2025-06-01T21:27:43.1580543Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cuda_dispatch.h' 2025-06-01T21:27:43.1583602Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta.h' 2025-06-01T21:27:43.1586748Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta_dispatch.h' 2025-06-01T21:27:43.1589970Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_native.h' 2025-06-01T21:27:43.1593531Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_ops.h' 2025-06-01T21:27:43.1596888Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u.h' 2025-06-01T21:27:43.1600329Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.1603701Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.1606578Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cpu_dispatch.h' 2025-06-01T21:27:43.1609804Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cuda_dispatch.h' 2025-06-01T21:27:43.1612714Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta.h' 2025-06-01T21:27:43.1615841Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta_dispatch.h' 2025-06-01T21:27:43.1618937Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_native.h' 2025-06-01T21:27:43.1622316Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_ops.h' 2025-06-01T21:27:43.1625646Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v.h' 2025-06-01T21:27:43.1629112Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.1632508Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.1635475Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cpu_dispatch.h' 2025-06-01T21:27:43.1638577Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cuda_dispatch.h' 2025-06-01T21:27:43.1641654Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta.h' 2025-06-01T21:27:43.1644790Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta_dispatch.h' 2025-06-01T21:27:43.1647855Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_native.h' 2025-06-01T21:27:43.1651353Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_ops.h' 2025-06-01T21:27:43.1654745Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w.h' 2025-06-01T21:27:43.1658163Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.1661477Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.1664374Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cpu_dispatch.h' 2025-06-01T21:27:43.1667423Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cuda_dispatch.h' 2025-06-01T21:27:43.1670415Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta.h' 2025-06-01T21:27:43.1673775Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta_dispatch.h' 2025-06-01T21:27:43.1676816Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_native.h' 2025-06-01T21:27:43.1680262Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_ops.h' 2025-06-01T21:27:43.1683380Z adding 'torch/include/ATen/ops/special_sinc.h' 2025-06-01T21:27:43.1686689Z adding 'torch/include/ATen/ops/special_sinc_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.1689587Z adding 'torch/include/ATen/ops/special_sinc_native.h' 2025-06-01T21:27:43.1692749Z adding 'torch/include/ATen/ops/special_sinc_ops.h' 2025-06-01T21:27:43.1695834Z adding 'torch/include/ATen/ops/special_softmax.h' 2025-06-01T21:27:43.1699152Z adding 'torch/include/ATen/ops/special_softmax_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.1708205Z adding 'torch/include/ATen/ops/special_softmax_native.h' 2025-06-01T21:27:43.1708628Z adding 'torch/include/ATen/ops/special_softmax_ops.h' 2025-06-01T21:27:43.1709326Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0.h' 2025-06-01T21:27:43.1712635Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.1715599Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_cpu_dispatch.h' 2025-06-01T21:27:43.1718700Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_cuda_dispatch.h' 2025-06-01T21:27:43.1721677Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_meta.h' 2025-06-01T21:27:43.1724806Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_meta_dispatch.h' 2025-06-01T21:27:43.1727834Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_native.h' 2025-06-01T21:27:43.1730985Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_ops.h' 2025-06-01T21:27:43.1734168Z adding 'torch/include/ATen/ops/special_xlog1py.h' 2025-06-01T21:27:43.1737541Z adding 'torch/include/ATen/ops/special_xlog1py_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.1740762Z adding 'torch/include/ATen/ops/special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.1743703Z adding 'torch/include/ATen/ops/special_xlog1py_cpu_dispatch.h' 2025-06-01T21:27:43.1746960Z adding 'torch/include/ATen/ops/special_xlog1py_cuda_dispatch.h' 2025-06-01T21:27:43.1750466Z adding 'torch/include/ATen/ops/special_xlog1py_meta.h' 2025-06-01T21:27:43.1753999Z adding 'torch/include/ATen/ops/special_xlog1py_meta_dispatch.h' 2025-06-01T21:27:43.1757156Z adding 'torch/include/ATen/ops/special_xlog1py_native.h' 2025-06-01T21:27:43.1760665Z adding 'torch/include/ATen/ops/special_xlog1py_ops.h' 2025-06-01T21:27:43.1764132Z adding 'torch/include/ATen/ops/special_xlogy.h' 2025-06-01T21:27:43.1767576Z adding 'torch/include/ATen/ops/special_xlogy_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.1770673Z adding 'torch/include/ATen/ops/special_xlogy_native.h' 2025-06-01T21:27:43.1774220Z adding 'torch/include/ATen/ops/special_xlogy_ops.h' 2025-06-01T21:27:43.1777795Z adding 'torch/include/ATen/ops/special_zeta.h' 2025-06-01T21:27:43.1781128Z adding 'torch/include/ATen/ops/special_zeta_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.1784356Z adding 'torch/include/ATen/ops/special_zeta_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.1787448Z adding 'torch/include/ATen/ops/special_zeta_cpu_dispatch.h' 2025-06-01T21:27:43.1790543Z adding 'torch/include/ATen/ops/special_zeta_cuda_dispatch.h' 2025-06-01T21:27:43.1794219Z adding 'torch/include/ATen/ops/special_zeta_meta.h' 2025-06-01T21:27:43.1797618Z adding 'torch/include/ATen/ops/special_zeta_meta_dispatch.h' 2025-06-01T21:27:43.1800211Z adding 'torch/include/ATen/ops/special_zeta_native.h' 2025-06-01T21:27:43.1803810Z adding 'torch/include/ATen/ops/special_zeta_ops.h' 2025-06-01T21:27:43.1807203Z adding 'torch/include/ATen/ops/split.h' 2025-06-01T21:27:43.1810779Z adding 'torch/include/ATen/ops/split_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.1814700Z adding 'torch/include/ATen/ops/split_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.1817224Z adding 'torch/include/ATen/ops/split_copy.h' 2025-06-01T21:27:43.1820768Z adding 'torch/include/ATen/ops/split_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.1824029Z adding 'torch/include/ATen/ops/split_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.1827135Z adding 'torch/include/ATen/ops/split_copy_native.h' 2025-06-01T21:27:43.1830375Z adding 'torch/include/ATen/ops/split_copy_ops.h' 2025-06-01T21:27:43.1833703Z adding 'torch/include/ATen/ops/split_native.h' 2025-06-01T21:27:43.1837522Z adding 'torch/include/ATen/ops/split_ops.h' 2025-06-01T21:27:43.1840258Z adding 'torch/include/ATen/ops/split_with_sizes.h' 2025-06-01T21:27:43.1843736Z adding 'torch/include/ATen/ops/split_with_sizes_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.1847018Z adding 'torch/include/ATen/ops/split_with_sizes_copy.h' 2025-06-01T21:27:43.1850654Z adding 'torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.1854979Z adding 'torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.1857157Z adding 'torch/include/ATen/ops/split_with_sizes_copy_cuda_dispatch.h' 2025-06-01T21:27:43.1860644Z adding 'torch/include/ATen/ops/split_with_sizes_copy_native.h' 2025-06-01T21:27:43.1863574Z adding 'torch/include/ATen/ops/split_with_sizes_copy_ops.h' 2025-06-01T21:27:43.1866803Z adding 'torch/include/ATen/ops/split_with_sizes_native.h' 2025-06-01T21:27:43.1870000Z adding 'torch/include/ATen/ops/split_with_sizes_ops.h' 2025-06-01T21:27:43.1873383Z adding 'torch/include/ATen/ops/sqrt.h' 2025-06-01T21:27:43.1877391Z adding 'torch/include/ATen/ops/sqrt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.1879932Z adding 'torch/include/ATen/ops/sqrt_cpu_dispatch.h' 2025-06-01T21:27:43.1883764Z adding 'torch/include/ATen/ops/sqrt_cuda_dispatch.h' 2025-06-01T21:27:43.1886101Z adding 'torch/include/ATen/ops/sqrt_meta.h' 2025-06-01T21:27:43.1889506Z adding 'torch/include/ATen/ops/sqrt_meta_dispatch.h' 2025-06-01T21:27:43.1892380Z adding 'torch/include/ATen/ops/sqrt_native.h' 2025-06-01T21:27:43.1895750Z adding 'torch/include/ATen/ops/sqrt_ops.h' 2025-06-01T21:27:43.1898955Z adding 'torch/include/ATen/ops/square.h' 2025-06-01T21:27:43.1902403Z adding 'torch/include/ATen/ops/square_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.1905331Z adding 'torch/include/ATen/ops/square_native.h' 2025-06-01T21:27:43.1908706Z adding 'torch/include/ATen/ops/square_ops.h' 2025-06-01T21:27:43.1912386Z adding 'torch/include/ATen/ops/squeeze.h' 2025-06-01T21:27:43.1915522Z adding 'torch/include/ATen/ops/squeeze_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.1918813Z adding 'torch/include/ATen/ops/squeeze_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.1921937Z adding 'torch/include/ATen/ops/squeeze_copy.h' 2025-06-01T21:27:43.1925556Z adding 'torch/include/ATen/ops/squeeze_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.1929722Z adding 'torch/include/ATen/ops/squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.1931859Z adding 'torch/include/ATen/ops/squeeze_copy_native.h' 2025-06-01T21:27:43.1949033Z adding 'torch/include/ATen/ops/squeeze_copy_ops.h' 2025-06-01T21:27:43.1949423Z adding 'torch/include/ATen/ops/squeeze_native.h' 2025-06-01T21:27:43.1949888Z adding 'torch/include/ATen/ops/squeeze_ops.h' 2025-06-01T21:27:43.1950220Z adding 'torch/include/ATen/ops/sspaddmm.h' 2025-06-01T21:27:43.1951076Z adding 'torch/include/ATen/ops/sspaddmm_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.1954016Z adding 'torch/include/ATen/ops/sspaddmm_cpu_dispatch.h' 2025-06-01T21:27:43.1957297Z adding 'torch/include/ATen/ops/sspaddmm_cuda_dispatch.h' 2025-06-01T21:27:43.1961135Z adding 'torch/include/ATen/ops/sspaddmm_native.h' 2025-06-01T21:27:43.1963716Z adding 'torch/include/ATen/ops/sspaddmm_ops.h' 2025-06-01T21:27:43.1967072Z adding 'torch/include/ATen/ops/stack.h' 2025-06-01T21:27:43.1970365Z adding 'torch/include/ATen/ops/stack_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.1973453Z adding 'torch/include/ATen/ops/stack_native.h' 2025-06-01T21:27:43.1976670Z adding 'torch/include/ATen/ops/stack_ops.h' 2025-06-01T21:27:43.1980111Z adding 'torch/include/ATen/ops/std.h' 2025-06-01T21:27:43.1984271Z adding 'torch/include/ATen/ops/std_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.1986912Z adding 'torch/include/ATen/ops/std_cpu_dispatch.h' 2025-06-01T21:27:43.1990089Z adding 'torch/include/ATen/ops/std_cuda_dispatch.h' 2025-06-01T21:27:43.1993618Z adding 'torch/include/ATen/ops/std_mean.h' 2025-06-01T21:27:43.1996973Z adding 'torch/include/ATen/ops/std_mean_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.2000412Z adding 'torch/include/ATen/ops/std_mean_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.2003452Z adding 'torch/include/ATen/ops/std_mean_cpu_dispatch.h' 2025-06-01T21:27:43.2006681Z adding 'torch/include/ATen/ops/std_mean_cuda_dispatch.h' 2025-06-01T21:27:43.2009781Z adding 'torch/include/ATen/ops/std_mean_native.h' 2025-06-01T21:27:43.2013385Z adding 'torch/include/ATen/ops/std_mean_ops.h' 2025-06-01T21:27:43.2016651Z adding 'torch/include/ATen/ops/std_native.h' 2025-06-01T21:27:43.2020464Z adding 'torch/include/ATen/ops/std_ops.h' 2025-06-01T21:27:43.2023807Z adding 'torch/include/ATen/ops/stft.h' 2025-06-01T21:27:43.2027203Z adding 'torch/include/ATen/ops/stft_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.2031378Z adding 'torch/include/ATen/ops/stft_native.h' 2025-06-01T21:27:43.2033880Z adding 'torch/include/ATen/ops/stft_ops.h' 2025-06-01T21:27:43.2037107Z adding 'torch/include/ATen/ops/stride.h' 2025-06-01T21:27:43.2040320Z adding 'torch/include/ATen/ops/stride_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.2043255Z adding 'torch/include/ATen/ops/stride_native.h' 2025-06-01T21:27:43.2046465Z adding 'torch/include/ATen/ops/stride_ops.h' 2025-06-01T21:27:43.2049675Z adding 'torch/include/ATen/ops/sub.h' 2025-06-01T21:27:43.2052981Z adding 'torch/include/ATen/ops/sub_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.2056167Z adding 'torch/include/ATen/ops/sub_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.2059134Z adding 'torch/include/ATen/ops/sub_cpu_dispatch.h' 2025-06-01T21:27:43.2062225Z adding 'torch/include/ATen/ops/sub_cuda_dispatch.h' 2025-06-01T21:27:43.2065248Z adding 'torch/include/ATen/ops/sub_meta.h' 2025-06-01T21:27:43.2068392Z adding 'torch/include/ATen/ops/sub_meta_dispatch.h' 2025-06-01T21:27:43.2071621Z adding 'torch/include/ATen/ops/sub_native.h' 2025-06-01T21:27:43.2075063Z adding 'torch/include/ATen/ops/sub_ops.h' 2025-06-01T21:27:43.2078324Z adding 'torch/include/ATen/ops/subtract.h' 2025-06-01T21:27:43.2086775Z adding 'torch/include/ATen/ops/subtract_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.2088539Z adding 'torch/include/ATen/ops/subtract_native.h' 2025-06-01T21:27:43.2092020Z adding 'torch/include/ATen/ops/subtract_ops.h' 2025-06-01T21:27:43.2098117Z adding 'torch/include/ATen/ops/sum.h' 2025-06-01T21:27:43.2101667Z adding 'torch/include/ATen/ops/sum_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.2105001Z adding 'torch/include/ATen/ops/sum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.2108298Z adding 'torch/include/ATen/ops/sum_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.2111346Z adding 'torch/include/ATen/ops/sum_cpu_dispatch.h' 2025-06-01T21:27:43.2114604Z adding 'torch/include/ATen/ops/sum_cuda_dispatch.h' 2025-06-01T21:27:43.2117588Z adding 'torch/include/ATen/ops/sum_meta.h' 2025-06-01T21:27:43.2121307Z adding 'torch/include/ATen/ops/sum_meta_dispatch.h' 2025-06-01T21:27:43.2124589Z adding 'torch/include/ATen/ops/sum_native.h' 2025-06-01T21:27:43.2128159Z adding 'torch/include/ATen/ops/sum_ops.h' 2025-06-01T21:27:43.2131820Z adding 'torch/include/ATen/ops/sum_to_size.h' 2025-06-01T21:27:43.2134834Z adding 'torch/include/ATen/ops/sum_to_size_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.2137715Z adding 'torch/include/ATen/ops/sum_to_size_native.h' 2025-06-01T21:27:43.2140876Z adding 'torch/include/ATen/ops/sum_to_size_ops.h' 2025-06-01T21:27:43.2144067Z adding 'torch/include/ATen/ops/svd.h' 2025-06-01T21:27:43.2147465Z adding 'torch/include/ATen/ops/svd_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.2150538Z adding 'torch/include/ATen/ops/svd_native.h' 2025-06-01T21:27:43.2154015Z adding 'torch/include/ATen/ops/svd_ops.h' 2025-06-01T21:27:43.2157178Z adding 'torch/include/ATen/ops/swapaxes.h' 2025-06-01T21:27:43.2160503Z adding 'torch/include/ATen/ops/swapaxes_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.2163462Z adding 'torch/include/ATen/ops/swapaxes_native.h' 2025-06-01T21:27:43.2166671Z adding 'torch/include/ATen/ops/swapaxes_ops.h' 2025-06-01T21:27:43.2169793Z adding 'torch/include/ATen/ops/swapdims.h' 2025-06-01T21:27:43.2173119Z adding 'torch/include/ATen/ops/swapdims_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.2176069Z adding 'torch/include/ATen/ops/swapdims_native.h' 2025-06-01T21:27:43.2179271Z adding 'torch/include/ATen/ops/swapdims_ops.h' 2025-06-01T21:27:43.2182419Z adding 'torch/include/ATen/ops/sym_constrain_range.h' 2025-06-01T21:27:43.2185764Z adding 'torch/include/ATen/ops/sym_constrain_range_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.2189156Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size.h' 2025-06-01T21:27:43.2192523Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.2195421Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_native.h' 2025-06-01T21:27:43.2198617Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_ops.h' 2025-06-01T21:27:43.2201658Z adding 'torch/include/ATen/ops/sym_constrain_range_native.h' 2025-06-01T21:27:43.2204840Z adding 'torch/include/ATen/ops/sym_constrain_range_ops.h' 2025-06-01T21:27:43.2207869Z adding 'torch/include/ATen/ops/sym_numel.h' 2025-06-01T21:27:43.2211113Z adding 'torch/include/ATen/ops/sym_numel_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.2213997Z adding 'torch/include/ATen/ops/sym_numel_native.h' 2025-06-01T21:27:43.2217133Z adding 'torch/include/ATen/ops/sym_numel_ops.h' 2025-06-01T21:27:43.2220180Z adding 'torch/include/ATen/ops/sym_size.h' 2025-06-01T21:27:43.2223470Z adding 'torch/include/ATen/ops/sym_size_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.2226346Z adding 'torch/include/ATen/ops/sym_size_native.h' 2025-06-01T21:27:43.2229529Z adding 'torch/include/ATen/ops/sym_size_ops.h' 2025-06-01T21:27:43.2232812Z adding 'torch/include/ATen/ops/sym_storage_offset.h' 2025-06-01T21:27:43.2236074Z adding 'torch/include/ATen/ops/sym_storage_offset_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.2238967Z adding 'torch/include/ATen/ops/sym_storage_offset_native.h' 2025-06-01T21:27:43.2242079Z adding 'torch/include/ATen/ops/sym_storage_offset_ops.h' 2025-06-01T21:27:43.2245100Z adding 'torch/include/ATen/ops/sym_stride.h' 2025-06-01T21:27:43.2248355Z adding 'torch/include/ATen/ops/sym_stride_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.2251251Z adding 'torch/include/ATen/ops/sym_stride_native.h' 2025-06-01T21:27:43.2254371Z adding 'torch/include/ATen/ops/sym_stride_ops.h' 2025-06-01T21:27:43.2257622Z adding 'torch/include/ATen/ops/t.h' 2025-06-01T21:27:43.2261014Z adding 'torch/include/ATen/ops/t_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.2264659Z adding 'torch/include/ATen/ops/t_copy.h' 2025-06-01T21:27:43.2267294Z adding 'torch/include/ATen/ops/t_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.2270487Z adding 'torch/include/ATen/ops/t_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.2273479Z adding 'torch/include/ATen/ops/t_copy_native.h' 2025-06-01T21:27:43.2276670Z adding 'torch/include/ATen/ops/t_copy_ops.h' 2025-06-01T21:27:43.2279650Z adding 'torch/include/ATen/ops/t_native.h' 2025-06-01T21:27:43.2282859Z adding 'torch/include/ATen/ops/t_ops.h' 2025-06-01T21:27:43.2286140Z adding 'torch/include/ATen/ops/take.h' 2025-06-01T21:27:43.2289393Z adding 'torch/include/ATen/ops/take_along_dim.h' 2025-06-01T21:27:43.2292870Z adding 'torch/include/ATen/ops/take_along_dim_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.2295999Z adding 'torch/include/ATen/ops/take_along_dim_native.h' 2025-06-01T21:27:43.2299247Z adding 'torch/include/ATen/ops/take_along_dim_ops.h' 2025-06-01T21:27:43.2302565Z adding 'torch/include/ATen/ops/take_cpu_dispatch.h' 2025-06-01T21:27:43.2305729Z adding 'torch/include/ATen/ops/take_cuda_dispatch.h' 2025-06-01T21:27:43.2308967Z adding 'torch/include/ATen/ops/take_native.h' 2025-06-01T21:27:43.2312460Z adding 'torch/include/ATen/ops/take_ops.h' 2025-06-01T21:27:43.2315720Z adding 'torch/include/ATen/ops/tan.h' 2025-06-01T21:27:43.2319557Z adding 'torch/include/ATen/ops/tan_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.2322532Z adding 'torch/include/ATen/ops/tan_cpu_dispatch.h' 2025-06-01T21:27:43.2325752Z adding 'torch/include/ATen/ops/tan_cuda_dispatch.h' 2025-06-01T21:27:43.2328801Z adding 'torch/include/ATen/ops/tan_meta.h' 2025-06-01T21:27:43.2332114Z adding 'torch/include/ATen/ops/tan_meta_dispatch.h' 2025-06-01T21:27:43.2335202Z adding 'torch/include/ATen/ops/tan_native.h' 2025-06-01T21:27:43.2338673Z adding 'torch/include/ATen/ops/tan_ops.h' 2025-06-01T21:27:43.2341999Z adding 'torch/include/ATen/ops/tanh.h' 2025-06-01T21:27:43.2345263Z adding 'torch/include/ATen/ops/tanh_backward.h' 2025-06-01T21:27:43.2348788Z adding 'torch/include/ATen/ops/tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.2351899Z adding 'torch/include/ATen/ops/tanh_backward_cpu_dispatch.h' 2025-06-01T21:27:43.2355227Z adding 'torch/include/ATen/ops/tanh_backward_cuda_dispatch.h' 2025-06-01T21:27:43.2358327Z adding 'torch/include/ATen/ops/tanh_backward_meta.h' 2025-06-01T21:27:43.2361620Z adding 'torch/include/ATen/ops/tanh_backward_meta_dispatch.h' 2025-06-01T21:27:43.2364840Z adding 'torch/include/ATen/ops/tanh_backward_native.h' 2025-06-01T21:27:43.2368150Z adding 'torch/include/ATen/ops/tanh_backward_ops.h' 2025-06-01T21:27:43.2371660Z adding 'torch/include/ATen/ops/tanh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.2374641Z adding 'torch/include/ATen/ops/tanh_cpu_dispatch.h' 2025-06-01T21:27:43.2377950Z adding 'torch/include/ATen/ops/tanh_cuda_dispatch.h' 2025-06-01T21:27:43.2380963Z adding 'torch/include/ATen/ops/tanh_meta.h' 2025-06-01T21:27:43.2384281Z adding 'torch/include/ATen/ops/tanh_meta_dispatch.h' 2025-06-01T21:27:43.2387473Z adding 'torch/include/ATen/ops/tanh_native.h' 2025-06-01T21:27:43.2390901Z adding 'torch/include/ATen/ops/tanh_ops.h' 2025-06-01T21:27:43.2394426Z adding 'torch/include/ATen/ops/tensor.h' 2025-06-01T21:27:43.2397865Z adding 'torch/include/ATen/ops/tensor_split.h' 2025-06-01T21:27:43.2401502Z adding 'torch/include/ATen/ops/tensor_split_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.2404596Z adding 'torch/include/ATen/ops/tensor_split_native.h' 2025-06-01T21:27:43.2407965Z adding 'torch/include/ATen/ops/tensor_split_ops.h' 2025-06-01T21:27:43.2411348Z adding 'torch/include/ATen/ops/tensordot.h' 2025-06-01T21:27:43.2414704Z adding 'torch/include/ATen/ops/tensordot_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.2419039Z adding 'torch/include/ATen/ops/tensordot_native.h' 2025-06-01T21:27:43.2423193Z adding 'torch/include/ATen/ops/tensordot_ops.h' 2025-06-01T21:27:43.2427300Z adding 'torch/include/ATen/ops/thnn_conv2d.h' 2025-06-01T21:27:43.2430962Z adding 'torch/include/ATen/ops/thnn_conv2d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.2434124Z adding 'torch/include/ATen/ops/thnn_conv2d_native.h' 2025-06-01T21:27:43.2437419Z adding 'torch/include/ATen/ops/thnn_conv2d_ops.h' 2025-06-01T21:27:43.2441183Z adding 'torch/include/ATen/ops/threshold.h' 2025-06-01T21:27:43.2444461Z adding 'torch/include/ATen/ops/threshold_backward.h' 2025-06-01T21:27:43.2448380Z adding 'torch/include/ATen/ops/threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.2451375Z adding 'torch/include/ATen/ops/threshold_backward_cpu_dispatch.h' 2025-06-01T21:27:43.2454816Z adding 'torch/include/ATen/ops/threshold_backward_cuda_dispatch.h' 2025-06-01T21:27:43.2457859Z adding 'torch/include/ATen/ops/threshold_backward_meta.h' 2025-06-01T21:27:43.2461293Z adding 'torch/include/ATen/ops/threshold_backward_meta_dispatch.h' 2025-06-01T21:27:43.2464507Z adding 'torch/include/ATen/ops/threshold_backward_native.h' 2025-06-01T21:27:43.2469071Z adding 'torch/include/ATen/ops/threshold_backward_ops.h' 2025-06-01T21:27:43.2472745Z adding 'torch/include/ATen/ops/threshold_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.2475977Z adding 'torch/include/ATen/ops/threshold_cpu_dispatch.h' 2025-06-01T21:27:43.2479344Z adding 'torch/include/ATen/ops/threshold_cuda_dispatch.h' 2025-06-01T21:27:43.2482811Z adding 'torch/include/ATen/ops/threshold_meta.h' 2025-06-01T21:27:43.2486096Z adding 'torch/include/ATen/ops/threshold_meta_dispatch.h' 2025-06-01T21:27:43.2489429Z adding 'torch/include/ATen/ops/threshold_native.h' 2025-06-01T21:27:43.2492982Z adding 'torch/include/ATen/ops/threshold_ops.h' 2025-06-01T21:27:43.2496249Z adding 'torch/include/ATen/ops/tile.h' 2025-06-01T21:27:43.2499690Z adding 'torch/include/ATen/ops/tile_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.2502730Z adding 'torch/include/ATen/ops/tile_native.h' 2025-06-01T21:27:43.2506102Z adding 'torch/include/ATen/ops/tile_ops.h' 2025-06-01T21:27:43.2509501Z adding 'torch/include/ATen/ops/to.h' 2025-06-01T21:27:43.2513188Z adding 'torch/include/ATen/ops/to_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.2516271Z adding 'torch/include/ATen/ops/to_dense.h' 2025-06-01T21:27:43.2519411Z adding 'torch/include/ATen/ops/to_dense_backward.h' 2025-06-01T21:27:43.2522892Z adding 'torch/include/ATen/ops/to_dense_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.2525890Z adding 'torch/include/ATen/ops/to_dense_backward_native.h' 2025-06-01T21:27:43.2529200Z adding 'torch/include/ATen/ops/to_dense_backward_ops.h' 2025-06-01T21:27:43.2532495Z adding 'torch/include/ATen/ops/to_dense_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.2535399Z adding 'torch/include/ATen/ops/to_dense_native.h' 2025-06-01T21:27:43.2538567Z adding 'torch/include/ATen/ops/to_dense_ops.h' 2025-06-01T21:27:43.2542050Z adding 'torch/include/ATen/ops/to_mkldnn.h' 2025-06-01T21:27:43.2545134Z adding 'torch/include/ATen/ops/to_mkldnn_backward.h' 2025-06-01T21:27:43.2548386Z adding 'torch/include/ATen/ops/to_mkldnn_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.2551432Z adding 'torch/include/ATen/ops/to_mkldnn_backward_native.h' 2025-06-01T21:27:43.2554625Z adding 'torch/include/ATen/ops/to_mkldnn_backward_ops.h' 2025-06-01T21:27:43.2558147Z adding 'torch/include/ATen/ops/to_mkldnn_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.2561136Z adding 'torch/include/ATen/ops/to_mkldnn_cpu_dispatch.h' 2025-06-01T21:27:43.2564154Z adding 'torch/include/ATen/ops/to_mkldnn_native.h' 2025-06-01T21:27:43.2567401Z adding 'torch/include/ATen/ops/to_mkldnn_ops.h' 2025-06-01T21:27:43.2570510Z adding 'torch/include/ATen/ops/to_native.h' 2025-06-01T21:27:43.2574605Z adding 'torch/include/ATen/ops/to_ops.h' 2025-06-01T21:27:43.2577610Z adding 'torch/include/ATen/ops/to_padded_tensor.h' 2025-06-01T21:27:43.2581138Z adding 'torch/include/ATen/ops/to_padded_tensor_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.2584083Z adding 'torch/include/ATen/ops/to_padded_tensor_native.h' 2025-06-01T21:27:43.2587503Z adding 'torch/include/ATen/ops/to_padded_tensor_ops.h' 2025-06-01T21:27:43.2590554Z adding 'torch/include/ATen/ops/to_sparse.h' 2025-06-01T21:27:43.2593680Z adding 'torch/include/ATen/ops/to_sparse_bsc.h' 2025-06-01T21:27:43.2597078Z adding 'torch/include/ATen/ops/to_sparse_bsc_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.2600025Z adding 'torch/include/ATen/ops/to_sparse_bsc_native.h' 2025-06-01T21:27:43.2603231Z adding 'torch/include/ATen/ops/to_sparse_bsc_ops.h' 2025-06-01T21:27:43.2606244Z adding 'torch/include/ATen/ops/to_sparse_bsr.h' 2025-06-01T21:27:43.2609511Z adding 'torch/include/ATen/ops/to_sparse_bsr_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.2612441Z adding 'torch/include/ATen/ops/to_sparse_bsr_native.h' 2025-06-01T21:27:43.2615553Z adding 'torch/include/ATen/ops/to_sparse_bsr_ops.h' 2025-06-01T21:27:43.2618843Z adding 'torch/include/ATen/ops/to_sparse_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.2621712Z adding 'torch/include/ATen/ops/to_sparse_csc.h' 2025-06-01T21:27:43.2624925Z adding 'torch/include/ATen/ops/to_sparse_csc_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.2627864Z adding 'torch/include/ATen/ops/to_sparse_csc_native.h' 2025-06-01T21:27:43.2631073Z adding 'torch/include/ATen/ops/to_sparse_csc_ops.h' 2025-06-01T21:27:43.2634142Z adding 'torch/include/ATen/ops/to_sparse_csr.h' 2025-06-01T21:27:43.2637371Z adding 'torch/include/ATen/ops/to_sparse_csr_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.2640276Z adding 'torch/include/ATen/ops/to_sparse_csr_native.h' 2025-06-01T21:27:43.2643429Z adding 'torch/include/ATen/ops/to_sparse_csr_ops.h' 2025-06-01T21:27:43.2646541Z adding 'torch/include/ATen/ops/to_sparse_native.h' 2025-06-01T21:27:43.2649790Z adding 'torch/include/ATen/ops/to_sparse_ops.h' 2025-06-01T21:27:43.2653287Z adding 'torch/include/ATen/ops/topk.h' 2025-06-01T21:27:43.2656793Z adding 'torch/include/ATen/ops/topk_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.2659818Z adding 'torch/include/ATen/ops/topk_cpu_dispatch.h' 2025-06-01T21:27:43.2663008Z adding 'torch/include/ATen/ops/topk_cuda_dispatch.h' 2025-06-01T21:27:43.2666047Z adding 'torch/include/ATen/ops/topk_meta.h' 2025-06-01T21:27:43.2669220Z adding 'torch/include/ATen/ops/topk_meta_dispatch.h' 2025-06-01T21:27:43.2672448Z adding 'torch/include/ATen/ops/topk_native.h' 2025-06-01T21:27:43.2675797Z adding 'torch/include/ATen/ops/topk_ops.h' 2025-06-01T21:27:43.2678963Z adding 'torch/include/ATen/ops/trace.h' 2025-06-01T21:27:43.2682164Z adding 'torch/include/ATen/ops/trace_backward.h' 2025-06-01T21:27:43.2685493Z adding 'torch/include/ATen/ops/trace_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.2688381Z adding 'torch/include/ATen/ops/trace_backward_native.h' 2025-06-01T21:27:43.2691532Z adding 'torch/include/ATen/ops/trace_backward_ops.h' 2025-06-01T21:27:43.2694725Z adding 'torch/include/ATen/ops/trace_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.2697699Z adding 'torch/include/ATen/ops/trace_cpu_dispatch.h' 2025-06-01T21:27:43.2700763Z adding 'torch/include/ATen/ops/trace_cuda_dispatch.h' 2025-06-01T21:27:43.2703813Z adding 'torch/include/ATen/ops/trace_native.h' 2025-06-01T21:27:43.2707008Z adding 'torch/include/ATen/ops/trace_ops.h' 2025-06-01T21:27:43.2710107Z adding 'torch/include/ATen/ops/transpose.h' 2025-06-01T21:27:43.2713814Z adding 'torch/include/ATen/ops/transpose_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.2716899Z adding 'torch/include/ATen/ops/transpose_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.2719972Z adding 'torch/include/ATen/ops/transpose_copy.h' 2025-06-01T21:27:43.2723895Z adding 'torch/include/ATen/ops/transpose_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.2726667Z adding 'torch/include/ATen/ops/transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.2729556Z adding 'torch/include/ATen/ops/transpose_copy_native.h' 2025-06-01T21:27:43.2732763Z adding 'torch/include/ATen/ops/transpose_copy_ops.h' 2025-06-01T21:27:43.2735842Z adding 'torch/include/ATen/ops/transpose_native.h' 2025-06-01T21:27:43.2739139Z adding 'torch/include/ATen/ops/transpose_ops.h' 2025-06-01T21:27:43.2742276Z adding 'torch/include/ATen/ops/trapezoid.h' 2025-06-01T21:27:43.2745553Z adding 'torch/include/ATen/ops/trapezoid_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.2748449Z adding 'torch/include/ATen/ops/trapezoid_native.h' 2025-06-01T21:27:43.2751765Z adding 'torch/include/ATen/ops/trapezoid_ops.h' 2025-06-01T21:27:43.2755259Z adding 'torch/include/ATen/ops/trapz.h' 2025-06-01T21:27:43.2758527Z adding 'torch/include/ATen/ops/trapz_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.2761429Z adding 'torch/include/ATen/ops/trapz_native.h' 2025-06-01T21:27:43.2764608Z adding 'torch/include/ATen/ops/trapz_ops.h' 2025-06-01T21:27:43.2767809Z adding 'torch/include/ATen/ops/triangular_solve.h' 2025-06-01T21:27:43.2771219Z adding 'torch/include/ATen/ops/triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.2774212Z adding 'torch/include/ATen/ops/triangular_solve_cpu_dispatch.h' 2025-06-01T21:27:43.2777388Z adding 'torch/include/ATen/ops/triangular_solve_cuda_dispatch.h' 2025-06-01T21:27:43.2780516Z adding 'torch/include/ATen/ops/triangular_solve_meta.h' 2025-06-01T21:27:43.2783757Z adding 'torch/include/ATen/ops/triangular_solve_meta_dispatch.h' 2025-06-01T21:27:43.2786820Z adding 'torch/include/ATen/ops/triangular_solve_native.h' 2025-06-01T21:27:43.2790108Z adding 'torch/include/ATen/ops/triangular_solve_ops.h' 2025-06-01T21:27:43.2793637Z adding 'torch/include/ATen/ops/tril.h' 2025-06-01T21:27:43.2797018Z adding 'torch/include/ATen/ops/tril_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.2799968Z adding 'torch/include/ATen/ops/tril_cpu_dispatch.h' 2025-06-01T21:27:43.2803080Z adding 'torch/include/ATen/ops/tril_cuda_dispatch.h' 2025-06-01T21:27:43.2806372Z adding 'torch/include/ATen/ops/tril_indices.h' 2025-06-01T21:27:43.2809747Z adding 'torch/include/ATen/ops/tril_indices_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.2812782Z adding 'torch/include/ATen/ops/tril_indices_cpu_dispatch.h' 2025-06-01T21:27:43.2815958Z adding 'torch/include/ATen/ops/tril_indices_cuda_dispatch.h' 2025-06-01T21:27:43.2819025Z adding 'torch/include/ATen/ops/tril_indices_native.h' 2025-06-01T21:27:43.2822306Z adding 'torch/include/ATen/ops/tril_indices_ops.h' 2025-06-01T21:27:43.2825371Z adding 'torch/include/ATen/ops/tril_meta.h' 2025-06-01T21:27:43.2828557Z adding 'torch/include/ATen/ops/tril_meta_dispatch.h' 2025-06-01T21:27:43.2831662Z adding 'torch/include/ATen/ops/tril_native.h' 2025-06-01T21:27:43.2834934Z adding 'torch/include/ATen/ops/tril_ops.h' 2025-06-01T21:27:43.2838133Z adding 'torch/include/ATen/ops/triplet_margin_loss.h' 2025-06-01T21:27:43.2841460Z adding 'torch/include/ATen/ops/triplet_margin_loss_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.2844364Z adding 'torch/include/ATen/ops/triplet_margin_loss_native.h' 2025-06-01T21:27:43.2847540Z adding 'torch/include/ATen/ops/triplet_margin_loss_ops.h' 2025-06-01T21:27:43.2850645Z adding 'torch/include/ATen/ops/triu.h' 2025-06-01T21:27:43.2853993Z adding 'torch/include/ATen/ops/triu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.2857359Z adding 'torch/include/ATen/ops/triu_cpu_dispatch.h' 2025-06-01T21:27:43.2860260Z adding 'torch/include/ATen/ops/triu_cuda_dispatch.h' 2025-06-01T21:27:43.2863662Z adding 'torch/include/ATen/ops/triu_indices.h' 2025-06-01T21:27:43.2867108Z adding 'torch/include/ATen/ops/triu_indices_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.2871001Z adding 'torch/include/ATen/ops/triu_indices_cpu_dispatch.h' 2025-06-01T21:27:43.2873689Z adding 'torch/include/ATen/ops/triu_indices_cuda_dispatch.h' 2025-06-01T21:27:43.2876915Z adding 'torch/include/ATen/ops/triu_indices_native.h' 2025-06-01T21:27:43.2880329Z adding 'torch/include/ATen/ops/triu_indices_ops.h' 2025-06-01T21:27:43.2883507Z adding 'torch/include/ATen/ops/triu_meta.h' 2025-06-01T21:27:43.2886895Z adding 'torch/include/ATen/ops/triu_meta_dispatch.h' 2025-06-01T21:27:43.2889895Z adding 'torch/include/ATen/ops/triu_native.h' 2025-06-01T21:27:43.2893184Z adding 'torch/include/ATen/ops/triu_ops.h' 2025-06-01T21:27:43.2896492Z adding 'torch/include/ATen/ops/true_divide.h' 2025-06-01T21:27:43.2899857Z adding 'torch/include/ATen/ops/true_divide_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.2903071Z adding 'torch/include/ATen/ops/true_divide_native.h' 2025-06-01T21:27:43.2906737Z adding 'torch/include/ATen/ops/true_divide_ops.h' 2025-06-01T21:27:43.2909965Z adding 'torch/include/ATen/ops/trunc.h' 2025-06-01T21:27:43.2913562Z adding 'torch/include/ATen/ops/trunc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.2916520Z adding 'torch/include/ATen/ops/trunc_cpu_dispatch.h' 2025-06-01T21:27:43.2919770Z adding 'torch/include/ATen/ops/trunc_cuda_dispatch.h' 2025-06-01T21:27:43.2922855Z adding 'torch/include/ATen/ops/trunc_meta.h' 2025-06-01T21:27:43.2926090Z adding 'torch/include/ATen/ops/trunc_meta_dispatch.h' 2025-06-01T21:27:43.2929223Z adding 'torch/include/ATen/ops/trunc_native.h' 2025-06-01T21:27:43.2932648Z adding 'torch/include/ATen/ops/trunc_ops.h' 2025-06-01T21:27:43.2935832Z adding 'torch/include/ATen/ops/type_as.h' 2025-06-01T21:27:43.2939206Z adding 'torch/include/ATen/ops/type_as_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.2942266Z adding 'torch/include/ATen/ops/type_as_native.h' 2025-06-01T21:27:43.2945441Z adding 'torch/include/ATen/ops/type_as_ops.h' 2025-06-01T21:27:43.2948990Z adding 'torch/include/ATen/ops/unbind.h' 2025-06-01T21:27:43.2952962Z adding 'torch/include/ATen/ops/unbind_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.2956637Z adding 'torch/include/ATen/ops/unbind_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.2960136Z adding 'torch/include/ATen/ops/unbind_copy.h' 2025-06-01T21:27:43.2963968Z adding 'torch/include/ATen/ops/unbind_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.2967684Z adding 'torch/include/ATen/ops/unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.2971013Z adding 'torch/include/ATen/ops/unbind_copy_native.h' 2025-06-01T21:27:43.2974762Z adding 'torch/include/ATen/ops/unbind_copy_ops.h' 2025-06-01T21:27:43.2978031Z adding 'torch/include/ATen/ops/unbind_native.h' 2025-06-01T21:27:43.2981327Z adding 'torch/include/ATen/ops/unbind_ops.h' 2025-06-01T21:27:43.2984927Z adding 'torch/include/ATen/ops/unflatten.h' 2025-06-01T21:27:43.2988684Z adding 'torch/include/ATen/ops/unflatten_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.2991850Z adding 'torch/include/ATen/ops/unflatten_dense_tensors.h' 2025-06-01T21:27:43.2995334Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.2998286Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_native.h' 2025-06-01T21:27:43.3001671Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_ops.h' 2025-06-01T21:27:43.3004787Z adding 'torch/include/ATen/ops/unflatten_native.h' 2025-06-01T21:27:43.3007955Z adding 'torch/include/ATen/ops/unflatten_ops.h' 2025-06-01T21:27:43.3011127Z adding 'torch/include/ATen/ops/unfold.h' 2025-06-01T21:27:43.3014597Z adding 'torch/include/ATen/ops/unfold_backward.h' 2025-06-01T21:27:43.3018075Z adding 'torch/include/ATen/ops/unfold_backward_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.3021131Z adding 'torch/include/ATen/ops/unfold_backward_cpu_dispatch.h' 2025-06-01T21:27:43.3024280Z adding 'torch/include/ATen/ops/unfold_backward_cuda_dispatch.h' 2025-06-01T21:27:43.3027515Z adding 'torch/include/ATen/ops/unfold_backward_native.h' 2025-06-01T21:27:43.3030738Z adding 'torch/include/ATen/ops/unfold_backward_ops.h' 2025-06-01T21:27:43.3034075Z adding 'torch/include/ATen/ops/unfold_copy.h' 2025-06-01T21:27:43.3037357Z adding 'torch/include/ATen/ops/unfold_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.3040573Z adding 'torch/include/ATen/ops/unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.3043427Z adding 'torch/include/ATen/ops/unfold_copy_native.h' 2025-06-01T21:27:43.3046618Z adding 'torch/include/ATen/ops/unfold_copy_ops.h' 2025-06-01T21:27:43.3049781Z adding 'torch/include/ATen/ops/unfold_cpu_dispatch.h' 2025-06-01T21:27:43.3052895Z adding 'torch/include/ATen/ops/unfold_cuda_dispatch.h' 2025-06-01T21:27:43.3055953Z adding 'torch/include/ATen/ops/unfold_meta_dispatch.h' 2025-06-01T21:27:43.3059104Z adding 'torch/include/ATen/ops/unfold_native.h' 2025-06-01T21:27:43.3062303Z adding 'torch/include/ATen/ops/unfold_ops.h' 2025-06-01T21:27:43.3065484Z adding 'torch/include/ATen/ops/uniform.h' 2025-06-01T21:27:43.3068799Z adding 'torch/include/ATen/ops/uniform_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.3071967Z adding 'torch/include/ATen/ops/uniform_cpu_dispatch.h' 2025-06-01T21:27:43.3075087Z adding 'torch/include/ATen/ops/uniform_cuda_dispatch.h' 2025-06-01T21:27:43.3078202Z adding 'torch/include/ATen/ops/uniform_meta_dispatch.h' 2025-06-01T21:27:43.3081241Z adding 'torch/include/ATen/ops/uniform_native.h' 2025-06-01T21:27:43.3084559Z adding 'torch/include/ATen/ops/uniform_ops.h' 2025-06-01T21:27:43.3087882Z adding 'torch/include/ATen/ops/unique_consecutive.h' 2025-06-01T21:27:43.3091486Z adding 'torch/include/ATen/ops/unique_consecutive_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.3094520Z adding 'torch/include/ATen/ops/unique_consecutive_cpu_dispatch.h' 2025-06-01T21:27:43.3097607Z adding 'torch/include/ATen/ops/unique_consecutive_cuda_dispatch.h' 2025-06-01T21:27:43.3100811Z adding 'torch/include/ATen/ops/unique_consecutive_native.h' 2025-06-01T21:27:43.3104110Z adding 'torch/include/ATen/ops/unique_consecutive_ops.h' 2025-06-01T21:27:43.3107371Z adding 'torch/include/ATen/ops/unique_dim.h' 2025-06-01T21:27:43.3110723Z adding 'torch/include/ATen/ops/unique_dim_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.3113994Z adding 'torch/include/ATen/ops/unique_dim_consecutive.h' 2025-06-01T21:27:43.3117372Z adding 'torch/include/ATen/ops/unique_dim_consecutive_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.3120396Z adding 'torch/include/ATen/ops/unique_dim_consecutive_cpu_dispatch.h' 2025-06-01T21:27:43.3123510Z adding 'torch/include/ATen/ops/unique_dim_consecutive_cuda_dispatch.h' 2025-06-01T21:27:43.3126555Z adding 'torch/include/ATen/ops/unique_dim_consecutive_native.h' 2025-06-01T21:27:43.3129896Z adding 'torch/include/ATen/ops/unique_dim_consecutive_ops.h' 2025-06-01T21:27:43.3133049Z adding 'torch/include/ATen/ops/unique_dim_cpu_dispatch.h' 2025-06-01T21:27:43.3136191Z adding 'torch/include/ATen/ops/unique_dim_cuda_dispatch.h' 2025-06-01T21:27:43.3139194Z adding 'torch/include/ATen/ops/unique_dim_native.h' 2025-06-01T21:27:43.3142483Z adding 'torch/include/ATen/ops/unique_dim_ops.h' 2025-06-01T21:27:43.3145637Z adding 'torch/include/ATen/ops/unsafe_chunk.h' 2025-06-01T21:27:43.3148912Z adding 'torch/include/ATen/ops/unsafe_chunk_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.3151946Z adding 'torch/include/ATen/ops/unsafe_chunk_native.h' 2025-06-01T21:27:43.3155163Z adding 'torch/include/ATen/ops/unsafe_chunk_ops.h' 2025-06-01T21:27:43.3158494Z adding 'torch/include/ATen/ops/unsafe_split.h' 2025-06-01T21:27:43.3161904Z adding 'torch/include/ATen/ops/unsafe_split_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.3164839Z adding 'torch/include/ATen/ops/unsafe_split_native.h' 2025-06-01T21:27:43.3168060Z adding 'torch/include/ATen/ops/unsafe_split_ops.h' 2025-06-01T21:27:43.3171506Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes.h' 2025-06-01T21:27:43.3175071Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.3178085Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_native.h' 2025-06-01T21:27:43.3181281Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_ops.h' 2025-06-01T21:27:43.3184303Z adding 'torch/include/ATen/ops/unsqueeze.h' 2025-06-01T21:27:43.3187592Z adding 'torch/include/ATen/ops/unsqueeze_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.3190567Z adding 'torch/include/ATen/ops/unsqueeze_copy.h' 2025-06-01T21:27:43.3193992Z adding 'torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.3197162Z adding 'torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.3199984Z adding 'torch/include/ATen/ops/unsqueeze_copy_native.h' 2025-06-01T21:27:43.3203187Z adding 'torch/include/ATen/ops/unsqueeze_copy_ops.h' 2025-06-01T21:27:43.3206369Z adding 'torch/include/ATen/ops/unsqueeze_native.h' 2025-06-01T21:27:43.3210328Z adding 'torch/include/ATen/ops/unsqueeze_ops.h' 2025-06-01T21:27:43.3214136Z adding 'torch/include/ATen/ops/upsample_bicubic2d.h' 2025-06-01T21:27:43.3217944Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward.h' 2025-06-01T21:27:43.3221612Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.3224755Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_cpu_dispatch.h' 2025-06-01T21:27:43.3228252Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_cuda_dispatch.h' 2025-06-01T21:27:43.3231290Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_meta.h' 2025-06-01T21:27:43.3234632Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_meta_dispatch.h' 2025-06-01T21:27:43.3237728Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_native.h' 2025-06-01T21:27:43.3241025Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_ops.h' 2025-06-01T21:27:43.3244495Z adding 'torch/include/ATen/ops/upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.3247612Z adding 'torch/include/ATen/ops/upsample_bicubic2d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.3250752Z adding 'torch/include/ATen/ops/upsample_bicubic2d_cpu_dispatch.h' 2025-06-01T21:27:43.3253958Z adding 'torch/include/ATen/ops/upsample_bicubic2d_cuda_dispatch.h' 2025-06-01T21:27:43.3257253Z adding 'torch/include/ATen/ops/upsample_bicubic2d_meta.h' 2025-06-01T21:27:43.3260571Z adding 'torch/include/ATen/ops/upsample_bicubic2d_meta_dispatch.h' 2025-06-01T21:27:43.3263772Z adding 'torch/include/ATen/ops/upsample_bicubic2d_native.h' 2025-06-01T21:27:43.3267340Z adding 'torch/include/ATen/ops/upsample_bicubic2d_ops.h' 2025-06-01T21:27:43.3271422Z adding 'torch/include/ATen/ops/upsample_bilinear2d.h' 2025-06-01T21:27:43.3275539Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward.h' 2025-06-01T21:27:43.3279313Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.3282447Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_cpu_dispatch.h' 2025-06-01T21:27:43.3286204Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_cuda_dispatch.h' 2025-06-01T21:27:43.3289440Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_meta.h' 2025-06-01T21:27:43.3292841Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_meta_dispatch.h' 2025-06-01T21:27:43.3296148Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_native.h' 2025-06-01T21:27:43.3299634Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_ops.h' 2025-06-01T21:27:43.3303206Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.3306557Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.3309875Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.3313277Z adding 'torch/include/ATen/ops/upsample_bilinear2d_cpu_dispatch.h' 2025-06-01T21:27:43.3316505Z adding 'torch/include/ATen/ops/upsample_bilinear2d_cuda_dispatch.h' 2025-06-01T21:27:43.3319797Z adding 'torch/include/ATen/ops/upsample_bilinear2d_meta.h' 2025-06-01T21:27:43.3323058Z adding 'torch/include/ATen/ops/upsample_bilinear2d_meta_dispatch.h' 2025-06-01T21:27:43.3326410Z adding 'torch/include/ATen/ops/upsample_bilinear2d_native.h' 2025-06-01T21:27:43.3333744Z adding 'torch/include/ATen/ops/upsample_bilinear2d_ops.h' 2025-06-01T21:27:43.3333939Z adding 'torch/include/ATen/ops/upsample_linear1d.h' 2025-06-01T21:27:43.3337740Z adding 'torch/include/ATen/ops/upsample_linear1d_backward.h' 2025-06-01T21:27:43.3341491Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.3344593Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_cpu_dispatch.h' 2025-06-01T21:27:43.3347981Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_cuda_dispatch.h' 2025-06-01T21:27:43.3351187Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_meta.h' 2025-06-01T21:27:43.3354721Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_meta_dispatch.h' 2025-06-01T21:27:43.3357997Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_native.h' 2025-06-01T21:27:43.3361601Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_ops.h' 2025-06-01T21:27:43.3364957Z adding 'torch/include/ATen/ops/upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.3368013Z adding 'torch/include/ATen/ops/upsample_linear1d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.3371291Z adding 'torch/include/ATen/ops/upsample_linear1d_cpu_dispatch.h' 2025-06-01T21:27:43.3374573Z adding 'torch/include/ATen/ops/upsample_linear1d_cuda_dispatch.h' 2025-06-01T21:27:43.3377792Z adding 'torch/include/ATen/ops/upsample_linear1d_meta.h' 2025-06-01T21:27:43.3381197Z adding 'torch/include/ATen/ops/upsample_linear1d_meta_dispatch.h' 2025-06-01T21:27:43.3384296Z adding 'torch/include/ATen/ops/upsample_linear1d_native.h' 2025-06-01T21:27:43.3387765Z adding 'torch/include/ATen/ops/upsample_linear1d_ops.h' 2025-06-01T21:27:43.3391469Z adding 'torch/include/ATen/ops/upsample_nearest1d.h' 2025-06-01T21:27:43.3395368Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward.h' 2025-06-01T21:27:43.3399171Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.3402269Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_cpu_dispatch.h' 2025-06-01T21:27:43.3405760Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_cuda_dispatch.h' 2025-06-01T21:27:43.3408864Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_meta.h' 2025-06-01T21:27:43.3412333Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_meta_dispatch.h' 2025-06-01T21:27:43.3415537Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_native.h' 2025-06-01T21:27:43.3418887Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_ops.h' 2025-06-01T21:27:43.3422462Z adding 'torch/include/ATen/ops/upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.3425555Z adding 'torch/include/ATen/ops/upsample_nearest1d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.3428900Z adding 'torch/include/ATen/ops/upsample_nearest1d_cpu_dispatch.h' 2025-06-01T21:27:43.3432332Z adding 'torch/include/ATen/ops/upsample_nearest1d_cuda_dispatch.h' 2025-06-01T21:27:43.3435465Z adding 'torch/include/ATen/ops/upsample_nearest1d_meta.h' 2025-06-01T21:27:43.3438904Z adding 'torch/include/ATen/ops/upsample_nearest1d_meta_dispatch.h' 2025-06-01T21:27:43.3442055Z adding 'torch/include/ATen/ops/upsample_nearest1d_native.h' 2025-06-01T21:27:43.3445743Z adding 'torch/include/ATen/ops/upsample_nearest1d_ops.h' 2025-06-01T21:27:43.3450315Z adding 'torch/include/ATen/ops/upsample_nearest2d.h' 2025-06-01T21:27:43.3454706Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward.h' 2025-06-01T21:27:43.3458846Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.3462264Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_cpu_dispatch.h' 2025-06-01T21:27:43.3465621Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_cuda_dispatch.h' 2025-06-01T21:27:43.3468960Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_meta.h' 2025-06-01T21:27:43.3473517Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_meta_dispatch.h' 2025-06-01T21:27:43.3475927Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_native.h' 2025-06-01T21:27:43.3479458Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_ops.h' 2025-06-01T21:27:43.3482849Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.3486356Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.3489508Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.3492928Z adding 'torch/include/ATen/ops/upsample_nearest2d_cpu_dispatch.h' 2025-06-01T21:27:43.3496307Z adding 'torch/include/ATen/ops/upsample_nearest2d_cuda_dispatch.h' 2025-06-01T21:27:43.3499419Z adding 'torch/include/ATen/ops/upsample_nearest2d_meta.h' 2025-06-01T21:27:43.3502669Z adding 'torch/include/ATen/ops/upsample_nearest2d_meta_dispatch.h' 2025-06-01T21:27:43.3505819Z adding 'torch/include/ATen/ops/upsample_nearest2d_native.h' 2025-06-01T21:27:43.3509253Z adding 'torch/include/ATen/ops/upsample_nearest2d_ops.h' 2025-06-01T21:27:43.3513281Z adding 'torch/include/ATen/ops/upsample_nearest3d.h' 2025-06-01T21:27:43.3517197Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward.h' 2025-06-01T21:27:43.3520824Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.3523929Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_cpu_dispatch.h' 2025-06-01T21:27:43.3527183Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_cuda_dispatch.h' 2025-06-01T21:27:43.3530294Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_meta.h' 2025-06-01T21:27:43.3533594Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_meta_dispatch.h' 2025-06-01T21:27:43.3536684Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_native.h' 2025-06-01T21:27:43.3539993Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_ops.h' 2025-06-01T21:27:43.3543551Z adding 'torch/include/ATen/ops/upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.3547011Z adding 'torch/include/ATen/ops/upsample_nearest3d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.3549823Z adding 'torch/include/ATen/ops/upsample_nearest3d_cpu_dispatch.h' 2025-06-01T21:27:43.3553164Z adding 'torch/include/ATen/ops/upsample_nearest3d_cuda_dispatch.h' 2025-06-01T21:27:43.3556269Z adding 'torch/include/ATen/ops/upsample_nearest3d_meta.h' 2025-06-01T21:27:43.3559501Z adding 'torch/include/ATen/ops/upsample_nearest3d_meta_dispatch.h' 2025-06-01T21:27:43.3562666Z adding 'torch/include/ATen/ops/upsample_nearest3d_native.h' 2025-06-01T21:27:43.3566010Z adding 'torch/include/ATen/ops/upsample_nearest3d_ops.h' 2025-06-01T21:27:43.3570091Z adding 'torch/include/ATen/ops/upsample_trilinear3d.h' 2025-06-01T21:27:43.3573677Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward.h' 2025-06-01T21:27:43.3577351Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.3580492Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_cpu_dispatch.h' 2025-06-01T21:27:43.3583793Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_cuda_dispatch.h' 2025-06-01T21:27:43.3587000Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_meta.h' 2025-06-01T21:27:43.3590197Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_meta_dispatch.h' 2025-06-01T21:27:43.3593483Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_native.h' 2025-06-01T21:27:43.3596885Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_ops.h' 2025-06-01T21:27:43.3600381Z adding 'torch/include/ATen/ops/upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.3604098Z adding 'torch/include/ATen/ops/upsample_trilinear3d_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.3606899Z adding 'torch/include/ATen/ops/upsample_trilinear3d_cpu_dispatch.h' 2025-06-01T21:27:43.3610278Z adding 'torch/include/ATen/ops/upsample_trilinear3d_cuda_dispatch.h' 2025-06-01T21:27:43.3613384Z adding 'torch/include/ATen/ops/upsample_trilinear3d_meta.h' 2025-06-01T21:27:43.3616935Z adding 'torch/include/ATen/ops/upsample_trilinear3d_meta_dispatch.h' 2025-06-01T21:27:43.3620121Z adding 'torch/include/ATen/ops/upsample_trilinear3d_native.h' 2025-06-01T21:27:43.3623643Z adding 'torch/include/ATen/ops/upsample_trilinear3d_ops.h' 2025-06-01T21:27:43.3627205Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward.h' 2025-06-01T21:27:43.3630595Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.3633799Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_native.h' 2025-06-01T21:27:43.3637005Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_ops.h' 2025-06-01T21:27:43.3640184Z adding 'torch/include/ATen/ops/values.h' 2025-06-01T21:27:43.3643582Z adding 'torch/include/ATen/ops/values_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.3646601Z adding 'torch/include/ATen/ops/values_copy.h' 2025-06-01T21:27:43.3650071Z adding 'torch/include/ATen/ops/values_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.3653247Z adding 'torch/include/ATen/ops/values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.3656225Z adding 'torch/include/ATen/ops/values_copy_native.h' 2025-06-01T21:27:43.3659444Z adding 'torch/include/ATen/ops/values_copy_ops.h' 2025-06-01T21:27:43.3662653Z adding 'torch/include/ATen/ops/values_native.h' 2025-06-01T21:27:43.3665841Z adding 'torch/include/ATen/ops/values_ops.h' 2025-06-01T21:27:43.3669103Z adding 'torch/include/ATen/ops/vander.h' 2025-06-01T21:27:43.3672588Z adding 'torch/include/ATen/ops/vander_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.3675544Z adding 'torch/include/ATen/ops/vander_native.h' 2025-06-01T21:27:43.3678838Z adding 'torch/include/ATen/ops/vander_ops.h' 2025-06-01T21:27:43.3682285Z adding 'torch/include/ATen/ops/var.h' 2025-06-01T21:27:43.3685914Z adding 'torch/include/ATen/ops/var_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.3689390Z adding 'torch/include/ATen/ops/var_cpu_dispatch.h' 2025-06-01T21:27:43.3692612Z adding 'torch/include/ATen/ops/var_cuda_dispatch.h' 2025-06-01T21:27:43.3696126Z adding 'torch/include/ATen/ops/var_mean.h' 2025-06-01T21:27:43.3699561Z adding 'torch/include/ATen/ops/var_mean_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.3702855Z adding 'torch/include/ATen/ops/var_mean_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.3706005Z adding 'torch/include/ATen/ops/var_mean_cpu_dispatch.h' 2025-06-01T21:27:43.3709182Z adding 'torch/include/ATen/ops/var_mean_cuda_dispatch.h' 2025-06-01T21:27:43.3712518Z adding 'torch/include/ATen/ops/var_mean_native.h' 2025-06-01T21:27:43.3716129Z adding 'torch/include/ATen/ops/var_mean_ops.h' 2025-06-01T21:27:43.3719589Z adding 'torch/include/ATen/ops/var_native.h' 2025-06-01T21:27:43.3723405Z adding 'torch/include/ATen/ops/var_ops.h' 2025-06-01T21:27:43.3726719Z adding 'torch/include/ATen/ops/vdot.h' 2025-06-01T21:27:43.3730240Z adding 'torch/include/ATen/ops/vdot_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.3733339Z adding 'torch/include/ATen/ops/vdot_cpu_dispatch.h' 2025-06-01T21:27:43.3736454Z adding 'torch/include/ATen/ops/vdot_cuda_dispatch.h' 2025-06-01T21:27:43.3739502Z adding 'torch/include/ATen/ops/vdot_native.h' 2025-06-01T21:27:43.3742839Z adding 'torch/include/ATen/ops/vdot_ops.h' 2025-06-01T21:27:43.3746069Z adding 'torch/include/ATen/ops/view.h' 2025-06-01T21:27:43.3749112Z adding 'torch/include/ATen/ops/view_as.h' 2025-06-01T21:27:43.3752465Z adding 'torch/include/ATen/ops/view_as_complex.h' 2025-06-01T21:27:43.3755615Z adding 'torch/include/ATen/ops/view_as_complex_copy.h' 2025-06-01T21:27:43.3759276Z adding 'torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.3762517Z adding 'torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.3765607Z adding 'torch/include/ATen/ops/view_as_complex_copy_native.h' 2025-06-01T21:27:43.3768938Z adding 'torch/include/ATen/ops/view_as_complex_copy_ops.h' 2025-06-01T21:27:43.3772086Z adding 'torch/include/ATen/ops/view_as_complex_cpu_dispatch.h' 2025-06-01T21:27:43.3775368Z adding 'torch/include/ATen/ops/view_as_complex_cuda_dispatch.h' 2025-06-01T21:27:43.3778458Z adding 'torch/include/ATen/ops/view_as_complex_meta_dispatch.h' 2025-06-01T21:27:43.3781633Z adding 'torch/include/ATen/ops/view_as_complex_native.h' 2025-06-01T21:27:43.3785096Z adding 'torch/include/ATen/ops/view_as_complex_ops.h' 2025-06-01T21:27:43.3788243Z adding 'torch/include/ATen/ops/view_as_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.3791098Z adding 'torch/include/ATen/ops/view_as_native.h' 2025-06-01T21:27:43.3794446Z adding 'torch/include/ATen/ops/view_as_ops.h' 2025-06-01T21:27:43.3797623Z adding 'torch/include/ATen/ops/view_as_real.h' 2025-06-01T21:27:43.3800744Z adding 'torch/include/ATen/ops/view_as_real_copy.h' 2025-06-01T21:27:43.3804147Z adding 'torch/include/ATen/ops/view_as_real_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.3807328Z adding 'torch/include/ATen/ops/view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.3810302Z adding 'torch/include/ATen/ops/view_as_real_copy_native.h' 2025-06-01T21:27:43.3813481Z adding 'torch/include/ATen/ops/view_as_real_copy_ops.h' 2025-06-01T21:27:43.3816777Z adding 'torch/include/ATen/ops/view_as_real_cpu_dispatch.h' 2025-06-01T21:27:43.3819844Z adding 'torch/include/ATen/ops/view_as_real_cuda_dispatch.h' 2025-06-01T21:27:43.3823115Z adding 'torch/include/ATen/ops/view_as_real_meta_dispatch.h' 2025-06-01T21:27:43.3826275Z adding 'torch/include/ATen/ops/view_as_real_native.h' 2025-06-01T21:27:43.3829470Z adding 'torch/include/ATen/ops/view_as_real_ops.h' 2025-06-01T21:27:43.3832939Z adding 'torch/include/ATen/ops/view_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.3836280Z adding 'torch/include/ATen/ops/view_copy.h' 2025-06-01T21:27:43.3839891Z adding 'torch/include/ATen/ops/view_copy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.3843235Z adding 'torch/include/ATen/ops/view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.3846096Z adding 'torch/include/ATen/ops/view_copy_native.h' 2025-06-01T21:27:43.3849523Z adding 'torch/include/ATen/ops/view_copy_ops.h' 2025-06-01T21:27:43.3852737Z adding 'torch/include/ATen/ops/view_cpu_dispatch.h' 2025-06-01T21:27:43.3855978Z adding 'torch/include/ATen/ops/view_cuda_dispatch.h' 2025-06-01T21:27:43.3859047Z adding 'torch/include/ATen/ops/view_meta_dispatch.h' 2025-06-01T21:27:43.3862230Z adding 'torch/include/ATen/ops/view_native.h' 2025-06-01T21:27:43.3865508Z adding 'torch/include/ATen/ops/view_ops.h' 2025-06-01T21:27:43.3868670Z adding 'torch/include/ATen/ops/vsplit.h' 2025-06-01T21:27:43.3872203Z adding 'torch/include/ATen/ops/vsplit_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.3875153Z adding 'torch/include/ATen/ops/vsplit_native.h' 2025-06-01T21:27:43.3878504Z adding 'torch/include/ATen/ops/vsplit_ops.h' 2025-06-01T21:27:43.3881718Z adding 'torch/include/ATen/ops/vstack.h' 2025-06-01T21:27:43.3885132Z adding 'torch/include/ATen/ops/vstack_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.3888081Z adding 'torch/include/ATen/ops/vstack_native.h' 2025-06-01T21:27:43.3891426Z adding 'torch/include/ATen/ops/vstack_ops.h' 2025-06-01T21:27:43.3895061Z adding 'torch/include/ATen/ops/where.h' 2025-06-01T21:27:43.3898451Z adding 'torch/include/ATen/ops/where_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.3901680Z adding 'torch/include/ATen/ops/where_cpu_dispatch.h' 2025-06-01T21:27:43.3904799Z adding 'torch/include/ATen/ops/where_cuda_dispatch.h' 2025-06-01T21:27:43.3908096Z adding 'torch/include/ATen/ops/where_native.h' 2025-06-01T21:27:43.3911696Z adding 'torch/include/ATen/ops/where_ops.h' 2025-06-01T21:27:43.3915092Z adding 'torch/include/ATen/ops/xlogy.h' 2025-06-01T21:27:43.3918648Z adding 'torch/include/ATen/ops/xlogy_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.3921907Z adding 'torch/include/ATen/ops/xlogy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-06-01T21:27:43.3925074Z adding 'torch/include/ATen/ops/xlogy_cpu_dispatch.h' 2025-06-01T21:27:43.3928225Z adding 'torch/include/ATen/ops/xlogy_cuda_dispatch.h' 2025-06-01T21:27:43.3931278Z adding 'torch/include/ATen/ops/xlogy_meta.h' 2025-06-01T21:27:43.3934545Z adding 'torch/include/ATen/ops/xlogy_meta_dispatch.h' 2025-06-01T21:27:43.3937651Z adding 'torch/include/ATen/ops/xlogy_native.h' 2025-06-01T21:27:43.3941185Z adding 'torch/include/ATen/ops/xlogy_ops.h' 2025-06-01T21:27:43.3944394Z adding 'torch/include/ATen/ops/xor.h' 2025-06-01T21:27:43.3947657Z adding 'torch/include/ATen/ops/xor_compositeimplicitautograd_dispatch.h' 2025-06-01T21:27:43.3950804Z adding 'torch/include/ATen/ops/xor_native.h' 2025-06-01T21:27:43.3954249Z adding 'torch/include/ATen/ops/xor_ops.h' 2025-06-01T21:27:43.3957427Z adding 'torch/include/ATen/ops/zero.h' 2025-06-01T21:27:43.3960707Z adding 'torch/include/ATen/ops/zero_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.3963717Z adding 'torch/include/ATen/ops/zero_cpu_dispatch.h' 2025-06-01T21:27:43.3966809Z adding 'torch/include/ATen/ops/zero_cuda_dispatch.h' 2025-06-01T21:27:43.3969902Z adding 'torch/include/ATen/ops/zero_meta_dispatch.h' 2025-06-01T21:27:43.3972886Z adding 'torch/include/ATen/ops/zero_native.h' 2025-06-01T21:27:43.3976900Z adding 'torch/include/ATen/ops/zero_ops.h' 2025-06-01T21:27:43.3980859Z adding 'torch/include/ATen/ops/zeros.h' 2025-06-01T21:27:43.3984464Z adding 'torch/include/ATen/ops/zeros_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.3987788Z adding 'torch/include/ATen/ops/zeros_like.h' 2025-06-01T21:27:43.3991250Z adding 'torch/include/ATen/ops/zeros_like_compositeexplicitautograd_dispatch.h' 2025-06-01T21:27:43.3994583Z adding 'torch/include/ATen/ops/zeros_like_compositeimplicitautogradnestedtensor_dispatch.h' 2025-06-01T21:27:43.3997814Z adding 'torch/include/ATen/ops/zeros_like_native.h' 2025-06-01T21:27:43.4001154Z adding 'torch/include/ATen/ops/zeros_like_ops.h' 2025-06-01T21:27:43.4004281Z adding 'torch/include/ATen/ops/zeros_native.h' 2025-06-01T21:27:43.4007687Z adding 'torch/include/ATen/ops/zeros_ops.h' 2025-06-01T21:27:43.4014440Z adding 'torch/include/ATen/quantized/QTensorImpl.h' 2025-06-01T21:27:43.4019382Z adding 'torch/include/ATen/quantized/Quantizer.h' 2025-06-01T21:27:43.4023853Z adding 'torch/include/ATen/xpu/CachingHostAllocator.h' 2025-06-01T21:27:43.4026960Z adding 'torch/include/ATen/xpu/PinnedMemoryAllocator.h' 2025-06-01T21:27:43.4029778Z adding 'torch/include/ATen/xpu/XPUContext.h' 2025-06-01T21:27:43.4032881Z adding 'torch/include/ATen/xpu/XPUDevice.h' 2025-06-01T21:27:43.4037152Z adding 'torch/include/ATen/xpu/XPUEvent.h' 2025-06-01T21:27:43.4040572Z adding 'torch/include/ATen/xpu/XPUGeneratorImpl.h' 2025-06-01T21:27:43.4044497Z adding 'torch/include/ATen/xpu/detail/XPUHooks.h' 2025-06-01T21:27:43.4048232Z adding 'torch/include/THC/THCAtomics.cuh' 2025-06-01T21:27:43.4051043Z adding 'torch/include/THC/THCDeviceUtils.cuh' 2025-06-01T21:27:43.4055412Z adding 'torch/include/asmjit/a64.h' 2025-06-01T21:27:43.4059136Z adding 'torch/include/asmjit/arm.h' 2025-06-01T21:27:43.4062144Z adding 'torch/include/asmjit/asmjit-scope-begin.h' 2025-06-01T21:27:43.4065029Z adding 'torch/include/asmjit/asmjit-scope-end.h' 2025-06-01T21:27:43.4068249Z adding 'torch/include/asmjit/asmjit.h' 2025-06-01T21:27:43.4112273Z adding 'torch/include/asmjit/core.h' 2025-06-01T21:27:43.4118431Z adding 'torch/include/asmjit/x86.h' 2025-06-01T21:27:43.4122803Z adding 'torch/include/asmjit/arm/a64assembler.h' 2025-06-01T21:27:43.4126591Z adding 'torch/include/asmjit/arm/a64builder.h' 2025-06-01T21:27:43.4130772Z adding 'torch/include/asmjit/arm/a64compiler.h' 2025-06-01T21:27:43.4144769Z adding 'torch/include/asmjit/arm/a64emitter.h' 2025-06-01T21:27:43.4173503Z adding 'torch/include/asmjit/arm/a64globals.h' 2025-06-01T21:27:43.4180083Z adding 'torch/include/asmjit/arm/a64instdb.h' 2025-06-01T21:27:43.4187844Z adding 'torch/include/asmjit/arm/a64operand.h' 2025-06-01T21:27:43.4191836Z adding 'torch/include/asmjit/arm/armglobals.h' 2025-06-01T21:27:43.4198630Z adding 'torch/include/asmjit/arm/armoperand.h' 2025-06-01T21:27:43.4204290Z adding 'torch/include/asmjit/arm/armutils.h' 2025-06-01T21:27:43.4214086Z adding 'torch/include/asmjit/core/api-config.h' 2025-06-01T21:27:43.4220038Z adding 'torch/include/asmjit/core/archcommons.h' 2025-06-01T21:27:43.4225765Z adding 'torch/include/asmjit/core/archtraits.h' 2025-06-01T21:27:43.4230048Z adding 'torch/include/asmjit/core/assembler.h' 2025-06-01T21:27:43.4248598Z adding 'torch/include/asmjit/core/builder.h' 2025-06-01T21:27:43.4253439Z adding 'torch/include/asmjit/core/codebuffer.h' 2025-06-01T21:27:43.4270343Z adding 'torch/include/asmjit/core/codeholder.h' 2025-06-01T21:27:43.4281325Z adding 'torch/include/asmjit/core/compiler.h' 2025-06-01T21:27:43.4286633Z adding 'torch/include/asmjit/core/compilerdefs.h' 2025-06-01T21:27:43.4291752Z adding 'torch/include/asmjit/core/constpool.h' 2025-06-01T21:27:43.4308488Z adding 'torch/include/asmjit/core/cpuinfo.h' 2025-06-01T21:27:43.4323867Z adding 'torch/include/asmjit/core/emitter.h' 2025-06-01T21:27:43.4331638Z adding 'torch/include/asmjit/core/environment.h' 2025-06-01T21:27:43.4337089Z adding 'torch/include/asmjit/core/errorhandler.h' 2025-06-01T21:27:43.4341975Z adding 'torch/include/asmjit/core/formatter.h' 2025-06-01T21:27:43.4364632Z adding 'torch/include/asmjit/core/func.h' 2025-06-01T21:27:43.4373325Z adding 'torch/include/asmjit/core/globals.h' 2025-06-01T21:27:43.4385069Z adding 'torch/include/asmjit/core/inst.h' 2025-06-01T21:27:43.4395341Z adding 'torch/include/asmjit/core/jitallocator.h' 2025-06-01T21:27:43.4399813Z adding 'torch/include/asmjit/core/jitruntime.h' 2025-06-01T21:27:43.4404349Z adding 'torch/include/asmjit/core/logger.h' 2025-06-01T21:27:43.4430091Z adding 'torch/include/asmjit/core/operand.h' 2025-06-01T21:27:43.4435606Z adding 'torch/include/asmjit/core/osutils.h' 2025-06-01T21:27:43.4441388Z adding 'torch/include/asmjit/core/string.h' 2025-06-01T21:27:43.4462037Z adding 'torch/include/asmjit/core/support.h' 2025-06-01T21:27:43.4467305Z adding 'torch/include/asmjit/core/target.h' 2025-06-01T21:27:43.4474084Z adding 'torch/include/asmjit/core/type.h' 2025-06-01T21:27:43.4481020Z adding 'torch/include/asmjit/core/virtmem.h' 2025-06-01T21:27:43.4489726Z adding 'torch/include/asmjit/core/zone.h' 2025-06-01T21:27:43.4494661Z adding 'torch/include/asmjit/core/zonehash.h' 2025-06-01T21:27:43.4498804Z adding 'torch/include/asmjit/core/zonelist.h' 2025-06-01T21:27:43.4503096Z adding 'torch/include/asmjit/core/zonestack.h' 2025-06-01T21:27:43.4507009Z adding 'torch/include/asmjit/core/zonestring.h' 2025-06-01T21:27:43.4512790Z adding 'torch/include/asmjit/core/zonetree.h' 2025-06-01T21:27:43.4521041Z adding 'torch/include/asmjit/core/zonevector.h' 2025-06-01T21:27:43.4533782Z adding 'torch/include/asmjit/x86/x86assembler.h' 2025-06-01T21:27:43.4541357Z adding 'torch/include/asmjit/x86/x86builder.h' 2025-06-01T21:27:43.4551408Z adding 'torch/include/asmjit/x86/x86compiler.h' 2025-06-01T21:27:43.4615384Z adding 'torch/include/asmjit/x86/x86emitter.h' 2025-06-01T21:27:43.4656530Z adding 'torch/include/asmjit/x86/x86globals.h' 2025-06-01T21:27:43.4668725Z adding 'torch/include/asmjit/x86/x86instdb.h' 2025-06-01T21:27:43.4683418Z adding 'torch/include/asmjit/x86/x86operand.h' 2025-06-01T21:27:43.4694045Z adding 'torch/include/c10/core/Allocator.h' 2025-06-01T21:27:43.4697781Z adding 'torch/include/c10/core/AutogradState.h' 2025-06-01T21:27:43.4702549Z adding 'torch/include/c10/core/Backend.h' 2025-06-01T21:27:43.4706358Z adding 'torch/include/c10/core/CPUAllocator.h' 2025-06-01T21:27:43.4709720Z adding 'torch/include/c10/core/CachingDeviceAllocator.h' 2025-06-01T21:27:43.4713248Z adding 'torch/include/c10/core/CompileTimeFunctionPointer.h' 2025-06-01T21:27:43.4717185Z adding 'torch/include/c10/core/ConstantSymNodeImpl.h' 2025-06-01T21:27:43.4720595Z adding 'torch/include/c10/core/Contiguity.h' 2025-06-01T21:27:43.4723966Z adding 'torch/include/c10/core/CopyBytes.h' 2025-06-01T21:27:43.4726972Z adding 'torch/include/c10/core/DefaultDtype.h' 2025-06-01T21:27:43.4730147Z adding 'torch/include/c10/core/DefaultTensorOptions.h' 2025-06-01T21:27:43.4734673Z adding 'torch/include/c10/core/Device.h' 2025-06-01T21:27:43.4738018Z adding 'torch/include/c10/core/DeviceArray.h' 2025-06-01T21:27:43.4742866Z adding 'torch/include/c10/core/DeviceGuard.h' 2025-06-01T21:27:43.4747113Z adding 'torch/include/c10/core/DeviceType.h' 2025-06-01T21:27:43.4760522Z adding 'torch/include/c10/core/DispatchKey.h' 2025-06-01T21:27:43.4777530Z adding 'torch/include/c10/core/DispatchKeySet.h' 2025-06-01T21:27:43.4782500Z adding 'torch/include/c10/core/DynamicCast.h' 2025-06-01T21:27:43.4786714Z adding 'torch/include/c10/core/Event.h' 2025-06-01T21:27:43.4790836Z adding 'torch/include/c10/core/GeneratorImpl.h' 2025-06-01T21:27:43.4794319Z adding 'torch/include/c10/core/GradMode.h' 2025-06-01T21:27:43.4798155Z adding 'torch/include/c10/core/InferenceMode.h' 2025-06-01T21:27:43.4801649Z adding 'torch/include/c10/core/Layout.h' 2025-06-01T21:27:43.4806834Z adding 'torch/include/c10/core/MemoryFormat.h' 2025-06-01T21:27:43.4810136Z adding 'torch/include/c10/core/OptionalRef.h' 2025-06-01T21:27:43.4813972Z adding 'torch/include/c10/core/PyHandleCache.h' 2025-06-01T21:27:43.4817183Z adding 'torch/include/c10/core/QEngine.h' 2025-06-01T21:27:43.4820508Z adding 'torch/include/c10/core/QScheme.h' 2025-06-01T21:27:43.4823984Z adding 'torch/include/c10/core/RefcountedDeleter.h' 2025-06-01T21:27:43.4827756Z adding 'torch/include/c10/core/SafePyObject.h' 2025-06-01T21:27:43.4834046Z adding 'torch/include/c10/core/Scalar.h' 2025-06-01T21:27:43.4842682Z adding 'torch/include/c10/core/ScalarType.h' 2025-06-01T21:27:43.4846687Z adding 'torch/include/c10/core/ScalarTypeToTypeMeta.h' 2025-06-01T21:27:43.4851089Z adding 'torch/include/c10/core/Storage.h' 2025-06-01T21:27:43.4856821Z adding 'torch/include/c10/core/StorageImpl.h' 2025-06-01T21:27:43.4861956Z adding 'torch/include/c10/core/Stream.h' 2025-06-01T21:27:43.4866416Z adding 'torch/include/c10/core/StreamGuard.h' 2025-06-01T21:27:43.4870548Z adding 'torch/include/c10/core/SymBool.h' 2025-06-01T21:27:43.4874557Z adding 'torch/include/c10/core/SymFloat.h' 2025-06-01T21:27:43.4881981Z adding 'torch/include/c10/core/SymInt.h' 2025-06-01T21:27:43.4885497Z adding 'torch/include/c10/core/SymIntArrayRef.h' 2025-06-01T21:27:43.4890139Z adding 'torch/include/c10/core/SymNodeImpl.h' 2025-06-01T21:27:43.4894406Z adding 'torch/include/c10/core/SymbolicShapeMeta.h' 2025-06-01T21:27:43.4937805Z adding 'torch/include/c10/core/TensorImpl.h' 2025-06-01T21:27:43.4951146Z adding 'torch/include/c10/core/TensorOptions.h' 2025-06-01T21:27:43.4955102Z adding 'torch/include/c10/core/UndefinedTensorImpl.h' 2025-06-01T21:27:43.4958159Z adding 'torch/include/c10/core/WrapDimMinimal.h' 2025-06-01T21:27:43.4961276Z adding 'torch/include/c10/core/alignment.h' 2025-06-01T21:27:43.4965645Z adding 'torch/include/c10/core/thread_pool.h' 2025-06-01T21:27:43.4970673Z adding 'torch/include/c10/core/impl/COW.h' 2025-06-01T21:27:43.4974755Z adding 'torch/include/c10/core/impl/COWDeleter.h' 2025-06-01T21:27:43.4982262Z adding 'torch/include/c10/core/impl/DeviceGuardImplInterface.h' 2025-06-01T21:27:43.4986762Z adding 'torch/include/c10/core/impl/FakeGuardImpl.h' 2025-06-01T21:27:43.4990474Z adding 'torch/include/c10/core/impl/GPUTrace.h' 2025-06-01T21:27:43.4994290Z adding 'torch/include/c10/core/impl/HermeticPyObjectTLS.h' 2025-06-01T21:27:43.5001333Z adding 'torch/include/c10/core/impl/InlineDeviceGuard.h' 2025-06-01T21:27:43.5005886Z adding 'torch/include/c10/core/impl/InlineEvent.h' 2025-06-01T21:27:43.5011401Z adding 'torch/include/c10/core/impl/InlineStreamGuard.h' 2025-06-01T21:27:43.5016260Z adding 'torch/include/c10/core/impl/LocalDispatchKeySet.h' 2025-06-01T21:27:43.5022295Z adding 'torch/include/c10/core/impl/PyInterpreter.h' 2025-06-01T21:27:43.5028042Z adding 'torch/include/c10/core/impl/PyObjectSlot.h' 2025-06-01T21:27:43.5031593Z adding 'torch/include/c10/core/impl/PythonDispatcherTLS.h' 2025-06-01T21:27:43.5036133Z adding 'torch/include/c10/core/impl/SizesAndStrides.h' 2025-06-01T21:27:43.5039861Z adding 'torch/include/c10/core/impl/TorchDispatchModeTLS.h' 2025-06-01T21:27:43.5043845Z adding 'torch/include/c10/core/impl/VirtualGuardImpl.h' 2025-06-01T21:27:43.5047012Z adding 'torch/include/c10/core/impl/alloc_cpu.h' 2025-06-01T21:27:43.5051405Z adding 'torch/include/c10/cuda/CUDAAlgorithm.h' 2025-06-01T21:27:43.5055436Z adding 'torch/include/c10/cuda/CUDAAllocatorConfig.h' 2025-06-01T21:27:43.5062690Z adding 'torch/include/c10/cuda/CUDACachingAllocator.h' 2025-06-01T21:27:43.5067225Z adding 'torch/include/c10/cuda/CUDADeviceAssertion.h' 2025-06-01T21:27:43.5072255Z adding 'torch/include/c10/cuda/CUDADeviceAssertionHost.h' 2025-06-01T21:27:43.5076407Z adding 'torch/include/c10/cuda/CUDAException.h' 2025-06-01T21:27:43.5080461Z adding 'torch/include/c10/cuda/CUDAFunctions.h' 2025-06-01T21:27:43.5084136Z adding 'torch/include/c10/cuda/CUDAGraphsC10Utils.h' 2025-06-01T21:27:43.5089616Z adding 'torch/include/c10/cuda/CUDAGuard.h' 2025-06-01T21:27:43.5093293Z adding 'torch/include/c10/cuda/CUDAMacros.h' 2025-06-01T21:27:43.5096811Z adding 'torch/include/c10/cuda/CUDAMathCompat.h' 2025-06-01T21:27:43.5099933Z adding 'torch/include/c10/cuda/CUDAMiscFunctions.h' 2025-06-01T21:27:43.5106644Z adding 'torch/include/c10/cuda/CUDAStream.h' 2025-06-01T21:27:43.5110548Z adding 'torch/include/c10/cuda/driver_api.h' 2025-06-01T21:27:43.5116834Z adding 'torch/include/c10/cuda/impl/CUDAGuardImpl.h' 2025-06-01T21:27:43.5120001Z adding 'torch/include/c10/cuda/impl/CUDATest.h' 2025-06-01T21:27:43.5123011Z adding 'torch/include/c10/cuda/impl/cuda_cmake_macros.h' 2025-06-01T21:27:43.5128357Z adding 'torch/include/c10/macros/Export.h' 2025-06-01T21:27:43.5135827Z adding 'torch/include/c10/macros/Macros.h' 2025-06-01T21:27:43.5139343Z adding 'torch/include/c10/macros/cmake_macros.h' 2025-06-01T21:27:43.5143612Z adding 'torch/include/c10/metal/atomic.h' 2025-06-01T21:27:43.5146873Z adding 'torch/include/c10/metal/common.h' 2025-06-01T21:27:43.5152828Z adding 'torch/include/c10/metal/indexing.h' 2025-06-01T21:27:43.5156845Z adding 'torch/include/c10/metal/random.h' 2025-06-01T21:27:43.5160892Z adding 'torch/include/c10/metal/reduction_utils.h' 2025-06-01T21:27:43.5175571Z adding 'torch/include/c10/metal/special_math.h' 2025-06-01T21:27:43.5180765Z adding 'torch/include/c10/metal/utils.h' 2025-06-01T21:27:43.5185972Z adding 'torch/include/c10/mobile/CPUCachingAllocator.h' 2025-06-01T21:27:43.5190228Z adding 'torch/include/c10/mobile/CPUProfilingAllocator.h' 2025-06-01T21:27:43.5195182Z adding 'torch/include/c10/test/util/Macros.h' 2025-06-01T21:27:43.5200270Z adding 'torch/include/c10/test/util/complex_math_test_common.h' 2025-06-01T21:27:43.5207190Z adding 'torch/include/c10/test/util/complex_test_common.h' 2025-06-01T21:27:43.5213986Z adding 'torch/include/c10/util/AbortHandler.h' 2025-06-01T21:27:43.5218343Z adding 'torch/include/c10/util/AlignOf.h' 2025-06-01T21:27:43.5222579Z adding 'torch/include/c10/util/ApproximateClock.h' 2025-06-01T21:27:43.5225398Z adding 'torch/include/c10/util/Array.h' 2025-06-01T21:27:43.5230731Z adding 'torch/include/c10/util/ArrayRef.h' 2025-06-01T21:27:43.5235625Z adding 'torch/include/c10/util/BFloat16-inl.h' 2025-06-01T21:27:43.5240380Z adding 'torch/include/c10/util/BFloat16-math.h' 2025-06-01T21:27:43.5244287Z adding 'torch/include/c10/util/BFloat16.h' 2025-06-01T21:27:43.5247499Z adding 'torch/include/c10/util/Backtrace.h' 2025-06-01T21:27:43.5251532Z adding 'torch/include/c10/util/Bitset.h' 2025-06-01T21:27:43.5254986Z adding 'torch/include/c10/util/C++17.h' 2025-06-01T21:27:43.5258477Z adding 'torch/include/c10/util/CallOnce.h' 2025-06-01T21:27:43.5263589Z adding 'torch/include/c10/util/ConstexprCrc.h' 2025-06-01T21:27:43.5267273Z adding 'torch/include/c10/util/DeadlockDetection.h' 2025-06-01T21:27:43.5271227Z adding 'torch/include/c10/util/Deprecated.h' 2025-06-01T21:27:43.5274436Z adding 'torch/include/c10/util/DimVector.h' 2025-06-01T21:27:43.5277949Z adding 'torch/include/c10/util/DynamicCounter.h' 2025-06-01T21:27:43.5281842Z adding 'torch/include/c10/util/Enumerate.h' 2025-06-01T21:27:43.5292991Z adding 'torch/include/c10/util/Exception.h' 2025-06-01T21:27:43.5297898Z adding 'torch/include/c10/util/ExclusivelyOwned.h' 2025-06-01T21:27:43.5301656Z adding 'torch/include/c10/util/ExclusivelyOwnedTensorTraits.h' 2025-06-01T21:27:43.5304860Z adding 'torch/include/c10/util/FbcodeMaps.h' 2025-06-01T21:27:43.5310254Z adding 'torch/include/c10/util/Flags.h' 2025-06-01T21:27:43.5314030Z adding 'torch/include/c10/util/Float4_e2m1fn_x2.h' 2025-06-01T21:27:43.5318312Z adding 'torch/include/c10/util/Float8_e4m3fn-inl.h' 2025-06-01T21:27:43.5323718Z adding 'torch/include/c10/util/Float8_e4m3fn.h' 2025-06-01T21:27:43.5328268Z adding 'torch/include/c10/util/Float8_e4m3fnuz-inl.h' 2025-06-01T21:27:43.5332585Z adding 'torch/include/c10/util/Float8_e4m3fnuz.h' 2025-06-01T21:27:43.5336957Z adding 'torch/include/c10/util/Float8_e5m2-inl.h' 2025-06-01T21:27:43.5341414Z adding 'torch/include/c10/util/Float8_e5m2.h' 2025-06-01T21:27:43.5345945Z adding 'torch/include/c10/util/Float8_e5m2fnuz-inl.h' 2025-06-01T21:27:43.5350264Z adding 'torch/include/c10/util/Float8_e5m2fnuz.h' 2025-06-01T21:27:43.5354249Z adding 'torch/include/c10/util/Float8_e8m0fnu-inl.h' 2025-06-01T21:27:43.5358263Z adding 'torch/include/c10/util/Float8_e8m0fnu.h' 2025-06-01T21:27:43.5361876Z adding 'torch/include/c10/util/Float8_fnuz_cvt.h' 2025-06-01T21:27:43.5365434Z adding 'torch/include/c10/util/FunctionRef.h' 2025-06-01T21:27:43.5368898Z adding 'torch/include/c10/util/Gauge.h' 2025-06-01T21:27:43.5373535Z adding 'torch/include/c10/util/Half-inl.h' 2025-06-01T21:27:43.5381605Z adding 'torch/include/c10/util/Half.h' 2025-06-01T21:27:43.5385462Z adding 'torch/include/c10/util/IdWrapper.h' 2025-06-01T21:27:43.5389778Z adding 'torch/include/c10/util/IntrusiveList.h' 2025-06-01T21:27:43.5393454Z adding 'torch/include/c10/util/Lazy.h' 2025-06-01T21:27:43.5398378Z adding 'torch/include/c10/util/LeftRight.h' 2025-06-01T21:27:43.5401902Z adding 'torch/include/c10/util/Load.h' 2025-06-01T21:27:43.5407975Z adding 'torch/include/c10/util/Logging.h' 2025-06-01T21:27:43.5412649Z adding 'torch/include/c10/util/MathConstants.h' 2025-06-01T21:27:43.5416617Z adding 'torch/include/c10/util/MaybeOwned.h' 2025-06-01T21:27:43.5421493Z adding 'torch/include/c10/util/Metaprogramming.h' 2025-06-01T21:27:43.5425534Z adding 'torch/include/c10/util/NetworkFlow.h' 2025-06-01T21:27:43.5428604Z adding 'torch/include/c10/util/Optional.h' 2025-06-01T21:27:43.5433020Z adding 'torch/include/c10/util/OptionalArrayRef.h' 2025-06-01T21:27:43.5437385Z adding 'torch/include/c10/util/ParallelGuard.h' 2025-06-01T21:27:43.5443120Z adding 'torch/include/c10/util/Registry.h' 2025-06-01T21:27:43.5446899Z adding 'torch/include/c10/util/ScopeExit.h' 2025-06-01T21:27:43.5450363Z adding 'torch/include/c10/util/Semaphore.h' 2025-06-01T21:27:43.5453753Z adding 'torch/include/c10/util/SmallBuffer.h' 2025-06-01T21:27:43.5472208Z adding 'torch/include/c10/util/SmallVector.h' 2025-06-01T21:27:43.5478515Z adding 'torch/include/c10/util/StringUtil.h' 2025-06-01T21:27:43.5482698Z adding 'torch/include/c10/util/Synchronized.h' 2025-06-01T21:27:43.5486860Z adding 'torch/include/c10/util/ThreadLocal.h' 2025-06-01T21:27:43.5490711Z adding 'torch/include/c10/util/ThreadLocalDebugInfo.h' 2025-06-01T21:27:43.5494003Z adding 'torch/include/c10/util/Type.h' 2025-06-01T21:27:43.5498245Z adding 'torch/include/c10/util/TypeCast.h' 2025-06-01T21:27:43.5503048Z adding 'torch/include/c10/util/TypeIndex.h' 2025-06-01T21:27:43.5509145Z adding 'torch/include/c10/util/TypeList.h' 2025-06-01T21:27:43.5513464Z adding 'torch/include/c10/util/TypeSafeSignMath.h' 2025-06-01T21:27:43.5517589Z adding 'torch/include/c10/util/TypeTraits.h' 2025-06-01T21:27:43.5520957Z adding 'torch/include/c10/util/Unicode.h' 2025-06-01T21:27:43.5525040Z adding 'torch/include/c10/util/UniqueVoidPtr.h' 2025-06-01T21:27:43.5528391Z adding 'torch/include/c10/util/Unroll.h' 2025-06-01T21:27:43.5531898Z adding 'torch/include/c10/util/WaitCounter.h' 2025-06-01T21:27:43.5535164Z adding 'torch/include/c10/util/WaitCounterDynamicBackend.h' 2025-06-01T21:27:43.5538972Z adding 'torch/include/c10/util/accumulate.h' 2025-06-01T21:27:43.5542292Z adding 'torch/include/c10/util/bit_cast.h' 2025-06-01T21:27:43.5545497Z adding 'torch/include/c10/util/bits.h' 2025-06-01T21:27:43.5552968Z adding 'torch/include/c10/util/complex.h' 2025-06-01T21:27:43.5558200Z adding 'torch/include/c10/util/complex_math.h' 2025-06-01T21:27:43.5561691Z adding 'torch/include/c10/util/complex_utils.h' 2025-06-01T21:27:43.5564836Z adding 'torch/include/c10/util/copysign.h' 2025-06-01T21:27:43.5568211Z adding 'torch/include/c10/util/env.h' 2025-06-01T21:27:43.5571170Z adding 'torch/include/c10/util/error.h' 2025-06-01T21:27:43.5587087Z adding 'torch/include/c10/util/flat_hash_map.h' 2025-06-01T21:27:43.5591915Z adding 'torch/include/c10/util/floating_point_utils.h' 2025-06-01T21:27:43.5595488Z adding 'torch/include/c10/util/generic_math.h' 2025-06-01T21:27:43.5601275Z adding 'torch/include/c10/util/hash.h' 2025-06-01T21:27:43.5607426Z adding 'torch/include/c10/util/int128.h' 2025-06-01T21:27:43.5620767Z adding 'torch/include/c10/util/intrusive_ptr.h' 2025-06-01T21:27:43.5625523Z adding 'torch/include/c10/util/irange.h' 2025-06-01T21:27:43.5636114Z adding 'torch/include/c10/util/llvmMathExtras.h' 2025-06-01T21:27:43.5640643Z adding 'torch/include/c10/util/logging_is_google_glog.h' 2025-06-01T21:27:43.5645504Z adding 'torch/include/c10/util/logging_is_not_google_glog.h' 2025-06-01T21:27:43.5648834Z adding 'torch/include/c10/util/numa.h' 2025-06-01T21:27:43.5667398Z adding 'torch/include/c10/util/order_preserving_flat_hash_map.h' 2025-06-01T21:27:43.5672467Z adding 'torch/include/c10/util/overflows.h' 2025-06-01T21:27:43.5675679Z adding 'torch/include/c10/util/overloaded.h' 2025-06-01T21:27:43.5678535Z adding 'torch/include/c10/util/python_stub.h' 2025-06-01T21:27:43.5681483Z adding 'torch/include/c10/util/qint32.h' 2025-06-01T21:27:43.5684491Z adding 'torch/include/c10/util/qint8.h' 2025-06-01T21:27:43.5687448Z adding 'torch/include/c10/util/quint2x4.h' 2025-06-01T21:27:43.5690355Z adding 'torch/include/c10/util/quint4x2.h' 2025-06-01T21:27:43.5693272Z adding 'torch/include/c10/util/quint8.h' 2025-06-01T21:27:43.5696677Z adding 'torch/include/c10/util/safe_numerics.h' 2025-06-01T21:27:43.5700960Z adding 'torch/include/c10/util/signal_handler.h' 2025-06-01T21:27:43.5709833Z adding 'torch/include/c10/util/sparse_bitset.h' 2025-06-01T21:27:43.5713941Z adding 'torch/include/c10/util/ssize.h' 2025-06-01T21:27:43.5717135Z adding 'torch/include/c10/util/static_tracepoint.h' 2025-06-01T21:27:43.5721617Z adding 'torch/include/c10/util/static_tracepoint_elfx86.h' 2025-06-01T21:27:43.5724917Z adding 'torch/include/c10/util/strides.h' 2025-06-01T21:27:43.5728000Z adding 'torch/include/c10/util/string_utils.h' 2025-06-01T21:27:43.5734585Z adding 'torch/include/c10/util/string_view.h' 2025-06-01T21:27:43.5744229Z adding 'torch/include/c10/util/strong_type.h' 2025-06-01T21:27:43.5748646Z adding 'torch/include/c10/util/tempfile.h' 2025-06-01T21:27:43.5751806Z adding 'torch/include/c10/util/thread_name.h' 2025-06-01T21:27:43.5760938Z adding 'torch/include/c10/util/typeid.h' 2025-06-01T21:27:43.5764729Z adding 'torch/include/c10/util/win32-headers.h' 2025-06-01T21:27:43.5768941Z adding 'torch/include/c10/xpu/XPUCachingAllocator.h' 2025-06-01T21:27:43.5774282Z adding 'torch/include/c10/xpu/XPUDeviceProp.h' 2025-06-01T21:27:43.5777675Z adding 'torch/include/c10/xpu/XPUException.h' 2025-06-01T21:27:43.5781007Z adding 'torch/include/c10/xpu/XPUFunctions.h' 2025-06-01T21:27:43.5784149Z adding 'torch/include/c10/xpu/XPUMacros.h' 2025-06-01T21:27:43.5789048Z adding 'torch/include/c10/xpu/XPUStream.h' 2025-06-01T21:27:43.5794728Z adding 'torch/include/c10/xpu/impl/XPUGuardImpl.h' 2025-06-01T21:27:43.5799485Z adding 'torch/include/c10/xpu/test/impl/XPUTest.h' 2025-06-01T21:27:43.5804306Z adding 'torch/include/caffe2/core/common.h' 2025-06-01T21:27:43.5807871Z adding 'torch/include/caffe2/core/macros.h' 2025-06-01T21:27:43.5811330Z adding 'torch/include/caffe2/core/timer.h' 2025-06-01T21:27:43.5817075Z adding 'torch/include/caffe2/perfkernels/batch_box_cox_vec.h' 2025-06-01T21:27:43.5821502Z adding 'torch/include/caffe2/perfkernels/common.h' 2025-06-01T21:27:43.5825120Z adding 'torch/include/caffe2/perfkernels/embedding_lookup_idx.h' 2025-06-01T21:27:43.5865736Z adding 'torch/include/caffe2/serialize/crc_alt.h' 2025-06-01T21:27:43.5870846Z adding 'torch/include/caffe2/serialize/file_adapter.h' 2025-06-01T21:27:43.5874245Z adding 'torch/include/caffe2/serialize/in_memory_adapter.h' 2025-06-01T21:27:43.5880003Z adding 'torch/include/caffe2/serialize/inline_container.h' 2025-06-01T21:27:43.5883509Z adding 'torch/include/caffe2/serialize/istream_adapter.h' 2025-06-01T21:27:43.5886771Z adding 'torch/include/caffe2/serialize/read_adapter_interface.h' 2025-06-01T21:27:43.5891539Z adding 'torch/include/caffe2/serialize/versions.h' 2025-06-01T21:27:43.5896600Z adding 'torch/include/caffe2/utils/fixed_divisor.h' 2025-06-01T21:27:43.5899907Z adding 'torch/include/caffe2/utils/proto_wrap.h' 2025-06-01T21:27:43.5903284Z adding 'torch/include/caffe2/utils/string_utils.h' 2025-06-01T21:27:43.5907961Z adding 'torch/include/caffe2/utils/threadpool/ThreadPool.h' 2025-06-01T21:27:43.5911246Z adding 'torch/include/caffe2/utils/threadpool/ThreadPoolCommon.h' 2025-06-01T21:27:43.5917577Z adding 'torch/include/caffe2/utils/threadpool/WorkersPool.h' 2025-06-01T21:27:43.5921492Z adding 'torch/include/caffe2/utils/threadpool/pthreadpool-cpp.h' 2025-06-01T21:27:43.5925763Z adding 'torch/include/caffe2/utils/threadpool/pthreadpool.h' 2025-06-01T21:27:43.5929098Z adding 'torch/include/caffe2/utils/threadpool/thread_pool_guard.h' 2025-06-01T21:27:43.5934993Z adding 'torch/include/fbgemm/ConvUtils.h' 2025-06-01T21:27:43.5949003Z adding 'torch/include/fbgemm/Fbgemm.h' 2025-06-01T21:27:43.5952777Z adding 'torch/include/fbgemm/FbgemmBuild.h' 2025-06-01T21:27:43.5956626Z adding 'torch/include/fbgemm/FbgemmConvert.h' 2025-06-01T21:27:43.5961795Z adding 'torch/include/fbgemm/FbgemmEmbedding.h' 2025-06-01T21:27:43.5968909Z adding 'torch/include/fbgemm/FbgemmFP16.h' 2025-06-01T21:27:43.5969248Z adding 'torch/include/fbgemm/FbgemmFP32.h' 2025-06-01T21:27:43.5979025Z adding 'torch/include/fbgemm/FbgemmFPCommon.h' 2025-06-01T21:27:43.5979381Z adding 'torch/include/fbgemm/FbgemmI64.h' 2025-06-01T21:27:43.5982106Z adding 'torch/include/fbgemm/FbgemmI8DepthwiseAvx2.h' 2025-06-01T21:27:43.5985805Z adding 'torch/include/fbgemm/FbgemmI8DirectconvAvx2.h' 2025-06-01T21:27:43.5989541Z adding 'torch/include/fbgemm/FbgemmI8Spmdm.h' 2025-06-01T21:27:43.5995239Z adding 'torch/include/fbgemm/FbgemmPackMatrixB.h' 2025-06-01T21:27:43.6000060Z adding 'torch/include/fbgemm/FbgemmSparse.h' 2025-06-01T21:27:43.6006207Z adding 'torch/include/fbgemm/FloatConversion.h' 2025-06-01T21:27:43.6011097Z adding 'torch/include/fbgemm/OutputProcessing-inl.h' 2025-06-01T21:27:43.6016766Z adding 'torch/include/fbgemm/PackingTraits-inl.h' 2025-06-01T21:27:43.6028005Z adding 'torch/include/fbgemm/QuantUtils.h' 2025-06-01T21:27:43.6028367Z adding 'torch/include/fbgemm/QuantUtilsAvx2.h' 2025-06-01T21:27:43.6030798Z adding 'torch/include/fbgemm/QuantUtilsAvx512.h' 2025-06-01T21:27:43.6034254Z adding 'torch/include/fbgemm/QuantUtilsNeon.h' 2025-06-01T21:27:43.6037459Z adding 'torch/include/fbgemm/SimdUtils.h' 2025-06-01T21:27:43.6040897Z adding 'torch/include/fbgemm/Types.h' 2025-06-01T21:27:43.6047219Z adding 'torch/include/fbgemm/Utils.h' 2025-06-01T21:27:43.6052128Z adding 'torch/include/fbgemm/UtilsAvx2.h' 2025-06-01T21:27:43.6054641Z adding 'torch/include/fbgemm/spmmUtils.h' 2025-06-01T21:27:43.6057858Z adding 'torch/include/fbgemm/spmmUtilsAvx2.h' 2025-06-01T21:27:43.6063724Z adding 'torch/include/fmt/args.h' 2025-06-01T21:27:43.6102135Z adding 'torch/include/fmt/base.h' 2025-06-01T21:27:43.6129392Z adding 'torch/include/fmt/chrono.h' 2025-06-01T21:27:43.6140619Z adding 'torch/include/fmt/color.h' 2025-06-01T21:27:43.6148417Z adding 'torch/include/fmt/compile.h' 2025-06-01T21:27:43.6152044Z adding 'torch/include/fmt/core.h' 2025-06-01T21:27:43.6181932Z adding 'torch/include/fmt/format-inl.h' 2025-06-01T21:27:43.6241591Z adding 'torch/include/fmt/format.h' 2025-06-01T21:27:43.6251724Z adding 'torch/include/fmt/os.h' 2025-06-01T21:27:43.6256276Z adding 'torch/include/fmt/ostream.h' 2025-06-01T21:27:43.6264762Z adding 'torch/include/fmt/printf.h' 2025-06-01T21:27:43.6274766Z adding 'torch/include/fmt/ranges.h' 2025-06-01T21:27:43.6284176Z adding 'torch/include/fmt/std.h' 2025-06-01T21:27:43.6289946Z adding 'torch/include/fmt/xchar.h' 2025-06-01T21:27:43.6294782Z adding 'torch/include/fp16/bitcasts.h' 2025-06-01T21:27:43.6301926Z adding 'torch/include/fp16/fp16.h' 2025-06-01T21:27:43.6306571Z adding 'torch/include/fp16/psimd.h' 2025-06-01T21:27:43.6313910Z adding 'torch/include/google/protobuf/any.h' 2025-06-01T21:27:43.6319928Z adding 'torch/include/google/protobuf/any.pb.h' 2025-06-01T21:27:43.6332107Z adding 'torch/include/google/protobuf/api.pb.h' 2025-06-01T21:27:43.6345736Z adding 'torch/include/google/protobuf/arena.h' 2025-06-01T21:27:43.6353819Z adding 'torch/include/google/protobuf/arena_impl.h' 2025-06-01T21:27:43.6360739Z adding 'torch/include/google/protobuf/arenastring.h' 2025-06-01T21:27:43.6394258Z adding 'torch/include/google/protobuf/descriptor.h' 2025-06-01T21:27:43.6479357Z adding 'torch/include/google/protobuf/descriptor.pb.h' 2025-06-01T21:27:43.6500131Z adding 'torch/include/google/protobuf/descriptor_database.h' 2025-06-01T21:27:43.6505628Z adding 'torch/include/google/protobuf/duration.pb.h' 2025-06-01T21:27:43.6512024Z adding 'torch/include/google/protobuf/dynamic_message.h' 2025-06-01T21:27:43.6516419Z adding 'torch/include/google/protobuf/empty.pb.h' 2025-06-01T21:27:43.6540000Z adding 'torch/include/google/protobuf/extension_set.h' 2025-06-01T21:27:43.6547101Z adding 'torch/include/google/protobuf/extension_set_inl.h' 2025-06-01T21:27:43.6552653Z adding 'torch/include/google/protobuf/field_mask.pb.h' 2025-06-01T21:27:43.6557018Z adding 'torch/include/google/protobuf/generated_enum_reflection.h' 2025-06-01T21:27:43.6560924Z adding 'torch/include/google/protobuf/generated_enum_util.h' 2025-06-01T21:27:43.6567515Z adding 'torch/include/google/protobuf/generated_message_reflection.h' 2025-06-01T21:27:43.6573994Z adding 'torch/include/google/protobuf/generated_message_table_driven.h' 2025-06-01T21:27:43.6579653Z adding 'torch/include/google/protobuf/generated_message_util.h' 2025-06-01T21:27:43.6583657Z adding 'torch/include/google/protobuf/has_bits.h' 2025-06-01T21:27:43.6588477Z adding 'torch/include/google/protobuf/implicit_weak_message.h' 2025-06-01T21:27:43.6593402Z adding 'torch/include/google/protobuf/inlined_string_field.h' 2025-06-01T21:27:43.6611194Z adding 'torch/include/google/protobuf/map.h' 2025-06-01T21:27:43.6616810Z adding 'torch/include/google/protobuf/map_entry.h' 2025-06-01T21:27:43.6627032Z adding 'torch/include/google/protobuf/map_entry_lite.h' 2025-06-01T21:27:43.6638419Z adding 'torch/include/google/protobuf/map_field.h' 2025-06-01T21:27:43.6645238Z adding 'torch/include/google/protobuf/map_field_inl.h' 2025-06-01T21:27:43.6650734Z adding 'torch/include/google/protobuf/map_field_lite.h' 2025-06-01T21:27:43.6660454Z adding 'torch/include/google/protobuf/map_type_handler.h' 2025-06-01T21:27:43.6683800Z adding 'torch/include/google/protobuf/message.h' 2025-06-01T21:27:43.6696148Z adding 'torch/include/google/protobuf/message_lite.h' 2025-06-01T21:27:43.6700196Z adding 'torch/include/google/protobuf/metadata.h' 2025-06-01T21:27:43.6705210Z adding 'torch/include/google/protobuf/metadata_lite.h' 2025-06-01T21:27:43.6716800Z adding 'torch/include/google/protobuf/parse_context.h' 2025-06-01T21:27:43.6721101Z adding 'torch/include/google/protobuf/port.h' 2025-06-01T21:27:43.6729258Z adding 'torch/include/google/protobuf/reflection.h' 2025-06-01T21:27:43.6733785Z adding 'torch/include/google/protobuf/reflection_ops.h' 2025-06-01T21:27:43.6768693Z adding 'torch/include/google/protobuf/repeated_field.h' 2025-06-01T21:27:43.6777800Z adding 'torch/include/google/protobuf/service.h' 2025-06-01T21:27:43.6783426Z adding 'torch/include/google/protobuf/source_context.pb.h' 2025-06-01T21:27:43.6794718Z adding 'torch/include/google/protobuf/struct.pb.h' 2025-06-01T21:27:43.6806774Z adding 'torch/include/google/protobuf/text_format.h' 2025-06-01T21:27:43.6812350Z adding 'torch/include/google/protobuf/timestamp.pb.h' 2025-06-01T21:27:43.6831943Z adding 'torch/include/google/protobuf/type.pb.h' 2025-06-01T21:27:43.6841307Z adding 'torch/include/google/protobuf/unknown_field_set.h' 2025-06-01T21:27:43.6848551Z adding 'torch/include/google/protobuf/wire_format.h' 2025-06-01T21:27:43.6870840Z adding 'torch/include/google/protobuf/wire_format_lite.h' 2025-06-01T21:27:43.6883052Z adding 'torch/include/google/protobuf/wrappers.pb.h' 2025-06-01T21:27:43.6890928Z adding 'torch/include/google/protobuf/compiler/code_generator.h' 2025-06-01T21:27:43.6900732Z adding 'torch/include/google/protobuf/compiler/command_line_interface.h' 2025-06-01T21:27:43.6908196Z adding 'torch/include/google/protobuf/compiler/importer.h' 2025-06-01T21:27:43.6919943Z adding 'torch/include/google/protobuf/compiler/parser.h' 2025-06-01T21:27:43.6924904Z adding 'torch/include/google/protobuf/compiler/plugin.h' 2025-06-01T21:27:43.6940453Z adding 'torch/include/google/protobuf/compiler/plugin.pb.h' 2025-06-01T21:27:43.6947277Z adding 'torch/include/google/protobuf/compiler/cpp/cpp_generator.h' 2025-06-01T21:27:43.6952296Z adding 'torch/include/google/protobuf/compiler/csharp/csharp_generator.h' 2025-06-01T21:27:43.6956464Z adding 'torch/include/google/protobuf/compiler/csharp/csharp_names.h' 2025-06-01T21:27:43.6961366Z adding 'torch/include/google/protobuf/compiler/java/java_generator.h' 2025-06-01T21:27:43.6965757Z adding 'torch/include/google/protobuf/compiler/java/java_names.h' 2025-06-01T21:27:43.6976341Z adding 'torch/include/google/protobuf/compiler/js/js_generator.h' 2025-06-01T21:27:43.6977040Z adding 'torch/include/google/protobuf/compiler/js/well_known_types_embed.h' 2025-06-01T21:27:43.6982207Z adding 'torch/include/google/protobuf/compiler/objectivec/objectivec_generator.h' 2025-06-01T21:27:43.6988371Z adding 'torch/include/google/protobuf/compiler/objectivec/objectivec_helpers.h' 2025-06-01T21:27:43.6993568Z adding 'torch/include/google/protobuf/compiler/php/php_generator.h' 2025-06-01T21:27:43.6999400Z adding 'torch/include/google/protobuf/compiler/python/python_generator.h' 2025-06-01T21:27:43.7004488Z adding 'torch/include/google/protobuf/compiler/ruby/ruby_generator.h' 2025-06-01T21:27:43.7035137Z adding 'torch/include/google/protobuf/io/coded_stream.h' 2025-06-01T21:27:43.7040972Z adding 'torch/include/google/protobuf/io/gzip_stream.h' 2025-06-01T21:27:43.7045025Z adding 'torch/include/google/protobuf/io/io_win32.h' 2025-06-01T21:27:43.7053049Z adding 'torch/include/google/protobuf/io/printer.h' 2025-06-01T21:27:43.7056720Z adding 'torch/include/google/protobuf/io/strtod.h' 2025-06-01T21:27:43.7065147Z adding 'torch/include/google/protobuf/io/tokenizer.h' 2025-06-01T21:27:43.7071335Z adding 'torch/include/google/protobuf/io/zero_copy_stream.h' 2025-06-01T21:27:43.7077425Z adding 'torch/include/google/protobuf/io/zero_copy_stream_impl.h' 2025-06-01T21:27:43.7084952Z adding 'torch/include/google/protobuf/io/zero_copy_stream_impl_lite.h' 2025-06-01T21:27:43.7092642Z adding 'torch/include/google/protobuf/stubs/bytestream.h' 2025-06-01T21:27:43.7098354Z adding 'torch/include/google/protobuf/stubs/callback.h' 2025-06-01T21:27:43.7103218Z adding 'torch/include/google/protobuf/stubs/casts.h' 2025-06-01T21:27:43.7108259Z adding 'torch/include/google/protobuf/stubs/common.h' 2025-06-01T21:27:43.7113031Z adding 'torch/include/google/protobuf/stubs/fastmem.h' 2025-06-01T21:27:43.7117204Z adding 'torch/include/google/protobuf/stubs/hash.h' 2025-06-01T21:27:43.7122514Z adding 'torch/include/google/protobuf/stubs/logging.h' 2025-06-01T21:27:43.7128147Z adding 'torch/include/google/protobuf/stubs/macros.h' 2025-06-01T21:27:43.7137836Z adding 'torch/include/google/protobuf/stubs/map_util.h' 2025-06-01T21:27:43.7142644Z adding 'torch/include/google/protobuf/stubs/mutex.h' 2025-06-01T21:27:43.7146342Z adding 'torch/include/google/protobuf/stubs/once.h' 2025-06-01T21:27:43.7150512Z adding 'torch/include/google/protobuf/stubs/platform_macros.h' 2025-06-01T21:27:43.7156588Z adding 'torch/include/google/protobuf/stubs/port.h' 2025-06-01T21:27:43.7161308Z adding 'torch/include/google/protobuf/stubs/status.h' 2025-06-01T21:27:43.7164971Z adding 'torch/include/google/protobuf/stubs/stl_util.h' 2025-06-01T21:27:43.7173885Z adding 'torch/include/google/protobuf/stubs/stringpiece.h' 2025-06-01T21:27:43.7188225Z adding 'torch/include/google/protobuf/stubs/strutil.h' 2025-06-01T21:27:43.7193475Z adding 'torch/include/google/protobuf/stubs/template_util.h' 2025-06-01T21:27:43.7198825Z adding 'torch/include/google/protobuf/util/delimited_message_util.h' 2025-06-01T21:27:43.7204376Z adding 'torch/include/google/protobuf/util/field_comparator.h' 2025-06-01T21:27:43.7210730Z adding 'torch/include/google/protobuf/util/field_mask_util.h' 2025-06-01T21:27:43.7215441Z adding 'torch/include/google/protobuf/util/json_util.h' 2025-06-01T21:27:43.7234213Z adding 'torch/include/google/protobuf/util/message_differencer.h' 2025-06-01T21:27:43.7240548Z adding 'torch/include/google/protobuf/util/time_util.h' 2025-06-01T21:27:43.7244597Z adding 'torch/include/google/protobuf/util/type_resolver.h' 2025-06-01T21:27:43.7248266Z adding 'torch/include/google/protobuf/util/type_resolver_util.h' 2025-06-01T21:27:43.7253214Z adding 'torch/include/kineto/AbstractConfig.h' 2025-06-01T21:27:43.7257276Z adding 'torch/include/kineto/ActivityProfilerInterface.h' 2025-06-01T21:27:43.7260469Z adding 'torch/include/kineto/ActivityTraceInterface.h' 2025-06-01T21:27:43.7263878Z adding 'torch/include/kineto/ActivityType.h' 2025-06-01T21:27:43.7267009Z adding 'torch/include/kineto/ClientInterface.h' 2025-06-01T21:27:43.7273863Z adding 'torch/include/kineto/Config.h' 2025-06-01T21:27:43.7279168Z adding 'torch/include/kineto/GenericTraceActivity.h' 2025-06-01T21:27:43.7283705Z adding 'torch/include/kineto/IActivityProfiler.h' 2025-06-01T21:27:43.7287258Z adding 'torch/include/kineto/ILoggerObserver.h' 2025-06-01T21:27:43.7290742Z adding 'torch/include/kineto/ITraceActivity.h' 2025-06-01T21:27:43.7293789Z adding 'torch/include/kineto/LoggingAPI.h' 2025-06-01T21:27:43.7296883Z adding 'torch/include/kineto/ThreadUtil.h' 2025-06-01T21:27:43.7300022Z adding 'torch/include/kineto/TraceSpan.h' 2025-06-01T21:27:43.7303804Z adding 'torch/include/kineto/libkineto.h' 2025-06-01T21:27:43.7307323Z adding 'torch/include/kineto/output_base.h' 2025-06-01T21:27:43.7310450Z adding 'torch/include/kineto/time_since_epoch.h' 2025-06-01T21:27:43.7320703Z adding 'torch/include/legacy/ittnotify.h' 2025-06-01T21:27:43.7326008Z adding 'torch/include/mimalloc-2.2/mimalloc-new-delete.h' 2025-06-01T21:27:43.7329697Z adding 'torch/include/mimalloc-2.2/mimalloc-override.h' 2025-06-01T21:27:43.7333515Z adding 'torch/include/mimalloc-2.2/mimalloc-stats.h' 2025-06-01T21:27:43.7345149Z adding 'torch/include/mimalloc-2.2/mimalloc.h' 2025-06-01T21:27:43.7392381Z adding 'torch/include/oneapi/dnnl/dnnl.h' 2025-06-01T21:27:43.7505905Z adding 'torch/include/oneapi/dnnl/dnnl.hpp' 2025-06-01T21:27:43.7526628Z adding 'torch/include/oneapi/dnnl/dnnl_common.h' 2025-06-01T21:27:43.7533776Z adding 'torch/include/oneapi/dnnl/dnnl_common.hpp' 2025-06-01T21:27:43.7539104Z adding 'torch/include/oneapi/dnnl/dnnl_common_types.h' 2025-06-01T21:27:43.7543630Z adding 'torch/include/oneapi/dnnl/dnnl_config.h' 2025-06-01T21:27:43.7547439Z adding 'torch/include/oneapi/dnnl/dnnl_debug.h' 2025-06-01T21:27:43.7557856Z adding 'torch/include/oneapi/dnnl/dnnl_graph.h' 2025-06-01T21:27:43.7579964Z adding 'torch/include/oneapi/dnnl/dnnl_graph.hpp' 2025-06-01T21:27:43.7585660Z adding 'torch/include/oneapi/dnnl/dnnl_graph_ocl.h' 2025-06-01T21:27:43.7589967Z adding 'torch/include/oneapi/dnnl/dnnl_graph_ocl.hpp' 2025-06-01T21:27:43.7593933Z adding 'torch/include/oneapi/dnnl/dnnl_graph_sycl.h' 2025-06-01T21:27:43.7597967Z adding 'torch/include/oneapi/dnnl/dnnl_graph_sycl.hpp' 2025-06-01T21:27:43.7604627Z adding 'torch/include/oneapi/dnnl/dnnl_graph_types.h' 2025-06-01T21:27:43.7610252Z adding 'torch/include/oneapi/dnnl/dnnl_ocl.h' 2025-06-01T21:27:43.7617016Z adding 'torch/include/oneapi/dnnl/dnnl_ocl.hpp' 2025-06-01T21:27:43.7620768Z adding 'torch/include/oneapi/dnnl/dnnl_ocl_types.h' 2025-06-01T21:27:43.7625277Z adding 'torch/include/oneapi/dnnl/dnnl_sycl.h' 2025-06-01T21:27:43.7631690Z adding 'torch/include/oneapi/dnnl/dnnl_sycl.hpp' 2025-06-01T21:27:43.7635413Z adding 'torch/include/oneapi/dnnl/dnnl_sycl_types.h' 2025-06-01T21:27:43.7639239Z adding 'torch/include/oneapi/dnnl/dnnl_threadpool.h' 2025-06-01T21:27:43.7643289Z adding 'torch/include/oneapi/dnnl/dnnl_threadpool.hpp' 2025-06-01T21:27:43.7646975Z adding 'torch/include/oneapi/dnnl/dnnl_threadpool_iface.hpp' 2025-06-01T21:27:43.7674899Z adding 'torch/include/oneapi/dnnl/dnnl_types.h' 2025-06-01T21:27:43.7682389Z adding 'torch/include/oneapi/dnnl/dnnl_ukernel.h' 2025-06-01T21:27:43.7688940Z adding 'torch/include/oneapi/dnnl/dnnl_ukernel.hpp' 2025-06-01T21:27:43.7692945Z adding 'torch/include/oneapi/dnnl/dnnl_ukernel_types.h' 2025-06-01T21:27:43.7696207Z adding 'torch/include/oneapi/dnnl/dnnl_version.h' 2025-06-01T21:27:43.7699499Z adding 'torch/include/oneapi/dnnl/dnnl_version_hash.h' 2025-06-01T21:27:43.7709387Z adding 'torch/include/pybind11/attr.h' 2025-06-01T21:27:43.7714795Z adding 'torch/include/pybind11/buffer_info.h' 2025-06-01T21:27:43.7738966Z adding 'torch/include/pybind11/cast.h' 2025-06-01T21:27:43.7745290Z adding 'torch/include/pybind11/chrono.h' 2025-06-01T21:27:43.7748497Z adding 'torch/include/pybind11/common.h' 2025-06-01T21:27:43.7752105Z adding 'torch/include/pybind11/complex.h' 2025-06-01T21:27:43.7755167Z adding 'torch/include/pybind11/eigen.h' 2025-06-01T21:27:43.7764779Z adding 'torch/include/pybind11/embed.h' 2025-06-01T21:27:43.7765513Z adding 'torch/include/pybind11/eval.h' 2025-06-01T21:27:43.7769789Z adding 'torch/include/pybind11/functional.h' 2025-06-01T21:27:43.7774596Z adding 'torch/include/pybind11/gil.h' 2025-06-01T21:27:43.7778866Z adding 'torch/include/pybind11/gil_safe_call_once.h' 2025-06-01T21:27:43.7783930Z adding 'torch/include/pybind11/iostream.h' 2025-06-01T21:27:43.7811473Z adding 'torch/include/pybind11/numpy.h' 2025-06-01T21:27:43.7817860Z adding 'torch/include/pybind11/operators.h' 2025-06-01T21:27:43.7821539Z adding 'torch/include/pybind11/options.h' 2025-06-01T21:27:43.7863540Z adding 'torch/include/pybind11/pybind11.h' 2025-06-01T21:27:43.7897587Z adding 'torch/include/pybind11/pytypes.h' 2025-06-01T21:27:43.7906421Z adding 'torch/include/pybind11/stl.h' 2025-06-01T21:27:43.7916363Z adding 'torch/include/pybind11/stl_bind.h' 2025-06-01T21:27:43.7920659Z adding 'torch/include/pybind11/type_caster_pyobject_ptr.h' 2025-06-01T21:27:43.7924894Z adding 'torch/include/pybind11/typing.h' 2025-06-01T21:27:43.7937279Z adding 'torch/include/pybind11/detail/class.h' 2025-06-01T21:27:43.7957362Z adding 'torch/include/pybind11/detail/common.h' 2025-06-01T21:27:43.7962380Z adding 'torch/include/pybind11/detail/cpp_conduit.h' 2025-06-01T21:27:43.7966622Z adding 'torch/include/pybind11/detail/descr.h' 2025-06-01T21:27:43.7970727Z adding 'torch/include/pybind11/detail/exception_translation.h' 2025-06-01T21:27:43.7978262Z adding 'torch/include/pybind11/detail/init.h' 2025-06-01T21:27:43.8012675Z adding 'torch/include/pybind11/detail/internals.h' 2025-06-01T21:27:43.8013128Z adding 'torch/include/pybind11/detail/type_caster_base.h' 2025-06-01T21:27:43.8016287Z adding 'torch/include/pybind11/detail/typeid.h' 2025-06-01T21:27:43.8020070Z adding 'torch/include/pybind11/detail/value_and_holder.h' 2025-06-01T21:27:43.8024294Z adding 'torch/include/pybind11/eigen/common.h' 2025-06-01T21:27:43.8036170Z adding 'torch/include/pybind11/eigen/matrix.h' 2025-06-01T21:27:43.8043276Z adding 'torch/include/pybind11/eigen/tensor.h' 2025-06-01T21:27:43.8048708Z adding 'torch/include/pybind11/stl/filesystem.h' 2025-06-01T21:27:43.8057711Z adding 'torch/include/torch/custom_class.h' 2025-06-01T21:27:43.8063362Z adding 'torch/include/torch/custom_class_detail.h' 2025-06-01T21:27:43.8066603Z adding 'torch/include/torch/extension.h' 2025-06-01T21:27:43.8082540Z adding 'torch/include/torch/library.h' 2025-06-01T21:27:43.8086266Z adding 'torch/include/torch/script.h' 2025-06-01T21:27:43.8091529Z adding 'torch/include/torch/csrc/CudaIPCTypes.h' 2025-06-01T21:27:43.8094763Z adding 'torch/include/torch/csrc/DataLoader.h' 2025-06-01T21:27:43.8097713Z adding 'torch/include/torch/csrc/Device.h' 2025-06-01T21:27:43.8100606Z adding 'torch/include/torch/csrc/DeviceAccelerator.h' 2025-06-01T21:27:43.8103685Z adding 'torch/include/torch/csrc/Dtype.h' 2025-06-01T21:27:43.8106822Z adding 'torch/include/torch/csrc/DynamicTypes.h' 2025-06-01T21:27:43.8109835Z adding 'torch/include/torch/csrc/Event.h' 2025-06-01T21:27:43.8116295Z adding 'torch/include/torch/csrc/Exceptions.h' 2025-06-01T21:27:43.8119596Z adding 'torch/include/torch/csrc/Export.h' 2025-06-01T21:27:43.8122753Z adding 'torch/include/torch/csrc/Generator.h' 2025-06-01T21:27:43.8125923Z adding 'torch/include/torch/csrc/Layout.h' 2025-06-01T21:27:43.8130042Z adding 'torch/include/torch/csrc/MemoryFormat.h' 2025-06-01T21:27:43.8131960Z adding 'torch/include/torch/csrc/Module.h' 2025-06-01T21:27:43.8134902Z adding 'torch/include/torch/csrc/PyInterpreter.h' 2025-06-01T21:27:43.8137901Z adding 'torch/include/torch/csrc/QScheme.h' 2025-06-01T21:27:43.8140849Z adding 'torch/include/torch/csrc/Size.h' 2025-06-01T21:27:43.8144103Z adding 'torch/include/torch/csrc/Storage.h' 2025-06-01T21:27:43.8147441Z adding 'torch/include/torch/csrc/StorageMethods.h' 2025-06-01T21:27:43.8150795Z adding 'torch/include/torch/csrc/StorageSharing.h' 2025-06-01T21:27:43.8153605Z adding 'torch/include/torch/csrc/Stream.h' 2025-06-01T21:27:43.8156456Z adding 'torch/include/torch/csrc/THConcat.h' 2025-06-01T21:27:43.8159517Z adding 'torch/include/torch/csrc/THP.h' 2025-06-01T21:27:43.8162491Z adding 'torch/include/torch/csrc/TypeInfo.h' 2025-06-01T21:27:43.8165318Z adding 'torch/include/torch/csrc/Types.h' 2025-06-01T21:27:43.8168627Z adding 'torch/include/torch/csrc/copy_utils.h' 2025-06-01T21:27:43.8171689Z adding 'torch/include/torch/csrc/itt.h' 2025-06-01T21:27:43.8174593Z adding 'torch/include/torch/csrc/itt_wrapper.h' 2025-06-01T21:27:43.8177421Z adding 'torch/include/torch/csrc/python_dimname.h' 2025-06-01T21:27:43.8180384Z adding 'torch/include/torch/csrc/python_headers.h' 2025-06-01T21:27:43.8183417Z adding 'torch/include/torch/csrc/serialization.h' 2025-06-01T21:27:43.8187905Z adding 'torch/include/torch/csrc/utils.h' 2025-06-01T21:27:43.8193811Z adding 'torch/include/torch/csrc/api/include/torch/all.h' 2025-06-01T21:27:43.8196897Z adding 'torch/include/torch/csrc/api/include/torch/arg.h' 2025-06-01T21:27:43.8199833Z adding 'torch/include/torch/csrc/api/include/torch/autograd.h' 2025-06-01T21:27:43.8202880Z adding 'torch/include/torch/csrc/api/include/torch/cuda.h' 2025-06-01T21:27:43.8205823Z adding 'torch/include/torch/csrc/api/include/torch/data.h' 2025-06-01T21:27:43.8210097Z adding 'torch/include/torch/csrc/api/include/torch/enum.h' 2025-06-01T21:27:43.8214522Z adding 'torch/include/torch/csrc/api/include/torch/expanding_array.h' 2025-06-01T21:27:43.8219193Z adding 'torch/include/torch/csrc/api/include/torch/fft.h' 2025-06-01T21:27:43.8222881Z adding 'torch/include/torch/csrc/api/include/torch/imethod.h' 2025-06-01T21:27:43.8226090Z adding 'torch/include/torch/csrc/api/include/torch/jit.h' 2025-06-01T21:27:43.8229334Z adding 'torch/include/torch/csrc/api/include/torch/mps.h' 2025-06-01T21:27:43.8233013Z adding 'torch/include/torch/csrc/api/include/torch/nested.h' 2025-06-01T21:27:43.8236036Z adding 'torch/include/torch/csrc/api/include/torch/nn.h' 2025-06-01T21:27:43.8239346Z adding 'torch/include/torch/csrc/api/include/torch/optim.h' 2025-06-01T21:27:43.8245354Z adding 'torch/include/torch/csrc/api/include/torch/ordered_dict.h' 2025-06-01T21:27:43.8250836Z adding 'torch/include/torch/csrc/api/include/torch/python.h' 2025-06-01T21:27:43.8255072Z adding 'torch/include/torch/csrc/api/include/torch/serialize.h' 2025-06-01T21:27:43.8258107Z adding 'torch/include/torch/csrc/api/include/torch/sparse.h' 2025-06-01T21:27:43.8265134Z adding 'torch/include/torch/csrc/api/include/torch/special.h' 2025-06-01T21:27:43.8269026Z adding 'torch/include/torch/csrc/api/include/torch/torch.h' 2025-06-01T21:27:43.8272658Z adding 'torch/include/torch/csrc/api/include/torch/types.h' 2025-06-01T21:27:43.8276430Z adding 'torch/include/torch/csrc/api/include/torch/utils.h' 2025-06-01T21:27:43.8279724Z adding 'torch/include/torch/csrc/api/include/torch/version.h' 2025-06-01T21:27:43.8282815Z adding 'torch/include/torch/csrc/api/include/torch/xpu.h' 2025-06-01T21:27:43.8287229Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader.h' 2025-06-01T21:27:43.8290815Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader_options.h' 2025-06-01T21:27:43.8293773Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets.h' 2025-06-01T21:27:43.8297040Z adding 'torch/include/torch/csrc/api/include/torch/data/example.h' 2025-06-01T21:27:43.8301253Z adding 'torch/include/torch/csrc/api/include/torch/data/iterator.h' 2025-06-01T21:27:43.8304436Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers.h' 2025-06-01T21:27:43.8307317Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms.h' 2025-06-01T21:27:43.8310562Z adding 'torch/include/torch/csrc/api/include/torch/data/worker_exception.h' 2025-06-01T21:27:43.8316899Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/base.h' 2025-06-01T21:27:43.8320802Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/stateful.h' 2025-06-01T21:27:43.8324635Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/stateless.h' 2025-06-01T21:27:43.8329506Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/base.h' 2025-06-01T21:27:43.8338495Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/chunk.h' 2025-06-01T21:27:43.8343097Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/map.h' 2025-06-01T21:27:43.8346700Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/mnist.h' 2025-06-01T21:27:43.8350285Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/shared.h' 2025-06-01T21:27:43.8354112Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/stateful.h' 2025-06-01T21:27:43.8357539Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/tensor.h' 2025-06-01T21:27:43.8362190Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/data_shuttle.h' 2025-06-01T21:27:43.8366044Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/queue.h' 2025-06-01T21:27:43.8370356Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/sequencers.h' 2025-06-01T21:27:43.8374788Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/base.h' 2025-06-01T21:27:43.8378381Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/custom_batch_request.h' 2025-06-01T21:27:43.8382561Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/distributed.h' 2025-06-01T21:27:43.8387014Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/random.h' 2025-06-01T21:27:43.8398318Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/sequential.h' 2025-06-01T21:27:43.8398955Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/serialize.h' 2025-06-01T21:27:43.8399544Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/stream.h' 2025-06-01T21:27:43.8401737Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/base.h' 2025-06-01T21:27:43.8405272Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/collate.h' 2025-06-01T21:27:43.8410302Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/lambda.h' 2025-06-01T21:27:43.8412038Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/stack.h' 2025-06-01T21:27:43.8416711Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/tensor.h' 2025-06-01T21:27:43.8423034Z adding 'torch/include/torch/csrc/api/include/torch/detail/TensorDataContainer.h' 2025-06-01T21:27:43.8429415Z adding 'torch/include/torch/csrc/api/include/torch/detail/static.h' 2025-06-01T21:27:43.8432330Z adding 'torch/include/torch/csrc/api/include/torch/nn/cloneable.h' 2025-06-01T21:27:43.8438237Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional.h' 2025-06-01T21:27:43.8439893Z adding 'torch/include/torch/csrc/api/include/torch/nn/init.h' 2025-06-01T21:27:43.8451801Z adding 'torch/include/torch/csrc/api/include/torch/nn/module.h' 2025-06-01T21:27:43.8453737Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules.h' 2025-06-01T21:27:43.8460498Z adding 'torch/include/torch/csrc/api/include/torch/nn/options.h' 2025-06-01T21:27:43.8460996Z adding 'torch/include/torch/csrc/api/include/torch/nn/pimpl-inl.h' 2025-06-01T21:27:43.8467297Z adding 'torch/include/torch/csrc/api/include/torch/nn/pimpl.h' 2025-06-01T21:27:43.8469114Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils.h' 2025-06-01T21:27:43.8479453Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/activation.h' 2025-06-01T21:27:43.8482522Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/batchnorm.h' 2025-06-01T21:27:43.8486621Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/conv.h' 2025-06-01T21:27:43.8491454Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/distance.h' 2025-06-01T21:27:43.8494467Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/dropout.h' 2025-06-01T21:27:43.8498887Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/embedding.h' 2025-06-01T21:27:43.8502715Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/fold.h' 2025-06-01T21:27:43.8506181Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/instancenorm.h' 2025-06-01T21:27:43.8509305Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/linear.h' 2025-06-01T21:27:43.8516699Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/loss.h' 2025-06-01T21:27:43.8522045Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/normalization.h' 2025-06-01T21:27:43.8525677Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/padding.h' 2025-06-01T21:27:43.8529007Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/pixelshuffle.h' 2025-06-01T21:27:43.8536957Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/pooling.h' 2025-06-01T21:27:43.8542226Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/upsampling.h' 2025-06-01T21:27:43.8546585Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/vision.h' 2025-06-01T21:27:43.8551759Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/_functions.h' 2025-06-01T21:27:43.8559219Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/activation.h' 2025-06-01T21:27:43.8564438Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/adaptive.h' 2025-06-01T21:27:43.8569695Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/batchnorm.h' 2025-06-01T21:27:43.8574351Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/common.h' 2025-06-01T21:27:43.8580835Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/conv.h' 2025-06-01T21:27:43.8584948Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/distance.h' 2025-06-01T21:27:43.8589066Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/dropout.h' 2025-06-01T21:27:43.8594595Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/embedding.h' 2025-06-01T21:27:43.8598520Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/fold.h' 2025-06-01T21:27:43.8602672Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/instancenorm.h' 2025-06-01T21:27:43.8607059Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/linear.h' 2025-06-01T21:27:43.8614760Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/loss.h' 2025-06-01T21:27:43.8619867Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/normalization.h' 2025-06-01T21:27:43.8624718Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/padding.h' 2025-06-01T21:27:43.8628700Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/pixelshuffle.h' 2025-06-01T21:27:43.8635601Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/pooling.h' 2025-06-01T21:27:43.8641391Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/rnn.h' 2025-06-01T21:27:43.8646053Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformer.h' 2025-06-01T21:27:43.8650252Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformercoder.h' 2025-06-01T21:27:43.8654787Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformerlayer.h' 2025-06-01T21:27:43.8658393Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/upsampling.h' 2025-06-01T21:27:43.8661785Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/utils.h' 2025-06-01T21:27:43.8669464Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any.h' 2025-06-01T21:27:43.8674153Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any_module_holder.h' 2025-06-01T21:27:43.8678303Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any_value.h' 2025-06-01T21:27:43.8682482Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/functional.h' 2025-06-01T21:27:43.8687513Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/moduledict.h' 2025-06-01T21:27:43.8692883Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/modulelist.h' 2025-06-01T21:27:43.8696744Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/named_any.h' 2025-06-01T21:27:43.8700753Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterdict.h' 2025-06-01T21:27:43.8705199Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterlist.h' 2025-06-01T21:27:43.8711947Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/sequential.h' 2025-06-01T21:27:43.8719265Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/activation.h' 2025-06-01T21:27:43.8723174Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/adaptive.h' 2025-06-01T21:27:43.8726870Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/batchnorm.h' 2025-06-01T21:27:43.8731584Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/conv.h' 2025-06-01T21:27:43.8735511Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/distance.h' 2025-06-01T21:27:43.8739086Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/dropout.h' 2025-06-01T21:27:43.8743744Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/embedding.h' 2025-06-01T21:27:43.8747714Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/fold.h' 2025-06-01T21:27:43.8751500Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/instancenorm.h' 2025-06-01T21:27:43.8755237Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/linear.h' 2025-06-01T21:27:43.8762217Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/loss.h' 2025-06-01T21:27:43.8766909Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/normalization.h' 2025-06-01T21:27:43.8771214Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/padding.h' 2025-06-01T21:27:43.8774921Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/pixelshuffle.h' 2025-06-01T21:27:43.8780356Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/pooling.h' 2025-06-01T21:27:43.8785091Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/rnn.h' 2025-06-01T21:27:43.8788819Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformer.h' 2025-06-01T21:27:43.8792579Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformercoder.h' 2025-06-01T21:27:43.8796164Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformerlayer.h' 2025-06-01T21:27:43.8800066Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/upsampling.h' 2025-06-01T21:27:43.8803596Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/vision.h' 2025-06-01T21:27:43.8810535Z adding 'torch/include/torch/csrc/api/include/torch/nn/parallel/data_parallel.h' 2025-06-01T21:27:43.8815793Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/clip_grad.h' 2025-06-01T21:27:43.8819717Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/convert_parameters.h' 2025-06-01T21:27:43.8825897Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/rnn.h' 2025-06-01T21:27:43.8831047Z adding 'torch/include/torch/csrc/api/include/torch/optim/adagrad.h' 2025-06-01T21:27:43.8834790Z adding 'torch/include/torch/csrc/api/include/torch/optim/adam.h' 2025-06-01T21:27:43.8838618Z adding 'torch/include/torch/csrc/api/include/torch/optim/adamw.h' 2025-06-01T21:27:43.8842569Z adding 'torch/include/torch/csrc/api/include/torch/optim/lbfgs.h' 2025-06-01T21:27:43.8847502Z adding 'torch/include/torch/csrc/api/include/torch/optim/optimizer.h' 2025-06-01T21:27:43.8851320Z adding 'torch/include/torch/csrc/api/include/torch/optim/rmsprop.h' 2025-06-01T21:27:43.8856936Z adding 'torch/include/torch/csrc/api/include/torch/optim/serialize.h' 2025-06-01T21:27:43.8860983Z adding 'torch/include/torch/csrc/api/include/torch/optim/sgd.h' 2025-06-01T21:27:43.8865423Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/lr_scheduler.h' 2025-06-01T21:27:43.8868985Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/reduce_on_plateau_scheduler.h' 2025-06-01T21:27:43.8872439Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/step_lr.h' 2025-06-01T21:27:43.8876247Z adding 'torch/include/torch/csrc/api/include/torch/python/init.h' 2025-06-01T21:27:43.8880022Z adding 'torch/include/torch/csrc/api/include/torch/serialize/archive.h' 2025-06-01T21:27:43.8883972Z adding 'torch/include/torch/csrc/api/include/torch/serialize/input-archive.h' 2025-06-01T21:27:43.8887734Z adding 'torch/include/torch/csrc/api/include/torch/serialize/output-archive.h' 2025-06-01T21:27:43.8890854Z adding 'torch/include/torch/csrc/api/include/torch/serialize/tensor.h' 2025-06-01T21:27:43.8902275Z adding 'torch/include/torch/csrc/autograd/FunctionsManual.h' 2025-06-01T21:27:43.8906315Z adding 'torch/include/torch/csrc/autograd/InferenceMode.h' 2025-06-01T21:27:43.8912755Z adding 'torch/include/torch/csrc/autograd/VariableTypeUtils.h' 2025-06-01T21:27:43.8916704Z adding 'torch/include/torch/csrc/autograd/anomaly_mode.h' 2025-06-01T21:27:43.8920987Z adding 'torch/include/torch/csrc/autograd/autograd.h' 2025-06-01T21:27:43.8924594Z adding 'torch/include/torch/csrc/autograd/autograd_not_implemented_fallback.h' 2025-06-01T21:27:43.8927795Z adding 'torch/include/torch/csrc/autograd/cpp_hook.h' 2025-06-01T21:27:43.8936688Z adding 'torch/include/torch/csrc/autograd/custom_function.h' 2025-06-01T21:27:43.8940765Z adding 'torch/include/torch/csrc/autograd/edge.h' 2025-06-01T21:27:43.8947049Z adding 'torch/include/torch/csrc/autograd/engine.h' 2025-06-01T21:27:43.8952692Z adding 'torch/include/torch/csrc/autograd/forward_grad.h' 2025-06-01T21:27:43.8966132Z adding 'torch/include/torch/csrc/autograd/function.h' 2025-06-01T21:27:43.8970435Z adding 'torch/include/torch/csrc/autograd/function_hook.h' 2025-06-01T21:27:43.8973569Z adding 'torch/include/torch/csrc/autograd/grad_mode.h' 2025-06-01T21:27:43.8979223Z adding 'torch/include/torch/csrc/autograd/graph_task.h' 2025-06-01T21:27:43.8983369Z adding 'torch/include/torch/csrc/autograd/input_buffer.h' 2025-06-01T21:27:43.8987067Z adding 'torch/include/torch/csrc/autograd/input_metadata.h' 2025-06-01T21:27:43.8990883Z adding 'torch/include/torch/csrc/autograd/jit_decomp_interface.h' 2025-06-01T21:27:43.8993978Z adding 'torch/include/torch/csrc/autograd/profiler.h' 2025-06-01T21:27:43.8998966Z adding 'torch/include/torch/csrc/autograd/profiler_kineto.h' 2025-06-01T21:27:43.9005051Z adding 'torch/include/torch/csrc/autograd/profiler_legacy.h' 2025-06-01T21:27:43.9008812Z adding 'torch/include/torch/csrc/autograd/profiler_python.h' 2025-06-01T21:27:43.9011871Z adding 'torch/include/torch/csrc/autograd/python_anomaly_mode.h' 2025-06-01T21:27:43.9014915Z adding 'torch/include/torch/csrc/autograd/python_autograd.h' 2025-06-01T21:27:43.9018939Z adding 'torch/include/torch/csrc/autograd/python_cpp_function.h' 2025-06-01T21:27:43.9022248Z adding 'torch/include/torch/csrc/autograd/python_engine.h' 2025-06-01T21:27:43.9025095Z adding 'torch/include/torch/csrc/autograd/python_enum_tag.h' 2025-06-01T21:27:43.9027962Z adding 'torch/include/torch/csrc/autograd/python_fft_functions.h' 2025-06-01T21:27:43.9032295Z adding 'torch/include/torch/csrc/autograd/python_function.h' 2025-06-01T21:27:43.9035903Z adding 'torch/include/torch/csrc/autograd/python_hook.h' 2025-06-01T21:27:43.9038968Z adding 'torch/include/torch/csrc/autograd/python_legacy_variable.h' 2025-06-01T21:27:43.9041862Z adding 'torch/include/torch/csrc/autograd/python_linalg_functions.h' 2025-06-01T21:27:43.9044697Z adding 'torch/include/torch/csrc/autograd/python_nested_functions.h' 2025-06-01T21:27:43.9047506Z adding 'torch/include/torch/csrc/autograd/python_nn_functions.h' 2025-06-01T21:27:43.9050636Z adding 'torch/include/torch/csrc/autograd/python_saved_variable_hooks.h' 2025-06-01T21:27:43.9053498Z adding 'torch/include/torch/csrc/autograd/python_sparse_functions.h' 2025-06-01T21:27:43.9056331Z adding 'torch/include/torch/csrc/autograd/python_special_functions.h' 2025-06-01T21:27:43.9059389Z adding 'torch/include/torch/csrc/autograd/python_torch_functions.h' 2025-06-01T21:27:43.9063036Z adding 'torch/include/torch/csrc/autograd/python_variable.h' 2025-06-01T21:27:43.9066996Z adding 'torch/include/torch/csrc/autograd/python_variable_indexing.h' 2025-06-01T21:27:43.9070192Z adding 'torch/include/torch/csrc/autograd/record_function_ops.h' 2025-06-01T21:27:43.9074605Z adding 'torch/include/torch/csrc/autograd/saved_variable.h' 2025-06-01T21:27:43.9077861Z adding 'torch/include/torch/csrc/autograd/saved_variable_hooks.h' 2025-06-01T21:27:43.9080791Z adding 'torch/include/torch/csrc/autograd/symbolic.h' 2025-06-01T21:27:43.9096577Z adding 'torch/include/torch/csrc/autograd/variable.h' 2025-06-01T21:27:43.9100723Z adding 'torch/include/torch/csrc/autograd/variable_info.h' 2025-06-01T21:27:43.9108272Z adding 'torch/include/torch/csrc/autograd/functions/accumulate_grad.h' 2025-06-01T21:27:43.9112531Z adding 'torch/include/torch/csrc/autograd/functions/basic_ops.h' 2025-06-01T21:27:43.9115629Z adding 'torch/include/torch/csrc/autograd/functions/comm.h' 2025-06-01T21:27:43.9118669Z adding 'torch/include/torch/csrc/autograd/functions/pybind.h' 2025-06-01T21:27:43.9124078Z adding 'torch/include/torch/csrc/autograd/functions/tensor.h' 2025-06-01T21:27:43.9127800Z adding 'torch/include/torch/csrc/autograd/functions/utils.h' 2025-06-01T21:27:43.9180473Z adding 'torch/include/torch/csrc/autograd/generated/Functions.h' 2025-06-01T21:27:43.9195444Z adding 'torch/include/torch/csrc/autograd/generated/VariableType.h' 2025-06-01T21:27:43.9201695Z adding 'torch/include/torch/csrc/autograd/generated/ViewFuncs.h' 2025-06-01T21:27:43.9205735Z adding 'torch/include/torch/csrc/autograd/generated/python_functions.h' 2025-06-01T21:27:43.9209264Z adding 'torch/include/torch/csrc/autograd/generated/python_return_types.h' 2025-06-01T21:27:43.9217288Z adding 'torch/include/torch/csrc/autograd/generated/variable_factories.h' 2025-06-01T21:27:43.9222665Z adding 'torch/include/torch/csrc/autograd/utils/error_messages.h' 2025-06-01T21:27:43.9226368Z adding 'torch/include/torch/csrc/autograd/utils/grad_layout_contract.h' 2025-06-01T21:27:43.9229756Z adding 'torch/include/torch/csrc/autograd/utils/lambda_post_hook.h' 2025-06-01T21:27:43.9233430Z adding 'torch/include/torch/csrc/autograd/utils/python_arg_parsing.h' 2025-06-01T21:27:43.9236534Z adding 'torch/include/torch/csrc/autograd/utils/warnings.h' 2025-06-01T21:27:43.9240276Z adding 'torch/include/torch/csrc/autograd/utils/wrap_outputs.h' 2025-06-01T21:27:43.9244066Z adding 'torch/include/torch/csrc/cpu/Module.h' 2025-06-01T21:27:43.9249418Z adding 'torch/include/torch/csrc/cuda/CUDAPluggableAllocator.h' 2025-06-01T21:27:43.9252606Z adding 'torch/include/torch/csrc/cuda/Event.h' 2025-06-01T21:27:43.9255571Z adding 'torch/include/torch/csrc/cuda/GdsFile.h' 2025-06-01T21:27:43.9258493Z adding 'torch/include/torch/csrc/cuda/Module.h' 2025-06-01T21:27:43.9261479Z adding 'torch/include/torch/csrc/cuda/Stream.h' 2025-06-01T21:27:43.9264364Z adding 'torch/include/torch/csrc/cuda/THCP.h' 2025-06-01T21:27:43.9267498Z adding 'torch/include/torch/csrc/cuda/comm.h' 2025-06-01T21:27:43.9270462Z adding 'torch/include/torch/csrc/cuda/device_set.h' 2025-06-01T21:27:43.9273702Z adding 'torch/include/torch/csrc/cuda/memory_snapshot.h' 2025-06-01T21:27:43.9277840Z adding 'torch/include/torch/csrc/cuda/nccl.h' 2025-06-01T21:27:43.9280969Z adding 'torch/include/torch/csrc/cuda/python_comm.h' 2025-06-01T21:27:43.9283892Z adding 'torch/include/torch/csrc/cuda/python_nccl.h' 2025-06-01T21:27:43.9286758Z adding 'torch/include/torch/csrc/cuda/utils.h' 2025-06-01T21:27:43.9291754Z adding 'torch/include/torch/csrc/distributed/autograd/autograd.h' 2025-06-01T21:27:43.9295369Z adding 'torch/include/torch/csrc/distributed/autograd/python_autograd.h' 2025-06-01T21:27:43.9298491Z adding 'torch/include/torch/csrc/distributed/autograd/utils.h' 2025-06-01T21:27:43.9303907Z adding 'torch/include/torch/csrc/distributed/autograd/context/container.h' 2025-06-01T21:27:43.9308701Z adding 'torch/include/torch/csrc/distributed/autograd/context/context.h' 2025-06-01T21:27:43.9314595Z adding 'torch/include/torch/csrc/distributed/autograd/engine/dist_engine.h' 2025-06-01T21:27:43.9319033Z adding 'torch/include/torch/csrc/distributed/autograd/functions/recvrpc_backward.h' 2025-06-01T21:27:43.9322704Z adding 'torch/include/torch/csrc/distributed/autograd/functions/sendrpc_backward.h' 2025-06-01T21:27:43.9326859Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/autograd_metadata.h' 2025-06-01T21:27:43.9330098Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_req.h' 2025-06-01T21:27:43.9333191Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_resp.h' 2025-06-01T21:27:43.9336502Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_req.h' 2025-06-01T21:27:43.9339579Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_resp.h' 2025-06-01T21:27:43.9343276Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_autograd.h' 2025-06-01T21:27:43.9346922Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_req.h' 2025-06-01T21:27:43.9350503Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_resp.h' 2025-06-01T21:27:43.9354002Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_req.h' 2025-06-01T21:27:43.9357095Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_resp.h' 2025-06-01T21:27:43.9364407Z adding 'torch/include/torch/csrc/distributed/c10d/Backend.hpp' 2025-06-01T21:27:43.9368019Z adding 'torch/include/torch/csrc/distributed/c10d/Backoff.hpp' 2025-06-01T21:27:43.9373462Z adding 'torch/include/torch/csrc/distributed/c10d/CUDASymmetricMemory-inl.h' 2025-06-01T21:27:43.9377449Z adding 'torch/include/torch/csrc/distributed/c10d/CUDASymmetricMemory.hpp' 2025-06-01T21:27:43.9380601Z adding 'torch/include/torch/csrc/distributed/c10d/CUDASymmetricMemoryTypes.hpp' 2025-06-01T21:27:43.9384308Z adding 'torch/include/torch/csrc/distributed/c10d/CUDASymmetricMemoryUtils.hpp' 2025-06-01T21:27:43.9387602Z adding 'torch/include/torch/csrc/distributed/c10d/DMAConnectivity.hpp' 2025-06-01T21:27:43.9391625Z adding 'torch/include/torch/csrc/distributed/c10d/FakeProcessGroup.hpp' 2025-06-01T21:27:43.9395222Z adding 'torch/include/torch/csrc/distributed/c10d/FileStore.hpp' 2025-06-01T21:27:43.9400714Z adding 'torch/include/torch/csrc/distributed/c10d/FlightRecorder.hpp' 2025-06-01T21:27:43.9403858Z adding 'torch/include/torch/csrc/distributed/c10d/Functional.hpp' 2025-06-01T21:27:43.9407175Z adding 'torch/include/torch/csrc/distributed/c10d/GlooDeviceFactory.hpp' 2025-06-01T21:27:43.9410228Z adding 'torch/include/torch/csrc/distributed/c10d/GroupRegistry.hpp' 2025-06-01T21:27:43.9413656Z adding 'torch/include/torch/csrc/distributed/c10d/HashStore.hpp' 2025-06-01T21:27:43.9420278Z adding 'torch/include/torch/csrc/distributed/c10d/NCCLUtils.hpp' 2025-06-01T21:27:43.9423927Z adding 'torch/include/torch/csrc/distributed/c10d/NanCheck.hpp' 2025-06-01T21:27:43.9428321Z adding 'torch/include/torch/csrc/distributed/c10d/ParamCommsUtils.hpp' 2025-06-01T21:27:43.9432030Z adding 'torch/include/torch/csrc/distributed/c10d/PrefixStore.hpp' 2025-06-01T21:27:43.9441799Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroup.hpp' 2025-06-01T21:27:43.9449196Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupGloo.hpp' 2025-06-01T21:27:43.9457536Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupGlooDetail.hpp' 2025-06-01T21:27:43.9462964Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupMPI.hpp' 2025-06-01T21:27:43.9485166Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupNCCL.hpp' 2025-06-01T21:27:43.9491857Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupUCC.hpp' 2025-06-01T21:27:43.9496424Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupWrapper.hpp' 2025-06-01T21:27:43.9501495Z adding 'torch/include/torch/csrc/distributed/c10d/PyProcessGroup.hpp' 2025-06-01T21:27:43.9505943Z adding 'torch/include/torch/csrc/distributed/c10d/RankLocal.hpp' 2025-06-01T21:27:43.9509624Z adding 'torch/include/torch/csrc/distributed/c10d/Store.hpp' 2025-06-01T21:27:43.9515382Z adding 'torch/include/torch/csrc/distributed/c10d/SymmetricMemory.hpp' 2025-06-01T21:27:43.9520335Z adding 'torch/include/torch/csrc/distributed/c10d/TCPStore.hpp' 2025-06-01T21:27:43.9524569Z adding 'torch/include/torch/csrc/distributed/c10d/TCPStoreBackend.hpp' 2025-06-01T21:27:43.9530717Z adding 'torch/include/torch/csrc/distributed/c10d/TraceUtils.h' 2025-06-01T21:27:43.9535259Z adding 'torch/include/torch/csrc/distributed/c10d/Types.hpp' 2025-06-01T21:27:43.9539314Z adding 'torch/include/torch/csrc/distributed/c10d/UCCTracing.hpp' 2025-06-01T21:27:43.9543794Z adding 'torch/include/torch/csrc/distributed/c10d/UCCUtils.hpp' 2025-06-01T21:27:43.9547115Z adding 'torch/include/torch/csrc/distributed/c10d/UnixSockUtils.hpp' 2025-06-01T21:27:43.9555969Z adding 'torch/include/torch/csrc/distributed/c10d/Utils.hpp' 2025-06-01T21:27:43.9559730Z adding 'torch/include/torch/csrc/distributed/c10d/WinSockUtils.hpp' 2025-06-01T21:27:43.9564241Z adding 'torch/include/torch/csrc/distributed/c10d/Work.hpp' 2025-06-01T21:27:43.9567551Z adding 'torch/include/torch/csrc/distributed/c10d/c10d.h' 2025-06-01T21:27:43.9571564Z adding 'torch/include/torch/csrc/distributed/c10d/comm.hpp' 2025-06-01T21:27:43.9574887Z adding 'torch/include/torch/csrc/distributed/c10d/debug.h' 2025-06-01T21:27:43.9578313Z adding 'torch/include/torch/csrc/distributed/c10d/default_comm_hooks.hpp' 2025-06-01T21:27:43.9581420Z adding 'torch/include/torch/csrc/distributed/c10d/error.h' 2025-06-01T21:27:43.9584998Z adding 'torch/include/torch/csrc/distributed/c10d/exception.h' 2025-06-01T21:27:43.9588611Z adding 'torch/include/torch/csrc/distributed/c10d/intra_node_comm.hpp' 2025-06-01T21:27:43.9593148Z adding 'torch/include/torch/csrc/distributed/c10d/logger.hpp' 2025-06-01T21:27:43.9596739Z adding 'torch/include/torch/csrc/distributed/c10d/logging.h' 2025-06-01T21:27:43.9600375Z adding 'torch/include/torch/csrc/distributed/c10d/python_comm_hook.h' 2025-06-01T21:27:43.9611371Z adding 'torch/include/torch/csrc/distributed/c10d/reducer.hpp' 2025-06-01T21:27:43.9615754Z adding 'torch/include/torch/csrc/distributed/c10d/reducer_timer.hpp' 2025-06-01T21:27:43.9619253Z adding 'torch/include/torch/csrc/distributed/c10d/sequence_num.hpp' 2025-06-01T21:27:43.9622769Z adding 'torch/include/torch/csrc/distributed/c10d/socket.h' 2025-06-01T21:27:43.9626320Z adding 'torch/include/torch/csrc/distributed/c10d/socket_fmt.h' 2025-06-01T21:27:43.9630391Z adding 'torch/include/torch/csrc/distributed/c10d/control_collectives/ControlCollectives.hpp' 2025-06-01T21:27:43.9633827Z adding 'torch/include/torch/csrc/distributed/c10d/control_collectives/StoreCollectives.hpp' 2025-06-01T21:27:43.9638109Z adding 'torch/include/torch/csrc/distributed/c10d/control_plane/Handlers.hpp' 2025-06-01T21:27:43.9641446Z adding 'torch/include/torch/csrc/distributed/c10d/control_plane/WorkerServer.hpp' 2025-06-01T21:27:43.9645118Z adding 'torch/include/torch/csrc/distributed/c10d/cuda/utils.hpp' 2025-06-01T21:27:43.9649309Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization.h' 2025-06-01T21:27:43.9652118Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization_gpu.h' 2025-06-01T21:27:43.9655308Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization_utils.h' 2025-06-01T21:27:43.9659807Z adding 'torch/include/torch/csrc/distributed/rpc/agent_utils.h' 2025-06-01T21:27:43.9664549Z adding 'torch/include/torch/csrc/distributed/rpc/message.h' 2025-06-01T21:27:43.9668506Z adding 'torch/include/torch/csrc/distributed/rpc/py_rref.h' 2025-06-01T21:27:43.9671886Z adding 'torch/include/torch/csrc/distributed/rpc/python_call.h' 2025-06-01T21:27:43.9675350Z adding 'torch/include/torch/csrc/distributed/rpc/python_functions.h' 2025-06-01T21:27:43.9678667Z adding 'torch/include/torch/csrc/distributed/rpc/python_remote_call.h' 2025-06-01T21:27:43.9682675Z adding 'torch/include/torch/csrc/distributed/rpc/python_resp.h' 2025-06-01T21:27:43.9686970Z adding 'torch/include/torch/csrc/distributed/rpc/python_rpc_handler.h' 2025-06-01T21:27:43.9690375Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback.h' 2025-06-01T21:27:43.9693788Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback_impl.h' 2025-06-01T21:27:43.9697364Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback_no_python.h' 2025-06-01T21:27:43.9700330Z adding 'torch/include/torch/csrc/distributed/rpc/rpc.h' 2025-06-01T21:27:43.9707075Z adding 'torch/include/torch/csrc/distributed/rpc/rpc_agent.h' 2025-06-01T21:27:43.9710551Z adding 'torch/include/torch/csrc/distributed/rpc/rpc_command_base.h' 2025-06-01T21:27:43.9718520Z adding 'torch/include/torch/csrc/distributed/rpc/rref_context.h' 2025-06-01T21:27:43.9726902Z adding 'torch/include/torch/csrc/distributed/rpc/rref_impl.h' 2025-06-01T21:27:43.9731358Z adding 'torch/include/torch/csrc/distributed/rpc/rref_proto.h' 2025-06-01T21:27:43.9735081Z adding 'torch/include/torch/csrc/distributed/rpc/script_call.h' 2025-06-01T21:27:43.9738524Z adding 'torch/include/torch/csrc/distributed/rpc/script_remote_call.h' 2025-06-01T21:27:43.9741799Z adding 'torch/include/torch/csrc/distributed/rpc/script_resp.h' 2025-06-01T21:27:43.9749561Z adding 'torch/include/torch/csrc/distributed/rpc/tensorpipe_agent.h' 2025-06-01T21:27:43.9754228Z adding 'torch/include/torch/csrc/distributed/rpc/tensorpipe_utils.h' 2025-06-01T21:27:43.9757731Z adding 'torch/include/torch/csrc/distributed/rpc/torchscript_functions.h' 2025-06-01T21:27:43.9761139Z adding 'torch/include/torch/csrc/distributed/rpc/types.h' 2025-06-01T21:27:43.9764641Z adding 'torch/include/torch/csrc/distributed/rpc/unpickled_python_call.h' 2025-06-01T21:27:43.9767902Z adding 'torch/include/torch/csrc/distributed/rpc/unpickled_python_remote_call.h' 2025-06-01T21:27:43.9772047Z adding 'torch/include/torch/csrc/distributed/rpc/utils.h' 2025-06-01T21:27:43.9776607Z adding 'torch/include/torch/csrc/distributed/rpc/metrics/RpcMetricsHandler.h' 2025-06-01T21:27:43.9781115Z adding 'torch/include/torch/csrc/distributed/rpc/profiler/remote_profiler_manager.h' 2025-06-01T21:27:43.9785266Z adding 'torch/include/torch/csrc/distributed/rpc/profiler/server_process_global_profiler.h' 2025-06-01T21:27:43.9789963Z adding 'torch/include/torch/csrc/distributed/rpc/testing/faulty_tensorpipe_agent.h' 2025-06-01T21:27:43.9793219Z adding 'torch/include/torch/csrc/distributed/rpc/testing/testing.h' 2025-06-01T21:27:43.9798115Z adding 'torch/include/torch/csrc/dynamo/cache_entry.h' 2025-06-01T21:27:43.9815616Z adding 'torch/include/torch/csrc/dynamo/compiled_autograd.h' 2025-06-01T21:27:43.9819913Z adding 'torch/include/torch/csrc/dynamo/cpp_shim.h' 2025-06-01T21:27:43.9823194Z adding 'torch/include/torch/csrc/dynamo/cpython_defs.h' 2025-06-01T21:27:43.9826616Z adding 'torch/include/torch/csrc/dynamo/cpython_includes.h' 2025-06-01T21:27:43.9830459Z adding 'torch/include/torch/csrc/dynamo/debug_macros.h' 2025-06-01T21:27:43.9834032Z adding 'torch/include/torch/csrc/dynamo/eval_frame.h' 2025-06-01T21:27:43.9837264Z adding 'torch/include/torch/csrc/dynamo/eval_frame_cpp.h' 2025-06-01T21:27:43.9841844Z adding 'torch/include/torch/csrc/dynamo/extra_state.h' 2025-06-01T21:27:43.9845727Z adding 'torch/include/torch/csrc/dynamo/framelocals_mapping.h' 2025-06-01T21:27:43.9849552Z adding 'torch/include/torch/csrc/dynamo/guards.h' 2025-06-01T21:27:43.9852649Z adding 'torch/include/torch/csrc/dynamo/init.h' 2025-06-01T21:27:43.9855744Z adding 'torch/include/torch/csrc/dynamo/python_compiled_autograd.h' 2025-06-01T21:27:43.9858774Z adding 'torch/include/torch/csrc/dynamo/utils.h' 2025-06-01T21:27:43.9863563Z adding 'torch/include/torch/csrc/export/pt2_archive_constants.h' 2025-06-01T21:27:43.9866751Z adding 'torch/include/torch/csrc/export/pybind.h' 2025-06-01T21:27:43.9870719Z adding 'torch/include/torch/csrc/functorch/init.h' 2025-06-01T21:27:43.9874184Z adding 'torch/include/torch/csrc/fx/node.h' 2025-06-01T21:27:43.9878854Z adding 'torch/include/torch/csrc/inductor/array_ref_impl.h' 2025-06-01T21:27:43.9891098Z adding 'torch/include/torch/csrc/inductor/cpp_prefix.h' 2025-06-01T21:27:43.9895360Z adding 'torch/include/torch/csrc/inductor/inductor_ops.h' 2025-06-01T21:27:43.9898476Z adding 'torch/include/torch/csrc/inductor/static_cuda_launcher.h' 2025-06-01T21:27:43.9903337Z adding 'torch/include/torch/csrc/inductor/aoti_eager/kernel_holder.h' 2025-06-01T21:27:43.9908070Z adding 'torch/include/torch/csrc/inductor/aoti_eager/kernel_meta_info.h' 2025-06-01T21:27:43.9912458Z adding 'torch/include/torch/csrc/inductor/aoti_include/array_ref.h' 2025-06-01T21:27:43.9915365Z adding 'torch/include/torch/csrc/inductor/aoti_include/common.h' 2025-06-01T21:27:43.9918808Z adding 'torch/include/torch/csrc/inductor/aoti_include/cpu.h' 2025-06-01T21:27:43.9921354Z adding 'torch/include/torch/csrc/inductor/aoti_include/cuda.h' 2025-06-01T21:27:43.9924342Z adding 'torch/include/torch/csrc/inductor/aoti_include/mps.h' 2025-06-01T21:27:43.9927176Z adding 'torch/include/torch/csrc/inductor/aoti_include/xpu.h' 2025-06-01T21:27:43.9931522Z adding 'torch/include/torch/csrc/inductor/aoti_package/model_package_loader.h' 2025-06-01T21:27:43.9934614Z adding 'torch/include/torch/csrc/inductor/aoti_package/pybind.h' 2025-06-01T21:27:43.9939371Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner.h' 2025-06-01T21:27:43.9942813Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cpu.h' 2025-06-01T21:27:43.9946209Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cuda.h' 2025-06-01T21:27:43.9949266Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_mps.h' 2025-06-01T21:27:43.9952716Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_xpu.h' 2025-06-01T21:27:43.9955620Z adding 'torch/include/torch/csrc/inductor/aoti_runner/pybind.h' 2025-06-01T21:27:43.9960940Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/arrayref_tensor.h' 2025-06-01T21:27:43.9964346Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/constant_type.h' 2025-06-01T21:27:43.9967825Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/device_utils.h' 2025-06-01T21:27:43.9972578Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/interface.h' 2025-06-01T21:27:43.9976985Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/mini_array_ref.h' 2025-06-01T21:27:43.9985831Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model.h' 2025-06-01T21:27:43.9996950Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model_container.h' 2025-06-01T21:27:44.0001378Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/scalar_to_tensor.h' 2025-06-01T21:27:44.0005920Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/sycl_runtime_wrappers.h' 2025-06-01T21:27:44.0009921Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/thread_local.h' 2025-06-01T21:27:44.0015156Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils.h' 2025-06-01T21:27:44.0018854Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils_cuda.h' 2025-06-01T21:27:44.0022462Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils_xpu.h' 2025-06-01T21:27:44.0026628Z adding 'torch/include/torch/csrc/inductor/aoti_torch/mkldnn_tensor.h' 2025-06-01T21:27:44.0030665Z adding 'torch/include/torch/csrc/inductor/aoti_torch/oss_proxy_executor.h' 2025-06-01T21:27:44.0033987Z adding 'torch/include/torch/csrc/inductor/aoti_torch/proxy_executor.h' 2025-06-01T21:27:44.0037708Z adding 'torch/include/torch/csrc/inductor/aoti_torch/tensor_converter.h' 2025-06-01T21:27:44.0042022Z adding 'torch/include/torch/csrc/inductor/aoti_torch/utils.h' 2025-06-01T21:27:44.0051988Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim.h' 2025-06-01T21:27:44.0056761Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_cpu.h' 2025-06-01T21:27:44.0060078Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_mps.h' 2025-06-01T21:27:44.0063295Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_xpu.h' 2025-06-01T21:27:44.0070804Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.h' 2025-06-01T21:27:44.0078882Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cuda.h' 2025-06-01T21:27:44.0085320Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_mps.h' 2025-06-01T21:27:44.0090151Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_xpu.h' 2025-06-01T21:27:44.0094458Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/array_ref.h' 2025-06-01T21:27:44.0097941Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/common.h' 2025-06-01T21:27:44.0100807Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/cpu.h' 2025-06-01T21:27:44.0103639Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/cuda.h' 2025-06-01T21:27:44.0106461Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/mps.h' 2025-06-01T21:27:44.0109245Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/xpu.h' 2025-06-01T21:27:44.0113089Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/cpu.h' 2025-06-01T21:27:44.0116006Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/cuda.h' 2025-06-01T21:27:44.0118736Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/mps.h' 2025-06-01T21:27:44.0121575Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/xpu.h' 2025-06-01T21:27:44.0133222Z adding 'torch/include/torch/csrc/instruction_counter/Module.h' 2025-06-01T21:27:44.0137918Z adding 'torch/include/torch/csrc/jit/jit_log.h' 2025-06-01T21:27:44.0143064Z adding 'torch/include/torch/csrc/jit/jit_opt_limit.h' 2025-06-01T21:27:44.0146286Z adding 'torch/include/torch/csrc/jit/resource_guard.h' 2025-06-01T21:27:44.0153200Z adding 'torch/include/torch/csrc/jit/api/compilation_unit.h' 2025-06-01T21:27:44.0157952Z adding 'torch/include/torch/csrc/jit/api/function_impl.h' 2025-06-01T21:27:44.0161658Z adding 'torch/include/torch/csrc/jit/api/method.h' 2025-06-01T21:27:44.0171573Z adding 'torch/include/torch/csrc/jit/api/module.h' 2025-06-01T21:27:44.0176538Z adding 'torch/include/torch/csrc/jit/api/object.h' 2025-06-01T21:27:44.0181384Z adding 'torch/include/torch/csrc/jit/backends/backend.h' 2025-06-01T21:27:44.0186284Z adding 'torch/include/torch/csrc/jit/backends/backend_debug_handler.h' 2025-06-01T21:27:44.0190401Z adding 'torch/include/torch/csrc/jit/backends/backend_debug_info.h' 2025-06-01T21:27:44.0193473Z adding 'torch/include/torch/csrc/jit/backends/backend_detail.h' 2025-06-01T21:27:44.0197067Z adding 'torch/include/torch/csrc/jit/backends/backend_exception.h' 2025-06-01T21:27:44.0200171Z adding 'torch/include/torch/csrc/jit/backends/backend_init.h' 2025-06-01T21:27:44.0203377Z adding 'torch/include/torch/csrc/jit/backends/backend_interface.h' 2025-06-01T21:27:44.0206417Z adding 'torch/include/torch/csrc/jit/backends/backend_preprocess.h' 2025-06-01T21:27:44.0209421Z adding 'torch/include/torch/csrc/jit/backends/backend_resolver.h' 2025-06-01T21:27:44.0213913Z adding 'torch/include/torch/csrc/jit/backends/coreml/cpp/context.h' 2025-06-01T21:27:44.0217989Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLCompiler.h' 2025-06-01T21:27:44.0221118Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLExecutor.h' 2025-06-01T21:27:44.0224221Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLFeatureProvider.h' 2025-06-01T21:27:44.0227339Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLModelWrapper.h' 2025-06-01T21:27:44.0230481Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLTensorSpec.h' 2025-06-01T21:27:44.0235347Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/xnnpack_graph_builder.h' 2025-06-01T21:27:44.0239292Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/compiler/xnn_compiler.h' 2025-06-01T21:27:44.0244223Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/executor/xnn_executor.h' 2025-06-01T21:27:44.0248916Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/serialization/serializer.h' 2025-06-01T21:27:44.0253692Z adding 'torch/include/torch/csrc/jit/codegen/cuda/interface.h' 2025-06-01T21:27:44.0258011Z adding 'torch/include/torch/csrc/jit/codegen/fuser/arg_spec.h' 2025-06-01T21:27:44.0261250Z adding 'torch/include/torch/csrc/jit/codegen/fuser/codegen.h' 2025-06-01T21:27:44.0264651Z adding 'torch/include/torch/csrc/jit/codegen/fuser/compiler.h' 2025-06-01T21:27:44.0267818Z adding 'torch/include/torch/csrc/jit/codegen/fuser/executor.h' 2025-06-01T21:27:44.0271579Z adding 'torch/include/torch/csrc/jit/codegen/fuser/fallback.h' 2025-06-01T21:27:44.0274641Z adding 'torch/include/torch/csrc/jit/codegen/fuser/fused_kernel.h' 2025-06-01T21:27:44.0278006Z adding 'torch/include/torch/csrc/jit/codegen/fuser/interface.h' 2025-06-01T21:27:44.0281680Z adding 'torch/include/torch/csrc/jit/codegen/fuser/kernel_cache.h' 2025-06-01T21:27:44.0285737Z adding 'torch/include/torch/csrc/jit/codegen/fuser/kernel_spec.h' 2025-06-01T21:27:44.0289325Z adding 'torch/include/torch/csrc/jit/codegen/fuser/partition_desc.h' 2025-06-01T21:27:44.0292983Z adding 'torch/include/torch/csrc/jit/codegen/fuser/tensor_desc.h' 2025-06-01T21:27:44.0296044Z adding 'torch/include/torch/csrc/jit/codegen/fuser/tensor_info.h' 2025-06-01T21:27:44.0300057Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.h' 2025-06-01T21:27:44.0303699Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/resource_strings.h' 2025-06-01T21:27:44.0307452Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/temp_file.h' 2025-06-01T21:27:44.0311817Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cuda/fused_kernel.h' 2025-06-01T21:27:44.0317414Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cuda/resource_strings.h' 2025-06-01T21:27:44.0323469Z adding 'torch/include/torch/csrc/jit/codegen/onednn/LlgaTensorImpl.h' 2025-06-01T21:27:44.0326744Z adding 'torch/include/torch/csrc/jit/codegen/onednn/decompose_silu.h' 2025-06-01T21:27:44.0329694Z adding 'torch/include/torch/csrc/jit/codegen/onednn/defer_size_check.h' 2025-06-01T21:27:44.0332945Z adding 'torch/include/torch/csrc/jit/codegen/onednn/graph_fuser.h' 2025-06-01T21:27:44.0336556Z adding 'torch/include/torch/csrc/jit/codegen/onednn/graph_helper.h' 2025-06-01T21:27:44.0339504Z adding 'torch/include/torch/csrc/jit/codegen/onednn/guard_shape.h' 2025-06-01T21:27:44.0342750Z adding 'torch/include/torch/csrc/jit/codegen/onednn/interface.h' 2025-06-01T21:27:44.0347205Z adding 'torch/include/torch/csrc/jit/codegen/onednn/kernel.h' 2025-06-01T21:27:44.0350838Z adding 'torch/include/torch/csrc/jit/codegen/onednn/layout_propagation.h' 2025-06-01T21:27:44.0354858Z adding 'torch/include/torch/csrc/jit/codegen/onednn/operator.h' 2025-06-01T21:27:44.0358807Z adding 'torch/include/torch/csrc/jit/codegen/onednn/prepare_binary.h' 2025-06-01T21:27:44.0364128Z adding 'torch/include/torch/csrc/jit/cuda/cuda.h' 2025-06-01T21:27:44.0368808Z adding 'torch/include/torch/csrc/jit/frontend/builtin_functions.h' 2025-06-01T21:27:44.0372269Z adding 'torch/include/torch/csrc/jit/frontend/canonicalize_modified_loop.h' 2025-06-01T21:27:44.0378152Z adding 'torch/include/torch/csrc/jit/frontend/concrete_module_type.h' 2025-06-01T21:27:44.0382066Z adding 'torch/include/torch/csrc/jit/frontend/convert_to_ssa.h' 2025-06-01T21:27:44.0385275Z adding 'torch/include/torch/csrc/jit/frontend/edit_distance.h' 2025-06-01T21:27:44.0389149Z adding 'torch/include/torch/csrc/jit/frontend/error_report.h' 2025-06-01T21:27:44.0392419Z adding 'torch/include/torch/csrc/jit/frontend/exit_transforms.h' 2025-06-01T21:27:44.0396250Z adding 'torch/include/torch/csrc/jit/frontend/function_schema_parser.h' 2025-06-01T21:27:44.0399608Z adding 'torch/include/torch/csrc/jit/frontend/inline_loop_condition.h' 2025-06-01T21:27:44.0402920Z adding 'torch/include/torch/csrc/jit/frontend/ir_emitter.h' 2025-06-01T21:27:44.0412018Z adding 'torch/include/torch/csrc/jit/frontend/lexer.h' 2025-06-01T21:27:44.0416210Z adding 'torch/include/torch/csrc/jit/frontend/mini_environment.h' 2025-06-01T21:27:44.0420102Z adding 'torch/include/torch/csrc/jit/frontend/name_mangler.h' 2025-06-01T21:27:44.0424064Z adding 'torch/include/torch/csrc/jit/frontend/parse_string_literal.h' 2025-06-01T21:27:44.0427531Z adding 'torch/include/torch/csrc/jit/frontend/parser.h' 2025-06-01T21:27:44.0431119Z adding 'torch/include/torch/csrc/jit/frontend/parser_constants.h' 2025-06-01T21:27:44.0434706Z adding 'torch/include/torch/csrc/jit/frontend/resolver.h' 2025-06-01T21:27:44.0439599Z adding 'torch/include/torch/csrc/jit/frontend/schema_matching.h' 2025-06-01T21:27:44.0442807Z adding 'torch/include/torch/csrc/jit/frontend/schema_type_parser.h' 2025-06-01T21:27:44.0446372Z adding 'torch/include/torch/csrc/jit/frontend/script_type_parser.h' 2025-06-01T21:27:44.0454522Z adding 'torch/include/torch/csrc/jit/frontend/source_range.h' 2025-06-01T21:27:44.0458642Z adding 'torch/include/torch/csrc/jit/frontend/source_ref.h' 2025-06-01T21:27:44.0462200Z adding 'torch/include/torch/csrc/jit/frontend/strtod.h' 2025-06-01T21:27:44.0473177Z adding 'torch/include/torch/csrc/jit/frontend/sugared_value.h' 2025-06-01T21:27:44.0480281Z adding 'torch/include/torch/csrc/jit/frontend/tracer.h' 2025-06-01T21:27:44.0485895Z adding 'torch/include/torch/csrc/jit/frontend/tree.h' 2025-06-01T21:27:44.0500937Z adding 'torch/include/torch/csrc/jit/frontend/tree_views.h' 2025-06-01T21:27:44.0507485Z adding 'torch/include/torch/csrc/jit/frontend/versioned_symbols.h' 2025-06-01T21:27:44.0519391Z adding 'torch/include/torch/csrc/jit/ir/alias_analysis.h' 2025-06-01T21:27:44.0524811Z adding 'torch/include/torch/csrc/jit/ir/attributes.h' 2025-06-01T21:27:44.0529214Z adding 'torch/include/torch/csrc/jit/ir/constants.h' 2025-06-01T21:27:44.0533886Z adding 'torch/include/torch/csrc/jit/ir/graph_node_list.h' 2025-06-01T21:27:44.0537677Z adding 'torch/include/torch/csrc/jit/ir/graph_utils.h' 2025-06-01T21:27:44.0559667Z adding 'torch/include/torch/csrc/jit/ir/ir.h' 2025-06-01T21:27:44.0565060Z adding 'torch/include/torch/csrc/jit/ir/ir_views.h' 2025-06-01T21:27:44.0568917Z adding 'torch/include/torch/csrc/jit/ir/irparser.h' 2025-06-01T21:27:44.0572809Z adding 'torch/include/torch/csrc/jit/ir/named_value.h' 2025-06-01T21:27:44.0575895Z adding 'torch/include/torch/csrc/jit/ir/node_hashing.h' 2025-06-01T21:27:44.0580469Z adding 'torch/include/torch/csrc/jit/ir/scope.h' 2025-06-01T21:27:44.0584594Z adding 'torch/include/torch/csrc/jit/ir/subgraph_matcher.h' 2025-06-01T21:27:44.0587688Z adding 'torch/include/torch/csrc/jit/ir/type_hashing.h' 2025-06-01T21:27:44.0592268Z adding 'torch/include/torch/csrc/jit/mobile/code.h' 2025-06-01T21:27:44.0595798Z adding 'torch/include/torch/csrc/jit/mobile/debug_info.h' 2025-06-01T21:27:44.0600941Z adding 'torch/include/torch/csrc/jit/mobile/file_format.h' 2025-06-01T21:27:44.0605457Z adding 'torch/include/torch/csrc/jit/mobile/flatbuffer_loader.h' 2025-06-01T21:27:44.0608826Z adding 'torch/include/torch/csrc/jit/mobile/frame.h' 2025-06-01T21:27:44.0612536Z adding 'torch/include/torch/csrc/jit/mobile/function.h' 2025-06-01T21:27:44.0616424Z adding 'torch/include/torch/csrc/jit/mobile/import.h' 2025-06-01T21:27:44.0619734Z adding 'torch/include/torch/csrc/jit/mobile/import_data.h' 2025-06-01T21:27:44.0622887Z adding 'torch/include/torch/csrc/jit/mobile/import_export_common.h' 2025-06-01T21:27:44.0625929Z adding 'torch/include/torch/csrc/jit/mobile/interpreter.h' 2025-06-01T21:27:44.0629026Z adding 'torch/include/torch/csrc/jit/mobile/method.h' 2025-06-01T21:27:44.0633419Z adding 'torch/include/torch/csrc/jit/mobile/module.h' 2025-06-01T21:27:44.0637413Z adding 'torch/include/torch/csrc/jit/mobile/observer.h' 2025-06-01T21:27:44.0640737Z adding 'torch/include/torch/csrc/jit/mobile/parse_bytecode.h' 2025-06-01T21:27:44.0644458Z adding 'torch/include/torch/csrc/jit/mobile/parse_operators.h' 2025-06-01T21:27:44.0647528Z adding 'torch/include/torch/csrc/jit/mobile/prim_ops_registery.h' 2025-06-01T21:27:44.0651441Z adding 'torch/include/torch/csrc/jit/mobile/profiler_edge.h' 2025-06-01T21:27:44.0654679Z adding 'torch/include/torch/csrc/jit/mobile/promoted_prim_ops.h' 2025-06-01T21:27:44.0658014Z adding 'torch/include/torch/csrc/jit/mobile/quantization.h' 2025-06-01T21:27:44.0661497Z adding 'torch/include/torch/csrc/jit/mobile/register_ops_common_utils.h' 2025-06-01T21:27:44.0664790Z adding 'torch/include/torch/csrc/jit/mobile/type_parser.h' 2025-06-01T21:27:44.0668011Z adding 'torch/include/torch/csrc/jit/mobile/upgrader_mobile.h' 2025-06-01T21:27:44.0672868Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/backport.h' 2025-06-01T21:27:44.0675625Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/backport_manager.h' 2025-06-01T21:27:44.0679266Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/model_compatibility.h' 2025-06-01T21:27:44.0682666Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/runtime_compatibility.h' 2025-06-01T21:27:44.0686891Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/BuildFeatureTracer.h' 2025-06-01T21:27:44.0690175Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/CustomClassTracer.h' 2025-06-01T21:27:44.0693558Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/KernelDTypeTracer.h' 2025-06-01T21:27:44.0697567Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/MobileModelRunner.h' 2025-06-01T21:27:44.0708291Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/OperatorCallTracer.h' 2025-06-01T21:27:44.0711660Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/TensorUtils.h' 2025-06-01T21:27:44.0714834Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/TracerRunner.h' 2025-06-01T21:27:44.0718834Z adding 'torch/include/torch/csrc/jit/mobile/nnc/aot_compiler.h' 2025-06-01T21:27:44.0723198Z adding 'torch/include/torch/csrc/jit/mobile/nnc/context.h' 2025-06-01T21:27:44.0726749Z adding 'torch/include/torch/csrc/jit/mobile/nnc/registry.h' 2025-06-01T21:27:44.0730958Z adding 'torch/include/torch/csrc/jit/mobile/train/export_data.h' 2025-06-01T21:27:44.0734358Z adding 'torch/include/torch/csrc/jit/mobile/train/random.h' 2025-06-01T21:27:44.0737678Z adding 'torch/include/torch/csrc/jit/mobile/train/sequential.h' 2025-06-01T21:27:44.0742487Z adding 'torch/include/torch/csrc/jit/mobile/train/optim/sgd.h' 2025-06-01T21:27:44.0746780Z adding 'torch/include/torch/csrc/jit/operator_upgraders/upgraders.h' 2025-06-01T21:27:44.0750051Z adding 'torch/include/torch/csrc/jit/operator_upgraders/upgraders_entry.h' 2025-06-01T21:27:44.0753566Z adding 'torch/include/torch/csrc/jit/operator_upgraders/utils.h' 2025-06-01T21:27:44.0756830Z adding 'torch/include/torch/csrc/jit/operator_upgraders/version_map.h' 2025-06-01T21:27:44.0762444Z adding 'torch/include/torch/csrc/jit/passes/add_if_then_else.h' 2025-06-01T21:27:44.0765402Z adding 'torch/include/torch/csrc/jit/passes/annotate_warns.h' 2025-06-01T21:27:44.0768355Z adding 'torch/include/torch/csrc/jit/passes/autocast.h' 2025-06-01T21:27:44.0771573Z adding 'torch/include/torch/csrc/jit/passes/bailout_graph.h' 2025-06-01T21:27:44.0774418Z adding 'torch/include/torch/csrc/jit/passes/batch_mm.h' 2025-06-01T21:27:44.0777446Z adding 'torch/include/torch/csrc/jit/passes/canonicalize.h' 2025-06-01T21:27:44.0780457Z adding 'torch/include/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.h' 2025-06-01T21:27:44.0783303Z adding 'torch/include/torch/csrc/jit/passes/check_strict_fusion.h' 2025-06-01T21:27:44.0786279Z adding 'torch/include/torch/csrc/jit/passes/clear_profiling.h' 2025-06-01T21:27:44.0789461Z adding 'torch/include/torch/csrc/jit/passes/clear_undefinedness.h' 2025-06-01T21:27:44.0792586Z adding 'torch/include/torch/csrc/jit/passes/common_subexpression_elimination.h' 2025-06-01T21:27:44.0795585Z adding 'torch/include/torch/csrc/jit/passes/concat_opt.h' 2025-06-01T21:27:44.0798672Z adding 'torch/include/torch/csrc/jit/passes/constant_pooling.h' 2025-06-01T21:27:44.0802647Z adding 'torch/include/torch/csrc/jit/passes/constant_propagation.h' 2025-06-01T21:27:44.0806307Z adding 'torch/include/torch/csrc/jit/passes/create_autodiff_subgraphs.h' 2025-06-01T21:27:44.0809549Z adding 'torch/include/torch/csrc/jit/passes/create_functional_graphs.h' 2025-06-01T21:27:44.0813442Z adding 'torch/include/torch/csrc/jit/passes/dead_code_elimination.h' 2025-06-01T21:27:44.0816486Z adding 'torch/include/torch/csrc/jit/passes/decompose_ops.h' 2025-06-01T21:27:44.0820208Z adding 'torch/include/torch/csrc/jit/passes/device_type_analysis.h' 2025-06-01T21:27:44.0823345Z adding 'torch/include/torch/csrc/jit/passes/dtype_analysis.h' 2025-06-01T21:27:44.0827677Z adding 'torch/include/torch/csrc/jit/passes/eliminate_no_ops.h' 2025-06-01T21:27:44.0830775Z adding 'torch/include/torch/csrc/jit/passes/erase_number_types.h' 2025-06-01T21:27:44.0834481Z adding 'torch/include/torch/csrc/jit/passes/fixup_trace_scope_blocks.h' 2025-06-01T21:27:44.0838671Z adding 'torch/include/torch/csrc/jit/passes/fold_conv_bn.h' 2025-06-01T21:27:44.0841582Z adding 'torch/include/torch/csrc/jit/passes/fold_linear_bn.h' 2025-06-01T21:27:44.0845558Z adding 'torch/include/torch/csrc/jit/passes/freeze_module.h' 2025-06-01T21:27:44.0848990Z adding 'torch/include/torch/csrc/jit/passes/frozen_concat_linear.h' 2025-06-01T21:27:44.0852736Z adding 'torch/include/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.h' 2025-06-01T21:27:44.0855986Z adding 'torch/include/torch/csrc/jit/passes/frozen_conv_folding.h' 2025-06-01T21:27:44.0859194Z adding 'torch/include/torch/csrc/jit/passes/frozen_graph_optimizations.h' 2025-06-01T21:27:44.0862769Z adding 'torch/include/torch/csrc/jit/passes/frozen_linear_folding.h' 2025-06-01T21:27:44.0865815Z adding 'torch/include/torch/csrc/jit/passes/frozen_linear_transpose.h' 2025-06-01T21:27:44.0869591Z adding 'torch/include/torch/csrc/jit/passes/frozen_ops_to_mkldnn.h' 2025-06-01T21:27:44.0872918Z adding 'torch/include/torch/csrc/jit/passes/fuse_linear.h' 2025-06-01T21:27:44.0876434Z adding 'torch/include/torch/csrc/jit/passes/fuse_relu.h' 2025-06-01T21:27:44.0880192Z adding 'torch/include/torch/csrc/jit/passes/graph_fuser.h' 2025-06-01T21:27:44.0883758Z adding 'torch/include/torch/csrc/jit/passes/graph_rewrite_helper.h' 2025-06-01T21:27:44.0887571Z adding 'torch/include/torch/csrc/jit/passes/guard_elimination.h' 2025-06-01T21:27:44.0890536Z adding 'torch/include/torch/csrc/jit/passes/hoist_conv_packed_params.h' 2025-06-01T21:27:44.0894260Z adding 'torch/include/torch/csrc/jit/passes/inline_autodiff_subgraphs.h' 2025-06-01T21:27:44.0897445Z adding 'torch/include/torch/csrc/jit/passes/inline_fork_wait.h' 2025-06-01T21:27:44.0900982Z adding 'torch/include/torch/csrc/jit/passes/inline_forked_closures.h' 2025-06-01T21:27:44.0904205Z adding 'torch/include/torch/csrc/jit/passes/inliner.h' 2025-06-01T21:27:44.0907459Z adding 'torch/include/torch/csrc/jit/passes/inplace_check.h' 2025-06-01T21:27:44.0910991Z adding 'torch/include/torch/csrc/jit/passes/insert_guards.h' 2025-06-01T21:27:44.0914203Z adding 'torch/include/torch/csrc/jit/passes/integer_value_refinement.h' 2025-06-01T21:27:44.0917639Z adding 'torch/include/torch/csrc/jit/passes/lift_closures.h' 2025-06-01T21:27:44.0920862Z adding 'torch/include/torch/csrc/jit/passes/liveness.h' 2025-06-01T21:27:44.0924749Z adding 'torch/include/torch/csrc/jit/passes/loop_unrolling.h' 2025-06-01T21:27:44.0927835Z adding 'torch/include/torch/csrc/jit/passes/lower_grad_of.h' 2025-06-01T21:27:44.0931821Z adding 'torch/include/torch/csrc/jit/passes/lower_graph.h' 2025-06-01T21:27:44.0935698Z adding 'torch/include/torch/csrc/jit/passes/lower_tuples.h' 2025-06-01T21:27:44.0939689Z adding 'torch/include/torch/csrc/jit/passes/metal_rewrite.h' 2025-06-01T21:27:44.0943582Z adding 'torch/include/torch/csrc/jit/passes/mkldnn_rewrite.h' 2025-06-01T21:27:44.0946752Z adding 'torch/include/torch/csrc/jit/passes/mobile_optimizer_type.h' 2025-06-01T21:27:44.0950571Z adding 'torch/include/torch/csrc/jit/passes/normalize_ops.h' 2025-06-01T21:27:44.0954587Z adding 'torch/include/torch/csrc/jit/passes/onednn_graph_fuser.h' 2025-06-01T21:27:44.0957790Z adding 'torch/include/torch/csrc/jit/passes/onnx.h' 2025-06-01T21:27:44.0962771Z adding 'torch/include/torch/csrc/jit/passes/pass_manager.h' 2025-06-01T21:27:44.0966836Z adding 'torch/include/torch/csrc/jit/passes/peephole.h' 2025-06-01T21:27:44.0969826Z adding 'torch/include/torch/csrc/jit/passes/peephole_alias_sensitive.h' 2025-06-01T21:27:44.0973543Z adding 'torch/include/torch/csrc/jit/passes/peephole_dict_idioms.h' 2025-06-01T21:27:44.0977050Z adding 'torch/include/torch/csrc/jit/passes/peephole_list_idioms.h' 2025-06-01T21:27:44.0980965Z adding 'torch/include/torch/csrc/jit/passes/peephole_non_tensor.h' 2025-06-01T21:27:44.0984398Z adding 'torch/include/torch/csrc/jit/passes/prepack_folding.h' 2025-06-01T21:27:44.0987395Z adding 'torch/include/torch/csrc/jit/passes/refine_tuple_types.h' 2025-06-01T21:27:44.0990762Z adding 'torch/include/torch/csrc/jit/passes/remove_dropout.h' 2025-06-01T21:27:44.0995012Z adding 'torch/include/torch/csrc/jit/passes/remove_exceptions.h' 2025-06-01T21:27:44.0998190Z adding 'torch/include/torch/csrc/jit/passes/remove_expands.h' 2025-06-01T21:27:44.1001683Z adding 'torch/include/torch/csrc/jit/passes/remove_inplace_ops.h' 2025-06-01T21:27:44.1006058Z adding 'torch/include/torch/csrc/jit/passes/remove_mutation.h' 2025-06-01T21:27:44.1011019Z adding 'torch/include/torch/csrc/jit/passes/remove_redundant_profiles.h' 2025-06-01T21:27:44.1015781Z adding 'torch/include/torch/csrc/jit/passes/replacement_of_old_operators.h' 2025-06-01T21:27:44.1020389Z adding 'torch/include/torch/csrc/jit/passes/requires_grad_analysis.h' 2025-06-01T21:27:44.1025543Z adding 'torch/include/torch/csrc/jit/passes/restore_mutation.h' 2025-06-01T21:27:44.1029684Z adding 'torch/include/torch/csrc/jit/passes/shape_analysis.h' 2025-06-01T21:27:44.1033550Z adding 'torch/include/torch/csrc/jit/passes/specialize_autogradzero.h' 2025-06-01T21:27:44.1037775Z adding 'torch/include/torch/csrc/jit/passes/subgraph_rewrite.h' 2025-06-01T21:27:44.1042198Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_analysis.h' 2025-06-01T21:27:44.1045977Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_cache.h' 2025-06-01T21:27:44.1050440Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.h' 2025-06-01T21:27:44.1053854Z adding 'torch/include/torch/csrc/jit/passes/tensorexpr_fuser.h' 2025-06-01T21:27:44.1057583Z adding 'torch/include/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.h' 2025-06-01T21:27:44.1061418Z adding 'torch/include/torch/csrc/jit/passes/value_refinement_utils.h' 2025-06-01T21:27:44.1064559Z adding 'torch/include/torch/csrc/jit/passes/variadic_ops.h' 2025-06-01T21:27:44.1067720Z adding 'torch/include/torch/csrc/jit/passes/vulkan_rewrite.h' 2025-06-01T21:27:44.1070809Z adding 'torch/include/torch/csrc/jit/passes/xnnpack_rewrite.h' 2025-06-01T21:27:44.1075732Z adding 'torch/include/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.h' 2025-06-01T21:27:44.1079986Z adding 'torch/include/torch/csrc/jit/passes/onnx/cast_all_constant_to_floating.h' 2025-06-01T21:27:44.1083050Z adding 'torch/include/torch/csrc/jit/passes/onnx/constant_fold.h' 2025-06-01T21:27:44.1086922Z adding 'torch/include/torch/csrc/jit/passes/onnx/constant_map.h' 2025-06-01T21:27:44.1090105Z adding 'torch/include/torch/csrc/jit/passes/onnx/deduplicate_initializers.h' 2025-06-01T21:27:44.1093110Z adding 'torch/include/torch/csrc/jit/passes/onnx/eliminate_unused_items.h' 2025-06-01T21:27:44.1096007Z adding 'torch/include/torch/csrc/jit/passes/onnx/eval_peephole.h' 2025-06-01T21:27:44.1098985Z adding 'torch/include/torch/csrc/jit/passes/onnx/fixup_onnx_controlflow.h' 2025-06-01T21:27:44.1102700Z adding 'torch/include/torch/csrc/jit/passes/onnx/function_extraction.h' 2025-06-01T21:27:44.1106232Z adding 'torch/include/torch/csrc/jit/passes/onnx/function_substitution.h' 2025-06-01T21:27:44.1109885Z adding 'torch/include/torch/csrc/jit/passes/onnx/helper.h' 2025-06-01T21:27:44.1113200Z adding 'torch/include/torch/csrc/jit/passes/onnx/list_model_parameters.h' 2025-06-01T21:27:44.1116197Z adding 'torch/include/torch/csrc/jit/passes/onnx/naming.h' 2025-06-01T21:27:44.1119295Z adding 'torch/include/torch/csrc/jit/passes/onnx/onnx_log.h' 2025-06-01T21:27:44.1122237Z adding 'torch/include/torch/csrc/jit/passes/onnx/peephole.h' 2025-06-01T21:27:44.1125342Z adding 'torch/include/torch/csrc/jit/passes/onnx/prepare_division_for_onnx.h' 2025-06-01T21:27:44.1128236Z adding 'torch/include/torch/csrc/jit/passes/onnx/preprocess_for_onnx.h' 2025-06-01T21:27:44.1131200Z adding 'torch/include/torch/csrc/jit/passes/onnx/remove_inplace_ops_for_onnx.h' 2025-06-01T21:27:44.1134314Z adding 'torch/include/torch/csrc/jit/passes/onnx/scalar_type_analysis.h' 2025-06-01T21:27:44.1138247Z adding 'torch/include/torch/csrc/jit/passes/onnx/shape_type_inference.h' 2025-06-01T21:27:44.1141401Z adding 'torch/include/torch/csrc/jit/passes/onnx/unpack_quantized_weights.h' 2025-06-01T21:27:44.1145393Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/autograd_function_process.h' 2025-06-01T21:27:44.1148748Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/common.h' 2025-06-01T21:27:44.1152530Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_conversion.h' 2025-06-01T21:27:44.1155933Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_encapsulation.h' 2025-06-01T21:27:44.1160076Z adding 'torch/include/torch/csrc/jit/passes/quantization/dedup_module_uses.h' 2025-06-01T21:27:44.1163575Z adding 'torch/include/torch/csrc/jit/passes/quantization/finalize.h' 2025-06-01T21:27:44.1166614Z adding 'torch/include/torch/csrc/jit/passes/quantization/fusion_passes.h' 2025-06-01T21:27:44.1171179Z adding 'torch/include/torch/csrc/jit/passes/quantization/helper.h' 2025-06-01T21:27:44.1174932Z adding 'torch/include/torch/csrc/jit/passes/quantization/insert_observers.h' 2025-06-01T21:27:44.1178336Z adding 'torch/include/torch/csrc/jit/passes/quantization/insert_quant_dequant.h' 2025-06-01T21:27:44.1189032Z adding 'torch/include/torch/csrc/jit/passes/quantization/quantization_patterns.h' 2025-06-01T21:27:44.1193503Z adding 'torch/include/torch/csrc/jit/passes/quantization/quantization_type.h' 2025-06-01T21:27:44.1196625Z adding 'torch/include/torch/csrc/jit/passes/quantization/register_packed_params.h' 2025-06-01T21:27:44.1200648Z adding 'torch/include/torch/csrc/jit/passes/utils/check_alias_annotation.h' 2025-06-01T21:27:44.1205173Z adding 'torch/include/torch/csrc/jit/passes/utils/memory_dag.h' 2025-06-01T21:27:44.1208560Z adding 'torch/include/torch/csrc/jit/passes/utils/op_registry.h' 2025-06-01T21:27:44.1211606Z adding 'torch/include/torch/csrc/jit/passes/utils/optimization_utils.h' 2025-06-01T21:27:44.1215123Z adding 'torch/include/torch/csrc/jit/passes/utils/subgraph_utils.h' 2025-06-01T21:27:44.1219180Z adding 'torch/include/torch/csrc/jit/python/init.h' 2025-06-01T21:27:44.1222550Z adding 'torch/include/torch/csrc/jit/python/module_python.h' 2025-06-01T21:27:44.1227142Z adding 'torch/include/torch/csrc/jit/python/pybind.h' 2025-06-01T21:27:44.1243901Z adding 'torch/include/torch/csrc/jit/python/pybind_utils.h' 2025-06-01T21:27:44.1248901Z adding 'torch/include/torch/csrc/jit/python/python_arg_flatten.h' 2025-06-01T21:27:44.1252124Z adding 'torch/include/torch/csrc/jit/python/python_custom_class.h' 2025-06-01T21:27:44.1255825Z adding 'torch/include/torch/csrc/jit/python/python_dict.h' 2025-06-01T21:27:44.1259711Z adding 'torch/include/torch/csrc/jit/python/python_ir.h' 2025-06-01T21:27:44.1263641Z adding 'torch/include/torch/csrc/jit/python/python_ivalue.h' 2025-06-01T21:27:44.1268123Z adding 'torch/include/torch/csrc/jit/python/python_list.h' 2025-06-01T21:27:44.1273531Z adding 'torch/include/torch/csrc/jit/python/python_sugared_value.h' 2025-06-01T21:27:44.1277079Z adding 'torch/include/torch/csrc/jit/python/python_tracer.h' 2025-06-01T21:27:44.1280096Z adding 'torch/include/torch/csrc/jit/python/python_tree_views.h' 2025-06-01T21:27:44.1282958Z adding 'torch/include/torch/csrc/jit/python/script_init.h' 2025-06-01T21:27:44.1285902Z adding 'torch/include/torch/csrc/jit/python/update_graph_executor_opt.h' 2025-06-01T21:27:44.1288762Z adding 'torch/include/torch/csrc/jit/python/utf8_decoding_ignore.h' 2025-06-01T21:27:44.1297745Z adding 'torch/include/torch/csrc/jit/runtime/argument_spec.h' 2025-06-01T21:27:44.1302459Z adding 'torch/include/torch/csrc/jit/runtime/autodiff.h' 2025-06-01T21:27:44.1306698Z adding 'torch/include/torch/csrc/jit/runtime/calculate_necessary_args.h' 2025-06-01T21:27:44.1310184Z adding 'torch/include/torch/csrc/jit/runtime/custom_operator.h' 2025-06-01T21:27:44.1314330Z adding 'torch/include/torch/csrc/jit/runtime/decomposition_registry.h' 2025-06-01T21:27:44.1318010Z adding 'torch/include/torch/csrc/jit/runtime/decomposition_registry_util.h' 2025-06-01T21:27:44.1321209Z adding 'torch/include/torch/csrc/jit/runtime/exception_message.h' 2025-06-01T21:27:44.1325942Z adding 'torch/include/torch/csrc/jit/runtime/graph_executor.h' 2025-06-01T21:27:44.1330610Z adding 'torch/include/torch/csrc/jit/runtime/graph_executor_impl.h' 2025-06-01T21:27:44.1335273Z adding 'torch/include/torch/csrc/jit/runtime/graph_iterator.h' 2025-06-01T21:27:44.1340642Z adding 'torch/include/torch/csrc/jit/runtime/instruction.h' 2025-06-01T21:27:44.1345599Z adding 'torch/include/torch/csrc/jit/runtime/interpreter.h' 2025-06-01T21:27:44.1349211Z adding 'torch/include/torch/csrc/jit/runtime/jit_exception.h' 2025-06-01T21:27:44.1352421Z adding 'torch/include/torch/csrc/jit/runtime/jit_trace.h' 2025-06-01T21:27:44.1356618Z adding 'torch/include/torch/csrc/jit/runtime/logging.h' 2025-06-01T21:27:44.1362932Z adding 'torch/include/torch/csrc/jit/runtime/operator.h' 2025-06-01T21:27:44.1366625Z adding 'torch/include/torch/csrc/jit/runtime/operator_options.h' 2025-06-01T21:27:44.1369907Z adding 'torch/include/torch/csrc/jit/runtime/print_handler.h' 2025-06-01T21:27:44.1374301Z adding 'torch/include/torch/csrc/jit/runtime/profiling_graph_executor_impl.h' 2025-06-01T21:27:44.1379965Z adding 'torch/include/torch/csrc/jit/runtime/profiling_record.h' 2025-06-01T21:27:44.1390685Z adding 'torch/include/torch/csrc/jit/runtime/register_ops_utils.h' 2025-06-01T21:27:44.1395970Z adding 'torch/include/torch/csrc/jit/runtime/script_profile.h' 2025-06-01T21:27:44.1399914Z adding 'torch/include/torch/csrc/jit/runtime/serialized_shape_function_registry.h' 2025-06-01T21:27:44.1403200Z adding 'torch/include/torch/csrc/jit/runtime/shape_function_registry.h' 2025-06-01T21:27:44.1406662Z adding 'torch/include/torch/csrc/jit/runtime/simple_graph_executor_impl.h' 2025-06-01T21:27:44.1410392Z adding 'torch/include/torch/csrc/jit/runtime/slice_indices_adjust.h' 2025-06-01T21:27:44.1413606Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_script.h' 2025-06-01T21:27:44.1417853Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_shape_registry.h' 2025-06-01T21:27:44.1421156Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_shape_registry_util.h' 2025-06-01T21:27:44.1424872Z adding 'torch/include/torch/csrc/jit/runtime/vararg_functions.h' 2025-06-01T21:27:44.1428545Z adding 'torch/include/torch/csrc/jit/runtime/variable_tensor_list.h' 2025-06-01T21:27:44.1434139Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/can_emit_inline.h' 2025-06-01T21:27:44.1447084Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/code_impl.h' 2025-06-01T21:27:44.1451263Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/frame.h' 2025-06-01T21:27:44.1455186Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/preprocess_graph.h' 2025-06-01T21:27:44.1461211Z adding 'torch/include/torch/csrc/jit/runtime/static/ProcessedNodeInputs.h' 2025-06-01T21:27:44.1464975Z adding 'torch/include/torch/csrc/jit/runtime/static/fusion.h' 2025-06-01T21:27:44.1479883Z adding 'torch/include/torch/csrc/jit/runtime/static/impl.h' 2025-06-01T21:27:44.1484290Z adding 'torch/include/torch/csrc/jit/runtime/static/init.h' 2025-06-01T21:27:44.1490708Z adding 'torch/include/torch/csrc/jit/runtime/static/memory_planner.h' 2025-06-01T21:27:44.1495730Z adding 'torch/include/torch/csrc/jit/runtime/static/ops.h' 2025-06-01T21:27:44.1501045Z adding 'torch/include/torch/csrc/jit/runtime/static/passes.h' 2025-06-01T21:27:44.1506609Z adding 'torch/include/torch/csrc/jit/runtime/static/processed_node_wrapper.h' 2025-06-01T21:27:44.1510389Z adding 'torch/include/torch/csrc/jit/runtime/static/static_method.h' 2025-06-01T21:27:44.1514901Z adding 'torch/include/torch/csrc/jit/runtime/static/te_wrapper.h' 2025-06-01T21:27:44.1522733Z adding 'torch/include/torch/csrc/jit/serialization/callstack_debug_info_serialization.h' 2025-06-01T21:27:44.1531266Z adding 'torch/include/torch/csrc/jit/serialization/export.h' 2025-06-01T21:27:44.1535428Z adding 'torch/include/torch/csrc/jit/serialization/export_bytecode.h' 2025-06-01T21:27:44.1539881Z adding 'torch/include/torch/csrc/jit/serialization/flatbuffer_serializer.h' 2025-06-01T21:27:44.1543064Z adding 'torch/include/torch/csrc/jit/serialization/flatbuffer_serializer_jit.h' 2025-06-01T21:27:44.1547490Z adding 'torch/include/torch/csrc/jit/serialization/import.h' 2025-06-01T21:27:44.1551332Z adding 'torch/include/torch/csrc/jit/serialization/import_export_constants.h' 2025-06-01T21:27:44.1555216Z adding 'torch/include/torch/csrc/jit/serialization/import_export_functions.h' 2025-06-01T21:27:44.1558002Z adding 'torch/include/torch/csrc/jit/serialization/import_export_helpers.h' 2025-06-01T21:27:44.1561094Z adding 'torch/include/torch/csrc/jit/serialization/import_read.h' 2025-06-01T21:27:44.1565603Z adding 'torch/include/torch/csrc/jit/serialization/import_source.h' 2025-06-01T21:27:44.1586502Z adding 'torch/include/torch/csrc/jit/serialization/mobile_bytecode_generated.h' 2025-06-01T21:27:44.1591908Z adding 'torch/include/torch/csrc/jit/serialization/onnx.h' 2025-06-01T21:27:44.1595934Z adding 'torch/include/torch/csrc/jit/serialization/pickle.h' 2025-06-01T21:27:44.1602812Z adding 'torch/include/torch/csrc/jit/serialization/pickler.h' 2025-06-01T21:27:44.1606548Z adding 'torch/include/torch/csrc/jit/serialization/python_print.h' 2025-06-01T21:27:44.1610253Z adding 'torch/include/torch/csrc/jit/serialization/source_range_serialization.h' 2025-06-01T21:27:44.1613962Z adding 'torch/include/torch/csrc/jit/serialization/source_range_serialization_impl.h' 2025-06-01T21:27:44.1617477Z adding 'torch/include/torch/csrc/jit/serialization/storage_context.h' 2025-06-01T21:27:44.1620752Z adding 'torch/include/torch/csrc/jit/serialization/type_name_uniquer.h' 2025-06-01T21:27:44.1625651Z adding 'torch/include/torch/csrc/jit/serialization/unpickler.h' 2025-06-01T21:27:44.1632246Z adding 'torch/include/torch/csrc/jit/tensorexpr/analysis.h' 2025-06-01T21:27:44.1636528Z adding 'torch/include/torch/csrc/jit/tensorexpr/block_codegen.h' 2025-06-01T21:27:44.1640185Z adding 'torch/include/torch/csrc/jit/tensorexpr/bounds_inference.h' 2025-06-01T21:27:44.1644342Z adding 'torch/include/torch/csrc/jit/tensorexpr/bounds_overlap.h' 2025-06-01T21:27:44.1649350Z adding 'torch/include/torch/csrc/jit/tensorexpr/codegen.h' 2025-06-01T21:27:44.1653538Z adding 'torch/include/torch/csrc/jit/tensorexpr/cpp_codegen.h' 2025-06-01T21:27:44.1656860Z adding 'torch/include/torch/csrc/jit/tensorexpr/cpp_intrinsics.h' 2025-06-01T21:27:44.1661583Z adding 'torch/include/torch/csrc/jit/tensorexpr/cuda_codegen.h' 2025-06-01T21:27:44.1879241Z adding 'torch/include/torch/csrc/jit/tensorexpr/cuda_random.h' 2025-06-01T21:27:44.1885528Z adding 'torch/include/torch/csrc/jit/tensorexpr/eval.h' 2025-06-01T21:27:44.1890205Z adding 'torch/include/torch/csrc/jit/tensorexpr/exceptions.h' 2025-06-01T21:27:44.1896993Z adding 'torch/include/torch/csrc/jit/tensorexpr/expr.h' 2025-06-01T21:27:44.1901838Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions.h' 2025-06-01T21:27:44.1905192Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions_core.h' 2025-06-01T21:27:44.1909556Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions_registry.h' 2025-06-01T21:27:44.1914196Z adding 'torch/include/torch/csrc/jit/tensorexpr/fwd_decls.h' 2025-06-01T21:27:44.1918592Z adding 'torch/include/torch/csrc/jit/tensorexpr/graph_opt.h' 2025-06-01T21:27:44.1923401Z adding 'torch/include/torch/csrc/jit/tensorexpr/half_support.h' 2025-06-01T21:27:44.1928898Z adding 'torch/include/torch/csrc/jit/tensorexpr/hash_provider.h' 2025-06-01T21:27:44.1932860Z adding 'torch/include/torch/csrc/jit/tensorexpr/intrinsic_symbols.h' 2025-06-01T21:27:44.1941647Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir.h' 2025-06-01T21:27:44.1945948Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_cloner.h' 2025-06-01T21:27:44.1949849Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_mutator.h' 2025-06-01T21:27:44.1953991Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_printer.h' 2025-06-01T21:27:44.1961178Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_simplifier.h' 2025-06-01T21:27:44.1965489Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_verifier.h' 2025-06-01T21:27:44.1969333Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_visitor.h' 2025-06-01T21:27:44.1976358Z adding 'torch/include/torch/csrc/jit/tensorexpr/kernel.h' 2025-06-01T21:27:44.1981207Z adding 'torch/include/torch/csrc/jit/tensorexpr/llvm_codegen.h' 2025-06-01T21:27:44.1985358Z adding 'torch/include/torch/csrc/jit/tensorexpr/llvm_jit.h' 2025-06-01T21:27:44.1995275Z adding 'torch/include/torch/csrc/jit/tensorexpr/loopnest.h' 2025-06-01T21:27:44.2000027Z adding 'torch/include/torch/csrc/jit/tensorexpr/loopnest_randomization.h' 2025-06-01T21:27:44.2004649Z adding 'torch/include/torch/csrc/jit/tensorexpr/lowerings.h' 2025-06-01T21:27:44.2012543Z adding 'torch/include/torch/csrc/jit/tensorexpr/mem_dependency_checker.h' 2025-06-01T21:27:44.2020427Z adding 'torch/include/torch/csrc/jit/tensorexpr/reduction.h' 2025-06-01T21:27:44.2030918Z adding 'torch/include/torch/csrc/jit/tensorexpr/registerizer.h' 2025-06-01T21:27:44.2040600Z adding 'torch/include/torch/csrc/jit/tensorexpr/stmt.h' 2025-06-01T21:27:44.2046778Z adding 'torch/include/torch/csrc/jit/tensorexpr/tensor.h' 2025-06-01T21:27:44.2051044Z adding 'torch/include/torch/csrc/jit/tensorexpr/tensorexpr_init.h' 2025-06-01T21:27:44.2055197Z adding 'torch/include/torch/csrc/jit/tensorexpr/types.h' 2025-06-01T21:27:44.2058634Z adding 'torch/include/torch/csrc/jit/tensorexpr/unique_name_manager.h' 2025-06-01T21:27:44.2062886Z adding 'torch/include/torch/csrc/jit/tensorexpr/var_substitutor.h' 2025-06-01T21:27:44.2067370Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/conv2d.h' 2025-06-01T21:27:44.2070585Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/matmul.h' 2025-06-01T21:27:44.2074150Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/misc.h' 2025-06-01T21:27:44.2077976Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/norm.h' 2025-06-01T21:27:44.2081110Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/operators.h' 2025-06-01T21:27:44.2084392Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/pointwise.h' 2025-06-01T21:27:44.2088033Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/quantization.h' 2025-06-01T21:27:44.2091290Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/reduction.h' 2025-06-01T21:27:44.2094347Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/softmax.h' 2025-06-01T21:27:44.2098399Z adding 'torch/include/torch/csrc/jit/testing/catch_utils.hpp' 2025-06-01T21:27:44.2101926Z adding 'torch/include/torch/csrc/jit/testing/file_check.h' 2025-06-01T21:27:44.2105143Z adding 'torch/include/torch/csrc/jit/testing/hooks_for_testing.h' 2025-06-01T21:27:44.2110657Z adding 'torch/include/torch/csrc/lazy/backend/backend_data.h' 2025-06-01T21:27:44.2114695Z adding 'torch/include/torch/csrc/lazy/backend/backend_device.h' 2025-06-01T21:27:44.2119015Z adding 'torch/include/torch/csrc/lazy/backend/backend_interface.h' 2025-06-01T21:27:44.2122867Z adding 'torch/include/torch/csrc/lazy/backend/lowering_context.h' 2025-06-01T21:27:44.2128015Z adding 'torch/include/torch/csrc/lazy/core/cache.h' 2025-06-01T21:27:44.2131322Z adding 'torch/include/torch/csrc/lazy/core/config.h' 2025-06-01T21:27:44.2134597Z adding 'torch/include/torch/csrc/lazy/core/debug_util.h' 2025-06-01T21:27:44.2137918Z adding 'torch/include/torch/csrc/lazy/core/dynamic_ir.h' 2025-06-01T21:27:44.2142429Z adding 'torch/include/torch/csrc/lazy/core/hash.h' 2025-06-01T21:27:44.2146194Z adding 'torch/include/torch/csrc/lazy/core/helpers.h' 2025-06-01T21:27:44.2151405Z adding 'torch/include/torch/csrc/lazy/core/ir.h' 2025-06-01T21:27:44.2156091Z adding 'torch/include/torch/csrc/lazy/core/ir_builder.h' 2025-06-01T21:27:44.2159538Z adding 'torch/include/torch/csrc/lazy/core/ir_dump_util.h' 2025-06-01T21:27:44.2162774Z adding 'torch/include/torch/csrc/lazy/core/ir_metadata.h' 2025-06-01T21:27:44.2166055Z adding 'torch/include/torch/csrc/lazy/core/ir_util.h' 2025-06-01T21:27:44.2172611Z adding 'torch/include/torch/csrc/lazy/core/lazy_graph_executor.h' 2025-06-01T21:27:44.2177899Z adding 'torch/include/torch/csrc/lazy/core/metrics.h' 2025-06-01T21:27:44.2181661Z adding 'torch/include/torch/csrc/lazy/core/multi_wait.h' 2025-06-01T21:27:44.2185042Z adding 'torch/include/torch/csrc/lazy/core/permutation_util.h' 2025-06-01T21:27:44.2188937Z adding 'torch/include/torch/csrc/lazy/core/shape.h' 2025-06-01T21:27:44.2193678Z adding 'torch/include/torch/csrc/lazy/core/shape_inference.h' 2025-06-01T21:27:44.2199623Z adding 'torch/include/torch/csrc/lazy/core/tensor.h' 2025-06-01T21:27:44.2203362Z adding 'torch/include/torch/csrc/lazy/core/tensor_impl.h' 2025-06-01T21:27:44.2207014Z adding 'torch/include/torch/csrc/lazy/core/tensor_util.h' 2025-06-01T21:27:44.2210217Z adding 'torch/include/torch/csrc/lazy/core/thread_pool.h' 2025-06-01T21:27:44.2213801Z adding 'torch/include/torch/csrc/lazy/core/trie.h' 2025-06-01T21:27:44.2217133Z adding 'torch/include/torch/csrc/lazy/core/unique.h' 2025-06-01T21:27:44.2220867Z adding 'torch/include/torch/csrc/lazy/core/util.h' 2025-06-01T21:27:44.2225134Z adding 'torch/include/torch/csrc/lazy/core/internal_ops/ltc_ops.h' 2025-06-01T21:27:44.2228997Z adding 'torch/include/torch/csrc/lazy/core/ops/arithmetic_ir_ops.h' 2025-06-01T21:27:44.2232217Z adding 'torch/include/torch/csrc/lazy/core/ops/utils.h' 2025-06-01T21:27:44.2267567Z adding 'torch/include/torch/csrc/lazy/generated/LazyIr.h' 2025-06-01T21:27:44.2280582Z adding 'torch/include/torch/csrc/lazy/generated/LazyNativeFunctions.h' 2025-06-01T21:27:44.2284855Z adding 'torch/include/torch/csrc/lazy/generated/LazyNonNativeIr.h' 2025-06-01T21:27:44.2289041Z adding 'torch/include/torch/csrc/lazy/python/init.h' 2025-06-01T21:27:44.2292126Z adding 'torch/include/torch/csrc/lazy/python/python_util.h' 2025-06-01T21:27:44.2296017Z adding 'torch/include/torch/csrc/lazy/ts_backend/config.h' 2025-06-01T21:27:44.2299489Z adding 'torch/include/torch/csrc/lazy/ts_backend/dynamic_ir.h' 2025-06-01T21:27:44.2302975Z adding 'torch/include/torch/csrc/lazy/ts_backend/ir_builder.h' 2025-06-01T21:27:44.2306071Z adding 'torch/include/torch/csrc/lazy/ts_backend/tensor_aten_ops.h' 2025-06-01T21:27:44.2309196Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_autograd_functions.h' 2025-06-01T21:27:44.2313102Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_backend_impl.h' 2025-06-01T21:27:44.2316406Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_eager_fallback.h' 2025-06-01T21:27:44.2321155Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_lowering_context.h' 2025-06-01T21:27:44.2325741Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_node.h' 2025-06-01T21:27:44.2329051Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_node_lowering.h' 2025-06-01T21:27:44.2333861Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/device_data.h' 2025-06-01T21:27:44.2337925Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/generic.h' 2025-06-01T21:27:44.2341922Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/to_copy.h' 2025-06-01T21:27:44.2348228Z adding 'torch/include/torch/csrc/monitor/counters.h' 2025-06-01T21:27:44.2352977Z adding 'torch/include/torch/csrc/monitor/events.h' 2025-06-01T21:27:44.2356610Z adding 'torch/include/torch/csrc/monitor/python_init.h' 2025-06-01T21:27:44.2360349Z adding 'torch/include/torch/csrc/mps/Module.h' 2025-06-01T21:27:44.2364641Z adding 'torch/include/torch/csrc/mtia/Module.h' 2025-06-01T21:27:44.2369045Z adding 'torch/include/torch/csrc/mtia/profiler/MTIAMemoryProfiler.h' 2025-06-01T21:27:44.2372779Z adding 'torch/include/torch/csrc/multiprocessing/init.h' 2025-06-01T21:27:44.2377252Z adding 'torch/include/torch/csrc/onnx/back_compat.h' 2025-06-01T21:27:44.2380701Z adding 'torch/include/torch/csrc/onnx/init.h' 2025-06-01T21:27:44.2384407Z adding 'torch/include/torch/csrc/onnx/onnx.h' 2025-06-01T21:27:44.2388662Z adding 'torch/include/torch/csrc/profiler/api.h' 2025-06-01T21:27:44.2397913Z adding 'torch/include/torch/csrc/profiler/collection.h' 2025-06-01T21:27:44.2402583Z adding 'torch/include/torch/csrc/profiler/combined_traceback.h' 2025-06-01T21:27:44.2407984Z adding 'torch/include/torch/csrc/profiler/containers.h' 2025-06-01T21:27:44.2412351Z adding 'torch/include/torch/csrc/profiler/data_flow.h' 2025-06-01T21:27:44.2415751Z adding 'torch/include/torch/csrc/profiler/events.h' 2025-06-01T21:27:44.2420407Z adding 'torch/include/torch/csrc/profiler/kineto_client_interface.h' 2025-06-01T21:27:44.2425593Z adding 'torch/include/torch/csrc/profiler/kineto_shim.h' 2025-06-01T21:27:44.2430232Z adding 'torch/include/torch/csrc/profiler/perf-inl.h' 2025-06-01T21:27:44.2434457Z adding 'torch/include/torch/csrc/profiler/perf.h' 2025-06-01T21:27:44.2439676Z adding 'torch/include/torch/csrc/profiler/util.h' 2025-06-01T21:27:44.2446126Z adding 'torch/include/torch/csrc/profiler/orchestration/observer.h' 2025-06-01T21:27:44.2450596Z adding 'torch/include/torch/csrc/profiler/orchestration/python_tracer.h' 2025-06-01T21:27:44.2454176Z adding 'torch/include/torch/csrc/profiler/orchestration/vulkan.h' 2025-06-01T21:27:44.2458576Z adding 'torch/include/torch/csrc/profiler/python/combined_traceback.h' 2025-06-01T21:27:44.2462346Z adding 'torch/include/torch/csrc/profiler/python/init.h' 2025-06-01T21:27:44.2465775Z adding 'torch/include/torch/csrc/profiler/python/pybind.h' 2025-06-01T21:27:44.2470347Z adding 'torch/include/torch/csrc/profiler/standalone/execution_trace_observer.h' 2025-06-01T21:27:44.2473901Z adding 'torch/include/torch/csrc/profiler/standalone/itt_observer.h' 2025-06-01T21:27:44.2477012Z adding 'torch/include/torch/csrc/profiler/standalone/nvtx_observer.h' 2025-06-01T21:27:44.2480929Z adding 'torch/include/torch/csrc/profiler/standalone/privateuse1_observer.h' 2025-06-01T21:27:44.2485583Z adding 'torch/include/torch/csrc/profiler/stubs/base.h' 2025-06-01T21:27:44.2490154Z adding 'torch/include/torch/csrc/profiler/unwind/action.h' 2025-06-01T21:27:44.2494471Z adding 'torch/include/torch/csrc/profiler/unwind/communicate.h' 2025-06-01T21:27:44.2500000Z adding 'torch/include/torch/csrc/profiler/unwind/debug_info.h' 2025-06-01T21:27:44.2504180Z adding 'torch/include/torch/csrc/profiler/unwind/dwarf_enums.h' 2025-06-01T21:27:44.2508489Z adding 'torch/include/torch/csrc/profiler/unwind/dwarf_symbolize_enums.h' 2025-06-01T21:27:44.2514180Z adding 'torch/include/torch/csrc/profiler/unwind/eh_frame_hdr.h' 2025-06-01T21:27:44.2520120Z adding 'torch/include/torch/csrc/profiler/unwind/fast_symbolizer.h' 2025-06-01T21:27:44.2526787Z adding 'torch/include/torch/csrc/profiler/unwind/fde.h' 2025-06-01T21:27:44.2533316Z adding 'torch/include/torch/csrc/profiler/unwind/lexer.h' 2025-06-01T21:27:44.2540103Z adding 'torch/include/torch/csrc/profiler/unwind/line_number_program.h' 2025-06-01T21:27:44.2545080Z adding 'torch/include/torch/csrc/profiler/unwind/mem_file.h' 2025-06-01T21:27:44.2549335Z adding 'torch/include/torch/csrc/profiler/unwind/range_table.h' 2025-06-01T21:27:44.2553644Z adding 'torch/include/torch/csrc/profiler/unwind/sections.h' 2025-06-01T21:27:44.2557822Z adding 'torch/include/torch/csrc/profiler/unwind/unwind.h' 2025-06-01T21:27:44.2561163Z adding 'torch/include/torch/csrc/profiler/unwind/unwind_error.h' 2025-06-01T21:27:44.2564729Z adding 'torch/include/torch/csrc/profiler/unwind/unwinder.h' 2025-06-01T21:27:44.2572126Z adding 'torch/include/torch/csrc/stable/library.h' 2025-06-01T21:27:44.2576640Z adding 'torch/include/torch/csrc/tensor/python_tensor.h' 2025-06-01T21:27:44.2582081Z adding 'torch/include/torch/csrc/utils/byte_order.h' 2025-06-01T21:27:44.2586135Z adding 'torch/include/torch/csrc/utils/cpp_stacktraces.h' 2025-06-01T21:27:44.2589139Z adding 'torch/include/torch/csrc/utils/cuda_enabled.h' 2025-06-01T21:27:44.2592838Z adding 'torch/include/torch/csrc/utils/device_lazy_init.h' 2025-06-01T21:27:44.2596412Z adding 'torch/include/torch/csrc/utils/disable_torch_function.h' 2025-06-01T21:27:44.2619343Z adding 'torch/include/torch/csrc/utils/generated_serialization_types.h' 2025-06-01T21:27:44.2624939Z adding 'torch/include/torch/csrc/utils/init.h' 2025-06-01T21:27:44.2627994Z adding 'torch/include/torch/csrc/utils/invalid_arguments.h' 2025-06-01T21:27:44.2630953Z adding 'torch/include/torch/csrc/utils/nested.h' 2025-06-01T21:27:44.2641741Z adding 'torch/include/torch/csrc/utils/numpy_stub.h' 2025-06-01T21:27:44.2645484Z adding 'torch/include/torch/csrc/utils/object_ptr.h' 2025-06-01T21:27:44.2648687Z adding 'torch/include/torch/csrc/utils/out_types.h' 2025-06-01T21:27:44.2654183Z adding 'torch/include/torch/csrc/utils/pybind.h' 2025-06-01T21:27:44.2658383Z adding 'torch/include/torch/csrc/utils/pycfunction_helpers.h' 2025-06-01T21:27:44.2661440Z adding 'torch/include/torch/csrc/utils/pyobject_preservation.h' 2025-06-01T21:27:44.2675493Z adding 'torch/include/torch/csrc/utils/python_arg_parser.h' 2025-06-01T21:27:44.2679801Z adding 'torch/include/torch/csrc/utils/python_compat.h' 2025-06-01T21:27:44.2682874Z adding 'torch/include/torch/csrc/utils/python_dispatch.h' 2025-06-01T21:27:44.2687082Z adding 'torch/include/torch/csrc/utils/python_numbers.h' 2025-06-01T21:27:44.2690691Z adding 'torch/include/torch/csrc/utils/python_raii.h' 2025-06-01T21:27:44.2694730Z adding 'torch/include/torch/csrc/utils/python_scalars.h' 2025-06-01T21:27:44.2698795Z adding 'torch/include/torch/csrc/utils/python_strings.h' 2025-06-01T21:27:44.2702009Z adding 'torch/include/torch/csrc/utils/python_stub.h' 2025-06-01T21:27:44.2706321Z adding 'torch/include/torch/csrc/utils/python_symnode.h' 2025-06-01T21:27:44.2709801Z adding 'torch/include/torch/csrc/utils/python_torch_function_mode.h' 2025-06-01T21:27:44.2713080Z adding 'torch/include/torch/csrc/utils/python_tuples.h' 2025-06-01T21:27:44.2726161Z adding 'torch/include/torch/csrc/utils/pythoncapi_compat.h' 2025-06-01T21:27:44.2730952Z adding 'torch/include/torch/csrc/utils/schema_info.h' 2025-06-01T21:27:44.2734419Z adding 'torch/include/torch/csrc/utils/six.h' 2025-06-01T21:27:44.2737411Z adding 'torch/include/torch/csrc/utils/structseq.h' 2025-06-01T21:27:44.2740480Z adding 'torch/include/torch/csrc/utils/tensor_apply.h' 2025-06-01T21:27:44.2743332Z adding 'torch/include/torch/csrc/utils/tensor_dtypes.h' 2025-06-01T21:27:44.2746852Z adding 'torch/include/torch/csrc/utils/tensor_flatten.h' 2025-06-01T21:27:44.2749779Z adding 'torch/include/torch/csrc/utils/tensor_layouts.h' 2025-06-01T21:27:44.2752787Z adding 'torch/include/torch/csrc/utils/tensor_list.h' 2025-06-01T21:27:44.2755802Z adding 'torch/include/torch/csrc/utils/tensor_memoryformats.h' 2025-06-01T21:27:44.2759308Z adding 'torch/include/torch/csrc/utils/tensor_new.h' 2025-06-01T21:27:44.2762539Z adding 'torch/include/torch/csrc/utils/tensor_numpy.h' 2025-06-01T21:27:44.2765489Z adding 'torch/include/torch/csrc/utils/tensor_qschemes.h' 2025-06-01T21:27:44.2768819Z adding 'torch/include/torch/csrc/utils/tensor_types.h' 2025-06-01T21:27:44.2774025Z adding 'torch/include/torch/csrc/utils/throughput_benchmark-inl.h' 2025-06-01T21:27:44.2778950Z adding 'torch/include/torch/csrc/utils/throughput_benchmark.h' 2025-06-01T21:27:44.2782547Z adding 'torch/include/torch/csrc/utils/torch_dispatch_mode.h' 2025-06-01T21:27:44.2797056Z adding 'torch/include/torch/csrc/utils/variadic.h' 2025-06-01T21:27:44.2797501Z adding 'torch/include/torch/csrc/utils/verbose.h' 2025-06-01T21:27:44.2797856Z adding 'torch/include/torch/csrc/xpu/Event.h' 2025-06-01T21:27:44.2798192Z adding 'torch/include/torch/csrc/xpu/Module.h' 2025-06-01T21:27:44.2799229Z adding 'torch/include/torch/csrc/xpu/Stream.h' 2025-06-01T21:27:44.2806108Z adding 'torch/jit/__init__.py' 2025-06-01T21:27:44.2810017Z adding 'torch/jit/_async.py' 2025-06-01T21:27:44.2813255Z adding 'torch/jit/_await.py' 2025-06-01T21:27:44.2817720Z adding 'torch/jit/_builtins.py' 2025-06-01T21:27:44.2823122Z adding 'torch/jit/_check.py' 2025-06-01T21:27:44.2828108Z adding 'torch/jit/_dataclass_impls.py' 2025-06-01T21:27:44.2831270Z adding 'torch/jit/_decomposition_utils.py' 2025-06-01T21:27:44.2835298Z adding 'torch/jit/_decompositions.py' 2025-06-01T21:27:44.2840632Z adding 'torch/jit/_freeze.py' 2025-06-01T21:27:44.2845685Z adding 'torch/jit/_fuser.py' 2025-06-01T21:27:44.2848669Z adding 'torch/jit/_ir_utils.py' 2025-06-01T21:27:44.2851592Z adding 'torch/jit/_logging.py' 2025-06-01T21:27:44.2856319Z adding 'torch/jit/_monkeytype_config.py' 2025-06-01T21:27:44.2859733Z adding 'torch/jit/_pickle.py' 2025-06-01T21:27:44.2876867Z adding 'torch/jit/_recursive.py' 2025-06-01T21:27:44.2903131Z adding 'torch/jit/_script.py' 2025-06-01T21:27:44.2909448Z adding 'torch/jit/_script.pyi' 2025-06-01T21:27:44.2914991Z adding 'torch/jit/_serialization.py' 2025-06-01T21:27:44.2931131Z adding 'torch/jit/_shape_functions.py' 2025-06-01T21:27:44.2935842Z adding 'torch/jit/_state.py' 2025-06-01T21:27:44.2956424Z adding 'torch/jit/_trace.py' 2025-06-01T21:27:44.2965975Z adding 'torch/jit/annotations.py' 2025-06-01T21:27:44.2983512Z adding 'torch/jit/frontend.py' 2025-06-01T21:27:44.2988597Z adding 'torch/jit/generate_bytecode.py' 2025-06-01T21:27:44.2992363Z adding 'torch/jit/quantized.py' 2025-06-01T21:27:44.2998357Z adding 'torch/jit/supported_ops.py' 2025-06-01T21:27:44.3002193Z adding 'torch/jit/unsupported_tensor_ops.py' 2025-06-01T21:27:44.3007777Z adding 'torch/jit/_passes/__init__.py' 2025-06-01T21:27:44.3012816Z adding 'torch/jit/_passes/_property_propagation.py' 2025-06-01T21:27:44.3020945Z adding 'torch/jit/mobile/__init__.py' 2025-06-01T21:27:44.4006152Z adding 'torch/lib/XNNPACK.lib' 2025-06-01T21:27:44.4088222Z adding 'torch/lib/_C.lib' 2025-06-01T21:27:44.4198066Z adding 'torch/lib/aoti_custom_ops.dll' 2025-06-01T21:27:44.4216397Z adding 'torch/lib/aoti_custom_ops.lib' 2025-06-01T21:27:44.4450585Z adding 'torch/lib/asmjit.dll' 2025-06-01T21:27:44.4490133Z adding 'torch/lib/asmjit.lib' 2025-06-01T21:27:44.4600956Z adding 'torch/lib/backend_with_compiler.dll' 2025-06-01T21:27:44.4615006Z adding 'torch/lib/backend_with_compiler.lib' 2025-06-01T21:27:44.5079972Z adding 'torch/lib/c10.dll' 2025-06-01T21:27:44.5261867Z adding 'torch/lib/c10.lib' 2025-06-01T21:27:44.5506457Z adding 'torch/lib/c10_cuda.dll' 2025-06-01T21:27:44.5528493Z adding 'torch/lib/c10_cuda.lib' 2025-06-01T21:27:44.5540224Z adding 'torch/lib/caffe2_nvrtc.dll' 2025-06-01T21:27:44.5544635Z adding 'torch/lib/caffe2_nvrtc.lib' 2025-06-01T21:27:44.5593508Z adding 'torch/lib/cpuinfo.lib' 2025-06-01T21:28:00.6613915Z adding 'torch/lib/dnnl.lib' 2025-06-01T21:28:02.4216528Z adding 'torch/lib/fbgemm.dll' 2025-06-01T21:28:02.4533649Z adding 'torch/lib/fbgemm.lib' 2025-06-01T21:28:02.4965029Z adding 'torch/lib/fmt.lib' 2025-06-01T21:28:02.5081531Z adding 'torch/lib/jitbackend_test.dll' 2025-06-01T21:28:02.5094906Z adding 'torch/lib/jitbackend_test.lib' 2025-06-01T21:28:03.4604893Z adding 'torch/lib/kineto.lib' 2025-06-01T21:28:03.5567908Z adding 'torch/lib/libittnotify.lib' 2025-06-01T21:28:03.7050098Z adding 'torch/lib/libprotobuf-lite.lib' 2025-06-01T21:28:04.5928546Z adding 'torch/lib/libprotobuf.lib' 2025-06-01T21:28:05.5938711Z adding 'torch/lib/libprotoc.lib' 2025-06-01T21:28:05.7784212Z adding 'torch/lib/microkernels-prod.lib' 2025-06-01T21:28:05.7927222Z adding 'torch/lib/pthreadpool.lib' 2025-06-01T21:28:05.7940817Z adding 'torch/lib/shm.dll' 2025-06-01T21:28:05.7945409Z adding 'torch/lib/shm.lib' 2025-06-01T21:28:06.1578900Z adding 'torch/lib/sleef.lib' 2025-06-01T21:28:06.1784852Z adding 'torch/lib/torch.dll' 2025-06-01T21:28:06.1789584Z adding 'torch/lib/torch.lib' 2025-06-01T21:28:11.9204718Z adding 'torch/lib/torch_cpu.dll' 2025-06-01T21:28:12.7411449Z adding 'torch/lib/torch_cpu.lib' 2025-06-01T21:28:25.7957309Z adding 'torch/lib/torch_cuda.dll' 2025-06-01T21:28:26.3167657Z adding 'torch/lib/torch_cuda.lib' 2025-06-01T21:28:26.3215293Z adding 'torch/lib/torch_global_deps.dll' 2025-06-01T21:28:27.0450917Z adding 'torch/lib/torch_python.dll' 2025-06-01T21:28:27.0880628Z adding 'torch/lib/torch_python.lib' 2025-06-01T21:28:27.1098847Z adding 'torch/lib/torchbind_test.dll' 2025-06-01T21:28:27.1120077Z adding 'torch/lib/torchbind_test.lib' 2025-06-01T21:28:27.1124930Z adding 'torch/lib/libshm/alloc_info.h' 2025-06-01T21:28:27.1128300Z adding 'torch/lib/libshm/err.h' 2025-06-01T21:28:27.1131951Z adding 'torch/lib/libshm/libshm.h' 2025-06-01T21:28:27.1135558Z adding 'torch/lib/libshm/socket.h' 2025-06-01T21:28:27.1139610Z adding 'torch/lib/libshm_windows/libshm.h' 2025-06-01T21:28:27.1175064Z adding 'torch/linalg/__init__.py' 2025-06-01T21:28:27.1181969Z adding 'torch/masked/__init__.py' 2025-06-01T21:28:27.1189436Z adding 'torch/masked/_docs.py' 2025-06-01T21:28:27.1211891Z adding 'torch/masked/_ops.py' 2025-06-01T21:28:27.1217571Z adding 'torch/masked/maskedtensor/__init__.py' 2025-06-01T21:28:27.1223760Z adding 'torch/masked/maskedtensor/_ops_refs.py' 2025-06-01T21:28:27.1228534Z adding 'torch/masked/maskedtensor/binary.py' 2025-06-01T21:28:27.1234894Z adding 'torch/masked/maskedtensor/core.py' 2025-06-01T21:28:27.1238597Z adding 'torch/masked/maskedtensor/creation.py' 2025-06-01T21:28:27.1241873Z adding 'torch/masked/maskedtensor/passthrough.py' 2025-06-01T21:28:27.1246236Z adding 'torch/masked/maskedtensor/reductions.py' 2025-06-01T21:28:27.1250585Z adding 'torch/masked/maskedtensor/unary.py' 2025-06-01T21:28:27.1255387Z adding 'torch/monitor/__init__.py' 2025-06-01T21:28:27.1261412Z adding 'torch/mps/__init__.py' 2025-06-01T21:28:27.1265338Z adding 'torch/mps/event.py' 2025-06-01T21:28:27.1269664Z adding 'torch/mps/profiler.py' 2025-06-01T21:28:27.1278484Z adding 'torch/mtia/__init__.py' 2025-06-01T21:28:27.1282777Z adding 'torch/mtia/_utils.py' 2025-06-01T21:28:27.1286441Z adding 'torch/mtia/memory.py' 2025-06-01T21:28:27.1291376Z adding 'torch/multiprocessing/__init__.py' 2025-06-01T21:28:27.1294692Z adding 'torch/multiprocessing/_atfork.py' 2025-06-01T21:28:27.1298736Z adding 'torch/multiprocessing/pool.py' 2025-06-01T21:28:27.1301763Z adding 'torch/multiprocessing/queue.py' 2025-06-01T21:28:27.1310855Z adding 'torch/multiprocessing/reductions.py' 2025-06-01T21:28:27.1317930Z adding 'torch/multiprocessing/spawn.py' 2025-06-01T21:28:27.1327640Z adding 'torch/nested/__init__.py' 2025-06-01T21:28:27.1331983Z adding 'torch/nested/_internal/__init__.py' 2025-06-01T21:28:27.1335497Z adding 'torch/nested/_internal/nested_int.py' 2025-06-01T21:28:27.1345038Z adding 'torch/nested/_internal/nested_tensor.py' 2025-06-01T21:28:27.1374684Z adding 'torch/nested/_internal/ops.py' 2025-06-01T21:28:27.1388555Z adding 'torch/nested/_internal/sdpa.py' 2025-06-01T21:28:27.1393964Z adding 'torch/nn/__init__.py' 2025-06-01T21:28:27.1397469Z adding 'torch/nn/_reduction.py' 2025-06-01T21:28:27.1400810Z adding 'torch/nn/common_types.py' 2025-06-01T21:28:27.1404515Z adding 'torch/nn/cpp.py' 2025-06-01T21:28:27.1473734Z adding 'torch/nn/functional.py' 2025-06-01T21:28:27.1485780Z adding 'torch/nn/functional.pyi' 2025-06-01T21:28:27.1490518Z adding 'torch/nn/grad.py' 2025-06-01T21:28:27.1498738Z adding 'torch/nn/init.py' 2025-06-01T21:28:27.1504732Z adding 'torch/nn/parameter.py' 2025-06-01T21:28:27.1508093Z adding 'torch/nn/parameter.pyi' 2025-06-01T21:28:27.1513285Z adding 'torch/nn/attention/__init__.py' 2025-06-01T21:28:27.1516925Z adding 'torch/nn/attention/_utils.py' 2025-06-01T21:28:27.1523105Z adding 'torch/nn/attention/bias.py' 2025-06-01T21:28:27.1543373Z adding 'torch/nn/attention/flex_attention.py' 2025-06-01T21:28:27.1548661Z adding 'torch/nn/attention/experimental/__init__.py' 2025-06-01T21:28:27.1554355Z adding 'torch/nn/attention/experimental/_paged_attention.py' 2025-06-01T21:28:27.1558428Z adding 'torch/nn/backends/__init__.py' 2025-06-01T21:28:27.1561365Z adding 'torch/nn/backends/thnn.py' 2025-06-01T21:28:27.1565193Z adding 'torch/nn/intrinsic/__init__.py' 2025-06-01T21:28:27.1569092Z adding 'torch/nn/intrinsic/modules/__init__.py' 2025-06-01T21:28:27.1572336Z adding 'torch/nn/intrinsic/modules/fused.py' 2025-06-01T21:28:27.1575750Z adding 'torch/nn/intrinsic/qat/__init__.py' 2025-06-01T21:28:27.1579706Z adding 'torch/nn/intrinsic/qat/modules/__init__.py' 2025-06-01T21:28:27.1584080Z adding 'torch/nn/intrinsic/qat/modules/conv_fused.py' 2025-06-01T21:28:27.1585996Z adding 'torch/nn/intrinsic/qat/modules/linear_fused.py' 2025-06-01T21:28:27.1589573Z adding 'torch/nn/intrinsic/qat/modules/linear_relu.py' 2025-06-01T21:28:27.1592818Z adding 'torch/nn/intrinsic/quantized/__init__.py' 2025-06-01T21:28:27.1596574Z adding 'torch/nn/intrinsic/quantized/dynamic/__init__.py' 2025-06-01T21:28:27.1600771Z adding 'torch/nn/intrinsic/quantized/dynamic/modules/__init__.py' 2025-06-01T21:28:27.1603377Z adding 'torch/nn/intrinsic/quantized/dynamic/modules/linear_relu.py' 2025-06-01T21:28:27.1607279Z adding 'torch/nn/intrinsic/quantized/modules/__init__.py' 2025-06-01T21:28:27.1610239Z adding 'torch/nn/intrinsic/quantized/modules/bn_relu.py' 2025-06-01T21:28:27.1613247Z adding 'torch/nn/intrinsic/quantized/modules/conv_relu.py' 2025-06-01T21:28:27.1616017Z adding 'torch/nn/intrinsic/quantized/modules/linear_relu.py' 2025-06-01T21:28:27.1621408Z adding 'torch/nn/modules/__init__.py' 2025-06-01T21:28:27.1627320Z adding 'torch/nn/modules/_functions.py' 2025-06-01T21:28:27.1644822Z adding 'torch/nn/modules/activation.py' 2025-06-01T21:28:27.1652157Z adding 'torch/nn/modules/adaptive.py' 2025-06-01T21:28:27.1662465Z adding 'torch/nn/modules/batchnorm.py' 2025-06-01T21:28:27.1666815Z adding 'torch/nn/modules/channelshuffle.py' 2025-06-01T21:28:27.1678837Z adding 'torch/nn/modules/container.py' 2025-06-01T21:28:27.1695993Z adding 'torch/nn/modules/conv.py' 2025-06-01T21:28:27.1701606Z adding 'torch/nn/modules/distance.py' 2025-06-01T21:28:27.1706534Z adding 'torch/nn/modules/dropout.py' 2025-06-01T21:28:27.1711038Z adding 'torch/nn/modules/flatten.py' 2025-06-01T21:28:27.1716830Z adding 'torch/nn/modules/fold.py' 2025-06-01T21:28:27.1723435Z adding 'torch/nn/modules/instancenorm.py' 2025-06-01T21:28:27.1729908Z adding 'torch/nn/modules/lazy.py' 2025-06-01T21:28:27.1735524Z adding 'torch/nn/modules/linear.py' 2025-06-01T21:28:27.1765392Z adding 'torch/nn/modules/loss.py' 2025-06-01T21:28:27.1804569Z adding 'torch/nn/modules/module.py' 2025-06-01T21:28:27.1813064Z adding 'torch/nn/modules/normalization.py' 2025-06-01T21:28:27.1819690Z adding 'torch/nn/modules/padding.py' 2025-06-01T21:28:27.1824153Z adding 'torch/nn/modules/pixelshuffle.py' 2025-06-01T21:28:27.1836351Z adding 'torch/nn/modules/pooling.py' 2025-06-01T21:28:27.1856240Z adding 'torch/nn/modules/rnn.py' 2025-06-01T21:28:27.1865522Z adding 'torch/nn/modules/sparse.py' 2025-06-01T21:28:27.1879927Z adding 'torch/nn/modules/transformer.py' 2025-06-01T21:28:27.1886365Z adding 'torch/nn/modules/upsampling.py' 2025-06-01T21:28:27.1890391Z adding 'torch/nn/modules/utils.py' 2025-06-01T21:28:27.1894521Z adding 'torch/nn/parallel/__init__.py' 2025-06-01T21:28:27.1898592Z adding 'torch/nn/parallel/_functions.py' 2025-06-01T21:28:27.1904438Z adding 'torch/nn/parallel/comm.py' 2025-06-01T21:28:27.1910424Z adding 'torch/nn/parallel/data_parallel.py' 2025-06-01T21:28:27.1952076Z adding 'torch/nn/parallel/distributed.py' 2025-06-01T21:28:27.1958493Z adding 'torch/nn/parallel/parallel_apply.py' 2025-06-01T21:28:27.1963103Z adding 'torch/nn/parallel/replicate.py' 2025-06-01T21:28:27.1967447Z adding 'torch/nn/parallel/scatter_gather.py' 2025-06-01T21:28:27.1971444Z adding 'torch/nn/qat/__init__.py' 2025-06-01T21:28:27.1975276Z adding 'torch/nn/qat/dynamic/__init__.py' 2025-06-01T21:28:27.1978874Z adding 'torch/nn/qat/dynamic/modules/__init__.py' 2025-06-01T21:28:27.1981856Z adding 'torch/nn/qat/dynamic/modules/linear.py' 2025-06-01T21:28:27.1985577Z adding 'torch/nn/qat/modules/__init__.py' 2025-06-01T21:28:27.1988504Z adding 'torch/nn/qat/modules/conv.py' 2025-06-01T21:28:27.1991747Z adding 'torch/nn/qat/modules/embedding_ops.py' 2025-06-01T21:28:27.1994338Z adding 'torch/nn/qat/modules/linear.py' 2025-06-01T21:28:27.1998079Z adding 'torch/nn/quantizable/__init__.py' 2025-06-01T21:28:27.2001584Z adding 'torch/nn/quantizable/modules/__init__.py' 2025-06-01T21:28:27.2004674Z adding 'torch/nn/quantizable/modules/activation.py' 2025-06-01T21:28:27.2007649Z adding 'torch/nn/quantizable/modules/rnn.py' 2025-06-01T21:28:27.2011647Z adding 'torch/nn/quantized/__init__.py' 2025-06-01T21:28:27.2014624Z adding 'torch/nn/quantized/functional.py' 2025-06-01T21:28:27.2018336Z adding 'torch/nn/quantized/_reference/__init__.py' 2025-06-01T21:28:27.2022380Z adding 'torch/nn/quantized/_reference/modules/__init__.py' 2025-06-01T21:28:27.2025589Z adding 'torch/nn/quantized/_reference/modules/conv.py' 2025-06-01T21:28:27.2028635Z adding 'torch/nn/quantized/_reference/modules/linear.py' 2025-06-01T21:28:27.2031654Z adding 'torch/nn/quantized/_reference/modules/rnn.py' 2025-06-01T21:28:27.2034799Z adding 'torch/nn/quantized/_reference/modules/sparse.py' 2025-06-01T21:28:27.2037902Z adding 'torch/nn/quantized/_reference/modules/utils.py' 2025-06-01T21:28:27.2041600Z adding 'torch/nn/quantized/dynamic/__init__.py' 2025-06-01T21:28:27.2045624Z adding 'torch/nn/quantized/dynamic/modules/__init__.py' 2025-06-01T21:28:27.2048772Z adding 'torch/nn/quantized/dynamic/modules/conv.py' 2025-06-01T21:28:27.2051968Z adding 'torch/nn/quantized/dynamic/modules/linear.py' 2025-06-01T21:28:27.2055040Z adding 'torch/nn/quantized/dynamic/modules/rnn.py' 2025-06-01T21:28:27.2059408Z adding 'torch/nn/quantized/modules/__init__.py' 2025-06-01T21:28:27.2062607Z adding 'torch/nn/quantized/modules/activation.py' 2025-06-01T21:28:27.2065602Z adding 'torch/nn/quantized/modules/batchnorm.py' 2025-06-01T21:28:27.2068747Z adding 'torch/nn/quantized/modules/conv.py' 2025-06-01T21:28:27.2071763Z adding 'torch/nn/quantized/modules/dropout.py' 2025-06-01T21:28:27.2074881Z adding 'torch/nn/quantized/modules/embedding_ops.py' 2025-06-01T21:28:27.2078296Z adding 'torch/nn/quantized/modules/functional_modules.py' 2025-06-01T21:28:27.2081452Z adding 'torch/nn/quantized/modules/linear.py' 2025-06-01T21:28:27.2084585Z adding 'torch/nn/quantized/modules/normalization.py' 2025-06-01T21:28:27.2087693Z adding 'torch/nn/quantized/modules/rnn.py' 2025-06-01T21:28:27.2090763Z adding 'torch/nn/quantized/modules/utils.py' 2025-06-01T21:28:27.2094862Z adding 'torch/nn/utils/__init__.py' 2025-06-01T21:28:27.2098490Z adding 'torch/nn/utils/_deprecation_utils.py' 2025-06-01T21:28:27.2104110Z adding 'torch/nn/utils/_named_member_accessor.py' 2025-06-01T21:28:27.2108920Z adding 'torch/nn/utils/_per_sample_grad.py' 2025-06-01T21:28:27.2114400Z adding 'torch/nn/utils/clip_grad.py' 2025-06-01T21:28:27.2118465Z adding 'torch/nn/utils/convert_parameters.py' 2025-06-01T21:28:27.2122888Z adding 'torch/nn/utils/fusion.py' 2025-06-01T21:28:27.2127020Z adding 'torch/nn/utils/init.py' 2025-06-01T21:28:27.2131172Z adding 'torch/nn/utils/memory_format.py' 2025-06-01T21:28:27.2142824Z adding 'torch/nn/utils/parametrizations.py' 2025-06-01T21:28:27.2155759Z adding 'torch/nn/utils/parametrize.py' 2025-06-01T21:28:27.2174295Z adding 'torch/nn/utils/prune.py' 2025-06-01T21:28:27.2184460Z adding 'torch/nn/utils/rnn.py' 2025-06-01T21:28:27.2191943Z adding 'torch/nn/utils/spectral_norm.py' 2025-06-01T21:28:27.2198244Z adding 'torch/nn/utils/stateless.py' 2025-06-01T21:28:27.2203020Z adding 'torch/nn/utils/weight_norm.py' 2025-06-01T21:28:27.2207617Z adding 'torch/nn/utils/_expanded_weights/__init__.py' 2025-06-01T21:28:27.2211047Z adding 'torch/nn/utils/_expanded_weights/conv_expanded_weights.py' 2025-06-01T21:28:27.2216707Z adding 'torch/nn/utils/_expanded_weights/conv_utils.py' 2025-06-01T21:28:27.2220769Z adding 'torch/nn/utils/_expanded_weights/embedding_expanded_weights.py' 2025-06-01T21:28:27.2225226Z adding 'torch/nn/utils/_expanded_weights/expanded_weights_impl.py' 2025-06-01T21:28:27.2230275Z adding 'torch/nn/utils/_expanded_weights/expanded_weights_utils.py' 2025-06-01T21:28:27.2234281Z adding 'torch/nn/utils/_expanded_weights/group_norm_expanded_weights.py' 2025-06-01T21:28:27.2238421Z adding 'torch/nn/utils/_expanded_weights/instance_norm_expanded_weights.py' 2025-06-01T21:28:27.2242163Z adding 'torch/nn/utils/_expanded_weights/layer_norm_expanded_weights.py' 2025-06-01T21:28:27.2245768Z adding 'torch/nn/utils/_expanded_weights/linear_expanded_weights.py' 2025-06-01T21:28:27.2255901Z adding 'torch/onnx/__init__.py' 2025-06-01T21:28:27.2259908Z adding 'torch/onnx/_constants.py' 2025-06-01T21:28:27.2263093Z adding 'torch/onnx/_experimental.py' 2025-06-01T21:28:27.2266426Z adding 'torch/onnx/_flags.py' 2025-06-01T21:28:27.2269997Z adding 'torch/onnx/_globals.py' 2025-06-01T21:28:27.2273903Z adding 'torch/onnx/_onnx_supported_ops.py' 2025-06-01T21:28:27.2279822Z adding 'torch/onnx/_type_utils.py' 2025-06-01T21:28:27.2283985Z adding 'torch/onnx/errors.py' 2025-06-01T21:28:27.2287483Z adding 'torch/onnx/operators.py' 2025-06-01T21:28:27.2292058Z adding 'torch/onnx/symbolic_caffe2.py' 2025-06-01T21:28:27.2320391Z adding 'torch/onnx/symbolic_helper.py' 2025-06-01T21:28:27.2332869Z adding 'torch/onnx/symbolic_opset10.py' 2025-06-01T21:28:27.2350884Z adding 'torch/onnx/symbolic_opset11.py' 2025-06-01T21:28:27.2358635Z adding 'torch/onnx/symbolic_opset12.py' 2025-06-01T21:28:27.2371615Z adding 'torch/onnx/symbolic_opset13.py' 2025-06-01T21:28:27.2377839Z adding 'torch/onnx/symbolic_opset14.py' 2025-06-01T21:28:27.2383076Z adding 'torch/onnx/symbolic_opset15.py' 2025-06-01T21:28:27.2386653Z adding 'torch/onnx/symbolic_opset16.py' 2025-06-01T21:28:27.2391464Z adding 'torch/onnx/symbolic_opset17.py' 2025-06-01T21:28:27.2396397Z adding 'torch/onnx/symbolic_opset18.py' 2025-06-01T21:28:27.2399847Z adding 'torch/onnx/symbolic_opset19.py' 2025-06-01T21:28:27.2403313Z adding 'torch/onnx/symbolic_opset20.py' 2025-06-01T21:28:27.2406652Z adding 'torch/onnx/symbolic_opset7.py' 2025-06-01T21:28:27.2413691Z adding 'torch/onnx/symbolic_opset8.py' 2025-06-01T21:28:27.2482312Z adding 'torch/onnx/symbolic_opset9.py' 2025-06-01T21:28:27.2516114Z adding 'torch/onnx/utils.py' 2025-06-01T21:28:27.2542526Z adding 'torch/onnx/verification.py' 2025-06-01T21:28:27.2548184Z adding 'torch/onnx/_internal/__init__.py' 2025-06-01T21:28:27.2556320Z adding 'torch/onnx/_internal/_exporter_legacy.py' 2025-06-01T21:28:27.2560304Z adding 'torch/onnx/_internal/_lazy_import.py' 2025-06-01T21:28:27.2568294Z adding 'torch/onnx/_internal/io_adapter.py' 2025-06-01T21:28:27.2575409Z adding 'torch/onnx/_internal/jit_utils.py' 2025-06-01T21:28:27.2580946Z adding 'torch/onnx/_internal/onnx_proto_utils.py' 2025-06-01T21:28:27.2601517Z adding 'torch/onnx/_internal/onnxruntime.py' 2025-06-01T21:28:27.2608614Z adding 'torch/onnx/_internal/registration.py' 2025-06-01T21:28:27.2612894Z adding 'torch/onnx/_internal/exporter/__init__.py' 2025-06-01T21:28:27.2617905Z adding 'torch/onnx/_internal/exporter/_analysis.py' 2025-06-01T21:28:27.2629756Z adding 'torch/onnx/_internal/exporter/_building.py' 2025-06-01T21:28:27.2635146Z adding 'torch/onnx/_internal/exporter/_capture_strategies.py' 2025-06-01T21:28:27.2640196Z adding 'torch/onnx/_internal/exporter/_compat.py' 2025-06-01T21:28:27.2643470Z adding 'torch/onnx/_internal/exporter/_constants.py' 2025-06-01T21:28:27.2667151Z adding 'torch/onnx/_internal/exporter/_core.py' 2025-06-01T21:28:27.2672443Z adding 'torch/onnx/_internal/exporter/_decomp.py' 2025-06-01T21:28:27.2679081Z adding 'torch/onnx/_internal/exporter/_dispatching.py' 2025-06-01T21:28:27.2685719Z adding 'torch/onnx/_internal/exporter/_dynamic_shapes.py' 2025-06-01T21:28:27.2689462Z adding 'torch/onnx/_internal/exporter/_errors.py' 2025-06-01T21:28:27.2692342Z adding 'torch/onnx/_internal/exporter/_flags.py' 2025-06-01T21:28:27.2695754Z adding 'torch/onnx/_internal/exporter/_fx_passes.py' 2025-06-01T21:28:27.2700141Z adding 'torch/onnx/_internal/exporter/_ir_passes.py' 2025-06-01T21:28:27.2703826Z adding 'torch/onnx/_internal/exporter/_isolated.py' 2025-06-01T21:28:27.2711838Z adding 'torch/onnx/_internal/exporter/_onnx_program.py' 2025-06-01T21:28:27.2718572Z adding 'torch/onnx/_internal/exporter/_registration.py' 2025-06-01T21:28:27.2723408Z adding 'torch/onnx/_internal/exporter/_reporting.py' 2025-06-01T21:28:27.2732061Z adding 'torch/onnx/_internal/exporter/_schemas.py' 2025-06-01T21:28:27.2735973Z adding 'torch/onnx/_internal/exporter/_tensors.py' 2025-06-01T21:28:27.2739912Z adding 'torch/onnx/_internal/exporter/_testing.py' 2025-06-01T21:28:27.2743332Z adding 'torch/onnx/_internal/exporter/_type_casting.py' 2025-06-01T21:28:27.2749468Z adding 'torch/onnx/_internal/exporter/_verification.py' 2025-06-01T21:28:27.2753775Z adding 'torch/onnx/_internal/exporter/_torchlib/__init__.py' 2025-06-01T21:28:27.2757413Z adding 'torch/onnx/_internal/exporter/_torchlib/_tensor_typing.py' 2025-06-01T21:28:27.2761393Z adding 'torch/onnx/_internal/exporter/_torchlib/_torchlib_registry.py' 2025-06-01T21:28:27.2767237Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/__init__.py' 2025-06-01T21:28:27.2774654Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/core.py' 2025-06-01T21:28:27.2778464Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/hop.py' 2025-06-01T21:28:27.2782106Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/nn.py' 2025-06-01T21:28:27.2786367Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/symbolic.py' 2025-06-01T21:28:27.2789845Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/symops.py' 2025-06-01T21:28:27.2793893Z adding 'torch/onnx/_internal/fx/__init__.py' 2025-06-01T21:28:27.2799320Z adding 'torch/onnx/_internal/fx/_pass.py' 2025-06-01T21:28:27.2803691Z adding 'torch/onnx/_internal/fx/decomposition_table.py' 2025-06-01T21:28:27.2808781Z adding 'torch/onnx/_internal/fx/dynamo_graph_extractor.py' 2025-06-01T21:28:27.2820408Z adding 'torch/onnx/_internal/fx/fx_onnx_interpreter.py' 2025-06-01T21:28:27.2839384Z adding 'torch/onnx/_internal/fx/onnxfunction_dispatcher.py' 2025-06-01T21:28:27.2844230Z adding 'torch/onnx/_internal/fx/patcher.py' 2025-06-01T21:28:27.2848156Z adding 'torch/onnx/_internal/fx/registration.py' 2025-06-01T21:28:27.2854308Z adding 'torch/onnx/_internal/fx/serialization.py' 2025-06-01T21:28:27.2859147Z adding 'torch/onnx/_internal/fx/type_utils.py' 2025-06-01T21:28:27.2863477Z adding 'torch/onnx/_internal/fx/passes/__init__.py' 2025-06-01T21:28:27.2867577Z adding 'torch/onnx/_internal/fx/passes/_utils.py' 2025-06-01T21:28:27.2871543Z adding 'torch/onnx/_internal/fx/passes/decomp.py' 2025-06-01T21:28:27.2876233Z adding 'torch/onnx/_internal/fx/passes/functionalization.py' 2025-06-01T21:28:27.2889754Z adding 'torch/onnx/_internal/fx/passes/modularization.py' 2025-06-01T21:28:27.2894873Z adding 'torch/onnx/_internal/fx/passes/readability.py' 2025-06-01T21:28:27.2910963Z adding 'torch/onnx/_internal/fx/passes/type_promotion.py' 2025-06-01T21:28:27.2916575Z adding 'torch/onnx/_internal/fx/passes/virtualization.py' 2025-06-01T21:28:27.2922641Z adding 'torch/onnx/ops/__init__.py' 2025-06-01T21:28:27.2928084Z adding 'torch/onnx/ops/_symbolic_impl.py' 2025-06-01T21:28:27.2932874Z adding 'torch/optim/__init__.py' 2025-06-01T21:28:27.2942311Z adding 'torch/optim/_adafactor.py' 2025-06-01T21:28:27.2946670Z adding 'torch/optim/_functional.py' 2025-06-01T21:28:27.2953412Z adding 'torch/optim/adadelta.py' 2025-06-01T21:28:27.2961765Z adding 'torch/optim/adagrad.py' 2025-06-01T21:28:27.2974655Z adding 'torch/optim/adam.py' 2025-06-01T21:28:27.2982480Z adding 'torch/optim/adamax.py' 2025-06-01T21:28:27.2987541Z adding 'torch/optim/adamw.py' 2025-06-01T21:28:27.2994253Z adding 'torch/optim/asgd.py' 2025-06-01T21:28:27.3002370Z adding 'torch/optim/lbfgs.py' 2025-06-01T21:28:27.3026338Z adding 'torch/optim/lr_scheduler.py' 2025-06-01T21:28:27.3037041Z adding 'torch/optim/nadam.py' 2025-06-01T21:28:27.3055066Z adding 'torch/optim/optimizer.py' 2025-06-01T21:28:27.3064604Z adding 'torch/optim/radam.py' 2025-06-01T21:28:27.3072643Z adding 'torch/optim/rmsprop.py' 2025-06-01T21:28:27.3081567Z adding 'torch/optim/rprop.py' 2025-06-01T21:28:27.3089782Z adding 'torch/optim/sgd.py' 2025-06-01T21:28:27.3095462Z adding 'torch/optim/sparse_adam.py' 2025-06-01T21:28:27.3103357Z adding 'torch/optim/swa_utils.py' 2025-06-01T21:28:27.3107825Z adding 'torch/optim/_multi_tensor/__init__.py' 2025-06-01T21:28:27.3110888Z adding 'torch/optim/_multi_tensor/__init__.pyi' 2025-06-01T21:28:27.3114949Z adding 'torch/package/__init__.py' 2025-06-01T21:28:27.3119278Z adding 'torch/package/_digraph.py' 2025-06-01T21:28:27.3122864Z adding 'torch/package/_directory_reader.py' 2025-06-01T21:28:27.3126597Z adding 'torch/package/_importlib.py' 2025-06-01T21:28:27.3130081Z adding 'torch/package/_mangling.py' 2025-06-01T21:28:27.3133764Z adding 'torch/package/_mock.py' 2025-06-01T21:28:27.3138058Z adding 'torch/package/_package_pickler.py' 2025-06-01T21:28:27.3141305Z adding 'torch/package/_package_unpickler.py' 2025-06-01T21:28:27.3145242Z adding 'torch/package/_stdlib.py' 2025-06-01T21:28:27.3149528Z adding 'torch/package/file_structure_representation.py' 2025-06-01T21:28:27.3153379Z adding 'torch/package/find_file_dependencies.py' 2025-06-01T21:28:27.3157431Z adding 'torch/package/glob_group.py' 2025-06-01T21:28:27.3162743Z adding 'torch/package/importer.py' 2025-06-01T21:28:27.3181398Z adding 'torch/package/package_exporter.py' 2025-06-01T21:28:27.3195700Z adding 'torch/package/package_importer.py' 2025-06-01T21:28:27.3200472Z adding 'torch/package/analyze/__init__.py' 2025-06-01T21:28:27.3203810Z adding 'torch/package/analyze/find_first_use_of_broken_modules.py' 2025-06-01T21:28:27.3206899Z adding 'torch/package/analyze/is_from_package.py' 2025-06-01T21:28:27.3210446Z adding 'torch/package/analyze/trace_dependencies.py' 2025-06-01T21:28:27.3214858Z adding 'torch/profiler/__init__.py' 2025-06-01T21:28:27.3232722Z adding 'torch/profiler/_memory_profiler.py' 2025-06-01T21:28:27.3242772Z adding 'torch/profiler/_pattern_matcher.py' 2025-06-01T21:28:27.3249913Z adding 'torch/profiler/_utils.py' 2025-06-01T21:28:27.3253960Z adding 'torch/profiler/itt.py' 2025-06-01T21:28:27.3269661Z adding 'torch/profiler/profiler.py' 2025-06-01T21:28:27.3274274Z adding 'torch/profiler/python_tracer.py' 2025-06-01T21:28:27.3279592Z adding 'torch/quantization/__init__.py' 2025-06-01T21:28:27.3283362Z adding 'torch/quantization/_numeric_suite.py' 2025-06-01T21:28:27.3287074Z adding 'torch/quantization/_numeric_suite_fx.py' 2025-06-01T21:28:27.3291618Z adding 'torch/quantization/_quantized_conversions.py' 2025-06-01T21:28:27.3295353Z adding 'torch/quantization/fake_quantize.py' 2025-06-01T21:28:27.3298991Z adding 'torch/quantization/fuse_modules.py' 2025-06-01T21:28:27.3302549Z adding 'torch/quantization/fuser_method_mappings.py' 2025-06-01T21:28:27.3306085Z adding 'torch/quantization/observer.py' 2025-06-01T21:28:27.3309169Z adding 'torch/quantization/qconfig.py' 2025-06-01T21:28:27.3312330Z adding 'torch/quantization/quant_type.py' 2025-06-01T21:28:27.3315485Z adding 'torch/quantization/quantization_mappings.py' 2025-06-01T21:28:27.3318829Z adding 'torch/quantization/quantize.py' 2025-06-01T21:28:27.3321936Z adding 'torch/quantization/quantize_fx.py' 2025-06-01T21:28:27.3325185Z adding 'torch/quantization/quantize_jit.py' 2025-06-01T21:28:27.3328164Z adding 'torch/quantization/stubs.py' 2025-06-01T21:28:27.3331444Z adding 'torch/quantization/utils.py' 2025-06-01T21:28:27.3335426Z adding 'torch/quantization/fx/__init__.py' 2025-06-01T21:28:27.3338658Z adding 'torch/quantization/fx/_equalize.py' 2025-06-01T21:28:27.3341823Z adding 'torch/quantization/fx/convert.py' 2025-06-01T21:28:27.3344814Z adding 'torch/quantization/fx/fuse.py' 2025-06-01T21:28:27.3347835Z adding 'torch/quantization/fx/fusion_patterns.py' 2025-06-01T21:28:27.3350827Z adding 'torch/quantization/fx/graph_module.py' 2025-06-01T21:28:27.3353829Z adding 'torch/quantization/fx/match_utils.py' 2025-06-01T21:28:27.3357317Z adding 'torch/quantization/fx/pattern_utils.py' 2025-06-01T21:28:27.3360403Z adding 'torch/quantization/fx/prepare.py' 2025-06-01T21:28:27.3363649Z adding 'torch/quantization/fx/quantization_patterns.py' 2025-06-01T21:28:27.3366752Z adding 'torch/quantization/fx/quantization_types.py' 2025-06-01T21:28:27.3369645Z adding 'torch/quantization/fx/utils.py' 2025-06-01T21:28:27.3374639Z adding 'torch/share/cmake/ATen/ATenConfig.cmake' 2025-06-01T21:28:27.3379628Z adding 'torch/share/cmake/Caffe2/Caffe2Config.cmake' 2025-06-01T21:28:27.3383213Z adding 'torch/share/cmake/Caffe2/Caffe2Targets-release.cmake' 2025-06-01T21:28:27.3387628Z adding 'torch/share/cmake/Caffe2/Caffe2Targets.cmake' 2025-06-01T21:28:27.3401238Z adding 'torch/share/cmake/Caffe2/FindCUDAToolkit.cmake' 2025-06-01T21:28:27.3405713Z adding 'torch/share/cmake/Caffe2/FindCUDSS.cmake' 2025-06-01T21:28:27.3409516Z adding 'torch/share/cmake/Caffe2/FindCUSPARSELT.cmake' 2025-06-01T21:28:27.3413650Z adding 'torch/share/cmake/Caffe2/FindSYCLToolkit.cmake' 2025-06-01T21:28:27.3417767Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDA.cmake' 2025-06-01T21:28:27.3421520Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDNN.cmake' 2025-06-01T21:28:27.3426186Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/CMakeInitializeConfigs.cmake' 2025-06-01T21:28:27.3457362Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA.cmake' 2025-06-01T21:28:27.3466172Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageHandleStandardArgs.cmake' 2025-06-01T21:28:27.3470010Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageMessage.cmake' 2025-06-01T21:28:27.3475018Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/make2cmake.cmake' 2025-06-01T21:28:27.3479138Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/parse_cubin.cmake' 2025-06-01T21:28:27.3485102Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/run_nvcc.cmake' 2025-06-01T21:28:27.3490883Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/select_compute_arch.cmake' 2025-06-01T21:28:27.3497034Z adding 'torch/share/cmake/Caffe2/public/LoadHIP.cmake' 2025-06-01T21:28:27.3503440Z adding 'torch/share/cmake/Caffe2/public/cuda.cmake' 2025-06-01T21:28:27.3507494Z adding 'torch/share/cmake/Caffe2/public/gflags.cmake' 2025-06-01T21:28:27.3511098Z adding 'torch/share/cmake/Caffe2/public/glog.cmake' 2025-06-01T21:28:27.3514506Z adding 'torch/share/cmake/Caffe2/public/mkl.cmake' 2025-06-01T21:28:27.3517729Z adding 'torch/share/cmake/Caffe2/public/mkldnn.cmake' 2025-06-01T21:28:27.3521410Z adding 'torch/share/cmake/Caffe2/public/protobuf.cmake' 2025-06-01T21:28:27.3529869Z adding 'torch/share/cmake/Caffe2/public/utils.cmake' 2025-06-01T21:28:27.3533820Z adding 'torch/share/cmake/Caffe2/public/xpu.cmake' 2025-06-01T21:28:27.3538798Z adding 'torch/share/cmake/Torch/TorchConfig.cmake' 2025-06-01T21:28:27.3542061Z adding 'torch/share/cmake/Torch/TorchConfigVersion.cmake' 2025-06-01T21:28:27.3545696Z adding 'torch/signal/__init__.py' 2025-06-01T21:28:27.3549360Z adding 'torch/signal/windows/__init__.py' 2025-06-01T21:28:27.3556266Z adding 'torch/signal/windows/windows.py' 2025-06-01T21:28:27.3567178Z adding 'torch/sparse/__init__.py' 2025-06-01T21:28:27.3574253Z adding 'torch/sparse/_semi_structured_conversions.py' 2025-06-01T21:28:27.3578880Z adding 'torch/sparse/_semi_structured_ops.py' 2025-06-01T21:28:27.3604418Z adding 'torch/sparse/_triton_ops.py' 2025-06-01T21:28:27.3723822Z adding 'torch/sparse/_triton_ops_meta.py' 2025-06-01T21:28:27.3744323Z adding 'torch/sparse/semi_structured.py' 2025-06-01T21:28:27.3754621Z adding 'torch/special/__init__.py' 2025-06-01T21:28:27.3990612Z adding 'torch/test/CppSignature_test.exe' 2025-06-01T21:28:27.4256112Z adding 'torch/test/Dict_test.exe' 2025-06-01T21:28:27.4445960Z adding 'torch/test/Dimname_test.exe' 2025-06-01T21:28:27.4680036Z adding 'torch/test/IListRef_test.exe' 2025-06-01T21:28:27.4924376Z adding 'torch/test/KernelFunction_test.exe' 2025-06-01T21:28:27.5269587Z adding 'torch/test/List_test.exe' 2025-06-01T21:28:27.5525869Z adding 'torch/test/MaybeOwned_test.exe' 2025-06-01T21:28:27.5761384Z adding 'torch/test/NamedTensor_test.exe' 2025-06-01T21:28:27.5976320Z adding 'torch/test/StorageUtils_test.exe' 2025-06-01T21:28:27.6195920Z adding 'torch/test/apply_utils_test.exe' 2025-06-01T21:28:27.6429406Z adding 'torch/test/atest.exe' 2025-06-01T21:28:27.6642538Z adding 'torch/test/backend_fallback_test.exe' 2025-06-01T21:28:27.6893120Z adding 'torch/test/basic.exe' 2025-06-01T21:28:27.7112315Z adding 'torch/test/broadcast_test.exe' 2025-06-01T21:28:27.7286407Z adding 'torch/test/c10_ArrayRef_test.exe' 2025-06-01T21:28:27.7466733Z adding 'torch/test/c10_Bitset_test.exe' 2025-06-01T21:28:27.7629553Z adding 'torch/test/c10_CompileTimeFunctionPointer_test.exe' 2025-06-01T21:28:27.7793005Z adding 'torch/test/c10_ConstexprCrc_test.exe' 2025-06-01T21:28:27.7957130Z adding 'torch/test/c10_DeadlockDetection_test.exe' 2025-06-01T21:28:27.8133981Z adding 'torch/test/c10_DeviceGuard_test.exe' 2025-06-01T21:28:27.8330649Z adding 'torch/test/c10_Device_test.exe' 2025-06-01T21:28:27.8525858Z adding 'torch/test/c10_DispatchKeySet_test.exe' 2025-06-01T21:28:27.8727564Z adding 'torch/test/c10_Enumerate_test.exe' 2025-06-01T21:28:27.8905857Z adding 'torch/test/c10_Half_test.exe' 2025-06-01T21:28:27.9100209Z adding 'torch/test/c10_InlineDeviceGuard_test.exe' 2025-06-01T21:28:27.9294500Z adding 'torch/test/c10_InlineStreamGuard_test.exe' 2025-06-01T21:28:27.9479767Z adding 'torch/test/c10_IntrusiveList_test.exe' 2025-06-01T21:28:27.9673826Z adding 'torch/test/c10_LeftRight_test.exe' 2025-06-01T21:28:27.9857341Z adding 'torch/test/c10_Metaprogramming_test.exe' 2025-06-01T21:28:28.0038902Z adding 'torch/test/c10_NetworkFlow_test.exe' 2025-06-01T21:28:28.0217761Z adding 'torch/test/c10_Scalar_test.exe' 2025-06-01T21:28:28.0385205Z adding 'torch/test/c10_Semaphore_test.exe' 2025-06-01T21:28:28.0572212Z adding 'torch/test/c10_SizesAndStrides_test.exe' 2025-06-01T21:28:28.0733301Z adding 'torch/test/c10_StreamGuard_test.exe' 2025-06-01T21:28:28.0907430Z adding 'torch/test/c10_SymInt_test.exe' 2025-06-01T21:28:28.1080093Z adding 'torch/test/c10_Synchronized_test.exe' 2025-06-01T21:28:28.1269901Z adding 'torch/test/c10_ThreadLocal_test.exe' 2025-06-01T21:28:28.1449927Z adding 'torch/test/c10_TypeIndex_test.exe' 2025-06-01T21:28:28.1617445Z adding 'torch/test/c10_TypeList_test.exe' 2025-06-01T21:28:28.1776203Z adding 'torch/test/c10_TypeTraits_test.exe' 2025-06-01T21:28:28.1958841Z adding 'torch/test/c10_accumulate_test.exe' 2025-06-01T21:28:28.2153110Z adding 'torch/test/c10_bfloat16_test.exe' 2025-06-01T21:28:28.2321249Z adding 'torch/test/c10_bit_cast_test.exe' 2025-06-01T21:28:28.2523610Z adding 'torch/test/c10_complex_math_test.exe' 2025-06-01T21:28:28.2716439Z adding 'torch/test/c10_complex_test.exe' 2025-06-01T21:28:28.2915955Z adding 'torch/test/c10_cow_test.exe' 2025-06-01T21:28:28.3079554Z adding 'torch/test/c10_cuda_CUDAAssertionsTest_1_var_test.exe' 2025-06-01T21:28:28.3243781Z adding 'torch/test/c10_cuda_CUDAAssertionsTest_catches_stream.exe' 2025-06-01T21:28:28.3409588Z adding 'torch/test/c10_cuda_CUDAAssertionsTest_catches_thread_and_block_and_device.exe' 2025-06-01T21:28:28.3569019Z adding 'torch/test/c10_cuda_CUDAAssertionsTest_from_2_processes.exe' 2025-06-01T21:28:28.3733473Z adding 'torch/test/c10_cuda_CUDAAssertionsTest_multiple_writes_from_blocks_and_threads.exe' 2025-06-01T21:28:28.3899893Z adding 'torch/test/c10_cuda_CUDAAssertionsTest_multiple_writes_from_multiple_blocks.exe' 2025-06-01T21:28:28.4070238Z adding 'torch/test/c10_cuda_CUDAAssertionsTest_multiple_writes_from_same_block.exe' 2025-06-01T21:28:28.4229120Z adding 'torch/test/c10_cuda_CUDATest.exe' 2025-06-01T21:28:28.4401667Z adding 'torch/test/c10_error_test.exe' 2025-06-01T21:28:28.4584384Z adding 'torch/test/c10_exception_test.exe' 2025-06-01T21:28:28.4752431Z adding 'torch/test/c10_flags_test.exe' 2025-06-01T21:28:28.4923103Z adding 'torch/test/c10_generic_math_test.exe' 2025-06-01T21:28:28.5075945Z adding 'torch/test/c10_intrusive_ptr_benchmark.exe' 2025-06-01T21:28:28.5505376Z adding 'torch/test/c10_intrusive_ptr_test.exe' 2025-06-01T21:28:28.5696400Z adding 'torch/test/c10_irange_test.exe' 2025-06-01T21:28:28.5880473Z adding 'torch/test/c10_lazy_test.exe' 2025-06-01T21:28:28.6073543Z adding 'torch/test/c10_logging_test.exe' 2025-06-01T21:28:28.6323776Z adding 'torch/test/c10_optional_test.exe' 2025-06-01T21:28:28.6536525Z adding 'torch/test/c10_ordered_preserving_dict_test.exe' 2025-06-01T21:28:28.6723255Z adding 'torch/test/c10_registry_test.exe' 2025-06-01T21:28:28.7081798Z adding 'torch/test/c10_small_vector_test.exe' 2025-06-01T21:28:28.7267692Z adding 'torch/test/c10_ssize_test.exe' 2025-06-01T21:28:28.7459085Z adding 'torch/test/c10_string_util_test.exe' 2025-06-01T21:28:28.7619802Z adding 'torch/test/c10_string_view_test.exe' 2025-06-01T21:28:28.7785019Z adding 'torch/test/c10_tempfile_test.exe' 2025-06-01T21:28:28.7971380Z adding 'torch/test/c10_typeid_test.exe' 2025-06-01T21:28:28.8174460Z adding 'torch/test/cpu_allocator_test.exe' 2025-06-01T21:28:28.8399410Z adding 'torch/test/cpu_generator_test.exe' 2025-06-01T21:28:28.8610459Z adding 'torch/test/cpu_profiling_allocator_test.exe' 2025-06-01T21:28:28.8958916Z adding 'torch/test/cpu_rng_test.exe' 2025-06-01T21:28:28.9137568Z adding 'torch/test/cuda_allocatorTraceTracker_test.exe' 2025-06-01T21:28:28.9340807Z adding 'torch/test/cuda_allocator_test.exe' 2025-06-01T21:28:28.9504919Z adding 'torch/test/cuda_apply_test.exe' 2025-06-01T21:28:28.9719170Z adding 'torch/test/cuda_atomic_ops_test.exe' 2025-06-01T21:28:28.9947223Z adding 'torch/test/cuda_caching_host_allocator_test.exe' 2025-06-01T21:28:29.0179063Z adding 'torch/test/cuda_complex_math_test.exe' 2025-06-01T21:28:29.0382537Z adding 'torch/test/cuda_complex_test.exe' 2025-06-01T21:28:29.0608534Z adding 'torch/test/cuda_cub_test.exe' 2025-06-01T21:28:29.0870034Z adding 'torch/test/cuda_cudnn_test.exe' 2025-06-01T21:28:29.1048354Z adding 'torch/test/cuda_device_test.exe' 2025-06-01T21:28:29.1332518Z adding 'torch/test/cuda_distributions_test.exe' 2025-06-01T21:28:29.1537688Z adding 'torch/test/cuda_dlconvertor_test.exe' 2025-06-01T21:28:29.1703762Z adding 'torch/test/cuda_exchange_device_test.exe' 2025-06-01T21:28:29.1925467Z adding 'torch/test/cuda_generator_test.exe' 2025-06-01T21:28:29.2126189Z adding 'torch/test/cuda_half_test.exe' 2025-06-01T21:28:29.2300361Z adding 'torch/test/cuda_integer_divider_test.exe' 2025-06-01T21:28:29.2498909Z adding 'torch/test/cuda_optional_test.exe' 2025-06-01T21:28:29.2702087Z adding 'torch/test/cuda_packedtensoraccessor_test.exe' 2025-06-01T21:28:29.2917578Z adding 'torch/test/cuda_reportMemoryUsage_test.exe' 2025-06-01T21:28:29.3131529Z adding 'torch/test/cuda_stream_test.exe' 2025-06-01T21:28:29.3345232Z adding 'torch/test/cuda_vectorized_test.exe' 2025-06-01T21:28:29.3547833Z adding 'torch/test/dlconvertor_test.exe' 2025-06-01T21:28:29.3770635Z adding 'torch/test/extension_backend_test.exe' 2025-06-01T21:28:29.3995137Z adding 'torch/test/half_test.exe' 2025-06-01T21:28:29.4244036Z adding 'torch/test/inline_container_test.exe' 2025-06-01T21:28:29.4607785Z adding 'torch/test/ivalue_test.exe' 2025-06-01T21:28:29.5020862Z adding 'torch/test/kernel_function_legacy_test.exe' 2025-06-01T21:28:29.5372113Z adding 'torch/test/kernel_function_test.exe' 2025-06-01T21:28:29.5796233Z adding 'torch/test/kernel_lambda_legacy_test.exe' 2025-06-01T21:28:29.6153509Z adding 'torch/test/kernel_lambda_test.exe' 2025-06-01T21:28:29.6396605Z adding 'torch/test/kernel_stackbased_test.exe' 2025-06-01T21:28:29.6600468Z adding 'torch/test/lazy_tensor_test.exe' 2025-06-01T21:28:29.6891787Z adding 'torch/test/legacy_vmap_test.exe' 2025-06-01T21:28:29.7232093Z adding 'torch/test/make_boxed_from_unboxed_functor_test.exe' 2025-06-01T21:28:29.7449141Z adding 'torch/test/math_kernel_test.exe' 2025-06-01T21:28:29.7655985Z adding 'torch/test/memory_format_test.exe' 2025-06-01T21:28:29.7869580Z adding 'torch/test/memory_overlapping_test.exe' 2025-06-01T21:28:29.8076597Z adding 'torch/test/mobile_memory_cleanup.exe' 2025-06-01T21:28:29.8323331Z adding 'torch/test/native_test.exe' 2025-06-01T21:28:29.8500463Z adding 'torch/test/op_allowlist_test.exe' 2025-06-01T21:28:29.9316809Z adding 'torch/test/op_registration_test.exe' 2025-06-01T21:28:29.9547930Z adding 'torch/test/operator_name_test.exe' 2025-06-01T21:28:29.9748443Z adding 'torch/test/operators_test.exe' 2025-06-01T21:28:29.9962015Z adding 'torch/test/packedtensoraccessor_test.exe' 2025-06-01T21:28:30.0249372Z adding 'torch/test/pow_test.exe' 2025-06-01T21:28:30.0483103Z adding 'torch/test/quantized_test.exe' 2025-06-01T21:28:30.0716250Z adding 'torch/test/reduce_ops_test.exe' 2025-06-01T21:28:30.0937096Z adding 'torch/test/reportMemoryUsage_test.exe' 2025-06-01T21:28:30.1183231Z adding 'torch/test/scalar_tensor_test.exe' 2025-06-01T21:28:30.1433180Z adding 'torch/test/scalar_test.exe' 2025-06-01T21:28:30.1644448Z adding 'torch/test/stride_properties_test.exe' 2025-06-01T21:28:30.1922092Z adding 'torch/test/tensor_iterator_test.exe' 2025-06-01T21:28:30.2152104Z adding 'torch/test/test_parallel.exe' 2025-06-01T21:28:30.2213778Z adding 'torch/test/thread_init_test.exe' 2025-06-01T21:28:30.2400999Z adding 'torch/test/type_ptr_test.exe' 2025-06-01T21:28:30.2638100Z adding 'torch/test/type_test.exe' 2025-06-01T21:28:30.2855858Z adding 'torch/test/undefined_tensor_test.exe' 2025-06-01T21:28:30.2915906Z adding 'torch/test/verify_api_visibility.exe' 2025-06-01T21:28:30.3130233Z adding 'torch/test/weakref_test.exe' 2025-06-01T21:28:30.3342087Z adding 'torch/test/wrapdim_test.exe' 2025-06-01T21:28:30.3562361Z adding 'torch/test/xla_tensor_test.exe' 2025-06-01T21:28:30.3575005Z adding 'torch/testing/__init__.py' 2025-06-01T21:28:30.3596975Z adding 'torch/testing/_comparison.py' 2025-06-01T21:28:30.3604780Z adding 'torch/testing/_creation.py' 2025-06-01T21:28:30.3608665Z adding 'torch/testing/_utils.py' 2025-06-01T21:28:30.3614240Z adding 'torch/testing/_internal/__init__.py' 2025-06-01T21:28:30.3621886Z adding 'torch/testing/_internal/autocast_test_lists.py' 2025-06-01T21:28:30.3628891Z adding 'torch/testing/_internal/autograd_function_db.py' 2025-06-01T21:28:30.3634080Z adding 'torch/testing/_internal/check_kernel_launches.py' 2025-06-01T21:28:30.3640407Z adding 'torch/testing/_internal/common_cuda.py' 2025-06-01T21:28:30.3667372Z adding 'torch/testing/_internal/common_device_type.py' 2025-06-01T21:28:30.3672758Z adding 'torch/testing/_internal/common_dist_composable.py' 2025-06-01T21:28:30.3695479Z adding 'torch/testing/_internal/common_distributed.py' 2025-06-01T21:28:30.3700829Z adding 'torch/testing/_internal/common_dtype.py' 2025-06-01T21:28:30.3720137Z adding 'torch/testing/_internal/common_fsdp.py' 2025-06-01T21:28:30.3727503Z adding 'torch/testing/_internal/common_jit.py' 2025-06-01T21:28:30.3979406Z adding 'torch/testing/_internal/common_methods_invocations.py' 2025-06-01T21:28:30.4022613Z adding 'torch/testing/_internal/common_mkldnn.py' 2025-06-01T21:28:30.4057495Z adding 'torch/testing/_internal/common_modules.py' 2025-06-01T21:28:30.4071973Z adding 'torch/testing/_internal/common_mps.py' 2025-06-01T21:28:30.4107986Z adding 'torch/testing/_internal/common_nn.py' 2025-06-01T21:28:30.4128959Z adding 'torch/testing/_internal/common_optimizers.py' 2025-06-01T21:28:30.4136197Z adding 'torch/testing/_internal/common_pruning.py' 2025-06-01T21:28:30.4170416Z adding 'torch/testing/_internal/common_quantization.py' 2025-06-01T21:28:30.4181543Z adding 'torch/testing/_internal/common_quantized.py' 2025-06-01T21:28:30.4188199Z adding 'torch/testing/_internal/common_subclass.py' 2025-06-01T21:28:30.4280403Z adding 'torch/testing/_internal/common_utils.py' 2025-06-01T21:28:30.4297671Z adding 'torch/testing/_internal/composite_compliance.py' 2025-06-01T21:28:30.4305578Z adding 'torch/testing/_internal/custom_op_db.py' 2025-06-01T21:28:30.4310701Z adding 'torch/testing/_internal/custom_tensor.py' 2025-06-01T21:28:30.4316412Z adding 'torch/testing/_internal/dist_utils.py' 2025-06-01T21:28:30.4321507Z adding 'torch/testing/_internal/dynamo_test_failures.py' 2025-06-01T21:28:30.4325468Z adding 'torch/testing/_internal/fake_config_module.py' 2025-06-01T21:28:30.4329024Z adding 'torch/testing/_internal/fake_config_module2.py' 2025-06-01T21:28:30.4332154Z adding 'torch/testing/_internal/fake_config_module3.py' 2025-06-01T21:28:30.4337659Z adding 'torch/testing/_internal/hop_db.py' 2025-06-01T21:28:30.4345008Z adding 'torch/testing/_internal/hypothesis_utils.py' 2025-06-01T21:28:30.4351282Z adding 'torch/testing/_internal/inductor_utils.py' 2025-06-01T21:28:30.4363451Z adding 'torch/testing/_internal/jit_metaprogramming_utils.py' 2025-06-01T21:28:30.4377092Z adding 'torch/testing/_internal/jit_utils.py' 2025-06-01T21:28:30.4383589Z adding 'torch/testing/_internal/logging_tensor.py' 2025-06-01T21:28:30.4388659Z adding 'torch/testing/_internal/logging_utils.py' 2025-06-01T21:28:30.4392749Z adding 'torch/testing/_internal/quantization_torch_package_models.py' 2025-06-01T21:28:30.4395921Z adding 'torch/testing/_internal/static_module.py' 2025-06-01T21:28:30.4399999Z adding 'torch/testing/_internal/subclasses.py' 2025-06-01T21:28:30.4404623Z adding 'torch/testing/_internal/torchbind_impls.py' 2025-06-01T21:28:30.4411779Z adding 'torch/testing/_internal/triton_utils.py' 2025-06-01T21:28:30.4416322Z adding 'torch/testing/_internal/two_tensor.py' 2025-06-01T21:28:30.4420621Z adding 'torch/testing/_internal/codegen/__init__.py' 2025-06-01T21:28:30.4424991Z adding 'torch/testing/_internal/data/__init__.py' 2025-06-01T21:28:30.4427842Z adding 'torch/testing/_internal/data/network1.py' 2025-06-01T21:28:30.4431455Z adding 'torch/testing/_internal/data/network2.py' 2025-06-01T21:28:30.4435913Z adding 'torch/testing/_internal/distributed/__init__.py' 2025-06-01T21:28:30.4440226Z adding 'torch/testing/_internal/distributed/checkpoint_utils.py' 2025-06-01T21:28:30.4445512Z adding 'torch/testing/_internal/distributed/common_state_dict.py' 2025-06-01T21:28:30.4455701Z adding 'torch/testing/_internal/distributed/ddp_under_dist_autograd_test.py' 2025-06-01T21:28:30.4558613Z adding 'torch/testing/_internal/distributed/distributed_test.py' 2025-06-01T21:28:30.4572261Z adding 'torch/testing/_internal/distributed/distributed_utils.py' 2025-06-01T21:28:30.4575943Z adding 'torch/testing/_internal/distributed/fake_pg.py' 2025-06-01T21:28:30.4582885Z adding 'torch/testing/_internal/distributed/multi_threaded_pg.py' 2025-06-01T21:28:30.4589232Z adding 'torch/testing/_internal/distributed/rpc_utils.py' 2025-06-01T21:28:30.4593427Z adding 'torch/testing/_internal/distributed/_shard/__init__.py' 2025-06-01T21:28:30.4597839Z adding 'torch/testing/_internal/distributed/_shard/test_common.py' 2025-06-01T21:28:30.4604798Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/__init__.py' 2025-06-01T21:28:30.4610778Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/_test_ops_common.py' 2025-06-01T21:28:30.4616050Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/_test_st_common.py' 2025-06-01T21:28:30.4621699Z adding 'torch/testing/_internal/distributed/_tensor/__init__.py' 2025-06-01T21:28:30.4634190Z adding 'torch/testing/_internal/distributed/_tensor/common_dtensor.py' 2025-06-01T21:28:30.4638564Z adding 'torch/testing/_internal/distributed/nn/__init__.py' 2025-06-01T21:28:30.4642542Z adding 'torch/testing/_internal/distributed/nn/api/__init__.py' 2025-06-01T21:28:30.4650686Z adding 'torch/testing/_internal/distributed/nn/api/remote_module_test.py' 2025-06-01T21:28:30.4655813Z adding 'torch/testing/_internal/distributed/rpc/__init__.py' 2025-06-01T21:28:30.4685565Z adding 'torch/testing/_internal/distributed/rpc/dist_autograd_test.py' 2025-06-01T21:28:30.4693651Z adding 'torch/testing/_internal/distributed/rpc/dist_optimizer_test.py' 2025-06-01T21:28:30.4699928Z adding 'torch/testing/_internal/distributed/rpc/faulty_agent_rpc_test.py' 2025-06-01T21:28:30.4704214Z adding 'torch/testing/_internal/distributed/rpc/faulty_rpc_agent_test_fixture.py' 2025-06-01T21:28:30.4708328Z adding 'torch/testing/_internal/distributed/rpc/rpc_agent_test_fixture.py' 2025-06-01T21:28:30.4770733Z adding 'torch/testing/_internal/distributed/rpc/rpc_test.py' 2025-06-01T21:28:30.4780434Z adding 'torch/testing/_internal/distributed/rpc/tensorpipe_rpc_agent_test_fixture.py' 2025-06-01T21:28:30.4784690Z adding 'torch/testing/_internal/distributed/rpc/examples/__init__.py' 2025-06-01T21:28:30.4788876Z adding 'torch/testing/_internal/distributed/rpc/examples/parameter_server_test.py' 2025-06-01T21:28:30.4795015Z adding 'torch/testing/_internal/distributed/rpc/examples/reinforcement_learning_rpc_test.py' 2025-06-01T21:28:30.4799600Z adding 'torch/testing/_internal/distributed/rpc/jit/__init__.py' 2025-06-01T21:28:30.4803980Z adding 'torch/testing/_internal/distributed/rpc/jit/dist_autograd_test.py' 2025-06-01T21:28:30.4818853Z adding 'torch/testing/_internal/distributed/rpc/jit/rpc_test.py' 2025-06-01T21:28:30.4825035Z adding 'torch/testing/_internal/distributed/rpc/jit/rpc_test_faulty.py' 2025-06-01T21:28:30.4829556Z adding 'torch/testing/_internal/generated/__init__.py' 2025-06-01T21:28:30.4885904Z adding 'torch/testing/_internal/generated/annotated_fn_args.py' 2025-06-01T21:28:30.4903235Z adding 'torch/testing/_internal/opinfo/__init__.py' 2025-06-01T21:28:30.4947962Z adding 'torch/testing/_internal/opinfo/core.py' 2025-06-01T21:28:30.4955968Z adding 'torch/testing/_internal/opinfo/refs.py' 2025-06-01T21:28:30.4961798Z adding 'torch/testing/_internal/opinfo/utils.py' 2025-06-01T21:28:30.4966163Z adding 'torch/testing/_internal/opinfo/definitions/__init__.py' 2025-06-01T21:28:30.4975554Z adding 'torch/testing/_internal/opinfo/definitions/_masked.py' 2025-06-01T21:28:30.4983087Z adding 'torch/testing/_internal/opinfo/definitions/fft.py' 2025-06-01T21:28:30.5052900Z adding 'torch/testing/_internal/opinfo/definitions/linalg.py' 2025-06-01T21:28:30.5073039Z adding 'torch/testing/_internal/opinfo/definitions/nested.py' 2025-06-01T21:28:30.5080636Z adding 'torch/testing/_internal/opinfo/definitions/signal.py' 2025-06-01T21:28:30.5090809Z adding 'torch/testing/_internal/opinfo/definitions/sparse.py' 2025-06-01T21:28:30.5098244Z adding 'torch/testing/_internal/opinfo/definitions/special.py' 2025-06-01T21:28:30.5103191Z adding 'torch/testing/_internal/optests/__init__.py' 2025-06-01T21:28:30.5107706Z adding 'torch/testing/_internal/optests/aot_autograd.py' 2025-06-01T21:28:30.5112672Z adding 'torch/testing/_internal/optests/autograd_registration.py' 2025-06-01T21:28:30.5115903Z adding 'torch/testing/_internal/optests/fake_tensor.py' 2025-06-01T21:28:30.5128355Z adding 'torch/testing/_internal/optests/generate_tests.py' 2025-06-01T21:28:30.5132884Z adding 'torch/testing/_internal/optests/make_fx.py' 2025-06-01T21:28:30.5136983Z adding 'torch/testing/_internal/test_module/__init__.py' 2025-06-01T21:28:30.5139790Z adding 'torch/testing/_internal/test_module/future_div.py' 2025-06-01T21:28:30.5142592Z adding 'torch/testing/_internal/test_module/no_future_div.py' 2025-06-01T21:28:30.5148240Z adding 'torch/utils/__init__.py' 2025-06-01T21:28:30.5152115Z adding 'torch/utils/_appending_byte_serializer.py' 2025-06-01T21:28:30.5156615Z adding 'torch/utils/_backport_slots.py' 2025-06-01T21:28:30.5167822Z adding 'torch/utils/_config_module.py' 2025-06-01T21:28:30.5172000Z adding 'torch/utils/_config_typing.pyi' 2025-06-01T21:28:30.5177182Z adding 'torch/utils/_content_store.py' 2025-06-01T21:28:30.5181858Z adding 'torch/utils/_contextlib.py' 2025-06-01T21:28:30.5185357Z adding 'torch/utils/_cpp_embed_headers.py' 2025-06-01T21:28:30.5188642Z adding 'torch/utils/_cpp_extension_versioner.py' 2025-06-01T21:28:30.5200141Z adding 'torch/utils/_cxx_pytree.py' 2025-06-01T21:28:30.5204803Z adding 'torch/utils/_device.py' 2025-06-01T21:28:30.5207960Z adding 'torch/utils/_dtype_abbrs.py' 2025-06-01T21:28:30.5210995Z adding 'torch/utils/_exposed_in.py' 2025-06-01T21:28:30.5214177Z adding 'torch/utils/_filelock.py' 2025-06-01T21:28:30.5217681Z adding 'torch/utils/_foreach_utils.py' 2025-06-01T21:28:30.5223232Z adding 'torch/utils/_freeze.py' 2025-06-01T21:28:30.5226793Z adding 'torch/utils/_functools.py' 2025-06-01T21:28:30.5231484Z adding 'torch/utils/_get_clean_triton.py' 2025-06-01T21:28:30.5234800Z adding 'torch/utils/_import_utils.py' 2025-06-01T21:28:30.5238109Z adding 'torch/utils/_mode_utils.py' 2025-06-01T21:28:30.5241970Z adding 'torch/utils/_ordered_set.py' 2025-06-01T21:28:30.5253459Z adding 'torch/utils/_python_dispatch.py' 2025-06-01T21:28:30.5277678Z adding 'torch/utils/_pytree.py' 2025-06-01T21:28:30.5282589Z adding 'torch/utils/_stats.py' 2025-06-01T21:28:30.5285617Z adding 'torch/utils/_thunk.py' 2025-06-01T21:28:30.5291352Z adding 'torch/utils/_traceback.py' 2025-06-01T21:28:30.5295321Z adding 'torch/utils/_triton.py' 2025-06-01T21:28:30.5298577Z adding 'torch/utils/_typing_utils.py' 2025-06-01T21:28:30.5301994Z adding 'torch/utils/_zip.py' 2025-06-01T21:28:30.5309720Z adding 'torch/utils/backend_registration.py' 2025-06-01T21:28:30.5318835Z adding 'torch/utils/bundled_inputs.py' 2025-06-01T21:28:30.5346592Z adding 'torch/utils/checkpoint.py' 2025-06-01T21:28:30.5357840Z adding 'torch/utils/collect_env.py' 2025-06-01T21:28:30.5361632Z adding 'torch/utils/cpp_backtrace.py' 2025-06-01T21:28:30.5407950Z adding 'torch/utils/cpp_extension.py' 2025-06-01T21:28:30.5414635Z adding 'torch/utils/deterministic.py' 2025-06-01T21:28:30.5418941Z adding 'torch/utils/dlpack.py' 2025-06-01T21:28:30.5422453Z adding 'torch/utils/file_baton.py' 2025-06-01T21:28:30.5432962Z adding 'torch/utils/flop_counter.py' 2025-06-01T21:28:30.5439050Z adding 'torch/utils/hooks.py' 2025-06-01T21:28:30.5443648Z adding 'torch/utils/mkldnn.py' 2025-06-01T21:28:30.5448242Z adding 'torch/utils/mobile_optimizer.py' 2025-06-01T21:28:30.5451578Z adding 'torch/utils/model_zoo.py' 2025-06-01T21:28:30.5455702Z adding 'torch/utils/module_tracker.py' 2025-06-01T21:28:30.5459876Z adding 'torch/utils/show_pickle.py' 2025-06-01T21:28:30.5464674Z adding 'torch/utils/throughput_benchmark.py' 2025-06-01T21:28:30.5470604Z adding 'torch/utils/weak.py' 2025-06-01T21:28:30.5474693Z adding 'torch/utils/_strobelight/__init__.py' 2025-06-01T21:28:30.5480290Z adding 'torch/utils/_strobelight/cli_function_profiler.py' 2025-06-01T21:28:30.5484825Z adding 'torch/utils/_sympy/__init__.py' 2025-06-01T21:28:30.5504015Z adding 'torch/utils/_sympy/functions.py' 2025-06-01T21:28:30.5510248Z adding 'torch/utils/_sympy/interp.py' 2025-06-01T21:28:30.5515156Z adding 'torch/utils/_sympy/numbers.py' 2025-06-01T21:28:30.5522230Z adding 'torch/utils/_sympy/printers.py' 2025-06-01T21:28:30.5528135Z adding 'torch/utils/_sympy/reference.py' 2025-06-01T21:28:30.5532211Z adding 'torch/utils/_sympy/singleton_int.py' 2025-06-01T21:28:30.5536721Z adding 'torch/utils/_sympy/solve.py' 2025-06-01T21:28:30.5540852Z adding 'torch/utils/_sympy/symbol.py' 2025-06-01T21:28:30.5553727Z adding 'torch/utils/_sympy/value_ranges.py' 2025-06-01T21:28:30.5558579Z adding 'torch/utils/backcompat/__init__.py' 2025-06-01T21:28:30.5562461Z adding 'torch/utils/benchmark/__init__.py' 2025-06-01T21:28:30.5566136Z adding 'torch/utils/benchmark/examples/__init__.py' 2025-06-01T21:28:30.5569698Z adding 'torch/utils/benchmark/examples/compare.py' 2025-06-01T21:28:30.5573305Z adding 'torch/utils/benchmark/examples/fuzzer.py' 2025-06-01T21:28:30.5577528Z adding 'torch/utils/benchmark/examples/op_benchmark.py' 2025-06-01T21:28:30.5580748Z adding 'torch/utils/benchmark/examples/simple_timeit.py' 2025-06-01T21:28:30.5584761Z adding 'torch/utils/benchmark/examples/spectral_ops_fuzz_test.py' 2025-06-01T21:28:30.5588535Z adding 'torch/utils/benchmark/op_fuzzers/__init__.py' 2025-06-01T21:28:30.5592331Z adding 'torch/utils/benchmark/op_fuzzers/binary.py' 2025-06-01T21:28:30.5596088Z adding 'torch/utils/benchmark/op_fuzzers/sparse_binary.py' 2025-06-01T21:28:30.5599852Z adding 'torch/utils/benchmark/op_fuzzers/sparse_unary.py' 2025-06-01T21:28:30.5603590Z adding 'torch/utils/benchmark/op_fuzzers/spectral.py' 2025-06-01T21:28:30.5607243Z adding 'torch/utils/benchmark/op_fuzzers/unary.py' 2025-06-01T21:28:30.5611062Z adding 'torch/utils/benchmark/utils/__init__.py' 2025-06-01T21:28:30.5614227Z adding 'torch/utils/benchmark/utils/_stubs.py' 2025-06-01T21:28:30.5620694Z adding 'torch/utils/benchmark/utils/common.py' 2025-06-01T21:28:30.5627115Z adding 'torch/utils/benchmark/utils/compare.py' 2025-06-01T21:28:30.5632018Z adding 'torch/utils/benchmark/utils/compile.py' 2025-06-01T21:28:30.5637013Z adding 'torch/utils/benchmark/utils/cpp_jit.py' 2025-06-01T21:28:30.5645094Z adding 'torch/utils/benchmark/utils/fuzzer.py' 2025-06-01T21:28:30.5649874Z adding 'torch/utils/benchmark/utils/sparse_fuzzer.py' 2025-06-01T21:28:30.5653204Z adding 'torch/utils/benchmark/utils/timeit_template.cpp' 2025-06-01T21:28:30.5662049Z adding 'torch/utils/benchmark/utils/timer.py' 2025-06-01T21:28:30.5666266Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/__init__.py' 2025-06-01T21:28:30.5670592Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/callgrind.h' 2025-06-01T21:28:30.5673958Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/compat_bindings.cpp' 2025-06-01T21:28:30.5677406Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/timer_callgrind_template.cpp' 2025-06-01T21:28:30.5691136Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/timer_interface.py' 2025-06-01T21:28:30.5743567Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/valgrind.h' 2025-06-01T21:28:30.5756668Z adding 'torch/utils/bottleneck/__init__.py' 2025-06-01T21:28:30.5761388Z adding 'torch/utils/bottleneck/__main__.py' 2025-06-01T21:28:30.5765730Z adding 'torch/utils/data/__init__.py' 2025-06-01T21:28:30.5768878Z adding 'torch/utils/data/backward_compatibility.py' 2025-06-01T21:28:30.5799759Z adding 'torch/utils/data/dataloader.py' 2025-06-01T21:28:30.5808849Z adding 'torch/utils/data/dataset.py' 2025-06-01T21:28:30.5813780Z adding 'torch/utils/data/distributed.py' 2025-06-01T21:28:30.5818280Z adding 'torch/utils/data/graph.py' 2025-06-01T21:28:30.5822736Z adding 'torch/utils/data/graph_settings.py' 2025-06-01T21:28:30.5828681Z adding 'torch/utils/data/sampler.py' 2025-06-01T21:28:30.5833364Z adding 'torch/utils/data/_utils/__init__.py' 2025-06-01T21:28:30.5840112Z adding 'torch/utils/data/_utils/collate.py' 2025-06-01T21:28:30.5843830Z adding 'torch/utils/data/_utils/fetch.py' 2025-06-01T21:28:30.5847785Z adding 'torch/utils/data/_utils/pin_memory.py' 2025-06-01T21:28:30.5851612Z adding 'torch/utils/data/_utils/signal_handling.py' 2025-06-01T21:28:30.5858268Z adding 'torch/utils/data/_utils/worker.py' 2025-06-01T21:28:30.5862507Z adding 'torch/utils/data/datapipes/__init__.py' 2025-06-01T21:28:30.5870731Z adding 'torch/utils/data/datapipes/_decorator.py' 2025-06-01T21:28:30.5873116Z adding 'torch/utils/data/datapipes/_hook_iterator.py' 2025-06-01T21:28:30.5880545Z adding 'torch/utils/data/datapipes/_typing.py' 2025-06-01T21:28:30.5887288Z adding 'torch/utils/data/datapipes/datapipe.py' 2025-06-01T21:28:30.5898439Z adding 'torch/utils/data/datapipes/datapipe.pyi' 2025-06-01T21:28:30.5905022Z adding 'torch/utils/data/datapipes/gen_pyi.py' 2025-06-01T21:28:30.5909353Z adding 'torch/utils/data/datapipes/dataframe/__init__.py' 2025-06-01T21:28:30.5912886Z adding 'torch/utils/data/datapipes/dataframe/dataframe_wrapper.py' 2025-06-01T21:28:30.5918800Z adding 'torch/utils/data/datapipes/dataframe/dataframes.py' 2025-06-01T21:28:30.5922846Z adding 'torch/utils/data/datapipes/dataframe/datapipes.py' 2025-06-01T21:28:30.5926085Z adding 'torch/utils/data/datapipes/dataframe/structures.py' 2025-06-01T21:28:30.5930316Z adding 'torch/utils/data/datapipes/iter/__init__.py' 2025-06-01T21:28:30.5935619Z adding 'torch/utils/data/datapipes/iter/callable.py' 2025-06-01T21:28:30.5940330Z adding 'torch/utils/data/datapipes/iter/combinatorics.py' 2025-06-01T21:28:30.5949284Z adding 'torch/utils/data/datapipes/iter/combining.py' 2025-06-01T21:28:30.5953537Z adding 'torch/utils/data/datapipes/iter/filelister.py' 2025-06-01T21:28:30.5957494Z adding 'torch/utils/data/datapipes/iter/fileopener.py' 2025-06-01T21:28:30.5963108Z adding 'torch/utils/data/datapipes/iter/grouping.py' 2025-06-01T21:28:30.5967191Z adding 'torch/utils/data/datapipes/iter/routeddecoder.py' 2025-06-01T21:28:30.5970932Z adding 'torch/utils/data/datapipes/iter/selecting.py' 2025-06-01T21:28:30.5974722Z adding 'torch/utils/data/datapipes/iter/sharding.py' 2025-06-01T21:28:30.5978172Z adding 'torch/utils/data/datapipes/iter/streamreader.py' 2025-06-01T21:28:30.5981646Z adding 'torch/utils/data/datapipes/iter/utils.py' 2025-06-01T21:28:30.5985656Z adding 'torch/utils/data/datapipes/map/__init__.py' 2025-06-01T21:28:30.5989021Z adding 'torch/utils/data/datapipes/map/callable.py' 2025-06-01T21:28:30.5992976Z adding 'torch/utils/data/datapipes/map/combinatorics.py' 2025-06-01T21:28:30.5996917Z adding 'torch/utils/data/datapipes/map/combining.py' 2025-06-01T21:28:30.6000949Z adding 'torch/utils/data/datapipes/map/grouping.py' 2025-06-01T21:28:30.6004440Z adding 'torch/utils/data/datapipes/map/utils.py' 2025-06-01T21:28:30.6008361Z adding 'torch/utils/data/datapipes/utils/__init__.py' 2025-06-01T21:28:30.6014793Z adding 'torch/utils/data/datapipes/utils/common.py' 2025-06-01T21:28:30.6021092Z adding 'torch/utils/data/datapipes/utils/decoder.py' 2025-06-01T21:28:30.6025636Z adding 'torch/utils/data/datapipes/utils/snapshot.py' 2025-06-01T21:28:30.6030072Z adding 'torch/utils/hipify/__init__.py' 2025-06-01T21:28:30.6033722Z adding 'torch/utils/hipify/constants.py' 2025-06-01T21:28:30.6095252Z adding 'torch/utils/hipify/cuda_to_hip_mappings.py' 2025-06-01T21:28:30.6121209Z adding 'torch/utils/hipify/hipify_python.py' 2025-06-01T21:28:30.6125204Z adding 'torch/utils/hipify/version.py' 2025-06-01T21:28:30.6128890Z adding 'torch/utils/jit/__init__.py' 2025-06-01T21:28:30.6132779Z adding 'torch/utils/jit/log_extract.py' 2025-06-01T21:28:30.6141118Z adding 'torch/utils/model_dump/__init__.py' 2025-06-01T21:28:30.6144517Z adding 'torch/utils/model_dump/__main__.py' 2025-06-01T21:28:30.6151797Z adding 'torch/utils/model_dump/code.js' 2025-06-01T21:28:30.6155597Z adding 'torch/utils/model_dump/htm.mjs' 2025-06-01T21:28:30.6161506Z adding 'torch/utils/model_dump/preact.mjs' 2025-06-01T21:28:30.6164893Z adding 'torch/utils/model_dump/skeleton.html' 2025-06-01T21:28:30.6168394Z adding 'torch/utils/serialization/__init__.py' 2025-06-01T21:28:30.6171358Z adding 'torch/utils/serialization/config.py' 2025-06-01T21:28:30.6175179Z adding 'torch/utils/tensorboard/__init__.py' 2025-06-01T21:28:30.6178200Z adding 'torch/utils/tensorboard/_convert_np.py' 2025-06-01T21:28:30.6181786Z adding 'torch/utils/tensorboard/_embedding.py' 2025-06-01T21:28:30.6185198Z adding 'torch/utils/tensorboard/_onnx_graph.py' 2025-06-01T21:28:30.6188554Z adding 'torch/utils/tensorboard/_proto_graph.py' 2025-06-01T21:28:30.6195392Z adding 'torch/utils/tensorboard/_pytorch_graph.py' 2025-06-01T21:28:30.6199894Z adding 'torch/utils/tensorboard/_utils.py' 2025-06-01T21:28:30.6212963Z adding 'torch/utils/tensorboard/summary.py' 2025-06-01T21:28:30.6228024Z adding 'torch/utils/tensorboard/writer.py' 2025-06-01T21:28:30.6233119Z adding 'torch/utils/viz/__init__.py' 2025-06-01T21:28:30.6240865Z adding 'torch/utils/viz/_cycles.py' 2025-06-01T21:28:30.6249853Z adding 'torch/xpu/__init__.py' 2025-06-01T21:28:30.6253809Z adding 'torch/xpu/_gpu_trace.py' 2025-06-01T21:28:30.6257060Z adding 'torch/xpu/_utils.py' 2025-06-01T21:28:30.6261561Z adding 'torch/xpu/memory.py' 2025-06-01T21:28:30.6265778Z adding 'torch/xpu/random.py' 2025-06-01T21:28:30.6270323Z adding 'torch/xpu/streams.py' 2025-06-01T21:28:30.6279654Z adding 'torchgen/__init__.py' 2025-06-01T21:28:30.6283495Z adding 'torchgen/code_template.py' 2025-06-01T21:28:30.6287449Z adding 'torchgen/context.py' 2025-06-01T21:28:30.6325823Z adding 'torchgen/gen.py' 2025-06-01T21:28:30.6336125Z adding 'torchgen/gen_aoti_c_shim.py' 2025-06-01T21:28:30.6345358Z adding 'torchgen/gen_backend_stubs.py' 2025-06-01T21:28:30.6359558Z adding 'torchgen/gen_executorch.py' 2025-06-01T21:28:30.6374388Z adding 'torchgen/gen_functionalization_type.py' 2025-06-01T21:28:30.6384355Z adding 'torchgen/gen_lazy_tensor.py' 2025-06-01T21:28:30.6388870Z adding 'torchgen/gen_schema_utils.py' 2025-06-01T21:28:30.6393929Z adding 'torchgen/gen_vmap_plumbing.py' 2025-06-01T21:28:30.6397833Z adding 'torchgen/local.py' 2025-06-01T21:28:30.6441012Z adding 'torchgen/model.py' 2025-06-01T21:28:30.6456007Z adding 'torchgen/native_function_generation.py' 2025-06-01T21:28:30.6465152Z adding 'torchgen/utils.py' 2025-06-01T21:28:30.6468935Z adding 'torchgen/yaml_utils.py' 2025-06-01T21:28:30.6472959Z adding 'torchgen/aoti/__init__.py' 2025-06-01T21:28:30.6476986Z adding 'torchgen/aoti/fallback_ops.py' 2025-06-01T21:28:30.6481142Z adding 'torchgen/api/__init__.py' 2025-06-01T21:28:30.6496054Z adding 'torchgen/api/autograd.py' 2025-06-01T21:28:30.6503988Z adding 'torchgen/api/cpp.py' 2025-06-01T21:28:30.6508389Z adding 'torchgen/api/dispatcher.py' 2025-06-01T21:28:30.6513440Z adding 'torchgen/api/functionalization.py' 2025-06-01T21:28:30.6521265Z adding 'torchgen/api/lazy.py' 2025-06-01T21:28:30.6524753Z adding 'torchgen/api/meta.py' 2025-06-01T21:28:30.6528974Z adding 'torchgen/api/native.py' 2025-06-01T21:28:30.6550576Z adding 'torchgen/api/python.py' 2025-06-01T21:28:30.6556247Z adding 'torchgen/api/structured.py' 2025-06-01T21:28:30.6563804Z adding 'torchgen/api/translate.py' 2025-06-01T21:28:30.6568704Z adding 'torchgen/api/ufunc.py' 2025-06-01T21:28:30.6574032Z adding 'torchgen/api/unboxing.py' 2025-06-01T21:28:30.6578289Z adding 'torchgen/api/types/__init__.py' 2025-06-01T21:28:30.6584692Z adding 'torchgen/api/types/signatures.py' 2025-06-01T21:28:30.6589396Z adding 'torchgen/api/types/types.py' 2025-06-01T21:28:30.6594157Z adding 'torchgen/api/types/types_base.py' 2025-06-01T21:28:30.6598834Z adding 'torchgen/dest/__init__.py' 2025-06-01T21:28:30.6609217Z adding 'torchgen/dest/lazy_ir.py' 2025-06-01T21:28:30.6613265Z adding 'torchgen/dest/lazy_ts_lowering.py' 2025-06-01T21:28:30.6616864Z adding 'torchgen/dest/native_functions.py' 2025-06-01T21:28:30.6630907Z adding 'torchgen/dest/register_dispatch_key.py' 2025-06-01T21:28:30.6639272Z adding 'torchgen/dest/ufunc.py' 2025-06-01T21:28:30.6643356Z adding 'torchgen/executorch/__init__.py' 2025-06-01T21:28:30.6648089Z adding 'torchgen/executorch/model.py' 2025-06-01T21:28:30.6652501Z adding 'torchgen/executorch/parse.py' 2025-06-01T21:28:30.6656298Z adding 'torchgen/executorch/api/__init__.py' 2025-06-01T21:28:30.6660374Z adding 'torchgen/executorch/api/custom_ops.py' 2025-06-01T21:28:30.6666618Z adding 'torchgen/executorch/api/et_cpp.py' 2025-06-01T21:28:30.6671528Z adding 'torchgen/executorch/api/unboxing.py' 2025-06-01T21:28:30.6675460Z adding 'torchgen/executorch/api/types/__init__.py' 2025-06-01T21:28:30.6679079Z adding 'torchgen/executorch/api/types/signatures.py' 2025-06-01T21:28:30.6682493Z adding 'torchgen/executorch/api/types/types.py' 2025-06-01T21:28:30.6686247Z adding 'torchgen/operator_versions/__init__.py' 2025-06-01T21:28:30.6691888Z adding 'torchgen/operator_versions/gen_mobile_upgraders.py' 2025-06-01T21:28:30.6695275Z adding 'torchgen/operator_versions/gen_mobile_upgraders_constant.py' 2025-06-01T21:28:30.6814949Z adding 'torchgen/packaged/ATen/native/native_functions.yaml' 2025-06-01T21:28:30.6832999Z adding 'torchgen/packaged/ATen/native/tags.yaml' 2025-06-01T21:28:30.6838430Z adding 'torchgen/packaged/ATen/templates/ATenOpList.cpp' 2025-06-01T21:28:30.6841975Z adding 'torchgen/packaged/ATen/templates/CompositeViewCopyKernels.cpp' 2025-06-01T21:28:30.6845121Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunction.h' 2025-06-01T21:28:30.6848596Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunctions.h' 2025-06-01T21:28:30.6851838Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunctions_inl.h' 2025-06-01T21:28:30.6854777Z adding 'torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.cpp' 2025-06-01T21:28:30.6857848Z adding 'torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.h' 2025-06-01T21:28:30.6860756Z adding 'torchgen/packaged/ATen/templates/Function.h' 2025-06-01T21:28:30.6863939Z adding 'torchgen/packaged/ATen/templates/FunctionalInverses.h' 2025-06-01T21:28:30.6867640Z adding 'torchgen/packaged/ATen/templates/Functions.cpp' 2025-06-01T21:28:30.6871556Z adding 'torchgen/packaged/ATen/templates/Functions.h' 2025-06-01T21:28:30.6874751Z adding 'torchgen/packaged/ATen/templates/LazyIr.h' 2025-06-01T21:28:30.6877800Z adding 'torchgen/packaged/ATen/templates/LazyNonNativeIr.h' 2025-06-01T21:28:30.6880860Z adding 'torchgen/packaged/ATen/templates/MethodOperators.h' 2025-06-01T21:28:30.6883755Z adding 'torchgen/packaged/ATen/templates/NativeFunction.h' 2025-06-01T21:28:30.6886838Z adding 'torchgen/packaged/ATen/templates/NativeFunctions.h' 2025-06-01T21:28:30.6889861Z adding 'torchgen/packaged/ATen/templates/NativeMetaFunction.h' 2025-06-01T21:28:30.6892648Z adding 'torchgen/packaged/ATen/templates/NativeMetaFunctions.h' 2025-06-01T21:28:30.6895532Z adding 'torchgen/packaged/ATen/templates/Operator.h' 2025-06-01T21:28:30.6898412Z adding 'torchgen/packaged/ATen/templates/Operators.cpp' 2025-06-01T21:28:30.6902094Z adding 'torchgen/packaged/ATen/templates/Operators.h' 2025-06-01T21:28:30.6905149Z adding 'torchgen/packaged/ATen/templates/RedispatchFunctions.cpp' 2025-06-01T21:28:30.6908402Z adding 'torchgen/packaged/ATen/templates/RedispatchFunctions.h' 2025-06-01T21:28:30.6911522Z adding 'torchgen/packaged/ATen/templates/RegisterBackendSelect.cpp' 2025-06-01T21:28:30.6914942Z adding 'torchgen/packaged/ATen/templates/RegisterCodegenUnboxedKernels.cpp' 2025-06-01T21:28:30.6918123Z adding 'torchgen/packaged/ATen/templates/RegisterDispatchDefinitions.ini' 2025-06-01T21:28:30.6921379Z adding 'torchgen/packaged/ATen/templates/RegisterDispatchKey.cpp' 2025-06-01T21:28:30.6925302Z adding 'torchgen/packaged/ATen/templates/RegisterFunctionalization.cpp' 2025-06-01T21:28:30.6928381Z adding 'torchgen/packaged/ATen/templates/RegisterSchema.cpp' 2025-06-01T21:28:30.6931861Z adding 'torchgen/packaged/ATen/templates/RegistrationDeclarations.h' 2025-06-01T21:28:30.6943403Z adding 'torchgen/packaged/ATen/templates/TensorBody.h' 2025-06-01T21:28:30.6947751Z adding 'torchgen/packaged/ATen/templates/TensorMethods.cpp' 2025-06-01T21:28:30.6950813Z adding 'torchgen/packaged/ATen/templates/UfuncCPU.cpp' 2025-06-01T21:28:30.6954002Z adding 'torchgen/packaged/ATen/templates/UfuncCPUKernel.cpp' 2025-06-01T21:28:30.6958797Z adding 'torchgen/packaged/ATen/templates/UfuncCUDA.cu' 2025-06-01T21:28:30.6961433Z adding 'torchgen/packaged/ATen/templates/UnboxingFunctions.cpp' 2025-06-01T21:28:30.6964731Z adding 'torchgen/packaged/ATen/templates/UnboxingFunctions.h' 2025-06-01T21:28:30.6967841Z adding 'torchgen/packaged/ATen/templates/aten_interned_strings.h' 2025-06-01T21:28:30.6970832Z adding 'torchgen/packaged/ATen/templates/enum_tag.h' 2025-06-01T21:28:30.6975280Z adding 'torchgen/packaged/autograd/BUILD.bazel' 2025-06-01T21:28:30.6978154Z adding 'torchgen/packaged/autograd/README.md' 2025-06-01T21:28:30.6981667Z adding 'torchgen/packaged/autograd/__init__.py' 2025-06-01T21:28:30.6984002Z adding 'torchgen/packaged/autograd/build.bzl' 2025-06-01T21:28:30.6987443Z adding 'torchgen/packaged/autograd/context.py' 2025-06-01T21:28:30.6990667Z adding 'torchgen/packaged/autograd/deprecated.yaml' 2025-06-01T21:28:30.7041467Z adding 'torchgen/packaged/autograd/derivatives.yaml' 2025-06-01T21:28:30.7049692Z adding 'torchgen/packaged/autograd/gen_annotated_fn_args.py' 2025-06-01T21:28:30.7053659Z adding 'torchgen/packaged/autograd/gen_autograd.py' 2025-06-01T21:28:30.7065411Z adding 'torchgen/packaged/autograd/gen_autograd_functions.py' 2025-06-01T21:28:30.7075443Z adding 'torchgen/packaged/autograd/gen_inplace_or_view_type.py' 2025-06-01T21:28:30.7092359Z adding 'torchgen/packaged/autograd/gen_python_functions.py' 2025-06-01T21:28:30.7101197Z adding 'torchgen/packaged/autograd/gen_trace_type.py' 2025-06-01T21:28:30.7105878Z adding 'torchgen/packaged/autograd/gen_variable_factories.py' 2025-06-01T21:28:30.7132743Z adding 'torchgen/packaged/autograd/gen_variable_type.py' 2025-06-01T21:28:30.7140830Z adding 'torchgen/packaged/autograd/gen_view_funcs.py' 2025-06-01T21:28:30.7155339Z adding 'torchgen/packaged/autograd/load_derivatives.py' 2025-06-01T21:28:30.7161314Z adding 'torchgen/packaged/autograd/templates/ADInplaceOrViewType.cpp' 2025-06-01T21:28:30.7164253Z adding 'torchgen/packaged/autograd/templates/Functions.cpp' 2025-06-01T21:28:30.7167536Z adding 'torchgen/packaged/autograd/templates/Functions.h' 2025-06-01T21:28:30.7170676Z adding 'torchgen/packaged/autograd/templates/TraceType.cpp' 2025-06-01T21:28:30.7174203Z adding 'torchgen/packaged/autograd/templates/VariableType.cpp' 2025-06-01T21:28:30.7177401Z adding 'torchgen/packaged/autograd/templates/VariableType.h' 2025-06-01T21:28:30.7180410Z adding 'torchgen/packaged/autograd/templates/ViewFuncs.cpp' 2025-06-01T21:28:30.7183221Z adding 'torchgen/packaged/autograd/templates/ViewFuncs.h' 2025-06-01T21:28:30.7186132Z adding 'torchgen/packaged/autograd/templates/annotated_fn_args.py.in' 2025-06-01T21:28:30.7188976Z adding 'torchgen/packaged/autograd/templates/python_enum_tag.cpp' 2025-06-01T21:28:30.7192325Z adding 'torchgen/packaged/autograd/templates/python_fft_functions.cpp' 2025-06-01T21:28:30.7195479Z adding 'torchgen/packaged/autograd/templates/python_functions.cpp' 2025-06-01T21:28:30.7198533Z adding 'torchgen/packaged/autograd/templates/python_functions.h' 2025-06-01T21:28:30.7201901Z adding 'torchgen/packaged/autograd/templates/python_linalg_functions.cpp' 2025-06-01T21:28:30.7205218Z adding 'torchgen/packaged/autograd/templates/python_nested_functions.cpp' 2025-06-01T21:28:30.7208861Z adding 'torchgen/packaged/autograd/templates/python_nn_functions.cpp' 2025-06-01T21:28:30.7212121Z adding 'torchgen/packaged/autograd/templates/python_return_types.cpp' 2025-06-01T21:28:30.7214997Z adding 'torchgen/packaged/autograd/templates/python_return_types.h' 2025-06-01T21:28:30.7218446Z adding 'torchgen/packaged/autograd/templates/python_sparse_functions.cpp' 2025-06-01T21:28:30.7221609Z adding 'torchgen/packaged/autograd/templates/python_special_functions.cpp' 2025-06-01T21:28:30.7225115Z adding 'torchgen/packaged/autograd/templates/python_torch_functions.cpp' 2025-06-01T21:28:30.7237921Z adding 'torchgen/packaged/autograd/templates/python_variable_methods.cpp' 2025-06-01T21:28:30.7243078Z adding 'torchgen/packaged/autograd/templates/variable_factories.h' 2025-06-01T21:28:30.7246926Z adding 'torchgen/selective_build/__init__.py' 2025-06-01T21:28:30.7251759Z adding 'torchgen/selective_build/operator.py' 2025-06-01T21:28:30.7257288Z adding 'torchgen/selective_build/selector.py' 2025-06-01T21:28:30.7261316Z adding 'torchgen/static_runtime/__init__.py' 2025-06-01T21:28:30.7265988Z adding 'torchgen/static_runtime/config.py' 2025-06-01T21:28:30.7270842Z adding 'torchgen/static_runtime/gen_static_runtime_ops.py' 2025-06-01T21:28:30.7279742Z adding 'torchgen/static_runtime/generator.py' 2025-06-01T21:28:30.7397737Z adding 'torch-2.8.0a0+gitf7c09f8.dist-info/LICENSE' 2025-06-01T21:28:30.7421261Z adding 'torch-2.8.0a0+gitf7c09f8.dist-info/METADATA' 2025-06-01T21:28:30.7431091Z adding 'torch-2.8.0a0+gitf7c09f8.dist-info/NOTICE' 2025-06-01T21:28:30.7433786Z adding 'torch-2.8.0a0+gitf7c09f8.dist-info/WHEEL' 2025-06-01T21:28:30.7436321Z adding 'torch-2.8.0a0+gitf7c09f8.dist-info/entry_points.txt' 2025-06-01T21:28:30.7438303Z adding 'torch-2.8.0a0+gitf7c09f8.dist-info/top_level.txt' 2025-06-01T21:28:30.8125887Z adding 'torch-2.8.0a0+gitf7c09f8.dist-info/RECORD' 2025-06-01T21:28:30.8495088Z removing build\bdist.win-amd64\wheel 2025-06-01T21:28:32.3106047Z 2025-06-01T21:28:32.3106743Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 goto fail 2025-06-01T21:28:32.3107250Z 2025-06-01T21:28:32.3107530Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 goto fail 2025-06-01T21:28:32.3108271Z 2025-06-01T21:28:32.3108515Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --show-stats 2025-06-01T21:28:33.0475824Z Compile requests 7426 2025-06-01T21:28:33.0476208Z Compile requests executed 7425 2025-06-01T21:28:33.0476729Z Cache hits 7350 2025-06-01T21:28:33.0477015Z Cache hits (C/C++) 7028 2025-06-01T21:28:33.0477331Z Cache hits (CUDA) 322 2025-06-01T21:28:33.0477661Z Cache misses 53 2025-06-01T21:28:33.0477962Z Cache misses (C/C++) 53 2025-06-01T21:28:33.0479177Z Cache timeouts 0 2025-06-01T21:28:33.0479446Z Cache read errors 0 2025-06-01T21:28:33.0479719Z Forced recaches 0 2025-06-01T21:28:33.0479976Z Cache write errors 0 2025-06-01T21:28:33.0480343Z Compilation failures 3 2025-06-01T21:28:33.0480619Z Cache errors 19 2025-06-01T21:28:33.0480875Z Cache errors (C/C++) 19 2025-06-01T21:28:33.0481155Z Non-cacheable compilations 8 2025-06-01T21:28:33.0481425Z Non-cacheable calls 0 2025-06-01T21:28:33.0481700Z Non-compilation calls 1 2025-06-01T21:28:33.0481980Z Unsupported compiler calls 0 2025-06-01T21:28:33.0482273Z Average cache write 0.030 s 2025-06-01T21:28:33.0482557Z Average compiler 0.092 s 2025-06-01T21:28:33.0482844Z Average cache read hit 0.059 s 2025-06-01T21:28:33.0483185Z Failed distributed compilations 0 2025-06-01T21:28:33.0483573Z Cache location s3, name: ossci-compiler-cache, prefix: /trunk/ 2025-06-01T21:28:33.0484012Z Version (client) 0.7.4 2025-06-01T21:28:33.0500190Z 2025-06-01T21:28:33.0502275Z (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-06-01T21:28:34.0735320Z Processing c:\actions-runner\_work\pytorch\pytorch\dist\torch-2.8.0a0+gitf7c09f8-cp39-cp39-win_amd64.whl 2025-06-01T21:28:35.2104320Z Installing collected packages: torch 2025-06-01T21:28:56.7967112Z Successfully installed torch-2.8.0a0+gitf7c09f8 2025-06-01T21:28:56.8845989Z 2025-06-01T21:28:56.8847380Z (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-06-01T21:28:56.8848901Z copy /Y "dist\*.whl" "C:/15379340894/build-results/" 2025-06-01T21:28:56.8849260Z python tools/stats/export_test_times.py 2025-06-01T21:28:56.8849720Z robocopy /E ".additional_ci_files" "C:/15379340894/build-results/\.additional_ci_files" 2025-06-01T21:28:56.8850228Z copy /Y "build\.ninja_log" "C:/15379340894/build-results/\" 2025-06-01T21:28:56.8850548Z ) ) 2025-06-01T21:28:56.8856650Z dist\torch-2.8.0a0+gitf7c09f8-cp39-cp39-win_amd64.whl 2025-06-01T21:28:57.0781836Z 1 file(s) copied. 2025-06-01T21:28:58.1158690Z Exporting test times from test-infra 2025-06-01T21:28:58.1159728Z 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-06-01T21:28:58.1161494Z 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-06-01T21:28:58.3018311Z 2025-06-01T21:28:58.3019064Z ------------------------------------------------------------------------------- 2025-06-01T21:28:58.3019739Z ROBOCOPY :: Robust File Copy for Windows 2025-06-01T21:28:58.3020201Z ------------------------------------------------------------------------------- 2025-06-01T21:28:58.3020574Z 2025-06-01T21:28:58.3022096Z Started : Sunday, June 1, 2025 9:28:58 PM 2025-06-01T21:28:58.3022670Z Source : C:\actions-runner\_work\pytorch\pytorch\.additional_ci_files\ 2025-06-01T21:28:58.3023967Z Dest : C:\15379340894\build-results\.additional_ci_files\ 2025-06-01T21:28:58.3024265Z 2025-06-01T21:28:58.3024337Z Files : *.* 2025-06-01T21:28:58.3024583Z 2025-06-01T21:28:58.3025888Z Options : *.* /S /E /DCOPY:DA /COPY:DAT /R:1000000 /W:30 2025-06-01T21:28:58.3026188Z 2025-06-01T21:28:58.3026345Z ------------------------------------------------------------------------------ 2025-06-01T21:28:58.3029741Z 2025-06-01T21:28:58.3036616Z New Dir 2 C:\actions-runner\_work\pytorch\pytorch\.additional_ci_files\ 2025-06-01T21:28:58.3044984Z New File 6.0 m test-class-times.json 2025-06-01T21:28:58.3048069Z 8.2% 2025-06-01T21:28:58.3051840Z 16.5% 2025-06-01T21:28:58.3054754Z 24.8% 2025-06-01T21:28:58.3058559Z 33.0% 2025-06-01T21:28:58.3061458Z 41.3% 2025-06-01T21:28:58.3065128Z 49.6% 2025-06-01T21:28:58.3068014Z 57.8% 2025-06-01T21:28:58.3071518Z 66.1% 2025-06-01T21:28:58.3074364Z 74.4% 2025-06-01T21:28:58.3077799Z 82.7% 2025-06-01T21:28:58.3080769Z 90.9% 2025-06-01T21:28:58.3082165Z 99.2% 2025-06-01T21:28:58.3085155Z 100% 2025-06-01T21:28:58.3090342Z New File 1.6 m test-times.json 2025-06-01T21:28:58.3092063Z 14% 2025-06-01T21:28:58.3093523Z 29% 2025-06-01T21:28:58.3095076Z 44% 2025-06-01T21:28:58.3097101Z 59% 2025-06-01T21:28:58.3098689Z 74% 2025-06-01T21:28:58.3099972Z 89% 2025-06-01T21:28:58.3103627Z 100% 2025-06-01T21:28:58.3104015Z 2025-06-01T21:28:58.3104208Z ------------------------------------------------------------------------------ 2025-06-01T21:28:58.3104502Z 2025-06-01T21:28:58.3105607Z Total Copied Skipped Mismatch FAILED Extras 2025-06-01T21:28:58.3106450Z Dirs : 1 1 0 0 0 0 2025-06-01T21:28:58.3107355Z Files : 2 2 0 0 0 0 2025-06-01T21:28:58.3108522Z Bytes : 7.71 m 7.71 m 0 0 0 0 2025-06-01T21:28:58.3109355Z Times : 0:00:00 0:00:00 0:00:00 0:00:00 2025-06-01T21:28:58.3109720Z 2025-06-01T21:28:58.3110236Z 2025-06-01T21:28:58.3111402Z Speed : 2696595333 Bytes/sec. 2025-06-01T21:28:58.3112240Z Speed : 154300.422 MegaBytes/min. 2025-06-01T21:28:58.3112617Z Ended : Sunday, June 1, 2025 9:28:58 PM 2025-06-01T21:28:58.3112938Z 2025-06-01T21:28:59.0681571Z 1 file(s) copied. 2025-06-01T21:28:59.0683963Z 2025-06-01T21:28:59.0684647Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --show-stats --stats-format json | jq .stats 1>sccache-stats-win-vs2022-cuda12.6-py3-43268061396.json 2025-06-01T21:28:59.1173795Z 2025-06-01T21:28:59.1174486Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --stop-server 2025-06-01T21:28:59.1265920Z Stopping sccache server... 2025-06-01T21:28:59.1285911Z Compile requests 7426 2025-06-01T21:28:59.1286292Z Compile requests executed 7425 2025-06-01T21:28:59.1286575Z Cache hits 7350 2025-06-01T21:28:59.1286891Z Cache hits (C/C++) 7028 2025-06-01T21:28:59.1287175Z Cache hits (CUDA) 322 2025-06-01T21:28:59.1288673Z Cache misses 53 2025-06-01T21:28:59.1288967Z Cache misses (C/C++) 53 2025-06-01T21:28:59.1289230Z Cache timeouts 0 2025-06-01T21:28:59.1289510Z Cache read errors 0 2025-06-01T21:28:59.1289777Z Forced recaches 0 2025-06-01T21:28:59.1290061Z Cache write errors 0 2025-06-01T21:28:59.1290342Z Compilation failures 3 2025-06-01T21:28:59.1290632Z Cache errors 19 2025-06-01T21:28:59.1290910Z Cache errors (C/C++) 19 2025-06-01T21:28:59.1291193Z Non-cacheable compilations 8 2025-06-01T21:28:59.1291487Z Non-cacheable calls 0 2025-06-01T21:28:59.1291761Z Non-compilation calls 1 2025-06-01T21:28:59.1292294Z Unsupported compiler calls 0 2025-06-01T21:28:59.1292597Z Average cache write 0.030 s 2025-06-01T21:28:59.1292903Z Average compiler 0.092 s 2025-06-01T21:28:59.1293197Z Average cache read hit 0.059 s 2025-06-01T21:28:59.1294559Z Failed distributed compilations 0 2025-06-01T21:28:59.1294983Z Cache location s3, name: ossci-compiler-cache, prefix: /trunk/ 2025-06-01T21:28:59.1295386Z Version (client) 0.7.4 2025-06-01T21:28:59.1308280Z 2025-06-01T21:28:59.1308772Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-06-01T21:28:59.5534318Z + assert_git_not_dirty 2025-06-01T21:28:59.5534670Z + [[ win-vs2022-cuda12.6-py3 != *rocm* ]] 2025-06-01T21:28:59.5538073Z + [[ win-vs2022-cuda12.6-py3 != *xla* ]] 2025-06-01T21:28:59.6096093Z ++ git status --porcelain 2025-06-01T21:28:59.6152688Z ++ grep -v '?? third_party' 2025-06-01T21:30:30.5139523Z ++ true 2025-06-01T21:30:30.5143686Z + git_status= 2025-06-01T21:30:30.5144004Z + [[ -n '' ]] 2025-06-01T21:30:30.5144226Z + echo 'BUILD PASSED' 2025-06-01T21:30:30.5144467Z BUILD PASSED 2025-06-01T21:30:30.6582444Z ##[group]Run seemethere/upload-artifact-s3@baba72d0712b404f646cebe0730933554ebce96a 2025-06-01T21:30:30.6582935Z with: 2025-06-01T21:30:30.6583145Z retention-days: 14 2025-06-01T21:30:30.6583368Z if-no-files-found: error 2025-06-01T21:30:30.6583632Z name: win-vs2022-cuda12.6-py3 2025-06-01T21:30:30.6583895Z path: C:\15379340894\build-results 2025-06-01T21:30:30.6584177Z s3-bucket: gha-artifacts 2025-06-01T21:30:30.6584424Z region: us-east-1 2025-06-01T21:30:30.6584653Z env: 2025-06-01T21:30:30.6584847Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:30:30.6585224Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:30:30.6585760Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:30:30.6586236Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:30:30.6586767Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:30:30.6587073Z ##[endgroup] 2025-06-01T21:30:32.6309093Z With the provided path, there will be 4 files uploaded 2025-06-01T21:30:32.6309619Z Uploading to s3 prefix: pytorch/pytorch/15379340894/win-vs2022-cuda12.6-py3 2025-06-01T21:30:32.6337671Z Starting upload of .additional_ci_files\test-class-times.json 2025-06-01T21:30:32.9261112Z Finished upload of .additional_ci_files\test-class-times.json 2025-06-01T21:30:32.9263768Z Starting upload of .additional_ci_files\test-times.json 2025-06-01T21:30:33.0911426Z Finished upload of .additional_ci_files\test-times.json 2025-06-01T21:30:33.0913001Z Starting upload of .ninja_log 2025-06-01T21:30:33.2622066Z Finished upload of .ninja_log 2025-06-01T21:30:33.2623637Z Starting upload of torch-2.8.0a0+gitf7c09f8-cp39-cp39-win_amd64.whl 2025-06-01T21:30:35.6362481Z Finished upload of torch-2.8.0a0+gitf7c09f8-cp39-cp39-win_amd64.whl 2025-06-01T21:30:35.6840022Z Prepare all required actions 2025-06-01T21:30:35.6840803Z Getting action download info 2025-06-01T21:30:35.8065719Z Download action repository 'seemethere/upload-artifact-s3@v5' (SHA:baba72d0712b404f646cebe0730933554ebce96a) 2025-06-01T21:30:36.2465325Z ##[group]Run ./.github/actions/upload-sccache-stats 2025-06-01T21:30:36.2465661Z with: 2025-06-01T21:30:36.2478720Z github-token: *** 2025-06-01T21:30:36.2478974Z env: 2025-06-01T21:30:36.2479171Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:30:36.2479603Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:30:36.2480181Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:30:36.2480650Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:30:36.2481087Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:30:36.2481385Z ##[endgroup] 2025-06-01T21:30:36.2596322Z ##[group]Run seemethere/upload-artifact-s3@v5 2025-06-01T21:30:36.2596740Z with: 2025-06-01T21:30:36.2596998Z s3-prefix: pytorch/pytorch/15379340894/1/artifact 2025-06-01T21:30:36.2597527Z retention-days: 14 2025-06-01T21:30:36.2597979Z if-no-files-found: warn 2025-06-01T21:30:36.2598462Z path: sccache-stats-*.json 2025-06-01T21:30:36.2598800Z name: artifact 2025-06-01T21:30:36.2599035Z s3-bucket: gha-artifacts 2025-06-01T21:30:36.2599326Z region: us-east-1 2025-06-01T21:30:36.2599546Z env: 2025-06-01T21:30:36.2599780Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:30:36.2600183Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:30:36.2600759Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:30:36.2601284Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:30:36.2601703Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:30:36.2602043Z ##[endgroup] 2025-06-01T21:30:36.6502635Z NOTE: s3-prefix specified, ignoring name parameter 2025-06-01T21:30:36.6503136Z With the provided path, there will be 1 file uploaded 2025-06-01T21:30:36.6503597Z Uploading to s3 prefix: pytorch/pytorch/15379340894/1/artifact 2025-06-01T21:30:36.6517523Z Starting upload of sccache-stats-win-vs2022-cuda12.6-py3-43268061396.json 2025-06-01T21:30:36.7862397Z Finished upload of sccache-stats-win-vs2022-cuda12.6-py3-43268061396.json 2025-06-01T21:30:36.9032343Z Prepare all required actions 2025-06-01T21:30:36.9032789Z Getting action download info 2025-06-01T21:30:37.1051584Z ##[group]Run ./.github/actions/teardown-win 2025-06-01T21:30:37.1051881Z with: 2025-06-01T21:30:37.1052119Z extra-delete-dir: /c/15379340894/build-results/ 2025-06-01T21:30:37.1052433Z env: 2025-06-01T21:30:37.1052622Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:30:37.1053014Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:30:37.1053543Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:30:37.1054032Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:30:37.1054516Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:30:37.1054821Z ##[endgroup] 2025-06-01T21:30:37.1160341Z ##[group]Run .github\scripts\wait_for_ssh_to_drain.ps1 2025-06-01T21:30:37.1160738Z .github\scripts\wait_for_ssh_to_drain.ps1 2025-06-01T21:30:37.1177165Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-06-01T21:30:37.1177611Z env: 2025-06-01T21:30:37.1177801Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:30:37.1178163Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:30:37.1178690Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:30:37.1179160Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:30:37.1179538Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:30:37.1179825Z ##[endgroup] 2025-06-01T21:30:37.5893316Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-06-01T21:30:37.5961639Z Finished 2025-06-01T21:30:37.8143049Z Holding runner until all ssh sessions have logged out 2025-06-01T21:30:37.8406271Z ##[group]Run .github\scripts\kill_active_ssh_sessions.ps1 2025-06-01T21:30:37.8406724Z .github\scripts\kill_active_ssh_sessions.ps1 2025-06-01T21:30:37.8422375Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-06-01T21:30:37.8422840Z env: 2025-06-01T21:30:37.8423029Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:30:37.8423418Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:30:37.8423941Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:30:37.8424428Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:30:37.8424843Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:30:37.8425130Z ##[endgroup] 2025-06-01T21:30:38.2035348Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-06-01T21:30:38.2079215Z Finished 2025-06-01T21:30:38.2463527Z ##[group]Run pytorch/test-infra/.github/actions/cleanup-runner@main 2025-06-01T21:30:38.2463915Z env: 2025-06-01T21:30:38.2464101Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:30:38.2464506Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:30:38.2465020Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:30:38.2465499Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:30:38.2465887Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:30:38.2466166Z ##[endgroup] 2025-06-01T21:30:38.2540161Z ##[group]Run # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-06-01T21:30:38.2540910Z # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-06-01T21:30:38.2541565Z # Below is the list of commands that could lock $GITHUB_WORKSPACE gathered from sysinternals 2025-06-01T21:30:38.2542054Z # handle tool 2025-06-01T21:30:38.2542397Z $processes = "python", "ninja", "cl", "nvcc", "cmd", "sccache", "git" 2025-06-01T21:30:38.2542813Z Foreach ($process In $processes) { 2025-06-01T21:30:38.2544799Z  Try { 2025-06-01T21:30:38.2545358Z  # https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/stop-process 2025-06-01T21:30:38.2546058Z  Get-Process -Name $process -ErrorAction Stop | Stop-Process -Force 2025-06-01T21:30:38.2546442Z  } 2025-06-01T21:30:38.2546630Z  Catch { 2025-06-01T21:30:38.2546923Z  Write-Output "No leftover $process process, continuing" 2025-06-01T21:30:38.2547292Z  Write-Output $_ 2025-06-01T21:30:38.2547513Z  } 2025-06-01T21:30:38.2547689Z } 2025-06-01T21:30:38.2547856Z  2025-06-01T21:30:38.2548398Z # Try it again https://stackoverflow.com/questions/40585754/powershell-wont-terminate-hung-process 2025-06-01T21:30:38.2548962Z # for hung processes 2025-06-01T21:30:38.2549229Z Foreach ($process In $processes) { 2025-06-01T21:30:38.2549510Z  Try { 2025-06-01T21:30:38.2549898Z  (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process}%'").terminate() 2025-06-01T21:30:38.2550354Z  } 2025-06-01T21:30:38.2550527Z  Catch { 2025-06-01T21:30:38.2550734Z  Write-Output $_ 2025-06-01T21:30:38.2550956Z  } 2025-06-01T21:30:38.2551118Z } 2025-06-01T21:30:38.2551285Z  2025-06-01T21:30:38.2551439Z Try { 2025-06-01T21:30:38.2551669Z  # Print all the processes for debugging 2025-06-01T21:30:38.2552115Z  Wmic Path Win32_Process Get Caption,Processid,Commandline | Format-List 2025-06-01T21:30:38.2552526Z } 2025-06-01T21:30:38.2552693Z Catch { 2025-06-01T21:30:38.2553082Z  # Better to write out whatever exception thrown to help debugging any potential issue 2025-06-01T21:30:38.2553625Z  Write-Output $_ 2025-06-01T21:30:38.2553848Z } 2025-06-01T21:30:38.2569341Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-06-01T21:30:38.2569781Z env: 2025-06-01T21:30:38.2569968Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:30:38.2570333Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:30:38.2570859Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:30:38.2571316Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:30:38.2571712Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:30:38.2572007Z ##[endgroup] 2025-06-01T21:30:38.6160017Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-06-01T21:30:38.6204172Z Finished 2025-06-01T21:30:38.6355224Z No leftover python process, continuing 2025-06-01T21:30:38.6817531Z Get-Process : Cannot find a process with the name "python". Verify the process name and call the cmdlet again. 2025-06-01T21:30:38.6818246Z At C:\actions-runner\_work\_temp\1a5054c9-0ce5-4074-9831-e684d03d1e89.ps1:9 char:5 2025-06-01T21:30:38.6818804Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-06-01T21:30:38.6819198Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T21:30:38.6819680Z + CategoryInfo : ObjectNotFound: (python:String) [Get-Process], ProcessCommandException 2025-06-01T21:30:38.6820591Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-06-01T21:30:38.6821234Z 2025-06-01T21:30:38.6836944Z No leftover ninja process, continuing 2025-06-01T21:30:38.6849490Z Get-Process : Cannot find a process with the name "ninja". Verify the process name and call the cmdlet again. 2025-06-01T21:30:38.6850227Z At C:\actions-runner\_work\_temp\1a5054c9-0ce5-4074-9831-e684d03d1e89.ps1:9 char:5 2025-06-01T21:30:38.6850785Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-06-01T21:30:38.6851236Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T21:30:38.6852668Z + CategoryInfo : ObjectNotFound: (ninja:String) [Get-Process], ProcessCommandException 2025-06-01T21:30:38.6853508Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-06-01T21:30:38.6854120Z 2025-06-01T21:30:38.6865922Z No leftover cl process, continuing 2025-06-01T21:30:38.6876306Z Get-Process : Cannot find a process with the name "cl". Verify the process name and call the cmdlet again. 2025-06-01T21:30:38.6876953Z At C:\actions-runner\_work\_temp\1a5054c9-0ce5-4074-9831-e684d03d1e89.ps1:9 char:5 2025-06-01T21:30:38.6877507Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-06-01T21:30:38.6878058Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T21:30:38.6878568Z + CategoryInfo : ObjectNotFound: (cl:String) [Get-Process], ProcessCommandException 2025-06-01T21:30:38.6879391Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-06-01T21:30:38.6879976Z 2025-06-01T21:30:38.6890292Z No leftover nvcc process, continuing 2025-06-01T21:30:38.6900163Z Get-Process : Cannot find a process with the name "nvcc". Verify the process name and call the cmdlet again. 2025-06-01T21:30:38.6900826Z At C:\actions-runner\_work\_temp\1a5054c9-0ce5-4074-9831-e684d03d1e89.ps1:9 char:5 2025-06-01T21:30:38.6901382Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-06-01T21:30:38.6901788Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T21:30:38.6902263Z + CategoryInfo : ObjectNotFound: (nvcc:String) [Get-Process], ProcessCommandException 2025-06-01T21:30:38.6903127Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-06-01T21:30:38.6903838Z 2025-06-01T21:30:38.6913015Z No leftover cmd process, continuing 2025-06-01T21:30:38.6922703Z Get-Process : Cannot find a process with the name "cmd". Verify the process name and call the cmdlet again. 2025-06-01T21:30:38.6923402Z At C:\actions-runner\_work\_temp\1a5054c9-0ce5-4074-9831-e684d03d1e89.ps1:9 char:5 2025-06-01T21:30:38.6923947Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-06-01T21:30:38.6924352Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T21:30:38.6924822Z + CategoryInfo : ObjectNotFound: (cmd:String) [Get-Process], ProcessCommandException 2025-06-01T21:30:38.6925675Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-06-01T21:30:38.6926346Z 2025-06-01T21:30:38.6935538Z No leftover sccache process, continuing 2025-06-01T21:30:38.6945262Z Get-Process : Cannot find a process with the name "sccache". Verify the process name and call the cmdlet again. 2025-06-01T21:30:38.6945955Z At C:\actions-runner\_work\_temp\1a5054c9-0ce5-4074-9831-e684d03d1e89.ps1:9 char:5 2025-06-01T21:30:38.6946499Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-06-01T21:30:38.6946909Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T21:30:38.6947387Z + CategoryInfo : ObjectNotFound: (sccache:String) [Get-Process], ProcessCommandException 2025-06-01T21:30:38.6948249Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-06-01T21:30:38.6948837Z 2025-06-01T21:30:38.6957934Z No leftover git process, continuing 2025-06-01T21:30:38.6967353Z Get-Process : Cannot find a process with the name "git". Verify the process name and call the cmdlet again. 2025-06-01T21:30:38.6968005Z At C:\actions-runner\_work\_temp\1a5054c9-0ce5-4074-9831-e684d03d1e89.ps1:9 char:5 2025-06-01T21:30:38.6968553Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-06-01T21:30:38.6968957Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T21:30:38.6969649Z + CategoryInfo : ObjectNotFound: (git:String) [Get-Process], ProcessCommandException 2025-06-01T21:30:38.6970465Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-06-01T21:30:38.6971071Z 2025-06-01T21:30:38.7430967Z You cannot call a method on a null-valued expression. 2025-06-01T21:30:38.7431500Z At C:\actions-runner\_work\_temp\1a5054c9-0ce5-4074-9831-e684d03d1e89.ps1:21 char:5 2025-06-01T21:30:38.7432072Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-06-01T21:30:38.7432511Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T21:30:38.7432907Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-06-01T21:30:38.7433503Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-06-01T21:30:38.7433801Z 2025-06-01T21:30:38.7604994Z You cannot call a method on a null-valued expression. 2025-06-01T21:30:38.7605524Z At C:\actions-runner\_work\_temp\1a5054c9-0ce5-4074-9831-e684d03d1e89.ps1:21 char:5 2025-06-01T21:30:38.7606200Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-06-01T21:30:38.7606632Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T21:30:38.7607031Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-06-01T21:30:38.7607444Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-06-01T21:30:38.7607733Z 2025-06-01T21:30:38.7783825Z You cannot call a method on a null-valued expression. 2025-06-01T21:30:38.7784358Z At C:\actions-runner\_work\_temp\1a5054c9-0ce5-4074-9831-e684d03d1e89.ps1:21 char:5 2025-06-01T21:30:38.7784923Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-06-01T21:30:38.7785373Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T21:30:38.7785952Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-06-01T21:30:38.7786361Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-06-01T21:30:38.7786666Z 2025-06-01T21:30:38.7966499Z You cannot call a method on a null-valued expression. 2025-06-01T21:30:38.7967036Z At C:\actions-runner\_work\_temp\1a5054c9-0ce5-4074-9831-e684d03d1e89.ps1:21 char:5 2025-06-01T21:30:38.7967594Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-06-01T21:30:38.7968025Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T21:30:38.7968421Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-06-01T21:30:38.7968820Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-06-01T21:30:38.7969102Z 2025-06-01T21:30:38.8141641Z You cannot call a method on a null-valued expression. 2025-06-01T21:30:38.8142202Z At C:\actions-runner\_work\_temp\1a5054c9-0ce5-4074-9831-e684d03d1e89.ps1:21 char:5 2025-06-01T21:30:38.8142761Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-06-01T21:30:38.8143217Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T21:30:38.8143613Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-06-01T21:30:38.8144012Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-06-01T21:30:38.8144293Z 2025-06-01T21:30:38.8311848Z You cannot call a method on a null-valued expression. 2025-06-01T21:30:38.8312421Z At C:\actions-runner\_work\_temp\1a5054c9-0ce5-4074-9831-e684d03d1e89.ps1:21 char:5 2025-06-01T21:30:38.8313070Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-06-01T21:30:38.8313548Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T21:30:38.8314030Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-06-01T21:30:38.8314503Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-06-01T21:30:38.8314870Z 2025-06-01T21:30:38.8487437Z You cannot call a method on a null-valued expression. 2025-06-01T21:30:38.8488227Z At C:\actions-runner\_work\_temp\1a5054c9-0ce5-4074-9831-e684d03d1e89.ps1:21 char:5 2025-06-01T21:30:38.8488789Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-06-01T21:30:38.8489227Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T21:30:38.8489622Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-06-01T21:30:38.8490040Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-06-01T21:30:38.8490345Z 2025-06-01T21:30:38.9475202Z Caption CommandLine ProcessId 2025-06-01T21:30:38.9475910Z 2025-06-01T21:30:38.9476244Z System Idle Process 0 2025-06-01T21:30:38.9476667Z 2025-06-01T21:30:38.9477060Z System 4 2025-06-01T21:30:38.9477519Z 2025-06-01T21:30:38.9478273Z Registry 168 2025-06-01T21:30:38.9478658Z 2025-06-01T21:30:38.9479406Z smss.exe 408 2025-06-01T21:30:38.9479797Z 2025-06-01T21:30:38.9480528Z csrss.exe 528 2025-06-01T21:30:38.9480907Z 2025-06-01T21:30:38.9482326Z csrss.exe 604 2025-06-01T21:30:38.9482736Z 2025-06-01T21:30:38.9483018Z wininit.exe 656 2025-06-01T21:30:38.9483408Z 2025-06-01T21:30:38.9483874Z winlogon.exe winlogon.exe 676 2025-06-01T21:30:38.9484377Z 2025-06-01T21:30:38.9485610Z services.exe 748 2025-06-01T21:30:38.9486111Z 2025-06-01T21:30:38.9486554Z lsass.exe C:\Windows\system32\lsass.exe 772 2025-06-01T21:30:38.9487179Z 2025-06-01T21:30:38.9487679Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s PlugPlay 892 2025-06-01T21:30:38.9488267Z 2025-06-01T21:30:38.9488729Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p 916 2025-06-01T21:30:38.9489272Z 2025-06-01T21:30:38.9489749Z fontdrvhost.exe "fontdrvhost.exe" 940 2025-06-01T21:30:38.9490215Z 2025-06-01T21:30:38.9491104Z fontdrvhost.exe "fontdrvhost.exe" 948 2025-06-01T21:30:38.9491576Z 2025-06-01T21:30:38.9492022Z svchost.exe C:\Windows\system32\svchost.exe -k RPCSS -p 136 2025-06-01T21:30:38.9492598Z 2025-06-01T21:30:38.9493230Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s LSM 456 2025-06-01T21:30:38.9493789Z 2025-06-01T21:30:38.9494773Z svchost.exe C:\Windows\System32\svchost.exe -k termsvcs -s TermService 460 2025-06-01T21:30:38.9495365Z 2025-06-01T21:30:38.9495964Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService 1116 2025-06-01T21:30:38.9496707Z 2025-06-01T21:30:38.9496997Z dwm.exe "dwm.exe" 1124 2025-06-01T21:30:38.9497384Z 2025-06-01T21:30:38.9498118Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s EventLog 1252 2025-06-01T21:30:38.9498796Z 2025-06-01T21:30:38.9499269Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s nsi 1336 2025-06-01T21:30:38.9499832Z 2025-06-01T21:30:38.9500516Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s Dhcp 1364 2025-06-01T21:30:38.9501927Z 2025-06-01T21:30:38.9503721Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s gpsvc 1388 2025-06-01T21:30:38.9504452Z 2025-06-01T21:30:38.9504961Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s NlaSvc 1436 2025-06-01T21:30:38.9505567Z 2025-06-01T21:30:38.9506032Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Schedule 1468 2025-06-01T21:30:38.9506672Z 2025-06-01T21:30:38.9508460Z NVDisplay.Container.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\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_43a904fa5fe2998c\Display.NvContainer\plugins\LocalSystem -r -p 30000 -cfg NVDisplay.ContainerLocalSystem\LocalSystem /ert 1492 2025-06-01T21:30:38.9510357Z 2025-06-01T21:30:38.9510842Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s netprofm 1540 2025-06-01T21:30:38.9511488Z 2025-06-01T21:30:38.9512134Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s TimeBrokerSvc 1652 2025-06-01T21:30:38.9512842Z 2025-06-01T21:30:38.9513297Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s ProfSvc 1732 2025-06-01T21:30:38.9513869Z 2025-06-01T21:30:38.9514425Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s Themes 1740 2025-06-01T21:30:38.9514978Z 2025-06-01T21:30:38.9515487Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s EventSystem 1748 2025-06-01T21:30:38.9517170Z 2025-06-01T21:30:38.9517828Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s UmRdpService 1832 2025-06-01T21:30:38.9518518Z 2025-06-01T21:30:38.9519013Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -s CertPropSvc 1992 2025-06-01T21:30:38.9519644Z 2025-06-01T21:30:38.9520095Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s SENS 2036 2025-06-01T21:30:38.9520637Z 2025-06-01T21:30:38.9521131Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UserManager 1704 2025-06-01T21:30:38.9521714Z 2025-06-01T21:30:38.9522210Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s Dnscache 2080 2025-06-01T21:30:38.9522852Z 2025-06-01T21:30:38.9523897Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p 2072 2025-06-01T21:30:38.9524571Z 2025-06-01T21:30:38.9525118Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s LanmanWorkstation 2104 2025-06-01T21:30:38.9525760Z 2025-06-01T21:30:38.9526421Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s ShellHWDetection 2156 2025-06-01T21:30:38.9527084Z 2025-06-01T21:30:38.9527574Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s FontCache 2184 2025-06-01T21:30:38.9528176Z 2025-06-01T21:30:38.9528768Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetworkFirewall -p 2248 2025-06-01T21:30:38.9529498Z 2025-06-01T21:30:38.9529970Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s SessionEnv 2264 2025-06-01T21:30:38.9530550Z 2025-06-01T21:30:38.9531179Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s WinHttpAutoProxySvc 2380 2025-06-01T21:30:38.9531908Z 2025-06-01T21:30:38.9532306Z spoolsv.exe C:\Windows\System32\spoolsv.exe 2636 2025-06-01T21:30:38.9532799Z 2025-06-01T21:30:38.9533371Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetwork -p 2724 2025-06-01T21:30:38.9533968Z 2025-06-01T21:30:38.9534508Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s CryptSvc 2732 2025-06-01T21:30:38.9535187Z 2025-06-01T21:30:38.9535771Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s SysMain 2740 2025-06-01T21:30:38.9536428Z 2025-06-01T21:30:38.9536888Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Winmgmt 2748 2025-06-01T21:30:38.9537483Z 2025-06-01T21:30:38.9538045Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s TrkWks 2756 2025-06-01T21:30:38.9538701Z 2025-06-01T21:30:38.9539166Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s WpnService 2764 2025-06-01T21:30:38.9539745Z 2025-06-01T21:30:38.9540264Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -s W32Time 2772 2025-06-01T21:30:38.9540889Z 2025-06-01T21:30:38.9541373Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s WinRM 2788 2025-06-01T21:30:38.9541966Z 2025-06-01T21:30:38.9542426Z sshd.exe C:\Windows\System32\OpenSSH\sshd.exe 2996 2025-06-01T21:30:38.9542913Z 2025-06-01T21:30:38.9543385Z svchost.exe C:\Windows\System32\svchost.exe -k smbsvcs -s LanmanServer 2144 2025-06-01T21:30:38.9544006Z 2025-06-01T21:30:38.9544470Z svchost.exe C:\Windows\System32\svchost.exe -k NetSvcs -p -s iphlpsvc 2468 2025-06-01T21:30:38.9545031Z 2025-06-01T21:30:38.9545655Z IpOverUsbSvc.exe "C:\Program Files (x86)\Common Files\Microsoft Shared\Phone Tools\CoreCon\11.0\bin\IpOverUsbSvc.exe" 3088 2025-06-01T21:30:38.9546479Z 2025-06-01T21:30:38.9547166Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe 3096 2025-06-01T21:30:38.9547901Z 2025-06-01T21:30:38.9548508Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkServiceNetworkRestricted -p -s PolicyAgent 3532 2025-06-01T21:30:38.9549206Z 2025-06-01T21:30:38.9549785Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s lmhosts 4072 2025-06-01T21:30:38.9550449Z 2025-06-01T21:30:38.9550941Z LogonUI.exe "LogonUI.exe" /flags:0x2 /state0:0xa3a73055 /state1:0x41c64e6d 2644 2025-06-01T21:30:38.9551598Z 2025-06-01T21:30:38.9553383Z NVDisplay.Container.exe "C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\Display.NvContainer\NVDisplay.Container.exe" -f %ProgramData%\NVIDIA\DisplaySessionContainer%d.log -d C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\Display.NvContainer\plugins\Session -r -l 3 -p 30000 -cfg NVDisplay.ContainerLocalSystem\Session /ert -c 4132 2025-06-01T21:30:38.9555149Z 2025-06-01T21:30:38.9555860Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe -spawnprovider 4264 2025-06-01T21:30:38.9556706Z 2025-06-01T21:30:38.9557053Z vds.exe C:\Windows\System32\vds.exe 3112 2025-06-01T21:30:38.9557510Z 2025-06-01T21:30:38.9558117Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s PcaSvc 2856 2025-06-01T21:30:38.9558866Z 2025-06-01T21:30:38.9559370Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNoNetwork -p -s DPS 4532 2025-06-01T21:30:38.9559984Z 2025-06-01T21:30:38.9560348Z msdtc.exe C:\Windows\System32\msdtc.exe 1844 2025-06-01T21:30:38.9560821Z 2025-06-01T21:30:38.9561377Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s UALSVC 4148 2025-06-01T21:30:38.9562030Z 2025-06-01T21:30:38.9562796Z start-amazon-cloudwatch-agent.exe "C:\Program Files\Amazon\AmazonCloudWatchAgent\start-amazon-cloudwatch-agent.exe" 888 2025-06-01T21:30:38.9563627Z 2025-06-01T21:30:38.9565248Z 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 4740 2025-06-01T21:30:38.9567017Z 2025-06-01T21:30:38.9567414Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 3912 2025-06-01T21:30:38.9567906Z 2025-06-01T21:30:38.9568368Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UsoSvc 4088 2025-06-01T21:30:38.9568918Z 2025-06-01T21:30:38.9569541Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s StorSvc 4728 2025-06-01T21:30:38.9570590Z 2025-06-01T21:30:38.9571104Z svchost.exe C:\Windows\system32\svchost.exe -k appmodel -p -s StateRepository 3860 2025-06-01T21:30:38.9571719Z 2025-06-01T21:30:38.9572209Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s CDPSvc 4012 2025-06-01T21:30:38.9572791Z 2025-06-01T21:30:38.9573319Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s LicenseManager 4636 2025-06-01T21:30:38.9573937Z 2025-06-01T21:30:38.9574603Z MicrosoftEdgeUpdate.exe "C:\Program Files (x86)\Microsoft\EdgeUpdate\MicrosoftEdgeUpdate.exe" /c 4068 2025-06-01T21:30:38.9575359Z 2025-06-01T21:30:38.9575796Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 3080 2025-06-01T21:30:38.9576343Z 2025-06-01T21:30:38.9576811Z Runner.Listener.exe "C:\actions-runner\\bin\Runner.Listener.exe" run 4988 2025-06-01T21:30:38.9577383Z 2025-06-01T21:30:38.9577861Z amazon-ssm-agent.exe "C:\Program Files\Amazon\SSM\amazon-ssm-agent.exe" 1152 2025-06-01T21:30:38.9578480Z 2025-06-01T21:30:38.9578961Z ssm-agent-worker.exe "C:\Program Files\Amazon\SSM\ssm-agent-worker.exe" 5044 2025-06-01T21:30:38.9579553Z 2025-06-01T21:30:38.9579943Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4832 2025-06-01T21:30:38.9580434Z 2025-06-01T21:30:38.9581048Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s DsSvc 3276 2025-06-01T21:30:38.9581742Z 2025-06-01T21:30:38.9582261Z Runner.Worker.exe "C:\actions-runner\bin\Runner.Worker.exe" spawnclient 2948 2452 552 2025-06-01T21:30:38.9582881Z 2025-06-01T21:30:38.9583358Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4032 2025-06-01T21:30:38.9583850Z 2025-06-01T21:30:38.9584265Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 3872 2025-06-01T21:30:38.9584811Z 2025-06-01T21:30:38.9585609Z powershell.exe "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE" -command ". 'C:\actions-runner\_work\_temp\1a5054c9-0ce5-4074-9831-e684d03d1e89.ps1'" 1148 2025-06-01T21:30:38.9586479Z 2025-06-01T21:30:38.9587134Z WMIC.exe "C:\Windows\System32\Wbem\WMIC.exe" Path Win32_Process Get Caption,Processid,Commandline 5968 2025-06-01T21:30:38.9587856Z 2025-06-01T21:30:38.9587864Z 2025-06-01T21:30:38.9587868Z 2025-06-01T21:30:38.9874853Z ##[group]Run nick-fields/retry@v3.0.0 2025-06-01T21:30:38.9875177Z with: 2025-06-01T21:30:38.9875405Z shell: bash 2025-06-01T21:30:38.9875596Z timeout_minutes: 5 2025-06-01T21:30:38.9875856Z max_attempts: 3 2025-06-01T21:30:38.9876052Z retry_wait_seconds: 90 2025-06-01T21:30:38.9877196Z 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-06-01T21:30:38.9878387Z polling_interval_seconds: 1 2025-06-01T21:30:38.9878638Z warning_on_retry: true 2025-06-01T21:30:38.9878928Z continue_on_error: false 2025-06-01T21:30:38.9879181Z env: 2025-06-01T21:30:38.9879375Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:30:38.9879833Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:30:38.9880422Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:30:38.9880984Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:30:38.9881418Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:30:38.9881813Z EXTRA_DELETE_DIR: /c/15379340894/build-results/ 2025-06-01T21:30:38.9882134Z ##[endgroup] 2025-06-01T21:30:39.3947483Z + '[' -n /c/15379340894/build-results/ ']' 2025-06-01T21:30:39.3947845Z + rm -rf /c/15379340894/build-results/ 2025-06-01T21:30:39.4663275Z + rm -rf ./BUCK.oss ./BUILD.bazel ./CITATION.cff ./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 ./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.txt ./sccache-stats-win-vs2022-cuda12.6-py3-43268061396.json ./scripts ./setup.py ./test ./third_party ./tools ./torch ./torch.egg-info ./torchgen ./ubsan.supp ./ufunc_defs.bzl ./version.txt 2025-06-01T21:31:08.4846431Z Command completed after 1 attempt(s). 2025-06-01T21:31:08.5042762Z ##[group]Run handle C:\actions-runner\_work\ 2025-06-01T21:31:08.5043118Z handle C:\actions-runner\_work\ 2025-06-01T21:31:08.5058887Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-06-01T21:31:08.5059443Z env: 2025-06-01T21:31:08.5059626Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:31:08.5060003Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:31:08.5060522Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:31:08.5061004Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:31:08.5061395Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:31:08.5061686Z ##[endgroup] 2025-06-01T21:31:09.0427372Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-06-01T21:31:09.0500614Z Finished 2025-06-01T21:31:09.2995246Z 2025-06-01T21:31:09.2995664Z Nthandle v5.0 - Handle viewer 2025-06-01T21:31:09.2996003Z Copyright (C) 1997-2022 Mark Russinovich 2025-06-01T21:31:09.2996343Z Sysinternals - www.sysinternals.com 2025-06-01T21:31:09.2996547Z 2025-06-01T21:31:09.3318408Z powershell.exe pid: 5068 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-06-01T21:31:09.3319051Z handle.exe pid: 3840 type: File 48: C:\actions-runner\_work\pytorch\pytorch 2025-06-01T21:31:09.3319747Z handle.exe pid: 5124 type: File 94: C:\actions-runner\_work\pytorch\pytorch 2025-06-01T21:31:09.3320316Z handle64.exe pid: 3108 type: File 50: C:\actions-runner\_work\pytorch\pytorch 2025-06-01T21:31:09.4403115Z Post job cleanup. 2025-06-01T21:31:09.5678372Z Post job cleanup. 2025-06-01T21:31:10.0730687Z [command]"C:\Program Files\Git\cmd\git.exe" version 2025-06-01T21:31:10.0944900Z git version 2.47.1.windows.2 2025-06-01T21:31:10.1008272Z Copying 'C:\Users\runneruser\.gitconfig' to 'C:\actions-runner\_work\_temp\6aab59ca-2e50-42f3-823e-45454cc07d7c\.gitconfig' 2025-06-01T21:31:10.1027544Z Temporarily overriding HOME='C:\actions-runner\_work\_temp\6aab59ca-2e50-42f3-823e-45454cc07d7c' before making global git config changes 2025-06-01T21:31:10.1028398Z Adding repository directory to the temporary git global config as a safe directory 2025-06-01T21:31:10.1038215Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add safe.directory C:\actions-runner\_work\pytorch\pytorch 2025-06-01T21:31:10.1321058Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp core\.sshCommand 2025-06-01T21:31:10.1581350Z [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-06-01T21:31:10.5997076Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-06-01T21:31:10.6201161Z http.https://github.com/.extraheader 2025-06-01T21:31:10.6250033Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --unset-all http.https://github.com/.extraheader 2025-06-01T21:31:10.6524628Z [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-06-01T21:31:11.0260105Z A job completed hook has been configured by the self-hosted runner administrator 2025-06-01T21:31:11.0309400Z ##[group]Run 'C:\actions-runner\jobcompleted.ps1' 2025-06-01T21:31:11.0324912Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-06-01T21:31:11.0325369Z ##[endgroup] 2025-06-01T21:31:11.3971407Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-06-01T21:31:11.4041846Z Finished 2025-06-01T21:31:12.9218840Z Evaluate and set job outputs 2025-06-01T21:31:12.9239431Z Cleaning up orphan processes